@import url(../global/variable.css);

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: unset;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: "Geist-Regular";
    src: url("../../fonts/geist/Geist-Regular.otf") format('opentype');
}

@font-face {
    font-family: "Geist-Light";
    src: url("../../fonts/geist/Geist-Light.otf") format('opentype');
}

@font-face {
    font-family: "Geist-Thin";
    src: url("../../fonts/geist/Geist-Thin.otf") format('opentype');
}

@font-face {
    font-family: "Geist-Medium";
    src: url("../../fonts/geist/Geist-Medium.otf") format('opentype');
}

@font-face {
    font-family: "Geist-Bold";
    src: url("../../fonts/geist//Geist-Bold.otf") format('opentype');
}

@font-face {
    font-family: "Geist-SemiBold";
    src: url("../../fonts/geist/Geist-SemiBold.otf") format('opentype');
}

@font-face {
    font-family: "CalSans-SemiBold";
    src: url("../../fonts/cal-sans/CalSans-SemiBold.otf") format('opentype');
}

* {

    color: var(--light);
}

body {
    background: var(--black);
    /* font-family: "Geist-Thin"; */
    font-family: "Geist-Light";
    /* font-family: "Geist-Regular"; */
}

a {
    color: var(--light);
}

.font-bold {
    font-family: "Geist-Bold";
}

.font-regular {
    font-family: "Geist-Regular";
}

.btn_default {
    padding: 4px 15px !important;
    text-align: center !important;
    color: var(--light) !important;
    font-size: 12px !important;
    box-shadow: none !important;
    min-width: 95px !important;
    border-radius: 4px;
    text-transform: none !important;
    height: 35px;
    outline: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn_white {
    background: var(--light) !important;
    color: var(--black-level-1) !important;
}

.btn_default:hover,
.btn_default:active,
.btn_default:focus {
    outline: none !important;
}

.btn_grad,
.btn_grad:hover,
.btn_grad:active,
.btn_grad:focus {
    border: 1px solid transparent !important;
    background-image: linear-gradient(to right, var(--secondary), var(--primary));
    background-image: linear-gradient(135deg, var(--secondary), var(--primary), var(--secondary), var(--primary), var(--secondary));
    background-size: 500% 100%;
    animation: btnGrad 10s ease infinite;
    transition: all .3s;
}

@keyframes btnGrad {
    0% {
        background-position: 0% 0%;
    }

    67% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 0%;
    }
}

.btn_rounded_fill {
    background-color: var(--light) !important;
    color: var(--black-level-1) !important;
    border: 1px solid var(--light) !important;
    font-size: 16px !important;
    min-width: 180px !important;
    border-radius: 8px !important;
    height: 55px;
    position: relative;
    text-align: left !important;
    padding: 0 2.25625rem !important;
}

.btn_rounded_fill {
    &::after {
        content: "";
        background: url(../public/assets/images/arrow_right_black.svg) no-repeat;
        display: inline-block;
        width: 16px;
        height: 11px;
        background-position: 100%;
        margin-left: .5rem;
        -webkit-transition: all .45s cubic-bezier(.65, 0, .076, 1);
        -o-transition: all .45s cubic-bezier(.65, 0, .076, 1);
        transition: all .45s cubic-bezier(.65, 0, .076, 1);
        position: absolute;
        top: 40%;
        right: 21%;
    }

    &:hover,
    &:focus,
    &:active {
        background-color: var(--black-level-13) !important;

        &::after {
            right: 18%;
            transition: all .45s cubic-bezier(.65, 0, .076, 1);
        }
    }
}

.btn_rounded_border {
    background-color: transparent !important;
    border: 2px solid var(--light) !important;
    font-size: 16px !important;
    min-width: 180px !important;
    border-radius: 8px !important;
    height: 55px;
}

.btn_rounded_border:hover,
.btn_rounded_border:active,
.btn_rounded_border:focus {
    background-color: rgba(255, 255, 255, .2) !important;
}

.btn_border_animate,
.btn_border_animate:hover,
.btn_border_animate:active,
.btn_border_animate:focus {
    border-image: linear-gradient(to right, var(--secondary) 0%, var(--primary) 100%) 1 !important;
    border-width: 2px !important;
    border-style: solid !important;
    padding: 5px;
    color: var(--black-level-1) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    height: 50px !important;
    border-radius: 8px !important;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(to right, darkblue, darkorchid) border-box;
    border: 2px solid transparent;
    animation: moveDown 1s ease-in-out infinite alternate;

    img {
        width: 20px;
        margin-right: 7px;
    }
}

.hover_btn {
    text-decoration: none;
    font-size: 20px !important;
    color: var(--light);
    font-weight: 600 !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;

    span {
        opacity: 0;
        right: 0px;
        top: 1px;
        transition: opacity 0.4s ease, right 0.4s ease;
        position: absolute;
        white-space: nowrap;
    }

    &::after {
        content: "";
        background: url(../public/assets/images/home/right_arrow.svg) no-repeat;
        width: 22px;
        height: 18px;
        background-size: cover;
        position: absolute;
        background-position: center;
        right: 0px;
        top: 7px;
    }

    &:hover {
        text-decoration: none;

        span {
            opacity: 1;
            transition: opacity 0.4s ease, right 0.3s ease;
            right: 29px;
            ;
        }
    }
}

@keyframes moveDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(10px);
    }
}

.flex_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex_item1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flex_item2 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.flex_item3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex_item4 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.flex_item5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.flex_item6 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.is_visible {
    visibility: hidden;
}

/*common section css start*/
.common_section {
    padding: 5rem 0rem;

    h2 {
        font-size: 48px;
        color: var(--light);
        font-family: "CalSans-SemiBold", sans-serif !important;
    }

    .sub_title {
        font-size: 18px;
        color: var(--light);
    }
}

/*Banner Section Start*/
.video_banner {
    position: relative;
    top: -85px;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--light);
    text-align: left;

    .banner_video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    .banner-content {
        width: 100%;
        position: absolute;
        top: 25%;

        h1 {
            font-family: "CalSans-SemiBold", sans-serif !important;
            font-size: 64px;
        }

        p {
            font-family: "CalSans-SemiBold", sans-serif !important;
            font-size: 16px;
            margin: 0.5rem 0 1.5rem 0;
            letter-spacing: 0.8px;
        }

        h3 {
            font-size: 20px;
            line-height: 30px;
            margin-bottom: 3rem;
        }

        .discover_product_btn {
            background: var(--light);
            height: 60px;
            border-radius: 30px !important;
            border-image: none !important;
            min-width: 250px !important;
        }

    }

    .go_down_btn {
        background: transparent !important;
        color: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        outline: none !important;
        border-radius: 0 !important;
        position: absolute;
        right: 105px;
        bottom: 125px;
    }

    .go_down_btn span {
        background-color: var(--light);
        height: 5px;
        width: 3px;
        border-radius: 10px;
        position: absolute;
        right: 13px;
        bottom: 43px;
        animation: moveDown 1s ease-in-out infinite alternate;
    }

    @keyframes moveDown {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(10px);
        }
    }


}

.client_section {
    position: absolute;
    bottom: 25px;
    left: 50%;
    width: 1180px;
    transform: translateX(-50%);
    text-align: center;

    p {
        font-size: 16px;
        font-family: "Geist-Medium" !important;
    }

    .logo_container {
        display: flex;
        align-items: center;
        overflow: hidden;
        min-width: 100%;
        white-space: nowrap;
        height: 60px;
        position: relative;
        margin-top: 15px;

        &::after {
            content: "";
            left: 0px;
            top: 0px;
            width: 100%;
            height: 100%;
            position: absolute;
            background-image: linear-gradient(to right, var(--black), transparent 21%, transparent 50%, transparent 79%, var(--black) 96%);
        }

        .slide_track {
            display: inline-flex;
            animation: 150s moveLeft infinite linear;
        }

        .slide {
            margin-right: 45px;

            img {
                height: 40px;
                width: auto;
            }
        }


    }

}

/*Banner Section End*/

/*Product and Service section common css start*/
.common_banner {
    .banner-content {
        h1 {
            line-height: 68px;
            margin-top: 35px;
        }

        h3 {

            font-family: "CalSans-SemiBold", sans-serif;
        }

        h2 {
            font-size: 24px;
            line-height: 30px;
            font-family: "Geist-SemiBold";
        }

        .discover_product_btn {
            color: var(--black);
            min-width: 190px !important;
        }
    }

    .client_section {
        p {
            font-size: 20px;
        }
    }
}

.common_slider_sec {

    .slider_heading_sec {
        text-align: center;
        padding: 0 95px;

        h3 {
            font-size: 56px;
            line-height: 63px;
            background: linear-gradient(to right, var(--primary-6), var(--primary-5));
            -webkit-text-fill-color: transparent;
            -webkit-background-clip: text;
            font-family: "CalSans-SemiBold";
        }

        p {
            font-size: 16px;
            line-height: 22px;
            margin: 25px 0 35px 0;
        }
    }

    /*Slider Section Start */
    .slider_section {
        background-image: url("../../images/finops/finopscost_frame_image.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        padding: 30px 30px 55px;
        position: relative;
        margin: 0px 38px;
    }

    .slider_section .discover_btn_container {
        position: relative;
        z-index: 1;
        top: -25px;
    }

    .slider_section .slider_kpi {
        position: absolute;
        z-index: 1;
    }

    .slider_section .slider_kpi img {
        width: 200px;
    }

    .slider_section .slider_kpi.slider_kpi_1 {
        left: 20px;
        top: 250px;
    }

    .slider_section .slider_kpi.slider_kpi_2 {
        right: 370px;
        top: 150px;
    }

    .slider_section .slider_kpi.slider_kpi_2 img {
        width: 210px;
    }

    .slider_section .slider_kpi.slider_kpi_3 {
        right: 53px;
        top: 370px;
    }

    .slider_section .slider_kpi.slider_kpi_3 img {
        width: 140px
    }

    .slider_section .slider_kpi.slider_kpi_4 {
        left: 260px;
        bottom: 53px;
    }

    .slider_section .slider_kpi.slider_kpi_4 img {
        width: 150px;
    }

    .slider_section .carousel-item img {
        margin: auto;
        width: 855px;
    }

    .slider_section .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin-right: 5px;
        margin-left: 5px;
        border-radius: 50%;
        cursor: pointer;
    }

    .slider_section .carousel-indicators [data-bs-target].active {
        width: 12px;
        height: 12px;
        position: relative;
        top: -1px;
    }

    .slider_section .carousel-indicators {
        bottom: -30px;
    }

    .slider_section h2 {
        font-size: 40px;
        color: #fff !important;
        margin-bottom: 15px;
        text-align: left;
    }

    .slider_section p {
        font-size: 18px;
        color: #fff !important;
        margin-bottom: 35px;
        text-align: left;
    }

    .slider_section h2 span {
        font-weight: 900;
    }

    .slider_section p {
        font-size: 18px;
        margin: 10px 0px 20px;
    }

    .slider_section p span {
        color: var(--primary-3);
        font-family: "Geist-Bold", sans-serif !important;
    }

    .slider_section h3 {
        font-family: "Geist-Bold", sans-serif !important;
        font-size: 20px;
        margin-bottom: 48px;
    }

    .carousel-caption {

        height: 214px;
        position: unset;
        padding-top: 0;
        padding-bottom: 0;
        text-align: left;

        h2 {
            font-family: "CalSans-SemiBold", sans-serif !important;
            font-size: 40px;
        }
    }

    /*Slider Section Start */
}

/* For WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 10px;
    /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: var(--black);
    /* Track color */
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    /* Thumb color */
    border-radius: 5px;
    /* Rounded corners */
}

/*Product and Service section common css end*/
/*common section css end*/
@keyframes moveLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-15000px);
    }
}

@media only screen and (max-width:767px) {

    .video_banner.common_banner,.video_banner {
        top: 0;
        flex-direction: column;
        padding-top: 45px;
        height: auto !important;

        .banner-content {
            position: unset;
            text-align: center;
            margin-bottom: 30px;

            h1 {
                line-height: 32px !important;
                font-size: 28px !important;
                margin-bottom: 2rem !important;
                text-align: center !important;
            }

            .discover_product_btn {
                min-width: 175px !important;
                min-height: 40px !important;
            }
        }

        .go_down_btn {
            display: none;
        }
    }

    .client_section {
        position: unset;
        width: 100%;
        transform: unset;
        margin-top: 50px;
    }

    .common_section {
        h2 {
            font-size: 28px;
        }
    }
}

@media only screen and (min-width:768px) and (max-width: 991px) {
    .video_banner.common_banner {
        top: 0;
        height: auto;
        flex-direction: column;

        .banner_video {
            position: unset;
            transform: unset;
        }

        .banner-content {
            top: 22% !important;

            h1 {
                line-height: 33px !important;
                margin: 0 0px 2rem !important;
                font-size: 30px;
            }
        }

        .go_down_btn {
            display: none;
        }
    }

    .client_section {
        position: unset;
        width: 100%;
        transform: unset;
        margin-top: 2rem;
    }

    .common_section {
        h2 {
            font-size: 30px;
        }
    }
}

@media only screen and (min-width: 1280px) {
    .container {
        max-width: 1180px !important;
    }
}

@media only screen and (993px <=width <=1439.98px) {
    .video_banner {
        .banner-content {
            top: 22%;

            h1 {
                font-size: 40px;
                line-height: 43px !important;
            }

            p {
                font-size: 15px;
            }

            h3 {
                font-size: 16px;
                margin-bottom: 1rem;
            }
        }
    }
}

@media only screen and (max-width:991px) {
    .common_slider_sec {
        .slider_heading_sec {
            padding: 3rem 0 0rem;

            h3 {
                font-size: 28px;
                line-height: 35px;
            }
        }

        .slider_section {
            margin: 0px 0;
            .slider_kpi {
                display: none;
            }
            h2 {
                font-size: 20px;
                margin-bottom: 10px;
            }
            p
             {
                font-size: 14px;
            }
                .carousel-item {
                  height: auto;
                  img{
                      width: 100%;
                  }
           }
        }
    }
}
@media only screen and (min-width:992px) and (max-width:1199px) {
    .common_slider_sec {
      .carousel-caption {
        h2 {
            font-size: 26px;
        }
        .slider_section p {
        font-size: 16px;
        }
    }
    .slider_section h2 {
      font-size: 26px;
    }
    .slider_section p {
        font-size: 16px;
    }
    .slider_section .slider_kpi.slider_kpi_3 {
         right:0px;
    }
    .slider_section .slider_kpi.slider_kpi_2 {
        top: 133px;
        img {
            width: 190px;
       }

    }
    
}
.common_banner {
    .banner-content {
        h1 {
            line-height: 40px;
            font-size:30px;
        }
    }
}
}