footer {
    font-family: Avenir;
    width: 100%;
    background-color: #ffffff;
    height: 270px;
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: center;
    z-index: 1 !important;
    transform: translate3d(0, 270px, 0);
    transition: all 1.7s cubic-bezier(0.22, 0.44, 0, 1);
}

footer article {
    height: 270px!important;
}

.footer-toggle {
    transform: translate3d(0, 0, 0);
    transition: all 1.7s cubic-bezier(0.22, 0.44, 0, 1);
    z-index: 10!important;
}

#footer-logo {
    max-width: 100px;
    padding-bottom: 10px;
}

footer .info {
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-top: 25px;
    flex-grow: 1;
    width: 100%;
}

footer .info .flex-column {
    width: 25%;
    height: 100%;
}

footer .info .flex-column:not(:first-child, :last-child) {
    padding: 0 20px;
}

footer .info .flex-column:nth-child(2),
footer .info .flex-column:nth-child(3),
footer .info .flex-column:last-child {
    margin-top: 10px;
}

footer  .label {
    font-weight: normal;
    font-size: 14px;
    line-height: 150%;
    display: flex;
    align-items: center;
    color: #000000;
    margin-bottom: 10px;
}

footer  .title {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #333333;
    margin-bottom: 15px;
}

footer  .subtitle{
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    padding-bottom: 10px;
    text-decoration: none;
}

footer .subtitle:hover {
    text-decoration: underline;
    text-decoration-color: var(--main-blue);
    color: var(--main-blue);
}

footer  .contacts{
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #333333;
    text-decoration: none;
    margin-bottom: 10px;
}

footer .social-media {
    height: 35px;
}

footer .social-media a {
    text-decoration: none;
}

footer .social-media img {
    margin-right: 20px;
}

footer .social-media .social-icon {
    max-width: 24px;
}

footer .private-policy .subline {
    font-weight: normal;
    font-size: 12px;
    line-height: 15px;
    display: flex;
    align-items: center;
    color: #A7A7A7;
    cursor: pointer;
}

footer .private-policy {
    padding: 10px 0;
    width: 100%;
}

footer .private-policy .flex-row {
    width: 50%;
}

footer .private-policy .flex-row:first-child > p {
    padding-right: 20px;
}

footer .private-policy .flex-row:last-child {
    justify-content: flex-end;
}

.footer-line {
    border: 1px solid var(--hr-grey);
    width: 100%;
}

@media only screen and (max-width: 1200px) {
    footer .info .flex-column:nth-child(2) {
        display: none !important;
    }

    footer .info .flex-column:nth-child(4) > p {
        display: none !important;
    }

    footer .info .flex-column {
        width: 33%;
        padding: 0 20px;
    }

    footer .private-policy .flex-row {
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 768px) {
    footer .info .flex-column:first-child {
        display: none !important;
    }

    footer .info .flex-column:nth-child(4) > p {
        display: none !important;
    }

    footer .info .flex-column {
        width: 50%;
        padding: 0 20px;
    }

    footer .column.contacts-wrapper > .contacts:nth-child(2){
        display: none !important;
    }

    footer .private-policy{
        flex-direction: column !important;
    }

    footer .private-policy .flex-row {
        width: 100%;
    }

    footer .private-policy .flex-row:last-child {
        justify-content: flex-start;
    }

    footer .social-media img {
        margin-right: 5px;
    }
}