.cz-footer {
    position: relative;
    background: center / cover no-repeat url('../../img/header-bg.jpg');
    z-index: 10;
    margin-top: 30px;
}

.cz-footer__content {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary-fc);
    font-size: 14px;
}

.cz-footer__content a {
    color: var(--primary-fc);
}

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

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

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

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

.footer-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

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

.footer-content {
    display: flex;
}

.cz-footer__copyright {
    font-size: 11px;
}

@media only screen and (max-width: 1400px) {
    .cz-footer__logo {
        width: 94px;
        height: 25px;
    }
}

@media only screen and (max-width: 1120px) {
    .cz-footer__content {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .cz-footer__content a {
        font-size: 22px;
    }

    .cz-footer__logo {
        width: 152px;
        height: 40px;
    }
    .cz-footer__copyright {
        font-size: 22px;
        border-top: 1px solid var(--primary-fc);
        text-align: center;
        padding: 16px 0;
    }
}

@media only screen and (max-width: 600px) {
    .cz-footer__content a {
        font-size: 16px;
    }
    .cz-footer__copyright {
        font-size: 16px;
    }
    .footer-content {
        flex-direction: column;
        row-gap: 10px;
    }
    .footer-container .cz-footer__separator {
        display: none;
    }
}
