@import url('https://fonts.googleapis.com/css2?family=Changa:wght@500;600;700&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Changa', sans-serif;
}
a{
    text-decoration: none;
}
ul{
    padding-right: 0;
}
/* .bc{
    position: relative;
    background: url('../img/header.png');
    background-size: 100%;
    width: 100%;
    height: 100vh; 
    object-fit: cover;
    background-repeat: no-repeat;
    overflow-x: hidden;
} */
.bc img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.content{
    width: 100%;
    position: absolute;
    top: 0;
    padding: 86px 90px;
    font-family: 'Changa', sans-serif;
}
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #fff;
}
.first{
    width: 50%;
    display: block;
}
.first ul{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    color: #fff;
    font-size: 18px;
    padding-right: 0;
}
.first ul li a{
    color: #fff;
    cursor: pointer;
}
.first ul li:first-of-type{
    margin-inline-end: 55px;
}
.second{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    color: #fff;
}

.second p{
    margin-inline-start: 50px;
    margin-bottom: 0;
}
.second p a{
    text-decoration: none;
    color: #fff;
}

.mobile{
    display: none;
    width: 100%;
    position: relative;
}
.mobile .menu-bar{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.mobile .menu-bar li{
    width: 50%;
}
.bar{
    text-align: left;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.bar div{
    background: #fff;
    width: 40px;
    border-radius: 3px;
    height: 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.bar div span{
    display: block;
    background-color: #743C7F;
    width: 25px;
    margin-top: 2px;
    margin-bottom: 4px;
    height: 2px;
}
.mobile .sidebar{
    position: fixed;
    right: -100%;
    top: 0;
    height: 100%;
    width: 260px;
    padding: 50px 10px;
    z-index: 999999;
    background-image: linear-gradient(#fff, #DDBDDB);
    box-shadow:  0 5px 1px rgba(0, 0, 0, 0.1);
    transition: all .4s ease-in;
}
.mobile .sidebar.open{
    right: 0;
}
.sidebar-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    /* justify-content: flex-start; */
}
.list{
    margin-block-start: 50px;
    height: 100%;
}
.list ul{
    height: 100%;
}
.list ul li{
    margin-bottom: 25px;
    width: fit-content;
    border-bottom: 1px solid transparent;
    transition: all 0.5s ease-in-out;
}
.list ul li:hover{
    border-bottom: 1px solid #743C7F;
}
.list ul li a{
    color: #743C7F;
    margin-bottom: 10px;
}
.overlay{
    opacity: 0;
    position: fixed;
    top: 0;
    right: -100%;
    height: 1000vh;
    width: 200%;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.3);
    transition: all .4s ease-in;
}
.overlay.open{
    opacity: 1;
    right: 260px;
    pointer-events: auto;
}
.essential{
    margin-top: 70px;
    color: #fff;
}
.essential .headline{
    width: 100%;
}
.essential h2{
    font-weight: 700;
    font-size: 54px;
}
.essential h2 span{
    color: #DDBDDB;
}
.essential p{
    font-size: 24px;
    width: 550px;
    margin-top: 20px;
}
.essential .btn button{
    background: #743C7F;
    border-radius: 4px;
    outline: none;
    border: none;
    color: #fff;
    padding: 10px 27px;
}
.essential .carousel{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}
.essential .carousel img{
    width: 100%;
    object-fit: cover;
}
.essential .carousel .transparent{
    position: relative;
}
.essential .carousel .video{
    position: absolute;
    width: 90%;
    height: 90%;
    top: 14px;
    right: 18px;
    border-radius: 10px;
}
.final{
    margin-top: 20px;
}
.final .social ul{
    display: flex;
    align-items: flex-end;
}
.final .social ul li{
    margin-inline-end: 19px;
    cursor: pointer;
}
.about,.vision,.values{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.vision{
    background: #F5F5F5;
}
.values div{
    width: 50%;
}
.values .content-values{
    margin-top: 80px;
    margin-left: 80px;
}
.values .image-values{
    display: flex;
    align-items: center;
    justify-content: center;
}
.about .content-about, .vision .image-vision{
    width:60%;
}
.about .image-about, .vision .content-vision{
    width:40%;
}
.about .image-about img,.values .image-values img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content-about, .content-vision, .content-values{
    padding: 69px 89px;
}
.content-about h2, .content-vision h2, .values .content-values h2, .identity h2{
    font-size: 64px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 5px solid #743C7F;
    width: fit-content;
}
.content-about p, .content-vision p, .values .content-values p{
    font-size: 18px;
    font-weight: 500;
    margin-top: 35px;
}
.image-vision{
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-values img{
    padding: 90px;
}
.identity{
    text-align: center;
    padding: 40px 100px;
}
.identity .title{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;
}
.identity p{
    color: #303030;
    font-size:20px ;
    font-weight: 600;
    margin: 18px;
}
/* .identity img{
    width:100%;
    height: 100%;
    object-fit: cover;
} */
.identity .pics{
    /* display: grid;
    grid-template-columns: auto auto auto;
    gap: 10px; */
    display: flex;
    width: 100%;
    overflow: hidden;
    justify-content: center;
    flex-wrap: wrap;
}
.identity .pics .pic{
    margin-left: 23px;
    
}
.identity .pics .pic .pic-img{
    /* width: 100%; */
    overflow: hidden;
    border-radius: 30px;
}
.identity .pics .pic .pic-img img{
    transform: scale(1);
    cursor: pointer;
    transition: all 2.3s ease-in;
    overflow: hidden;
}
.identity .pics .pic img:hover{
    transform: scale(2);
}
.more-btn button{
    background: #743C7F;
    color: #fff;
    padding: 15px 53px;
    outline: none;
    border: none;
    box-shadow: 0px 10px 20px rgba(172, 87, 188, 0.3);
    border-radius: 15px;
    font-size: 10px;
    font-family: 'Changa', sans-serif;
    margin-top: 90px;
    margin-bottom: 40px;
}
.contact{
    text-align: center;
}
.contact h2{
    color: #333;
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 45px;
}
.bc-contact{
    position: relative;
}
.contact-content{
    position: absolute;
    top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-content .title{
    color: #F7D4F5;
    font-size: 32px;
}
.contact-content .data, .contact-content .data a{
    font-size: 32px;
    font-weight: 500;
    color: #fff;
}
.bc-contact img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.empty{
    height: 400px;
    z-index: 99;
    position: relative;
}
.footer{
    background: #333;
    color: #fff;
    padding-top: 200px;
}
.footer a{
    color: #fff;
    text-decoration: underline;
}
.img-vector{
    position: absolute;
    top: 150px;
    margin: auto 130px;
}
.img-vector img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.links{
    /* position: absolute; */
    /* bottom: 0; */
    /* margin-right: 30px; */
    /* padding-bottom: 144px; */
    padding-top: 150px;
    padding-bottom: 150px;
    display: flex;
    width: 100%;
    /* align-items: center; */
    justify-content: space-around;
}
.up,.social-empty, .logo-footer{
    cursor: pointer;
    flex: 1;
}
.up div{
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-empty ul{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.social-empty ul li{
    margin-inline-end: 15px;
}
.up div:last-of-type{
    margin-top: 20px;
}
.important-links,.contact-us{
    flex: 2;
}
.contact-us .title{
    font-weight: 600;
    font-size: 16px;
}
.contact-us .data{
    font-weight: 500;
    font-size: 14px;
}
.contact-us p a{
    cursor: pointer;
    text-decoration: none;
}


@media (max-width:1300px) {
    .contact-content .data, .contact-content .data a, .contact-content .title{
        font-size: 22px;
    }
}
@media (max-width:1236px) {
    .identity{
        text-align: center;
        padding: 40px 50px;
    }
    .first{
        width: 70%;
    }
}
@media (max-width:1116px) {
    .center{
        display: flex;
        flex-wrap: wrap;
    }
    .center div{
        width: 50%;
    }
    .contact-content .data, .contact-content .data a, .contact-content .title{
        font-size: 32px;
    }
    .empty{
        height: 200px;
    }
    .img-vector{
        top: 90px;
    }
}
@media (max-width:992px) {
    .mobile{
        display:block ;
    }
    .essential .carousel{
        display: none;
    }
    .essential p{
        width: auto;
    }
    .about,.vision, .values{
        display: block;
    }
    .first,.second{
        display: none;
    }
    .about .content-about, .about .image-about,.vision .image-vision, .vision .content-vision, .values div{
        width: 100%;
    }
    .image-values img{
        padding: 80px;
    }
    .identity{
        text-align: center;
        padding: 40px 50px;
    }
    .contact{
        text-align: center;
        /* margin-bottom: 150px; */
    }
    .img-vector{
        margin: 0px;
    }
    .links{
        padding-bottom: 100px;
        display: block;
        text-align: center;
    }
    .social-empty ul {
        justify-content: center;
        margin-top: 40px;
    }
    .up,.social-empty, .logo-footer{
        margin-bottom: 60px;
    }
}
@media (max-width:816px) {
    .center{
        display: flex;
        flex-wrap: wrap;
    }
    .center div{
        width: 50%;
    }
    .contact-content .data, .contact-content .data a, .contact-content .title{
        font-size: 22px;
    }
    .footer{
        padding-top: 80px;
    }
    .links{
        padding-top: 80px;
    }
}
@media (max-width:630px) {
    /* .contact-content{
        top: 10px;} */
    .center{
        display: flex;
        flex-wrap: wrap;
    }
    .center div{
        width: 50%;
        margin-bottom: 10px;
    }
    p{
        margin-bottom: 0;
    }
    .contact-content .data, .contact-content .data a, .contact-content .title{
        font-size: 18px;
    }
}
@media (max-width:555px) {
    .headline h2{
        font-size: 34px;
    }
    .essential p{
        font-size: 16px;
    }
}
@media (max-width:503px) {
    .vision .image-vision img{
        width: 100%;
    }
}
@media (max-width:500px) {
    .identity .pics .pic {
        margin-left: 0;
    }
}
@media (max-width:460px) {
    .content{
        padding: 46px 50px;;
    }
    .contact-content{
        top: 10px;}
    .center{
        display: flex;
        flex-wrap: wrap;
    }
    .center div{
        width: 50%;
        margin-bottom: 0px;
    }
    p{
        margin-bottom: 0;
    }
    .contact-content .data, .contact-content .data a, .contact-content .title{
        font-size: 18px;
    }
    .identity{
        padding: 0;
    }
    .identity .pics .pic{
        width: 80%;
    }
}
@media (max-width:399px) {
    .empty{
        height: 100px;
    }
    .img-vector{
        top: 10px;
    }
    .links{
        padding-top: 0px;
    }
}

@media (min-width:1600px) {
    .bc{
        background-size: 130%;
    }
}