/* poppins */
@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;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



@font-face {
    font-family: 'heading-font';
    src: url('../fonts/Fontspring-DEMO-allroundgothic-book.otf') format('opentype');

    font-family: 'apple-font';
    src: url('../fonts/sf-pro-display-cufonfonts/SFPRODISPLAYREGULAR.OTF');

    /* font-family: 'apple-font-bold';
    src:url('../fonts/sf-pro-display-cufonfonts/SFPRODISPLAYBOLD.OTF') */

}

@font-face {
    font-family: 'apple-font-bold';
    src: url('../fonts/sf-pro-display-cufonfonts/SFPRODISPLAYBOLD.OTF')
}

* {
    /* cursor: none; */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'apple-font';
    /* font-family: 'heading-font'; */
}




:root {
    --white-col: #ffff;
    --black-col: #000000;
    --hash-col: #86868b;
}

/* NAVBAR */

.logo {
    max-width: 100px;
}

nav {
    color: var(--white-col);
    background-color: var(--black-col);
}

nav .navbar-toggler:focus {
    box-shadow: none;
    border: none;
}

nav .navbar-brand {
    color: var(--white-col);
}

nav .navbar-toggler{
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border: none;
}

.social-nav-box{
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.social-nav-box div:first-child{
    padding: 0 10px 0 0;
}

.social-nav-box i{
    font-size: 26px;
    padding: 0 0 0 20px;
}
.social-nav-box a{
    text-decoration: none;
    color: #fff;
}

.toggle {
    max-width: 30px;
    margin-left: 10px;

}

.toggle-colse {
    max-width: 18px;

}

.primary-btn {
    background-color: var(--white-col);
    color: var(--black-col);
}

.primary-btn:hover {
    border: 1px solid var(--white-col);
    color: var(--white-col);
}

.heading-box {
    padding: 20px 0 60px 0;
}


.offcanvas.offcanvas-end {
    width: 100%;
    background-color: var(--black-col);
}

.offcanvas-body {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;

}



.nav-close-btn {
    border: none;
    background-color: transparent;
    /* padding: 30px 59px; */
}

.offcanvas-body .nav-link.active {
    color: var(--white-col);
}

.offcanvas-body .nav-link {
    color: #7e7e7e;
    font-size: 50px;
}



.offcanvas-header {
    justify-content: end !important;
}



.offcanvas-body ul:hover li a {
    color: #ffffff2a;
}

.offcanvas-body ul li:hover a {
    color: var(--white-col);
}

.offcanvas-body ul li a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4em;
    color: rgba(0, 0, 0, .1);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 500px;
    transition: letter-spacing 0.5s, left 0.5s;
}

.offcanvas-body ul li a:hover:before {
    padding: 20px 10px 20px 10px;
    content: attr(data-text);
    opacity: 1;
    left: 50%;
    letter-spacing: 10px;
    width: 5000px;
    height: 5000px;
    color: rgba(255, 255, 255, 0.613);
}

.offcanvas-body ul li:nth-child(6n+1) a:before {
    background: #000000;
}

.offcanvas-body ul li:nth-child(6n+2) a:before {
    background: #000000;
}

.offcanvas-body ul li:nth-child(6n+3) a:before {
    background: #000000;
}

.offcanvas-body ul li:nth-child(6n+4) a:before {
    background: #000000;
}

.offcanvas-body ul li:nth-child(6n+5) a:before {
    background: #000000;
}

.offcanvas-body ul li:nth-child(6n+6) a:before {
    background: #000000;
}


@media only screen and (max-width:999px){
    .offcanvas-body ul li a:hover:before {
        opacity: 0;
    }
}

/* MOUSE POINTER */

.cursor {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid rgb(255, 255, 255);
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 1111111;
}

.cursor2 {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: rgb(132, 132, 132);
    opacity: .3;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 1111111;
}

.hover {
    background-color: red;
    opacity: 0.5;
}

.cursorinnerhover {
    width: 50px;
    height: 50px;
    opacity: .5;
}

/* BANNER */

section {
    overflow: hidden;
}

.main-banner {
    padding: 0 10px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.home-page {
    height: 100vh;
    /* background-image: url('../images/home/banner.jpg'); */
    background-color: var(--black-col);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 110% 110%;
    position: relative;

}






.main-banner h1 {
    background: linear-gradient(to top, #ffffff06, #ffffff);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 7em;
    font-family: 'apple-font-bold';
    margin: auto;
}

.home-page .video-box1 {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%,50%);
}

.home-page .video-box1 video {
    object-fit: cover;
    /* width: 100vw; */
    overflow: hidden;
    height: 53vh;
    border-radius: 25px;
}



/* TEXT ONLY */
.text-olny-section {
    height: 100vh;
    background-color: var(--black-col);
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-olny-section h2 {
    width: 70%;
    margin: auto;
    color: var(--hash-col);

    font-family: 'apple-font-bold';
    font-size: 50px;
    line-height: 1.0714285714;
    font-weight: 600;
    letter-spacing: -0.005em;
}

.text-olny-section h2 .char {
    font-family: 'apple-font';
    font-size: 70px;
}

.text-olny-section h2 span {
    color: var(--white-col);
    font-family: 'apple-font-bold';
    font-size: 50px;
    line-height: 1.0714285714;
    font-weight: 600;
    letter-spacing: -0.005em;
}

/*  WORK SECTION */

.work{
    background-color: var(--black-col);
}

.work .swiper-container{
    /* margin-right: 0; */
}

.work-section {
    /* height: 100vh; */
    background-color: var(--black-col);

    display: flex;
    justify-content: center;
    align-items: center;
}


.work-section .swiper-wrapper {
    display: flex;
    align-items: center;
    /* padding: 0 0 78px 0; */
}


.work-section .work-card-box {
    background-color: gold;
}




.work-section .swiper {
    width: 100%;
    height: 100%;
}

.work-section .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
}

.work-section .swiper-slide .img-box {
    height: 100%;
    width: 100%;
}

.work-section .swiper-slide .img-box img {
    /* height: 50vh; */
    width: 100%;
    border-radius: 25px;
    transition: all 200ms linear;
    object-fit: cover;
    transform: scale(0.9);
}

.work-section .swiper-slide-active .img-box img {
    /* height: 55vh; */
    border-radius: 25px;
    transform: scale(1);

}


/* .work-section .swiper-slide:nth-child(2n) {
    width: 40%;
} */


.work-section .heading-swiper {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.work-section .heading-swiper h6 {
    font-size: 22px;

    margin: 0;
}

.work-section .heading-swiper h6 a {
    text-decoration: none;
    color: #fff;
}

.work-section .heading-swiper i {
    font-size: 23px;
    color: #fff;
}




.work-section .work-card-box {
    background-color: gold;
}


.work-section .swiper {
    width: 100%;
    height: 100%;
    padding: 0px 0 23px;
}

.work-section .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.work-section .swiper-slide .content-box {
    position: absolute;
    left: 15px;
    z-index: 11;
    bottom: 15px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
}


.swiper-slide.swiper-slide-active .content-box {
    visibility: visible;
    opacity: 1;
}


.work-section .swiper-slide .img-box {
    position: relative;
}



/* .work-section .swiper-slide .img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    border-radius: 25px;
} */



.work-section .swiper-slide .img-box a {
    border: none;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 100%;
    text-decoration: none;
    color: var(--black-col);
    background-color: var(--white-col);
}
.work-section .swiper-slide .img-box a i{
    font-size: 30px;
}



/* .work-section .swiper-slide .img-box a p {
    padding: 0 0 0 8px;
} */




/* .work-section .swiper-slide .img-box {
    height: 100%;
    width: 100%;
} */

/* .work-section .swiper-slide .img-box img {
    height: 50vh;
    width: 100%;
    border-radius: 25px;
    transition: height 0.3s ease;
    object-fit: cover;


}

.work-section .swiper-slide-active .img-box img {
    height: 55vh;
    border-radius: 25px;

} */


/* .work-section .swiper-slide:nth-child(2n) {
    width: 40%;
} */


.work-section .heading-swiper {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.work-section .heading-swiper h6 {
    font-size: 22px;

    margin: 0;
}

.work-section .heading-swiper h6 a {
    text-decoration: none;
    color: #fff;
}

.work-section .heading-swiper i {
    font-size: 23px;
    color: #fff;
}



/* VIDEO CARDS */

.video-cards-section {
    background-color: #000000;
    /* padding: 60px 60px 0 60px; */
}

.video-cards-section .card {
    border: none;
    border-radius: 0;
}



.video-cards-section .card {
    position: relative;
    /* width: 350px; */
    background: radial-gradient(#111 50%, #000 100%);
    overflow: hidden;
    cursor: pointer;
    /* padding: 30px; */
    /* border: 0.1px solid #e5e5e51f; */
}

.video-cards-section .card-img-box {
    max-width: 100%;
    display: block;
}

.video-cards-section .card .card-img-box {
    transition: 0.3s ease-out;
}

.video-cards-section .card:hover .card-img-box {
    /* opacity: 0.2; */

    opacity: 0.09;
}


.video-cards-section .work-row {
    transition: all ease-in-out 0.3s;
}

.video-cards-section .work-row:active {
    transition: all ease-in-out 0.6s;
}

.video-cards-section ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 30px 0;

}

.video-cards-section ul .nav-item .nav-link {
    color: var(--hash-col);
    font-size: 20px;
    position: relative;
    transition: .3s ease;
}

.video-cards-section ul .nav-item .nav-link.active {
    background-color: var(--black-col);
    /* border-bottom: 1px solid var(--white-col); */
    border-radius: 0;
    color: var(--white-col);
    font-size: 20px;
}

.video-cards-section ul .nav-item .nav-link:after {
    position: absolute;
    content: '';
    width: 0%;
    height: 2px;
    background-color: #fff;
    left: 0;
    bottom: 0;

    transition-property: width;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
}


.video-cards-section ul .nav-item .nav-link.active:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;


}



.overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    /* padding: 15px; */
    text-align: center;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;
}


.play-button {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 5px;
    transform: translateY(30px);
    opacity: 0;
    transition: all .1s ease-out 0.1s;
    max-width: 100px;
}

.video-cards-section .card:hover .overlay .play-button {
    opacity: 1;
    transform: translateY(0);
}


.video-cards-section .col {
    padding: 0;
}

.video-cards-section .button-box {
    margin-top: 45px;
}





/* VIDEO SECTION */

.video-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-reveal {
    line-height: 0;
    position: relative;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    /* height: 100vh; */
    background-color: var(--black-col);
}

.grow {
    scale: 0;
    width: 100%;
}

/* WHYCHOOSE */



.whychoose {
    background-color: #000000;
    padding: 50px 0;

}

.whychoose img{
    max-width: 70px;
}



.whychoose .whychoose-box {
    /* background-color: #101010; */
    border-radius: 10px;
    padding: 10px 5px;
}

.whychoose .whychoose-box h2 {
    font-size: 28px;
    color: #bababa;
    font-family: 'apple-font';
    font-weight: 600;
    padding: 40px 0 0 0;
}

.whychoose .whychoose-box p {
    font-size: 20px;
    line-height: 28px;
    color: #bababa;
    font-family: 'apple-font';
    font-weight: 100;
    padding: 10px 0;
    line-height: 1;
}

.whychoose .whychoose-box a {
    text-decoration: none;
    color: #5cb1ff;
    font-size: 18px;
}




.whychoose .row {
    /* gap: 20px; */
    display: flex;
    justify-content: center;
}

.whychoose .col-lg-6 {
    padding: 0;
    width: 36% !important;
}



/* .whychoose {
    background-color: var(--black-col);
    padding: 100px 0 0 0;
}

.whychoose h2:first-child {
    color: var(--white-col);
    text-transform: uppercase;
    font-family: 'apple-font';
}

.whychoose h2:last-child {
    font-size: 25px;
    color: var(--hash-col);
    font-family: 'apple-font';
}

.whychoose .whychoose-card h4 {
    color: var(--white-col);
}

.whychoose .whychoose-card p {
    color: var(--hash-col);
} */

/* TESTIMONIAL */

.testimonial {
    background-color: var(--black-col);
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-heading-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial .row {
    background-color: var(--black-col);
    border-radius: 17px;
    /* border: 1px solid #2a2a2a; */
    border: none;
    box-shadow: rgb(255 255 255 / 19%) 0px 0px 5px 0px, rgb(255 255 255 / 12%) 0px 0px 1px 0px;
}

.heading-box h2 {
    font-family: 'apple-font';
    color: #86868b;
    font-family: 'apple-font-bold';
    font-size: 54px;

    line-height: 1.0714285714;
    font-weight: 600;
    letter-spacing: -0.005em;
}

.gradient-text {
    background: linear-gradient(to right, #ff7e5f, #ee31ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-fill-color: transparent;
    font-family: 'apple-font-bold';
}


.gradient-text2 {
    background: linear-gradient(to right, #5fe2ff, #4b0aed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-fill-color: transparent;
    font-family: 'apple-font-bold';
}



.gradient-text3 {
    background: linear-gradient(to right, #ef7429, #5f4ada);
    -webkit-background-clip: text;
    background-clip: text !important;
    color: transparent !important;
    text-fill-color: transparent !important;
    font-family: 'apple-font-bold' !important;
}

.gradient-text4 {
    background: linear-gradient(to right, #ffc107, #87ed0a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-fill-color: transparent;
    font-family: 'apple-font-bold';
}



.testimonial-card-box {
    margin: 0 30px;
}

.testimonial-card-box .card {
    border: none;
    background-color: var(--black-col);
    padding: 40px;

    position: relative;
}

.testimonial-card-box .content {
    font-size: 20px;
    color: #bababa;
    font-family: 'apple-font';
    /* font-weight: 900; */
    padding: 70px 0;
    line-height: 1;
}

.testimonial-card-box .person {
    max-width: 50px;
    border-radius: 5px;
}

.testimonial-card-box .designation-box {
    padding: 0 0 0 20px;
}



.testimonial-card-box h5 {
    color: var(--white-col);
    font-family: 'apple-font';
    margin: 0;
}

.testimonial-card-box .designation {
    color: var(--white-col);
    margin: 0;
}

.testimonial-card-box .card .blur-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 560px;
    transform: translate(-50%, -50%);
}

.testimonial-card-box .blur-shape {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.testimonial-card-box:hover .blur-shape {
    opacity: 1;
}

.testimonial .testimonial-buttons {
    display: flex;
    justify-content: end;
    padding: 0 0 10px 0;
}

.testimonial .testimonial-buttons button:first-child {
    margin: 0 10px 0 0;
}

.testimonial .testimonial-buttons button {
    background-color: #000;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 100%;
    padding: 5px 13px 5px 13px
}





/* .testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
    padding: 35px 0 35px 0;
}

.testimonial-carousel .owl-nav .test-prev {
    padding: 5px 10px;
    background-color: var(--black-col);
    color: var(--white-col);
    border: 1px solid var(--white-col);
    border-radius: 5px;
    margin: 0 5px;
    font-size: 18px;
}

.testimonial-carousel .owl-nav .test-prev:hover {
    background-color: var(--white-col);
    color: var(--black-col);
    border: 1px solid var(--white-col);
}

.testimonial-carousel .owl-nav .test-next {
    padding: 5px 10px;
    background-color: var(--black-col);
    color: var(--white-col);
    border: 1px solid var(--white-col);
    border-radius: 5px;
    margin: 0 5px;
    font-size: 18px;
}

.testimonial-carousel .owl-nav .test-next:hover {
    background-color: var(--white-col);
    color: var(--black-col);
    border: 1px solid var(--white-col);
} */

.testimonial video {
    object-fit: cover;
    /* width: 100vw; */
    overflow: hidden;
    height: 50vh;
    border-radius: 25px;
}

.testimonial .col-lg-6:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
}




/* Client */

.clients {
    background-color: var(--black-col);
    padding: 20px 0 25px 0;
}



.clients .row .col{
    border: 1px solid #ffffff2b;
    text-align: center;
    margin: 0;
}

.clients .row .col img{
    width: 140px;
    /* filter: grayscale(1); */
}

.clients .row .col img:hover{
    filter: grayscale(0);
}




/* CONTACT */

.contact-section {
    padding: 50px 10px 50px 10px;
    background-color: var(--black-col);
}


.contact-section .container {
    background-color: #0d0d0d;
    padding: 40px 60px;
    border-radius: 10px;

}

.contact-section .contact-head{
    padding: 20px 0 60px 0;
}

.contact-section .contact-head h2 {
    color: #fff;
    font-size: 60px;
    padding: 0 0 15px 0;
    font-family: 'apple-font-bold';
}

.contact-section button {
    width: 100%;
    border: none;
    padding: 10px 0;
    background: #5fe2ff;
    background: -webkit-linear-gradient(to right, #5fe2ff, #4b0aed);
    background: linear-gradient(to right, #5fe2ff, #4b0aed);
    border-radius: 10px;
    color: var(--white-col);
    margin: 20px 0 0 0;
    transition: background 0.3s ease;

}



.contact-section form input {
    width: 100%;
    border: none;
    border-radius: 5px;
    padding: 12px;
    background-color: #3b3b3b;
    color: var(--white-col);
}

.contact-section form input::placeholder {
    color: #afafaf;
}

.contact-section form textarea {
    width: 100%;
    border: none;
    border-radius: 5px;
    background-color: #3b3b3b;
    color: var(--white-col);
    padding: 12px;
}

.contact-section form textarea::placeholder {
    color: #afafaf;
}

.contact-section .conditions p {
    font-size: 15px;
    color: #8a8989;
    padding: 10px 0 0 0;
}

.contact-section .info-box {
    padding: 30px 0 0 0;
}


.contact-section .info-box h4 {
    color: white;
    font-family: 'apple-font-bold';
}

.contact-section .info-box i {
    color: var(--hash-col);
}

.contact-section .info-box p {
    color: var(--hash-col);
    font-size: 18px;
    margin: 0;
}

.contact-section .info-box a {
    text-decoration: none;
    color: var(--hash-col);
    /* font-size: 18px; */
    margin: 0;
}





/* FOOTER */

footer {
    background-color: var(--black-col);
    padding: 60px 0 0 0;
}

footer .footer-logo{
    max-width: 200px;
}

footer .links{
    padding: 25px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-col);
}
footer .links p{
    margin: 0;
    padding: 0 10px;
}

footer .links p a{
    text-decoration: none;
    color: var(--white-col);
    font-size: 16px;
}

footer .address{
    padding: 10px 0 25px 0;
    width: 50%;
    margin: auto;
    text-align: center;
    color: #7a7a7a;
}

footer .address p{
    padding: 0;
    margin: 0;
}

footer .footer-social-icon{
    padding: 10px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer-social-icon a{
    padding: 0 10px;
}

footer .footer-social-icon img{
    max-width: 18px;
    filter: brightness(0.5);
}

footer .copy-right{
    border-top: 1px solid #5c5c5c;
    text-align: center;
}

footer .copy-right p{
    padding: 10px 0;
    color: #fff;
    margin: 0;
    font-size: 14px;
}

footer .social-partner{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer .social-partner h5{
    color: var(--white-col);
}

footer .social-partner .logo{
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .social-partner .logo img{
    max-height: 65px;
    width: auto;
    margin: 0 10px;
}



/* 
footer .row {
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
}

footer .footer-about {
    color: #b2b2b2;
}

footer .footer-about p{
    font-size: 18px;
}

footer .footer-head {
    padding: 0 0 12px 0;
    font-weight: 700;
    color: var(--white-col);
    font-family: 'apple-font';
    font-size: 30px;
}

footer ul {
    list-style: none;
    padding: 0;
}


footer ul li a {
    text-decoration: none;
    color: #bcbcbc;
    font-size: 18px;
}

footer .social-col {
    border: 1px solid #bcbcbc;
    border-radius: 10px;
    padding: 10px;
}


footer .social-col img {
    max-width: 25px;
    margin: 0 10px 0 0;
}

footer .social-col ul li a {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 0 0 10px 0;
}

footer .social-col p {
    padding: 0;
    margin: 0;
}

footer .copyright {
    background-color: var(--black-col);
    margin: 20px 0 0 0;
    display: flex;
    justify-content: center;
    padding: 15px;
}

footer .copyright p {
    color: var(--white-col);
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    font-weight: 200;
    font-size: 16px;

} */




/* ABOUT PAGE */

.about-page-header{
    /* height: 100vh; */
    /* background-image: url(../images/home/banner.jpg); */
    background-color: var(--black-col);
    /* background-position: center;
    background-repeat: no-repeat;
    background-size: 110% 110%;
    position: relative; */
}

.about-page {
    background-color: var(--black-col);
    /* height: 85vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

}





.about-page video {
    object-fit: cover;
    /* width: 100vw; */
    overflow: hidden;
    height: 80vh;
    border-radius: 25px;
}

.about-page .content {
    position: absolute;
    top: 50%;
    left: 46%;
    transform: translate(-50%, -50%);
}

.about-page .content h1 {
    font-size: 70px;
    color: #86868b;
    font-family: 'apple-font-bold';
}

.about-page .content h1 span {
    display: inline;
    font-family: 'apple-font-bold';
}

.about-us {
    background-color: var(--black-col);
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us .mandala {
    position: absolute;
    top: 50%;
    right: -50%;
    transform: translate(-61%, -50%);
    opacity: 0.4;

}


.about-us .content {
    width: 50%;
    margin: auto;
}

.about-us P {
    color: #e7e7e7;
}

.about-page .video-box {
    display: inline-block;
}


/* PROJECT PAGE */

.project-page {
    background-image: url('../images/projects/banner.png');
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;

}

.project-page .project-banner {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.project-page .project-banner .video {
    object-fit: cover;
    /* width: 100vw; */
    overflow: hidden;
    height: 50vh;
    border-radius: 25px;
}

/* .project-page .project-banner .video-box{
    border-right: 1px solid var(--white-col);
    border-bottom: 1px solid var(--white-col);
    border-radius: 0 0 25px 0;
    padding: 20px;
} */

.project-page .project-banner h1 {
    position: absolute;
    color: #fff;
    font-size: 70px;
    top: 50%;
    transform: translate(0, -50%);
    font-family: 'apple-font';
}

.project-page .project-banner h1 span {
    font-family: 'apple-font-bold';
}


/* Contact Page */

.contact-page {
    height: 90vh;
    background-color: var(--black-col);
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

.contact-page .chroma1{
    position: absolute;
    right: 0;
    bottom: 0;
    animation: rotateZ 10s linear infinite;
    max-width: 600px;
}

@keyframes rotateZ {
    from {
      transform: rotateZ(0deg);
    }
    to {
      transform: rotateZ(360deg);
    }
  }
.contact-page h1 {
    color: #86868b;
    font-family: 'apple-font-bold';
    font-size: 54px;
    line-height: 1.0714285714;
    font-weight: 600;
    letter-spacing: -0.005em;
}

.contact-page div{
    width: 50%;
    margin: 0;
}

.contact-page div p{
    color: var(--hash-col);
}

.contact-details {
    background-color: var(--black-col);
}

.contact-info{
    padding: 50px 10px 50px 10px;
}

.contact-info .address i{
    color: var(--black-col);
    background-color: var(--white-col);
    padding: 7px 11px;
    font-size: 25px;
    border-radius: 7px;
}

.contact-info .address h5{
    color: var(--white-col);
}

.contact-info .address a{
    text-decoration: none;
    color: #bababa;
}

.contact-info .address p{
    color: #bababa;
}

.contact-info .address .content-box{
    padding: 0 0 0 10px;
}




.contact-details iframe{
    filter: grayscale(1);
    width: 100%;
}

.contact-details iframe:hover{
    filter: grayscale(0);
}

/* CLIENT PAGE */

.client-page{
    background-color: var(--black-col);
    
}


.client-page-banner{
    height: 88vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-page-banner video{
    object-fit: cover;
    /* width: 100vw; */
    overflow: hidden;
    height: 50vh;
    border-radius: 25px
}

.client-page-banner .client-video-box{
    position: relative;
    text-align: center;
}

/* .client-page  .content{
    position: absolute;
    right: -34%;
    top: -20%;

} */



.client-page  .content h1{
    text-align: center;
    font-size: 70px;
    color: #86868b;
    font-family: 'apple-font-bold';
    /* text-shadow: 2px 7px 5px rgba(0,0,0,0.3), 
    0px -4px 10px rgba(255,255,255,0.3); */
}


.map-box{
    display: flex;
    justify-content: center;
    align-items: center;
}




/* OFFICIALS */

.officials {
    background-color: var(--black-col);
    padding: 50px 0;
}

.officials .card {
    border: none;
    border-radius: 30px;
}

.officials .card img {
    border-radius: 30px;
}

.officials .card {
    text-align: center;
    background-color: var(--black-col);
    padding: 0 40px;
}

.officials .card .card-title {
    color: var(--white-col);
    font-size: 25;
    margin: 0;
}

.officials .card .card-text {
    color: var(--hash-col);
    font-size: 18px;
}

/* Action Button */

.action-btn{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 111;
    display: flex;
    flex-direction: column;
}

.action-btn a:first-child{
    padding: 10px 0;
}

.action-btn img{
    max-width: 43px;
}

/* Award Section */


.award-section{
    padding: 50px 0;
    background-color: var(--black-col);
}

.award-section .heading-box{
    padding: 20px 0 0px 0;
}

/* award contetnt */

.award-content .col{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.award-content .col img{
    width: 240px;
}
.footer-logos{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}


@media only screen and (max-width:767px) { 
    .footer-logos{
        flex-direction: column;
    }
    .footer-social-icon{
        order: 3;
    }
    .footer-logos{
        padding: 30px 10px;
    }
    .oneness-logo{
        width: 160px;
    }
    .award-content .col img {
        width: 150px;
    }
}


/* loader */

/* HTML: <div class="loader"></div> */

.loader-div{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: 1;
    background-color: rgb(0, 0, 0);
    z-index: 99;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1111;
}

/* HTML: <div class="loader"></div> */
.loader {
    display: inline-flex;
    gap: 5px;
  }
  .loader:before,
  .loader:after {
    content: "";
    width: 25px;
    aspect-ratio: 1;
    box-shadow: 0 0 0 3px inset #fff;
    animation: l4 1.5s infinite;
  }
  .loader:after {
    --s: -1;
    animation-delay: 0.75s
  }
  @keyframes l4 {
    0%     {transform:scaleX(var(--s,1)) translate(0) rotate(0)}
    16.67% {transform:scaleX(var(--s,1)) translate(-50%) rotate(0)}
    33.33% {transform:scaleX(var(--s,1)) translate(-50%) rotate(90deg)}
    50%,
    100%   {transform:scaleX(var(--s,1)) translate(0) rotate(90deg)}
  }

  .mentegoz{
    text-decoration: none;
    color: var(--black-col);
  }