html, body {
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
}

body {
/*    background-color: #f9F5F4;*/
    background-color: rgb(249 245 244);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: "Montserrat", sans-serif; */
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    /* letter-spacing: -3px; */
    color: #183153;
}

h1 {
    margin-bottom: -20px;
    font-size: 60px;
}

h2 {
    font-weight: 400;
}

p,
li {
    color: #183153;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 150%;
    max-width: 600px;
}

a {
    /*    
    background-color: #001025;
    color: white;
    padding: 10px 15px;
    border-radius: 15px;
    text-decoration: none;
    border: 4px solid #F1C700;
    border: 2px solid white;
    margin-right: 10px;
    */

    color: #183153;
    text-decoration: none;
}

    a.link-butten {
        background-color: #001025;
        color: white;
        padding: 10px 15px;
        border-radius: 15px;
        text-decoration: none;
        border: 4px solid #F1C700;
        border: 2px solid white;
        margin-right: 10px;
        display: inline-block;
    }

.container,
.container-fluid {
    padding-top: 1px;
    padding-bottom: 1px;
}

.row {
    position: relative;
    z-index: 2;
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.py-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}

.my-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
}

.my-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
}

.divider-background {
    background-color: white;
}

.gradient-title {
    font-weight: 700;
    /* background: linear-gradient(90deg, #fe6257 0%, #614efa 87.17%); */
    background: linear-gradient(90deg, #FF8C00 0%, #C2477E 47.12%, #8400FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
    display: inline-block;
    padding-bottom: 10px;
    padding-right: 5px;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -3px;
}



/* HERO styles */
.hero {
    position: relative;
    height: 100vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background-color: #022350;
    background-image: url('../img/hero_background.jpg');
    /* background-image: linear-gradient(104deg, rgba(2, 35, 80, 0.7) 40%, rgba(2, 35, 80, 0) 80%), url('../images/hero_background.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: right;
    background-position-y: bottom;
    position: relative;
    z-index: 2;
}

.hero video {
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    z-index: 1;
    bottom: 0px;
    right: 0px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(104deg, rgba(2, 35, 80, 0.7) 30%, rgba(2, 35, 80, 0) 80%);

    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.hero__logo {
    max-height: 40px;
    height: 40px;
    display: block;
}

.hero__title {
    font-weight: 700;
    margin-bottom: -10px;
    line-height: 1.05;
    font-size: 5rem;
}

.hero__subtitle {
    font-size: 2rem;
    font-weight: 400;
}

.hero__lead {
    font-size: 1.25rem;
    max-width: 600px;
    font-weight: 200;
}



.banana__box {
    background: #F1C700;
    border-radius: 20px;
    position: relative;
}

.banana__box img {
    /* max-height: 120%; */
    max-width: 50%;
    position: absolute;
    bottom: 0px;
    left: -60px;

}

.tailored-box {
    border-radius: 20px;
    border: 0 solid #FFF;
    background: rgba(255, 255, 255, 0.30);
    display: flex;
    height: 100%;
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;

}


.tailored-box p {
    color: white;
    margin: 0px;
    padding: 20px;
    font-size: 20px;

}

.tailored-img-box {
    position: relative;
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    height: 100%;
}

.tailored-box img {
    position: absolute;
    bottom: 0px;
    width: 100%;
}

.tailored-box-1 {
    background: rgba(254, 139, 3, 0.30);
}

.tailored-box-2 {
    background: rgba(254, 3, 105, 0.30);
}

.tailored-box-3 {
    background: rgba(134, 3, 254, 0.30);
}

/* Data Source Cards */
.data-source-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

    .data-source-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-color: #F1C700;
    }

.data-source-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .data-source-icon i {
        font-size: 28px;
        color: white;
    }

/* CTA Insights Box */
.cta-box-wrapper{
    margin-top: -80px;
}
.cta-insights-box {
    background: #F1C700;
    border-radius: 25px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    min-height: 150px;
    overflow: visible;
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.banana-cta-img {
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: flex-end;
}

    .banana-cta-img img {
        max-width: 180px;
        height: auto;
    }

.cta-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}


@media (max-width: 992px){
    .cta-box-wrapper {
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    html, body{
        width: 100svw;
        overflow-x: hidden;
    }

    .banana__box {
        flex-direction: column-reverse;
    }

    .banana-img-space img {
        position: absolute;
        left: 0;
        right: 0;
        margin-inline: auto;
    }

    .banana-img-space {
        min-height: 150px;
    }

    .py-8 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .my-8 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero{
        justify-content: start;
        align-items: start;
    }

    .hero__title{
        font-size: 3rem;
    }

    .hero__subtitle {
        font-size: 1.5rem;
    }
    .hero__lead  {
        font-size: 1rem;
    }

    .hero video {
        min-height: 100%;
        min-width: 100%;
        position: absolute;
        z-index: 1;
        bottom: 0px;
        right: 0px;
        height: 50%;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(2, 35, 80, 1) 50%, rgba(2, 35, 80, 0) 70%);
    }

    .gradient-title{
        font-size: 40px;
    }

    .tailored-box p {
        font-size: 16px;
    }
}