.alert-banner {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    padding: 0 75px;
    background: #9ec323;
    text-align: center;
    color: #232332;
    font-weight: 500;
    z-index: 6;
}

.alert-banner > img {
    width: 115px;
    margin-bottom: -30px;
}

.alert-banner__text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px 0;
}

.alert-banner__text p {
    margin: 0;
    font-size: 18px;
    line-height: 1.333;
}

.alert-banner__text a {
    color: #232332;
    font-weight: bold;
    text-decoration: underline;
}

.alert-banner__text a:hover {
    color: #fff;
}

@media only screen and (max-width: 930px) {
    .alert-banner > img {
        position: absolute;
        bottom: -35px;
        left: -15px;
        margin: 0;
        width: 98px;
    }

    .alert-banner__text {
        padding: 22px 0;
    }
}

@media only screen and (max-width: 599px) {
    .alert-banner > img {
        bottom: -20px;
    }
}

@media only screen and (max-width: 400px) {
    .alert-banner {
        padding: 0 16px;
    }

    .alert-banner__text {
        padding: 16px 0;
    }

    .alert-banner > img {
        display: none;
    }
}



.footer {
    position: relative;
    background-color: #BFEDEB;
}

.footer__upper {
    content: '';
    background-image: url('waves.svg');
    background-size: cover;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}

.call-to-action {
    position: relative;
    padding: 40px 128px;
    z-index: 8;
}

.call-to-action .button {
    font-weight: 600;
    border-radius: 26px;
    padding: 15px 20px 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 320px;
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out,
        opacity 0.15s ease-in-out;
    text-align: left;
}

.call-to-action .button &:hover {
    cursor: pointer;
}

.call-to-action .button:hover .button__icon {
    fill: #232332;
}

.call-to-action .button &:hover,
.call-to-action .button &:focus {
    background-color: #9ec323;
    color: #232332;
}

.call-to-action .button &:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.call-to-action .button__label {
    flex: 1;
    padding-right: 40px;
    pointer-events: none;
}

.call-to-action .button__icon {
    width: 13px;
    height: 20px;
    fill: #9ec323;
    transition: fill 0.15s ease-in-out;
    pointer-events: none;
}

.call-to-action .button--primary {
    background-color: #232332;
    color: #fff;
}

.call-to-action__inner {
    max-width: 670px;
    align-items: center;
    display: grid;
    align-items: center;
    grid-template-columns: 260px 1fr;
}

.call-to-action__image {
    margin: 0 auto;
    display: block;
    max-width: 250px;
}

.call-to-action__link {
    text-decoration: none;
}

.call-to-action__link:hover {
    background-color: #9ec323;
    olor: #232332;
}

.call-to-action__link,
.call-to-action__heading {
    margin-bottom: 20px;
}

.call-to-action__heading {
    color: #232332;
    font-size: 28px;
}

.call-to-action__content {
    margin-left: 20px;
}

@media screen and (max-width: 768px) {
    .call-to-action {
        padding: 40px 40px 80px;
    }

    .call-to-action__inner {
        display: flex;
        flex-direction: column;
    }

    .call-to-action__image {
        order: 0;
    }
}
