:root {
    --light-color: #ffffff;
    --light-theme-color: #ffffff;
}

.banner-bg {
    background-color: #313435;
    background-image: url(../images/banner-bg-2.png);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    position: relative;
}

    .banner-bg::before {
        content: "";
        width: 380px;
        height: 455px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: #ffffff08;
        clip-path: polygon(0 0, 100% 31%, 100% 100%, 0 100%, 0% 50%);
    }

    .banner-bg::after {
        content: "";
        width: 180px;
        height: 240px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: #fcfcfc0a;
        clip-path: polygon(0 0, 100% 31%, 100% 100%, 0 100%, 0% 50%);
    }

.banner-box {
    height: calc(100vh - 90px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .banner-box h2 {
        font-family: var(--Thin);
        font-size: 20px;
        color: var(--light-theme-color);
    }

    .banner-box h1 {
        font-family: var(--Thin);
        font-size: 60px;
        margin-top: 34px;
        color: var(--light-color);
    }

    .banner-box p {
        font-family: var(--Thin);
        font-size: 20px;
        margin-top: 20px;
        color: var(--light-theme-color);
    }

    .banner-box a {
        text-decoration: none;
        background-color: #70C8FF;
        color: #313435;
        padding: 15px 25px;
        display: flex;
        align-items: center;
        font-size: 16px;
        gap: 10px;
        font-family: var(--Regular);
        transition: 300ms linear;
        position: relative;
        overflow: hidden;
        z-index: 1;
        width: fit-content;
    }

        .banner-box a::before {
            content: "";
            width: 0%;
            height: 100%;
            position: absolute;
            top: 0;
            right: 0%;
            background-color: #FEC571E5;
            z-index: -1;
            transition: 200ms linear;
        }

        .banner-box a:hover::before {
            left: 0;
            width: 100%;
        }

    .banner-box .box-panel {
        position: absolute;
        width: 350px;
        height: 60%;
        background-color: #ffffff87;
        left: 50%;
        bottom: 0;
        transform: perspective(50px) rotatey(0deg) translatex(-50%);
        animation: slide-rotate 0.5s linear forwards;
        z-index: -1;
    }

header nav .nav-list li a {
    color: #ffff !important;
}

#contact-btn a {
    color: #ffff !important;
    border-color: #fff !important;
}

/* section title --------- */
.btn-box {
    text-decoration: none;
    background-color: #FFC269;
    color: #313435;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    font-size: 15px;
    gap: 10px;
    font-family: var(--Medium);
    transition: 300ms linear;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: fit-content;
}

    .btn-box::before {
        content: "";
        width: 0%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0%;
        background-color: #3398d7d4;
        z-index: -1;
        transition: 200ms linear;
    }

    .btn-box:hover::before {
        left: 0;
        width: 100%;
    }

.dark-btn {
    background: #1D1F20 !important;
    color: #ffff;
}

    .dark-btn:hover {
        color: #ffff !important;
    }

.primary-btn {
    background-color: #70C8FF !important;
    color: #1D1F20 !important;
}

    .primary-btn::before {
        background-color: #17a6ff !important;
    }


.dark-btn::before {
    background-color: #1cb7ff9a !important;
}

.section-title h2 {
    font-family: var(--Thin);
    font-size: 50px;
}

    .section-title h2 span {
        color: #70C8FF;
        font-family: var(--Thin);
        font-size: 50px;
    }

.light-color {
    color: var(--light-theme-color);
}

.dark-color {
    color: #1D1F20;
}

p {
    font-size: 18px;
    font-family: var(--Regular);
    line-height: 1.6;
}

#successMetrics {
    background: linear-gradient(164deg, #ffc2690a, #ffc2691a, #8dd4ff4a, #b5b4ff4d, #8dd4ff54);
}

/* logoList --------*/

#logoList .left-box {
    border-right: 1px solid #525b62;
}

#logoList p {
    font-weight: 600;
    font-size: 25px;
    color: #525b62;
}

.result-row {
    border: 1px solid #A0A5A7;
}

.box {
    height: 28px;
    width: 28px;
    background-color: #17a6ff;
    display: block;
    transform: perspective(50px) rotatey(45deg);
}

.icon-box {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    border: 2px solid #df8700;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-box img {
        width: 30px !important;
    }

.border-right {
    border-right: 1px solid #A0A5A7;
}

.results-box {
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}


    .results-box img {
        width: 15px;
    }

    .results-box h3 {
        font-size: 18px;
        font-family: var(--Medium);
    }

    .results-box i {
        font-size: 60px;
    }

    .results-box h4 {
        font-family: var(--Medium);
        font-size: 50px;
    }

        .results-box h4 span {
            color: #4e5455;
            font-size: 20px;
        }

    .results-box p {
        font-family: var(--Regular);
        text-transform: capitalize;
        color: #4e5455b9;
    }

/* video ---------   */

.video-section {
    height: 800px;
    overflow: hidden;
    background-image: url(../images/bg-2.png);
    background-position: center;
    background-size: cover;
}

    .video-section .video-details {
        position: absolute;
        bottom: 50px;
        left: 50px;
        width: 450px;
        background-color: #1D1F20;
    }

        .video-section .video-details div {
            border-bottom: 2px solid #8DD4FF;
        }

        .video-section .video-details h3 {
            font-size: 18px !important;
            line-height: 1.5;
            color: #ffff;
            font-family: var(--Regular);
            margin-bottom: 20px;
        }

        .video-section .video-details h4 {
            font-size: 16px !important;
            line-height: 1.5;
            color: #ffff;
            font-family: var(--Regular);
        }

        .video-section .video-details p {
            line-height: 1.5;
            color: #ffff;
            font-family: var(--Medium);
        }


#support {
    background-color: #4e5455;
    color: white !important
}

    #support .accordion-items h3 {
        font-size: 24px !important;
        line-height: 1.5;
        font-family: var(--Regular);
        margin-bottom: 20px;
        color: #ffc107 !important;
    }

    #support .accordion-items a {
        text-decoration: none;
        color: #ffc107;
        font-family: var(--Regular);
        display: block;
        margin-bottom: 20px;
    }

    #support .accordion-items:nth-child(2) a,
    #support .accordion-items:nth-child(2) h3 {
        color: #8DD4FF !important;
    }

    #support .accordion-items:nth-child(3) a,
    #support .accordion-items:nth-child(3) h3 {
        color: #B5B4FF !important;
    }

    #support .accordion-item {
        background-color: transparent !important;
    }

        #support .accordion-item .accordion-button {
            background-color: transparent !important;
            color: white;
            padding-left: 0px;
            padding-right: 0px;
        }

    #support .accordion-body {
        padding-left: 0px;
        padding-right: 0px;
    }

    #support .accordion-button:not(.collapsed) {
        color: #ffff !important;
    }


#slider .swiper-button-next,
#slider .swiper-button-prev {
    position: relative !important;
    top: 0 !important;
    margin: 0px !important;
}

#slider h3 {
    font-size: 20px !important;
    line-height: 1.5;
    font-family: var(--Regular);
    margin-bottom: 20px;
    color: #313435 !important;
}

/* #slider .swiper-button-next {
  left: 10px;
} */

.content-swiper img {
    width: 60px !important;
}

.content-swiper {
    overflow-y : auto; 
}

.content-swiper h1 {
    font-family: 'Futura-Md-BT', sans-serif;
}

.content-swiper p {
    font-size: 20px;
    letter-spacing: 1px;
}

/* -------how-we-can -------*/
#how-we-can {
    background: linear-gradient(164deg, #ffc26900, #ffc2691a, #8dd4ff08, #b5b4ff0a, #8dd4ff00);
}


    #how-we-can h2 {
        line-height: 1.5;
        font-family: 'Futura-Md-BT', sans-serif;
        font-weight: 100 !important;
    }

    #how-we-can .row {
        background: #f6f7f8;
        border-radius: 16px;
        box-shadow: 0px 0px 5px 0px #e2e2e2;
        overflow: hidden;
    }

        #how-we-can .row h3 {
            font-family: 'Futura-Md-BT', sans-serif;
            font-size: 32px;
            font-weight: 500;
            color: #2f2f2f;
        }

        #how-we-can .row p {
            font-size: 20px;
            letter-spacing: 1px;
            color: #424242;
            margin-top: 16px;
        }

        #how-we-can .row a {
            display: block;
            min-width: 140px;
            width: fit-content;
            padding-bottom: 2px;
            text-decoration: none;
            border-bottom: 3px solid black;
            margin-top: 29px;
        }

            #how-we-can .row a span {
                color: #272727;
                letter-spacing: 1px;
                font-size: 18px;
                position: relative;
                transition: 200ms linear;
            }

            #how-we-can .row a:hover span {
                margin-left: 10px;
            }

@media screen and (max-width :992px) {
    #support .accordion-items h3 {
        font-size: 20px !important;
        margin-bottom: 8px;
    }

    #support .accordion-items a {
        margin-bottom: 2px;
    }

    #support .accordion-items p {
        font-size: 16px;
    }
}
/* -----  support----------  */
#support img {
    width: 300px;
}

#support .accordion-button {
    font-family: var(--Medium) !important;
    font-size: 20px !important;
}

    #support .accordion-button:focus {
        box-shadow: none;
    }

    #support .accordion-button:not(.collapsed) {
        background-color: transparent;
        color: #1D1F20;
    }

.accordion-item {
    border: none;
    font-family: var(--Regular) !important;
    border-bottom: 1px solid #e0e0e0;
}


#Lets-build h3 {
    font-family: var(--Regular) !important;
    font-size: 20px;
}

#Lets-build a {
    text-decoration: none;
    background-color: #252525;
    color: #ffff;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 10px;
    transition: 300ms linear;
    position: relative;
    overflow: hidden;
    width: fit-content;
    z-index: 1;
}

    #Lets-build a::before {
        content: "";
        width: 0%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0%;
        background-color: #3398d7d4 !important;
        z-index: -1;
        transition: 200ms linear;
    }

    #Lets-build a:hover::before {
        left: 0;
        width: 100%;
    }

#Lets-build .swipe-btn {
    width: 311px;
}

.swiper-button-next,
.swiper-button-prev {
    top: 5px;
    height: 30px;
    width: 30px;
    border: 1px solid #D5D7D8;
}

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 15px !important;
        color: #1D1F20;
    }





/* mobile-app----------- */

.mobile-app {
    background-color: #313435;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .mobile-app .bg-image {
        position: absolute;
        width: 232px;
        height: 34%;
        bottom: -25px;
        left: 52%;
        transform: perspective(230px) rotatey(48deg);
        background-color: #ffffff40;
        z-index: -1;
    }

    .mobile-app .bg-image-2 {
        position: absolute;
        width: 232px;
        height: 52%;
        ;
        bottom: -45px;
        left: 56%;
        transform: perspective(230px) rotatey(48deg);
        background-color: #ffffff40;
        z-index: -1;
    }

    .mobile-app .bg-image-3 {
        position: absolute;
        width: 232px;
        height: 64%;
        bottom: -45px;
        left: 60%;
        transform: perspective(230px) rotatey(48deg);
        background-color: #ffffff40;
        z-index: -1;
    }



@media screen and (max-width: 1250px) {
    .card-box .card-box-title h3 {
        font-size: 25px;
    }

    .card-box .card-box-title span {
        font-size: 68px;
    }
}

@media screen and (max-width: 1024px) {
    .banner-box {
        justify-content: space-between;
    }

    .card-box .card-box-title h3 {
        font-size: 20px;
    }

    .card-box .card-box-title span {
        font-size: 50px;
    }

    .section-title h2 {
        font-family: var(--Regular);
        font-size: 36px;
    }

        .section-title h2 span {
            font-size: 40px;
        }
}

@media screen and (max-width: 992px) {

    #logoList .left-box {
        border-right: none !important;
    }

    .video-section {
        background-image: none;
        height: auto;
    }

        .video-section .video-details {
            width: 100%;
            position: relative;
            left: 0;
            top: -2px;
        }
}

@media screen and (max-width: 768px) {

    .mobile-app .bg-image {
        left: 45%;
        width: 202px;
        height: 22%;
    }

    .mobile-app .bg-image-2 {
        /* left: 67%; */
        width: 202px;
        height: 30%;
    }

    .mobile-app .bg-image-3 {
        left: 67%;
        width: 202px;
        height: 40%;
    }
}

@media screen and (max-width: 576px) {

    #logoList .row img:first-child {
        height: 33px !important;
    }

    #logoList .row img:nth-child(2) {
        height: 25px !important;
    }

    .team-member-row .team-member-box {
        height: 200px !important;
    }

    .border-right {
        border-bottom: 1px solid #A0A5A7;
        border-right: none;
    }

    #team-member-count .team-member-row .team-member-box:nth-child(2) {
        border-left: 0;
        border-right: 0;
        border-top: 1px solid #8DD4FF;
        border-bottom: 1px solid #8DD4FF;
    }

    #support img {
        width: 237px;
    }

    #support .accordion-button {
        font-size: 16px !important;
    }
}

@media screen and (max-width: 768px) {
    .banner-box h1 {
        font-size: 32px !important;
    }
}
