.drm-email-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 502px;
    margin: 0 auto;
    padding: 8px;
    border: 1px solid #d8d8e130;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
}

.drm-email-cta__input {
    flex: 1;
    border: none !important;
    outline: none;
    background: transparent;
    color: #fff;
    padding: 12px;
    font-size: 16px;
}

.drm-email-cta__input::placeholder {
    color: #aaa;
}

.drm-email-cta__button {
    border: none;
    cursor: pointer;
    padding: 16px 20px;
    border-radius: 8px;
    background: #F25217 !important;
    color: #fff;
    font-weight: 600;
    transition: all .3s ease;
}

.drm-email-cta__button:hover {
    background: #f57545;
}

.drm-email-cta__button:disabled {
    opacity: .7;
    cursor: not-allowed;
}

.drm-email-cta__message {
    max-width: 502px;
    margin: 10px auto 0;
    font-size: 14px;
    display: none;
}

.drm-email-cta__message.drm-error {
    color: #ff6b6b;
}

.drm-email-cta__message.drm-success {
    color: #4caf50;
}

@media (max-width:550px) {

    .drm-email-cta {
        flex-direction: column;
    }

    .drm-email-cta__button {
        width: 100%;
    }
}
.banner-image-wrap {
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}