@font-face {
    font-family: Futura-Md-BT;
    src: url(../font/Futura-Md-BT-Medium.ttf);
}

:root {
    --light-color: #ffffff;
    --light-theme-color: #ffffff;
}

body {
    background: linear-gradient(#FFF 5%, #F3F7FB);
}

header {
    background-color: #313435;
}


    header nav .nav-list li a {
        color: #ffff !important;
    }

#contact-btn a {
    color: #ffff !important;
    border-color: #fff !important;
}


.banner-bg {
    background-color: #313435 !important;
    background: url(../images/bg-image-2.png);
    /* background-size: cover; */
    background-position: right top;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    animation: bg_image 2.5s linear infinite alternate;
}

@keyframes bg_image {
    0% {
        background-size: 101%, 100%;
    }

    100% {
        background-size: 100%, 100%;
    }
}

.banner-box {
    height: calc(100vh - 90px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .banner-box h3 {
        font-family: var(--Medium);
        font-size: 18px;
        color: #ffc269;
    }



    .banner-box h1 {
        font-family: 'Futura-Md-BT', sans-serif;
        font-size: 60px;
        color: transparent;
        background: linear-gradient(45deg, #ffc269, #4eace4, #ffc269);
        background-size: 200% auto;
        /* Needed for movement */
        background-position: 0% center;
        /* Start position */
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: linear_text 4s linear infinite;
    }



@keyframes linear_text {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 100% center;
    }
}



.banner-box h1 sup {
    font-size: 18px;
    position: relative;
    top: -27px;
}

.banner-box p {
    font-family: var(--Regular);
    font-size: 20px;
    margin-top: 20px;
    color: var(--light-theme-color);
}

.banner-box p {
    font-family: var(--Regular);
    font-size: 16px;
    margin-top: 34px;
    color: var(--light-color);
}


.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;
}


/* 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: #fff;
        z-index: -1;
        transition: 200ms linear;
    }

    .btn-box span {
        color: #161616;
    }

    .btn-box:hover {
        color: #161616;
    }

        .btn-box:hover::before {
            left: 0;
            width: 100%;
        }


.section-title h2 {
    font-family: var(--Regular);
    font-size: 50px;
    color: #444849;
}

    .section-title h2 span {
        color: #FFC269;
        font-family: var(--Regular);
        font-size: 50px;
    }

.section-title h4 {
    font-family: var(--SemiBold);
    color: #000EE6;
    font-size: 16px;
}


.light-color {
    color: var(--light-theme-color) !important;
}

.dark-color {
    color: #1D1F20;
}

p {
    font-size: 17px;
    font-family: var(--Regular);
    line-height: 1.6;
    color: #444849;
}

.lern-more,
.lern-more span {
    color: #444849 !important;
    text-decoration: none;
    font-family: var(--Medium);
}

    .lern-more:hover,
    .lern-more:hover span {
        color: #000EE6 !important;
    }

/* ------ results ---------  */
#results {
    position: relative;
    width: 100%;
    min-height: 300px;
    z-index: 1;
}

    #results::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: radial-gradient(#ffc26996, #ffffff); */
        background: repeating-linear-gradient(148deg, #52514f2b, transparent 100px);
        z-index: -1;
    }

    /* @keyframes bg_change {
    0% {
         background: repeating-linear-gradient(148deg, #52514f2b, transparent 100px);
    }

    100% {
      background: repeating-linear-gradient(149deg, #52514f2b, transparent 100px);
    }
} */

    #results .clip-path-box {
        background-color: #f1bd71;
        clip-path: polygon(0 0, 100% 32%, 100% 100%, 0 100%, 0% 50%);
        position: relative;
        z-index: 1;
        transition: 300ms linear;
        z-index: 1;
    }

        /* #results .clip-path-box:hover {
    clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 100%, 0% 50%);
} */

        #results .clip-path-box::before {
            content: '';
            width: 100%;
            height: 0%;
            position: absolute;
            bottom: 0;
            left: 0;
            background-color: #8dd4ff;
            transition: 300ms linear;
            z-index: -1;
        }

        #results .clip-path-box:hover::before {
            height: 100%;
        }

        #results .clip-path-box h5 {
            color: #444849;
            font-family: var(--SemiBold);
            font-size: 18px;
        }

        #results .clip-path-box p {
            color: #444849;
        }

/* ------------- finalAnswer ----------  */
#finalAnswer {
    width: 100%;
    min-height: 300px;
    background-color: #444849;
    position: relative;
    z-index: 1;
}

    #finalAnswer h4 {
        color: #EDF1F4 !important;
        font-family: var(--SemiBold);
        font-size: 22px;
    }

.box {
    display: block;
    height: 25px;
    width: 36px;
    transform: perspective(150px) rotatey(60deg);
    background-color: #FFC269;
}

#finalAnswer p {
    color: #EDF1F4 !important;
}

    #finalAnswer p span {
        color: #FFC269;
    }

/* First gradient layer */
#finalAnswer::before,
#finalAnswer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 31%;
    width: 50%;
    height: 57%;
    transform: translate(-50%, 43%);
    z-index: -1;
    pointer-events: none;
    transition: opacity 2s linear;
}

/* First gradient */
#finalAnswer::before {
    background: radial-gradient(#ffc26936, #ffc26924, #ffc26900, #444849a8);
    animation: fade1 6s linear infinite alternate;
}

/* Second gradient */
#finalAnswer::after {
    background: radial-gradient(#8dd4ff6e, #8dd4ff2e, #ffc26900, #444849a8);
    animation: fade2 6s linear infinite alternate;
}

@keyframes fade1 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade2 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#finalAnswer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 6%;
    width: 26%;
    height: 44%;
    transform: translate(-50%, 43%);
    background: radial-gradient(#ffc2690f, #ffc2690f, #ffc26900, #444849a8);
    z-index: -1;
}

/* ----------- #details ----------  */
#details {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0px auto;
}

    #details::after {
        content: '';
        position: absolute;
        top: 0;
        right: 6%;
        width: 26%;
        height: 44%;
        transform: translate(-50%, 43%);
        background: radial-gradient(#ffce85bf, #ffc26942, #ffc26900, #44484900);
        z-index: -1;
    }

    #details::before {
        content: '';
        position: absolute;
        top: 0;
        left: 58%;
        width: 50%;
        height: 57%;
        transform: translate(-50%, 43%);
        background: radial-gradient(#ffce8552, #ffc26945, #ffc26900, #44484900);
        z-index: -1;
    }

    /* First gradient */
    #details::before {
        background: radial-gradient(#ffc26954, #ffc26942, #ffc26900, #fbfeffa8);
        animation: fade1 6s linear infinite alternate;
    }

    /* Second gradient */
    #details::after {
        background: radial-gradient(#8dd4ff6e, #8dd4ff2e, #ffc26900, #fbfeffa8);
        animation: fade2 6s linear infinite alternate;
    }


    #details h4 {
        font-family: var(--SemiBold);
        font-size: 18px;
        color: #313435;
    }

    #details h5 {
        font-family: var(--Medium);
        font-size: 17px;
        color: #313435;
    }

    #details p {
        color: #313435;
        font-size: 16px;
    }

    #details img {
        transform: perspective(500px) rotatey(78deg);
        transition: 300ms linrar;
        animation: rotate_image 1s linear 1 forwards;
    }

@keyframes rotate_image {
    0% {
        transform: perspective(500px) rotatey(78deg);
    }

    100% {
        transform: perspective(500px) rotatey(0deg);
    }
}

#Prototyping {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0px auto;
    background-color: #62686A;
}

    #Prototyping h3 {
        font-family: var(--Medium);
        font-size: 20px;
        color: #FFFFFF;
        border-bottom: 2px solid #FFE7C2;
        position: relative;
    }

        #Prototyping h3::before {
            content: '';
            width: 50%;
            height: 2px;
            background-color: #70c9ff;
            position: absolute;
            bottom: -2px;
            left: 0;
            transition: 400ms linear;
        }

    #Prototyping .col-sm-6:hover h3::before {
        width: 100%;
    }

    #Prototyping p {
        font-size: 16px;
        color: #EDF1F4;
    }

/* ----------- #details ----------  */
#Sprintwork {
    background-color: #000000;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0px auto;
}

.slid-box {
    background: linear-gradient(45deg, #FFCE85, #FFFFFF);
}

    .slid-box h3 {
        font-family: var(--Medium);
        font-size: 24px;
        color: #313435;
    }

    .slid-box span {
        font-family: var(--Medium);
        font-size: 16px;
        color: #313435;
    }

    .slid-box h5 {
        font-family: var(--SemiBold);
        font-size: 18px;
        color: #313435;
    }

    .slid-box p {
        font-family: var(--Regular);
        font-size: 16px;
        color: #313435;
    }

.slide-btn-box {
    height: 40px;
    ;
}

.swiper-button-next {
    left: 52%;
}

.swiper-button-prev {
    left: 45%;
}


    .swiper-button-next::after,
    .swiper-button-prev::after {
        border: 1px solid #A0A5A7;
        color: #A0A5A7;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 3px;
        padding: 5px 10px 8px;
    }

/* .swiper-button-prev::after {
    color: red !important;
} */

/* Generative-report --------- */
#Generative-report {
    width: 100%;
    height: 100%;
    margin: 0px auto;
    position: relative;
}

/* -------- Sprintcreator -------- */

#Sprintcreator {
    background-color: #444849;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0px auto;
    position: relative;
    overflow: hidden;
}


    #Sprintcreator .piller {
        position: absolute;
        right: 16%;
        bottom: -43px;
        width: 340px;
        height: 60%;
        background-color: #d9d9d954;
        transform: perspective(517px) rotatey(49deg);
    }

    #Sprintcreator .piler-2 {
        right: 20% !important;
        height: 50% !important;
    }

    #Sprintcreator .piler-1 {
        right: 26% !important;
        height: 40% !important;
    }

/* --------- impact ----------  */
#impact {
    width: 100%;
    height: 100%;
    margin: 0px auto;
    position: relative;
    background: radial-gradient(#ffc26942, #ffffff);
}

    #impact .d-none {
        overflow: hidden;
    }

    #impact img {
        transition: 300ms linear;
    }

        #impact img:hover {
            transform: scale(1.2);
        }

/* -----------Consider-Sprints ----------  */
#Consider-Sprints {
    width: 100%;
    min-height: 500px;
    margin: 0px auto;
    background-color: #00000013 !important;
    position: relative;
    background: url(../images/section-bg-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

    #Consider-Sprints .card-box {
        border: 2px solid #FFCE85;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        z-index: 1;
    }

        #Consider-Sprints .card-box::before {
            content: "";
            width: 0;
            position: absolute;
            ;
            left: 0;
            top: 0;
            height: 100%;
            transition: 300ms linear;
            background-color: #FFCE85;
            z-index: -1;
        }

        #Consider-Sprints .card-box:hover::before,
        .card-box:hover .arrow {
            width: 100%;
            color: #ff4a03 !important;
        }

        #Consider-Sprints .card-box h3 {
            font-family: var(--Medium);
            font-size: 24px;
            color: #313435;
        }


        #Consider-Sprints .card-box .arrow {
            font-family: var(--ExtraBold);
            font-size: 22px;
            color: #FFCE85;
            transition: 300ms linear;
        }

/* outcomes ------------ */
#outcomes .row {
    min-height: 300px;
    background-color: #313435;
    background-image: linear-gradient(170deg, #313435 60%, #f9ce854d);
}

/* --------- scale-ups ----------  */

#scale-ups {
    min-height: 300px;
    background-color: #FFCE85;
}


    #scale-ups .rating-box {
        width: 300px;
        height: 350px;
        background-color: #ffff;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        clip-path: polygon(100% 0, 100% 50%, 0 100%, 0 0);
        transition: 300ms linear;
    }


        #scale-ups .rating-box:hover {
            clip-path: polygon(100% 0, 100% 99%, 0 100%, 0 0);
        }

        #scale-ups .rating-box img {
            width: 150px;
        }


.accordion-body p {
    color: #ffffff !important;
}

#tech_stack h3 {
    font-size: 18px;
    font-weight: 700;
    color: #444849;
    font-family: var(--Medium);
}

#tech_stack ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-weight: 500;
    color: #1d1d1d;
    list-style: none;
}

    #tech_stack ul li {
        display: flex;
        align-content: center;
        gap: 10px;
    }

        #tech_stack ul li img {
            width: 25px;
        }


/* .swiper-button-prev::after {
    content: '←';
    font-size: 24px;
}

.swiper-button-next::after {
    content: '→';
    font-size: 24px;
} */
@keyframes zoomin-out {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 1500px) {
}

@media screen and (max-width: 1200px) {
    .section-title h2 {
        font-size: 40px;
    }

        .section-title h2 span {
            font-size: 40px;
        }

    #scale-ups .rating-box {
        width: 400px;
    }
}


@media screen and (max-width: 992px) {
    .main-container {
        border-bottom: none !important;
    }

    #details::before {
        display: none;
    }

    #details::after {
        display: none;
    }

    .banner-box h1 {
        font-size: 46px;
    }

    p {
        font-size: 16px;
    }

    #Sprintcreator .piller {
        right: 4%;
    }

    #Sprintcreator .piler-2 {
        right: 12% !important;
    }

    #Sprintcreator .piler-1 {
        right: 21% !important;
    }

    #Consider-Sprints .card-box h3 {
        font-size: 20px;
    }

    #scale-ups .rating-box {
        width: 450px;
    }

        #scale-ups .rating-box img {
            width: 130px;
        }
}

@media screen and (max-width: 768px) {


    .banner-box h1 {
        font-size: 35px;
    }


    .section-title h2 {
        font-size: 32px;
    }

        .section-title h2 span {
            font-size: 32px;
        }
}

@media screen and (max-width: 576px) {

    .banner-box h1 {
        font-size: 32px;
    }

    .swiper-button-next {
        left: 58%;
    }

    #results .clip-path-box {
        clip-path: polygon(0 0, 100% 14%, 100% 100%, 0 100%, 0% 50%);
    }

    #finalAnswer::before {
        display: none;
    }

    #finalAnswer::after {
        display: none;
    }

    #Consider-Sprints .card-box {
        min-height: 61px;
    }

    #scale-ups .rating-box {
        width: 100%;
        height: 275px;
    }
}

@media screen and (max-width: 400px) {
    #tech_stack h3 {
        font-size: 15px;
    }

    #tech_stack ul li img {
        width: 18px;
    }
}
