/*-----Gsap slide -----*/

.center-container{
	
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
    left: 50%;
    position: relative;
}
.slide-container{
    width: 100%;
    height: 80vh;
    overflow: hidden;
}
.pos-relative{
    position: relative;
}
.pos-absolute{
    position: absolute;
}


.text-container{
    z-index: 1;
    width: 40%;
    left: 60%;
    top: 50%;
    transform: translateY(-50%);
}
.text-container h1{
    margin-bottom: 20px;
}
.text-container a{
    text-decoration:none;
    font-size: 18px;
	padding-top: 30px;
	color: inherit;
}

.slide-section,.slide-element,.slide-image{
    width: 100%;
    height: 100%;
}
.slide-section{
    width: 100%;
    background-color: blue;
}
.slide-element-1 .slide-image,.slide-element-5 .slide-image{
    background-color: #71cc98;
}
.slide-element-2 .slide-image{
    background-color: #F7CD85;
}
.slide-element-3 .slide-image{
    background-color: #E9C300;
}
.slide-element-4 .slide-image{
    background-color: #004c97;
}

.slide-element-5 .slide-image{
    background-color: #BBE0ED;
}
.img-relative{
    width: 100%;
    height: 100%;
}
.img-absolute{
    width: 90%;
    height: 90%;
    position: absolute;
    left: 12%;
    bottom: 0%;
}
.img-absolute img{
    height: 100%;
    width: auto;
}
#desktop-slide{
    display:block;
}
@media screen and (max-width: 920px) {
	
	.img-absolute{
    width: 90%;
    height: 90%;
    position: absolute;
    left: -15%;
    bottom: 0%;
}
.img-absolute img{
    height: 100%;
    width: auto;
}
	.slide-container{
    width: 100%;
    height: 600px;
    overflow: hidden;
}

}

@media screen and (max-width: 479px) {
	
	#desktop-slide{
		display:none;
	}
}




