/* Start Section About Us */
.about-us{
    background-image: url("../images/background-about.jpg");
    height: 900px;
    position: relative;
    top: -155px;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}
.about-us::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: -2;
}
.about-us .section{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 250px;
}
.about-us .section .head-1{
    font-size: 60px;
    font-weight: 600;
}
.about-us .section .details{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
}
.about-us .section .details .link{
    font-size: 20px;
    font-weight: 600;
}
.about-us .section .details .link a{
    color: white;
    font-weight: 600;
}
.about-us .section .details .description{
    font-size: 20px;
    color: #ffffff96;
    max-width: 500px;
    font-weight: 600;
}
@media screen and (max-width:768px) {
    .about-us{
        top: -170px;
    }
    .about-us .section .head-1{
        font-size: 30px;
    }
    .about-us .section .details .link , .about-us .section .details .description{
        font-size: 18px;
    }
}
@media screen and (max-width:568px) {
    .about-us{
        top: -222px;
        height: 1000px;
        padding-top:260px ;
    }
}
/* End Section About Us */

/* Start Section About */
.about{
    position: relative;
    width: 100%;
    background: #F8F8F8;
    z-index: 1;
    margin-top: -250px;
    border-top-right-radius: 120px;
    border-top-left-radius: 120px;
    padding: 100px 0;
}
.about::after{
    content : "" ;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-image: url("../images/background-buildings.jpg");
    background-size: cover;
    z-index: -1;
    opacity: 0.05;
}
.about .section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 85px;
    gap: 20px;
}
.about .section .description{
    display: flex;
    flex-direction: column;
    flex-basis: 63%;
}
.about .section .description small{
    color: var(--primaryColor);
    font-size: 18px;
    margin-bottom: 30px;
}
.about .section .description .head-1{
    font-size: 60px;
    font-weight: 600;
    line-height: 80px;
    margin-bottom: 20px;
}
.about .section .description .parag{
    font-size: 24px;
    color: var(--secondColor);
    line-height: 34px;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}
.about .section .description button{
    width: fit-content;
}
.about .section .image{
    flex-basis: 400px;
    background-color: black;
}
.about .section .image img{
    width: 100%;
    height: 420px;
}
@media screen and (max-width:1200px) {
    .about .section{
        padding-left: 50px;
    }
    .about .section .description{
        flex-basis: 54%;
    }
}
@media screen and (max-width:992px) {
    .about .section{
        justify-content: center;
        gap: 50px;
        padding-left: 0;
    }
    .about .section .description {
        flex-basis: 70%;
    }
    .about .section .image{
        flex-basis: 70%;
    }
}
@media screen and (max-width:768px) {
    .about{
        border-top-right-radius: 50px;
        border-top-left-radius: 50px;
    }
    .about .section .description {
        flex-basis: 80%;
    }
    .about .section .description .head-1{
        font-size: 35px;
        line-height: 45px;
    }
    .about .section .description .parag{
        font-size: 18px;
        line-height: 26px;
    }
    .about .section .image{
        flex-basis: 80%;
    }
}
@media screen and (max-width:568px) {
    .about{
        margin-top: -310px;
    }
    .about .section .description {
        flex-basis: 90%;
    }
    .about .section .image{
        flex-basis: 90%;
    }
}
/* End Section About */

/* Start Section Our */
.our{
    background-color: #202020;
    padding: 60px 0 200px 0;
    position: relative;
}
.our .line{
    width: 5px;
    position: absolute;
    background-color: white;
    height: 300px;
}
.our .line-1{
    right: 112px;
    top: 403px;
}
.our .line-2{
    right: 78px;
    top: 380px;
}
.our .line-3{
    right: 41px;
    top: 360px;
}
.our .details{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: white;
    margin-top: 70px;
    position: relative;
}
.our .details .image-vision{
    flex-basis: 400px;
}
.our .details .image-vision img{
    width: 100%;
}
.our .details .ours {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-basis: calc((100% - 400px) - 100px);
}
.our .details .ours-mission{
    flex-basis: calc((100% - 200px) - 100px);
}
.our .details .ours .head-1{
    font-weight: 600;
    font-size: 50px;
}
.our .details .ours .parag{
    font-size: 28px;
    line-height: 35px;
    color:#D4D4D4;
;
}
.our .details .image-mission img{
    position: absolute;
    right: -147px;
    top: 125px;
}

@media screen and (max-width:1200px) {
    .our .details .image-mission img{
        top: 90px;
        right: -170px;
    }
    .our .line{
        display: none;
    }
}
@media screen and (max-width:992px) {
    .our .details{
        justify-content: center;
        gap: 20px;
    }
    .our .details .ours {
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex-basis: 70%;
    }
    .our .details .image-mission img{
        width: 1391px;
        right: -254px;
        top: 230px;
    }
}    
@media screen and (max-width:768px) {
    .our .details .ours{
        flex-basis: 90%;
    }
    .our .details .ours .head-1{
        font-size: 30px;
    }
    .our .details .ours .parag{
        font-size: 18px;
        line-height: 22px;
    }
    .our .details .image-mission img{
        right: -308px;
        top: 59px;
    }
}
@media screen and (max-width:568px) {
    .our{
        padding: 60px 0;
    }
    .our .details .ours{
        flex-basis: 100%;
    }
    .our .details .image-mission img{
        display: none;
    }
}

/* End Section Our */

/* Start Section Our Core */
.our-core{
    position: relative;
    z-index: 1;
    background-color: white;
    padding: 60px 0;
}
.our-core header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.our-core header .head-1{
    font-size: 50px;
    font-weight: 600;
}
.our-core header div{
    display: flex;
    gap: 50px;
}
.our-core .boxes{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 40px;
    margin-top: 40px;
}
.our-core .boxes .box{
    padding: 30px 30px 50px 30px;
    display: flex;
    flex-direction: column;
    height: 454px ;
    color: white;
    border-radius: 32px;
    flex-basis: 32%;
}
.our-core .boxes .box-1{
    background-color: #1B1F12;
    justify-content: space-between;
}
.our-core .boxes .box-1 small{
    color: var(--primaryColor);
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px solid white;
}
.our-core .boxes .box-1 .details{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.our-core .boxes .box-1 .details h1{
    font-weight: 600;
}
.our-core .boxes .box-1 .details p{
    font-size: 16px;
    color: #D4D4D4;
    line-height: 22px;
}
.our-core .boxes .box-2{
    background-color: var(--primaryColor);
}
.our-core .boxes .box-2 small{
    color: black;
    padding-bottom: 20px;
    font-weight: 600;
    border-bottom: 1px solid black;
}
.our-core .boxes .box-2 .details{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.our-core .boxes .box-2 .details h1{
    font-weight: 600;
    color: black;
}
.our-core .boxes .box-2 .details p{
    font-size: 16px;
    color: black;
    line-height: 22px;
}
.our-core .boxes .box-2 img{
    width: 195px;
    height: 146px ;
    margin-top: -1px;
}
.our-core .boxes .box-3{
    background-image: url("../images/background-box-3.jpg");
    background-size: cover;
    position: relative;
    justify-content: space-between;
    z-index: 1;
}
.our-core .boxes .box-3::after{
    content: "";
    background-color: black;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    border-radius: 32px;
    z-index: -1;
}
.our-core .boxes .box-3 small{
    color: white;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px solid white;
}
.our-core .boxes .box-3 .details{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.our-core .boxes .box-3 .details h1{
    font-weight: 600;
}
.our-core .boxes .box-3 .details p{
    font-size: 16px;
    color: #D4D4D4;
    line-height: 22px;
}

@media screen and (max-width:1200px) {
    .our-core .boxes .box-2 img{
        width: 125px;
    }
}

@media screen and (max-width:992px) {
    .our-core .boxes{
        justify-content: center;
        column-gap: 40px;
    }
    .our-core .boxes .box{
        flex-basis: 42%;
    }
}
@media screen and (max-width:768px) {
    .our-core .boxes .box{
        flex-basis: 70%;
    }
    .our-core .boxes .box-2 img{
        width: 188px;
    }
}

@media screen and (max-width:568px) {
    .our-core .boxes .box{
        flex-basis: 90%;
    }
    .our-core .boxes .box-2 img{
        width: 125px;
    }
}
/* End Section Our Core */

/* Start Section Feature */
.feature{
    height: 670px;
    background-image: url("../images/background-feature.jpg");
    background-size: cover;
    position: relative;
    z-index: 1;
}
.feature::after{
    content: "";
    background-color: black;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}
.feature .section{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}
.feature .section .head-all{
    max-width: 1000px;
}
.feature .section span{
    font-weight: 600;
    color: var(--primaryColor);
}
.feature .section .parag-all{
    color: white;
    margin-bottom: 40px;
    font-size: 24px;
    letter-spacing: 1px;
    max-width: 1000px;
    line-height: 32px;
}
@media screen and (max-width:768px) {
    .feature .section .parag-all{
        font-size: 18px;
        line-height: 25px;
    }
}

/* End Section Feature */

/* Start Section Social */
.social-media{
    padding: 60px 0;
}
.social-media .section{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}
.social-media .section .details{
    display: flex;
    gap: 5px;
}
.social-media .section .details img{
    width: 32px;
    height: 32px;
}
.social-media .section .details .data p{
    font-size: 20px;
    font-weight: 600;
}
.social-media .section .details .data span{
    color: var(--secondColor);
    font-size: 14px;
}
/* End Section Social */