section.hero-banner-block {
    max-width: 100% !important;
    width: 100% !important;
    background-color: var(--gbg-color-primary);
    padding: 64px 32px 0 32px;
    position: relative;
}

@media screen and (min-width: 998px) {
    section.hero-banner-block {
        padding: 120px 32px 32px 32px;
    }
}

section.hero-banner-block .heading,
section.hero-banner-block .content-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 998px) {
    section.hero-banner-block .heading,
    section.hero-banner-block .content-section {
        justify-content: space-between;
    }
}

section.hero-banner-block .heading .heading-title {
    font-size: clamp(30px, 5vw, 60px) !important;
    line-height: 1 !important;
    color: var(--gbg-color-light);
    font-weight: 500;
    text-align: center;
    margin: 0;
    letter-spacing: -1px;
}

section.hero-banner-block .heading .heading-title strong,
section.hero-banner-block .heading .heading-title b {
    color: var(--gbg-color-light-citron);
    font-weight: 500;
}

section.hero-banner-block .heading > div:first-child,
section.hero-banner-block .heading > div:last-child,
section.hero-banner-block .content-section > div:first-child,
section.hero-banner-block .content-section > div:last-child {
    display: none;
}

@media screen and (min-width: 998px) {
    section.hero-banner-block .heading .heading-title {
        margin: 0 64px;
    }

    section.hero-banner-block .heading > div:first-child,
    section.hero-banner-block .heading > div:last-child,
    section.hero-banner-block .content-section > div:first-child,
    section.hero-banner-block .content-section > div:last-child {
        display: block;
        flex-basis: 25%;
        position: relative;
    }
}

section.hero-banner-block .heading > div:first-child img {
    width: auto;
    height: 95px;
}

/* Dynamic text animation */
section.hero-banner-block .dynamic_text {
    position: relative;
    display: block;
    min-height: 32px;
}

@media screen and (min-width: 998px) {
    section.hero-banner-block .dynamic_text {
        min-height: 80px;
    }
}

section.hero-banner-block .dynamic_text span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    white-space: nowrap;
    font-size: clamp(30px, 5vw, 60px);
    font-weight: 500;
    color: var(--gbg-color-light-citron);
    line-height: 1;
    text-align: center;
}

section.hero-banner-block .dynamic_text span.active {
    opacity: 1;
}

section.hero-banner-block .content {
    font-size: clamp(16px, 3vw, 20px);
    line-height: 1.25;
    color: var(--gbg-color-light);
    text-align: center;
    margin: 24px auto 0;
    max-width: 608px;
}

section.hero-banner-block .link {
    display: block;
    width: fit-content;
    margin: 32px auto 0;
    padding: 12px 24px;
    border-radius: 999px;
    background-color: var(--gbg-color-light-citron);
    color: var(--gbg-color-primary);
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    border: 1px solid var(--gbg-color-dark-citron);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

section.hero-banner-block .link:hover {
    background-color: var(--gbg-color-dark-citron);
    border-bottom: 1px solid var(--gbg-color-dark-citron);
}

@media screen and (min-width: 998px) {
    section.hero-banner-block .content {
        margin: 32px auto 0;
    }

    section.hero-banner-block .link {
        padding: 16px 32px;
        margin-top: 32px;
    }
}


section.hero-banner-block .content-section > div:first-child {
    position: relative;
    align-self: self-end;
}

section.hero-banner-block .content-section > div:first-child img {
    position: absolute;
    right: 15%;
    bottom: -16px;
    width: auto;
    height: 75px;
}

section.hero-banner-block img.top_right_img {
    height: 55px;
    object-fit: contain;
}

section.hero-banner-block img.bottom_right_img {
    height: 80px;
    object-fit: contain;
}

section.hero-banner-block .content-section > div:last-child img {
    margin-left: 64px;
}

