
.corousel{
    width: 100%;
    height: 35.7rem;
    overflow: hidden;
    margin: 0 auto;
    background-color: rgb(255, 255, 255);
    position: relative;
    -webkit-box-shadow: 0px 5px 17px 11px rgba(0,0,0,0.25); 
    box-shadow: 0px 5px 17px 11px rgba(0,0,0,0.25);
    
}
.arr{
    height: 3.8rem;
    position: absolute;
    cursor: pointer;
    z-index: 10;
}
@media only screen and (max-width: 684px){
    .arr{
        height: 2rem;
    }
}
.arr-left{
    top: 50%;
    left: 0;
    transform: rotate(180deg) translateY(50%);
    -webkit-transform: rotate(180deg) translateY(50%);
    -moz-transform: rotate(180deg) translateY(50%);
    -ms-transform: rotate(180deg) translateY(50%);
    -o-transform: rotate(180deg) translateY(50%);
}

.arr-right{
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.slide-div{
    display: none;
    position: absolute;
    opacity: 0;
    width: 100%;
    z-index: 5;
}

#photo1,#photos1,#photoss1{
    opacity: 1;
    display: block;
}

.text-div{
    height: 25%;
    width: 100%;
    position: absolute;
    bottom: 2px;
    background-color: rgba(0, 0, 0, 0.420);
    z-index: 6;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slide-header{
    font-weight: 600;
    font-size: 2.4rem;
}
.slide-text{
    font-weight: 400;
    font-size: 1.8rem;
}
.slide-img{
    width: 100%;
}
@media only screen and (max-width: 1098px){
    .text-div{
        height: 30%;
    }
}
.underline-text{
    font-weight: 600;
    font-size: 3.6rem;
    display: inline-block;
    position: relative;
    margin: 2.5rem 0;
    color: #333;
}

.underline-text::after{
    content: "";
	display: inline-block;
	height: 15%;
	width: 50rem;
	position: absolute;
	bottom: 5px ;
	left: 0;
	z-index: -1;
	-webkit-transition: all .4s;
	transition: all .4s;
    background-color: #009fe37a;
}

@media only screen and (max-width: 530px){
    .underline-text::after{
        width: 45rem;
    }
}
@media only screen and (max-width: 593px){
    .slide-header{
        font-size: 2.2rem;
    }
}
@media only screen and (max-width: 460px){
    
    .underline-text::after{
        width: 34rem;
    }
    .underline-text{
        font-size: 3rem;
    }
}
@media only screen and (max-width: 691px){
    .underline-text:first-child{
        margin-top: 10rem;

    }
}