
section .screen
{
  height: 100vh;
  position: relative;
  flex-grow: 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: hidden;
  transition: 1s;
}

section:hover .screen
{
  opacity: 0.1;
}
section .screen:hover
{
  flex-grow: 5;
  opacity: 1;
}
section .screen:nth-child(1)
{
  background: url(../images/_3slide/1.jpg);
  background-repeat: no-repeat;
  background-size:cover;
  background-position: center;
}
section .screen:nth-child(2)
{
  background: url(../images/_3slide/2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
section .screen:nth-child(3)
{
  background: url(../images/_3slide/3.jpg);
  background-repeat: no-repeat;
  background-position:top center;
  
}

section .screen .content
{
  position: absolute;
  width: 400px;
  height: auto;
  background: #fff;
  padding: 40px;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: 0.5s;
  text-align: justify;
}
section .screen:hover .content
{
  transform: translateX(0);
  transition-delay: 0.1s;
}

section .screen .content h2
{
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 30px;
  color: #1fb6fc;
}

section .screen .content p
{
  margin: 0;
  paddin: 0;
}


.heading-section .big {
	font-family: "Lato", Arial, sans-serif;
	position: absolute;
	left: 0;
	right: 0;
	top: -20px;
	font-size: 150px;
	color: rgba(31, 182, 252, 0.08);
	font-weight: 900;
	letter-spacing: 1px; 
}

@media (max-width: 991.98px) {
	.heading-section .big {
		display: none; 
	}
}

.heading-section .big-custom {
	font-family: "Lato", Arial, sans-serif;
	position: absolute;
	left: -15%;
	right: 0;
	top: 40px;
	font-size: 150px;
	color: rgba(31, 182, 252, 0.08);
	font-weight: 900;
	letter-spacing: 1px; 
}

@media (max-width: 991.98px) {
	.heading-section .big-custom {
		display: none; 
	}
}
