.site-footer {
    position: relative;
    z-index: 1;
    padding: 50px 0;
}

.site-footer.style-3 {
    padding: 20px 0;
}

.site-footer.style-4 {
    padding: 40px 0 20px;
}

.site-footer.style-5 {
    padding: 15px 0 18px;
}

.site-footer .cb-row {
    color: var(--white);
}

.site-footer.style-1 .cb-row,
.site-footer.style-4 .cb-row {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.site-footer.style-2 .cb-row,
.site-footer.style-3 .cb-row {
    align-items: center;
    justify-content: space-between;
}

.site-footer.style-5 .cb-row {
    text-align: center;
}

.site-footer.style-2 .cb-row .cb-column,
.site-footer.style-3 .cb-column {
    width: auto;
}

.site-footer.style-1 .cb-row .list-contact,
.site-footer.style-2 .cb-row .list-contact {
    display: flex;
    flex-direction: column;
}

.site-footer.style-3 .cb-row .list-contact {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.site-footer.style-4 .cb-row .list-contact {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-flow: row wrap;
    margin: 40px 0 70px;
}

.site-footer.style-4 .list-contact .info-address {
    width: 100%;
}

.site-footer.style-4 .list-contact .info-phone-number {
    margin-right: 20px;
}

.site-footer .cb-row a {
    color: var(--white);
}

.site-footer .info-copyright,
.site-footer.style-5 .list-contact,
.site-footer.style-5 .footer-logo {
    display: none;
}

.site-footer.style-3 .info-copyright,
.site-footer.style-4 .info-copyright,
.site-footer.style-5 .info-copyright {
    display: block;
}


.site-footer .footer-logo {
    margin-top: 20px;
}

.site-footer.style-3 .footer-logo {
    display: none;
}

.site-footer.style-4 .footer-logo {
    position: relative;
    order: -1;
    margin-top: 0;
}

.site-footer.style-4 .footer-logo:before,
.site-footer.style-4 .footer-logo:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: calc(50% - 140px);
    height: 1px;
    border: 1px solid var(--white);
}

.site-footer.style-4 .footer-logo:after {
    left: auto;
    right: 0;
}

.site-footer .footer-logo img {
    width: 120px;
    height: 100%;
    object-fit: contain;
}


@media all and (min-width: 901px) {
    .site-footer.style-3 .list-contact span:not(:last-child) {
        margin-right: 20px;
    }
}

@media all and (min-width: 1300px) {
    .site-footer.style-3 .container {
        max-width: 100%;
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media all and (max-width: 1300px) {
    .site-footer.style-3 .cb-row {
        flex-direction: column;
        justify-content: center;
		text-align: center;
    }

    .site-footer.style-3 .info-copyright {
        margin-top: 15px;
    }
}

@media all and (max-width: 900px) {
    .site-footer.style-3 .cb-row .list-contact {
        flex-direction: column;
        text-align: center;
    }
}