.header.top {
    box-shadow: none;
    background-color: transparent;
    transition: all 500ms ease;
}

.hero-background {
    background: linear-gradient(to right, #DDD1F1, #DBC6C1);
    position: absolute;
    top: 0;
    left: 0;
    height: calc(100vh - var(--footer-height));
    width: 100%;
    z-index: -1;
}

.hero-section {
    column-gap: 70px;
}

.hero-section .left-side {
    row-gap: 60px;
}

.hero-section .left-side .dl-button {
    width: fit-content;
}

.hero-section .right-side img {
    pointer-events: none;
    max-width: 100%;
}

.benefits-section {
    max-width: none;
}

.benefits-section .benefits-title {
    padding: 30px 0;
    overflow: hidden;
    height: fit-content;
    position: relative;
}

.benefits-section .benefits-title::before {
    content: '';
    background-color: #F4F7FA;
    position: absolute;
    width: 5000px;
    height: 3000px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.benefits-section h3 {
    text-align: center;
}

.benefits-section h2 {
    text-align: center;
    width: 100%;
}

.benefits-section .white-background {
    background-color: #F4F7FA;
}

.benefits-section .benefits-diagram {
    display: grid;
    row-gap: 20px;
    grid-template-areas: "a . ."
        ". b ."
        ". . c";
}

.benefits-section .benefit {
    row-gap: 10px;
    border-radius: 10px;
    position: relative;
    border-radius: 10px;
    padding: var(--padding);
}

.benefits-section .benefit.a {
    background-color: #DBCAC1;
    grid-area: a;
    padding-right: 40px;
}

.benefits-section .benefit.b {
    background-color: #DDD1F1;
    grid-area: b;
    transform: translateX(-20px);
}

.benefits-section .benefit.c {
    grid-area: c;
    background-color: #C9D8FF;
    transform: translateX(-40px);
}

.benefits-section .benefit .benefit-cube {
    position: absolute;
    right: 0;
    top: 50px;
    transform: translateX(50%);
}

.benefits-section .benefit.c .benefit-cube {
    position: absolute;
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    transform: translateX(-50%) translateY(30%);
}


.benefits-section .benefit .flex {
    column-gap: 15px;
}

.benefits-section .benefits-diagram h4 {
    font-size: 20px;
}

.benefits-section .benefit-image {
    width: 135px;
}

.benefits-section .benefit.b .arrow {
    position: absolute;
    left: -20px;
    top: 0;
    transform: translateX(-100%);
}

.benefits-section .benefit.c .arrow {
    position: absolute;
    left: 40px;
    top: -20px;
    transform: translateY(-100%);
}

.partners-section {
    position: relative;
    height: fit-content;
}

.partners-section h4 {
    margin-bottom: 30px;
}

.partners-section .partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
    row-gap: 30px;
}

.partners-section .partner-type {
    color: #b3b3b3;
    font-family: 'OpenSans-SemiBold';
    font-size: 15px;
}

.partners-section .partner-card {
    row-gap: 20px;
    background-color: #FFFFFF;
    border-radius: 25px;
    transition: all 300ms ease;
}

.partners-section .partner-card:hover {
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.5)
}

.partners-section .partner-card img {
    width: fit-content;
    max-height: 150px;
}

.partners-section .partner-description {
    margin-bottom: auto;
}

.partners-section .learn-more {
    width: fit-content;
    border-color: #1F2933;
    background-color: transparent;
    color: #1F2933 !important;
    font-family: 'Montserrat-SemiBold';
}

.partners-section .learn-more:hover {
    background-color: #1F2933;
    color: #fff !important;
}

.partners-section .page-bg {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    transform: translateX(-30vh);
}

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

    .hero-section {
        flex-direction: column-reverse;
    }

    .hero-background {
        height: 100vh;
    }

    .hero-section .right-side,
    .hero-section .left-side {
        width: 100%;
    }

    .hero-section .left-side {
        row-gap: 20px;
    }

    .hero-section .right-side img {
        height: 250px;
    }

    .benefits-section .benefits-diagram {
        grid-template-areas: 'a'
                            'b'
                            'c';
    }

    .benefits-section .benefit.b,
    .benefits-section .benefit.c {
        transform: none;
    }

    .benefits-section .arrow,
    .benefits-section .benefit-cube {
        display: none;
    }

    .partners-section .partners-grid {
        grid-template-columns: 1fr;
    }
}