.oam-section-hero .oam-section-hero__overlay {
    padding: 34px 0 46px;
    background-image: linear-gradient(30deg, #61aaa3, #0B454A);
}

.oam-section-hero .oam-section-hero__title {
    margin-top: 0;
    margin-bottom: 1.25em;
    font-size: 1em;
    font-weight: 400;
    color: #ffffff;
}

.oam-section-hero .oam-section-hero__title mark {
    font-weight: 700;
    color: #b1e5df;
    background-color: transparent;
}

.oam-section-hero .oam-section-hero__image {
    display: block;
    width: 264px;
    height: 212px;
    margin-right: auto;
    margin-left: auto;
    background-image: url(./bg.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.oam-section-hero .oam-section-hero__buttons {
    display: flex;
    justify-content: center;
    margin-top: -16px;
}

.oam-section-hero .oam-section-hero__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 236px;
    min-width: 236px;
    max-width: 236px;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    padding: 0;
    text-align: center;
    color: #0b454a;
    background-color: #ffffff;
    border: 0;
    border-radius: 25px;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.oam-section-hero .oam-section-hero__button:hover {
    color: #ffffff;
    background-color: #0b454a;
}

@media (min-width: 576px) {
    .oam-section-hero .oam-section-hero__title {
        font-size: 24px;
    }
}

@media (min-width: 768px) {
    .oam-section-hero {
        display: flex;
        min-height: 717px;
    }

    .oam-section-hero .oam-section-hero__overlay {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
    }

    .oam-section-hero .oam-section-hero__image {
        position: absolute;
        top: calc(50% - 267px);
        right: 0;
        width: 404px;
        height: 535px;
        background-image: url(./bg-md.webp);
    }

    .oam-section-hero .oam-section-hero__buttons {
        justify-content: flex-start;
        margin-top: 64px;
    }
}

@media (min-width: 992px) {
    .oam-section-hero .oam-section-hero__title {
        font-size: 36px;
    }
}

@media (min-width: 1200px) {
    .oam-section-hero .oam-section-hero__overlay {
        background-image: linear-gradient(30deg, #0b454a, #61aaa3);
        overflow-x: hidden;
    }

    .oam-section-hero .oam-section-hero__image {
        top: calc(50% - 297px);
        right: unset;
        left: 50%;
        width: 741px;
        height: 594px;
        background-image: url(./bg-lg.webp);
    }
}

@media (prefers-reduced-motion: reduce) {
    .oam-section-hero .oam-section-hero__button {
        transition: none;
    }
}