:root{
    --first-color:#6D87FF;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,800;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    font-family: montserrat;
}


/*section-1*/
.section-1{
    background: url(../images/benner-1234.jpg);
    height: 60vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-1 h1{
    font-size: 40px;
    font-weight: 600;
    color: white;

}



/*section-2*/
.section-2{
    display: flex;
    justify-content: center;
}
.section-2 .container{
    padding: 100px 0;
    width: 80%;
}
.section-2 .container .left-side{
    width: 60%;
    margin-bottom: 30px;
}
.section-2 .container .left-side h2{
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.section-2 .container .left-side p{
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.section-2 .container .right-side{
    width: 60%;
}
.section-2 .container .right-side h3{
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.section-2 .container .right-side h3 i{
    color: #00adb5;
    font-size: 22px;
}
.section-2 .container .right-side p{
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 25px;
}
.section-2 .container .right-side .misyon{
    margin-bottom: 20px;
}





/*section-1*/
.section-3{
    padding: 100px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f2f3f8;
    flex-direction: column;
}
.section-3 h2{
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.section-3 .paragraf{
    font-size: 16px;
    letter-spacing: .5px;
    line-height: 25px;
    margin-bottom: 30px;
}
.section-3 .container{
    width: 90%;
    display: flex;
    flex-wrap: wrap;
}
.section-3 .container .box{
    margin: 50px 10px;
    width: 23%;

}
.section-3 .container .box .box-img{
    width: 100%;
    height: 350px;
}
.section-3 .container .box .box-img img{
    width: 100%;
    height: 100%;
}
.section-3 .container .box .layer{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}
.section-3 .container .box .layer::before{
    display: none;
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 10;
    width: 100%;
    border-radius: 5px;
    
}
.section-3 .container .box:hover .box-contact,
.section-3 .container .box:hover .layer::before{
    display: block;
    transition: 1s;
}
.section-3 .container .box .box-contact{
    position: absolute;
    z-index: 20;
    padding: 10px 0px;
    display: none;
    transition: 1s;
}
.section-3 .container .box .box-contact p{
    margin-bottom: 10px;
}
.section-3 .container .box .box-contact p a{
    text-decoration: none;
    color: #00adb5;
    font-size: 16px;
}
.section-3 .container .box .box-contact p a:hover{
    color: white;
}
.section-3 .container .box .box-contact p a i{
    font-size: 14px;
}

.section-3 .container .box .position{
    width: 92%;
    position: absolute;
    z-index: 40;
    padding: 10px;
    text-align: center;
    bottom: -30px;
    background: #00adb5;
    border-radius: 5px;
}
.section-3 .container .box .position .text-header a{
    color: white;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
}
.section-3 .container .box .position .text-header a:hover{
    opacity: .8;
}
.section-3 .container .box .position .vertical-line{
    width: 100%;
    height: 1px;
    margin: 5px 0px;
    background: white;
}
.section-3 .container .box .position .text-position{
    color: white;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
}


@media screen and (max-width: 1200px){
    .section-1 h1{
        font-size: 30px;
    }
    .section-3 .paragraf{
        text-align: center;
    }
    .section-2 .container{
        width: 90%;
    }
    .section-2 .container .right-side,
    .section-2 .container .left-side{
        width: 100%;
        text-align: center;
    }
    .section-3 .container{
        flex-wrap: wrap;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .section-3 .container .box {
        width: 42%;
    }
    .section-3 .container .box .box-img{
        height: 400px;
    }
     
}
@media screen and (max-width: 992px){
    .section-3 .container .box {
        width: 100%;
    }
    .section-3 .container .box .box-img{
        height: auto;
    }
}


