/* Footer */
.list-unstyled {
    list-style: none;
    padding: 0;
}
.footer .first-footer {
    padding-top: 20px;
    padding-bottom: 20px;
}
.social-networks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-end;
}
.social-networks a {
    display: block;
    background: #000;
    width: 32px;
    height: 32px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 18px;
    text-decoration: none;
}
.footer .copy {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.36px;
    font-weight: 600;
    display: block;
}
.copy-container .container4 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.logo-container {
    display: grid;
    justify-content: space-between;
    grid-template-columns: auto auto;
    row-gap: 28px;
}
.logo-container .logo {
    grid-row: 1 / span 2;
}
.footer-nav .list-unstyled {
    display: flex;
    justify-content: flex-end;
    column-gap: 30px;
}
.footer-nav {
    grid-column: 2;
}
.footer-nav ul li a {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.36px;
    color: black;
    text-decoration: none;
    display: block;
}

.footer-nav a.opener {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 14px;
    letter-spacing: 0.36px;
    line-height: 20px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
}
.footer-nav .opener:after {
    content: '';
    width:11px;
    height: 7px;
    background: url('../images/arrow-down.svg');
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-size: contain;
}
.footer-nav.active .opener{
    border-bottom: 1px solid #000;
}
.footer-nav.active .opener::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
/* end Footer */

/* Header */
header {
    z-index: 1;
    position: relative;
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.15);
}
header .container3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 17px;
    padding-bottom: 17px;
}
header .links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.contact-header .cta-white {
    min-width: 120px;
    width: 100%;
}
.link-zendesk a::before {
    content: '';
    display: block;
    background: url('../images/ico-question.svg') no-repeat center;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.link-zendesk a > span {
    border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    width: 1px;
    display: block;
}
.language-wrapper {
    position: relative;
    text-transform: uppercase;
}
/* end Header */

@media(min-width: 821px) {
    .footer-nav .opener{
        display: none !important;
    }
    .footer-nav .slide {
        position: relative !important;
        left: inherit !important;
        top: inherit !important;
    }
    .footer-nav ul li a:hover {
        text-decoration: underline;
    }
}
@media(max-width: 820px) {
    .footer-nav .list-unstyled {
        flex-direction: column;
    }
    .footer-nav .slide-footer {
        display: none;

    }
    .footer-nav .slide-footer.active {
        display: block;
    }
    .logo-container {
        padding: 0;
        display: flex;
        flex-direction: column;
        row-gap: 20px;

    }
    .logo-container .logo {
        padding-left: 20px;
        padding-right: 20px;
    }
    .social-networks {
        padding-left: 20px;
        padding-right: 20px;
        justify-content: flex-start;
    }
    .footer-nav {
        border-top: 2px solid white;
    }
    .nav-container.container4 {
        padding: 0;
    }
    .footer-nav a.opener {
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer .first-footer {
        padding-bottom: 0;
    }
    .footer-nav li {
        padding: 15px 40px;
        border-bottom: 2px solid white;
    }
    .copy-container .container4 {
        padding-top: 8px;
        padding-bottom: 8px;
    }

}
@media(max-width: 640px) {
    .social-networks {
        gap: 30px;
    }
}