/* ------------------------------------------------------------ *\
	footer
\* ------------------------------------------------------------ */

.footer {
    position: relative;
    flex-shrink: 0;
    position: relative;
    background-color: var(--footer-background-color);
    padding: 2.5rem 0;
    color: var(--footer-text-color-base);
;
    font-size: 1.5rem;
    line-height: 1.2;
}

.footer .footer__logo {
    display: inline-block;
    margin-bottom: 2.2rem;
    cursor: unset;
}

.footer .footer__inner {
    padding: 0rem 0.2rem;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer .footer__content {
    flex: 0 0 16.7%;
    max-width: 16.7%;
    padding-right: 1rem;
}

.footer .footer__cols {
    display: flex;
    flex: 1;
    margin: 0rem -1rem;
}

.footer .footer__col {
    padding: 0rem 1rem;
    flex: 1;
}

.footer .footer__col--size1 {
    flex: 0 0 26.5%;
    max-width: 26.5%;
}

.footer .footer__col--size2 {
    flex: 0 0 25.4%;
    max-width: 25.4%;
}

.footer .footer__col--size3 {
    flex: 0 0 30.1%;
    max-width: 30.1%;
}

.footer h5 {
    font-size: 2.4rem;
    color: var(--footer-text-color-base);
;
    margin-bottom: 1.4rem;
}

.footer .footer__nav ul {
    list-style: none;
}

.footer .footer__nav li + li {
    margin-top: 1rem;
}

.footer .footer__nav li a {
    color: var(--footer-text-color-anchor);
    text-decoration: none;
}

.footer .footer__nav a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 1023px) {
    .footer .footer__content {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .footer {
        padding: 1.6rem 0 6.4rem;
    }

    .footer h5 {
        margin-bottom: 0.9rem;
    }

    .footer .footer__inner {
        display: block;
    }

    .footer .footer__nav {
        text-align: center;
    }

    .footer .footer__logo {
        max-width: 4.3rem;
        margin-bottom: 3.3rem;
    }

    .footer .footer__content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__cols {
        display: block;
        margin: 0 0 -4.5rem;
    }

    .footer .footer__col {
        text-align: center;
        padding: 0;
        margin-bottom: 3.3rem;
    }

    .footer .footer__col--size1 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__col--size2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__col--size3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__socials {
        position: absolute;
        top: 0.6rem;
        right: -0.1rem;
    }
}

/* ------------------------------------------------------------ *\
	copyright

	Can be found on the index.html page.
\* ------------------------------------------------------------ */

.copyright {
    text-align: right;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.copyright span {
    display: block;
}

@media only screen and (max-width: 767px) {
    .copyright {
        text-align: center;
    }
}

/* ------------------------------------------------------------ *\
	Socials
\* ------------------------------------------------------------ */

.socials ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
}

.socials li + li {
    margin-left: 1.6rem;
}

.socials li a {
    transition: opacity 0.3s;
}

.socials li:hover a {
    opacity: 0.7;
}

@media only screen and (max-width: 767px) {
    .socials li {
        transform: scale(0.95);
    }
    .socials li + li {
        margin-left: 1.6rem;
    }
}

/* ------------------------------------------------------------ *\
	Modal Popups
\* ------------------------------------------------------------ */

.js-popup.popup {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--modal-background-color);
    z-index: 1;
    max-width: 100%;
}
.js-popup.popup:before {
    content: none;
}
.js-popup.popup .popup__content {
    padding: 28px 21px 20px;
    width: 616px;
    background-color: red;
    margin: 0 auto;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: -o-radial-gradient(
        center top,
        ellipse,
        var(--modal-content-background-color) 0,
        var(--modal-content-background-color) 100%
    );
    background: radial-gradient(
        ellipse at center top,
        var(--modal-content-background-color) 0,
        var(--modal-content-background-color) 100%
    );
;
    border-radius: 12px;
}
.mobile-only {
    display: none;
}
.desktop-only {
    display: block;
}
@media (max-width: 767px) {
    .mobile-only {
        display: block;
    }
    .desktop-only {
        display: none;
    }
}
@media (max-width: 767px),
    screen and (max-width: 812px) and (orientation: landscape) {
    .js-popup.popup .popup__content {
        width: 94%;
    }
}
.js-popup.popup .popup__title {
    text-align: center;
    font-size: 24px;
    color: var(--modal-header-text-color);
    text-transform: uppercase;
    margin-bottom: 23px;
    pointer-events: none;
}
.js-popup.popup .popup__body {
    background-color: var(--modal-content-background-color);
    padding: 33px 20px 20px 28px;

    border-radius: 5px;
    overflow: auto;
    height: 368px;
    font-size: 13px;
    letter-spacing: -0.0125em;
    margin-bottom: 23px;
    max-width: 100%;
    text-align: left;
}
.js-popup.popup .popup__body h4 {
    color: var(--body-text-color);
    font-size: 13px;
    margin-bottom: 0;
    }
    
.js-popup.popup .popup__body h3 {
    color: var(--modal-content-header-text-color);
    margin-bottom: 17px;
    font-size: 16px;
    letter-spacing: 0.017em;
    text-transform: uppercase;
}
.js-popup.popup .popup__body p {
    margin-bottom: 42px;
}
.js-popup.popup .popup__actions {
    text-align: center;
    margin-bottom: 6px;
}
/* .js-popup.popup .popup__actions .btn {
    background: var(--button-background-secondary);
} */
.js-popup.popup.is-visible {
    opacity: 1;
    pointer-events: all;
    z-index: 1060;
}
.wrapper.is-fixed {
    overflow: hidden;
}
.offer-wrapper.is-fixed {
    overflow: inherit;
}

.popup__actions .js-close:after {
    content: normal;
    min-width: 280px;
}

.is-fixed {
    overflow: hidden;
}
