.cz-banner__section {
    padding: 30px 0;
}

.cz-banner__content {
    background-color: var(--secondary-fc);
    border-radius: 35px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.cz-banner__logo-container {
    display: flex;
    align-items: center;
}

.cz-banner__logo-link {
    display: block !important;
}

.cz-banner__logo {
    width: 152px;
    height: 40px;
}

.cz-banner__separator {
    width: 1px;
    height: 24px;
    margin: 0 20px;
    background-color: #eb7057;
}

.cz-banner__img {
    width: 40%;
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 35px;
}

.cz-banner__info {
    padding: 45px;
    display: flex;
    width: 60%;

    flex-direction: column;
    row-gap: 20px;
}

.cz-banner__title {
    color: #fff;
    font-family: Vollkorn, sans-serif;
    font-size: 34px;
    font-weight: 600;
}

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

}

@media only screen and (max-width: 920px) {
    .cz-banner__title {
        font-size: 18px;
        font-weight: 600;
    }

    .cz-banner__logo {
        width: 76px;
        height: 28px;
    }
    .cz-banner__info {
        padding: 16px 4px 16px 16px;
    }
}

@media only screen and (max-width: 640px) {
    .cz-banner__content {
        border-radius: 18px;
    }

    .cz-banner__title {
        font-size: 13px;
        font-weight: 600;
    }

    .cz-banner__separator {
        margin: 0 6px;
    }

    .cz-banner__info {
        padding: 12px 4px 12px 12px;
        row-gap: 5px;
        width: 45%;
    }

    .cz-banner__img {
        width: 55%;
    }

    .cz-banner__logo {
        width: 56px;
        height: 18px;
    }
}