.footer,
.footer *,
.footer *::before,
.footer *::after {
    box-sizing: border-box;
}

.footer {
    padding-top: 32px;
    width: 100%;
    min-height: 240px;
    color: #fff;
    font-family: "MyriadWebPro", monospace;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image:
        linear-gradient(0deg, rgba(16, 16, 16, 0.9), rgba(16, 16, 16, 0.9)),
        url("/images/homepage/auth.jpg");
    background-size: cover;
    background-position: center;
}

.footer .g-em-footer-cols {
    display: grid;
    grid-auto-flow: column;
    width: 100%;
    max-width: 1500px;
    padding: 30px 32px 0;
    justify-items: center;
}

.footer .g-em-footer-cols .footer-link {
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    font-size: 14px;
}

.footer .g-em-footer-cols .footer-link:hover {
    text-decoration: underline;
}

.footer .g-em-footer-cols .icon-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer .g-em-footer-cols .icon-item i {
    width: 18px;
}

.footer .g-em-footer-cols .footer-logo {
    display: flex;
    flex-direction: column;
    width: 200px;
    align-items: center;
}

.footer .g-em-footer-cols .footer-logo .logo {
    width: 200px;
    height: 58px;
    padding-left: 0 !important;
}

.footer .g-em-footer-cols .footer-logo .socials {
    width: 200px;
    padding: 10px 0 0 0;
    display: flex;
    list-style: none;
    justify-content: space-evenly;
    line-height: 24px;
    margin-block-end: 16px;
}
.footer .g-em-footer-cols .footer-logo .socials-item {
    display: flex;
    justify-content: space-evenly;
}

.footer .g-em-footer-cols .footer-logo .socials i {
    color: #fff;
    transition: all 0.2s ease-in-out;
    font-size: 21px;
    line-height: 16px;
    vertical-align: -0.0667em;
}

.footer .g-em-footer-cols .footer-logo .socials i:hover {
    color: #38beb9;
}

.footer .g-em-footer-cols .col-divider {
    width: 1px;
    height: 100px;
    background-color: #6b6d70;
    margin: auto 0;
}

.footer .footer-copyright {
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        Noto Sans,
        sans-serif;
    color: #fff;
    font-size: 12px;
    padding-top: 60px;
    text-align: center;
}

.footer .footer-copyright span {
    text-wrap: nowrap;
}

@media (max-width: 576px) {
    .footer .footer-copyright {
        padding: 0 40px;
    }
}

@media (max-width: 1000px) {
    .footer .footer-copyright {
        padding-top: 10px;
    }
}

.footer .payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px 25px;
    padding: 15px 1rem 20px;
    font-size: 12px;
    max-width: 700px;
}

.footer .payment-methods img {
    flex: 0 0 auto;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer .payment-methods {
        gap: 15px 20px;
    }

    .footer .payment-methods img {
        flex: 0 0 calc(25% - 18px);
        min-width: 0;
    }
}

.footer .payment-methods #visa-logo {
    height: clamp(11px, 3vw, 14px);
}

.footer .payment-methods #mastercard-logo {
    height: clamp(13px, 3.6vw, 17px);
}

.footer .payment-methods #paypal-logo {
    height: clamp(15px, 4vw, 19px);
}

.footer .payment-methods #stripe-logo {
    height: clamp(12px, 3.2vw, 15px);
}

.footer .payment-methods #mybank-logo {
    height: clamp(28px, 7.6vw, 36px);
}

.footer .payment-methods #scala-logo {
    height: clamp(16px, 4.2vw, 20px);
}

.footer .payment-methods #satispay-logo {
    height: clamp(15px, 4vw, 19px);
}

.footer-col.section {
    display: flex;
    flex-direction: column;
    width: 200px;
    align-items: center;
}
@media (max-width: 576px) {
    .footer-col.section {
        align-items: normal;
    }
}
.footer-col-wrapper {
    display: flex;
    flex-direction: column;
}
.footer-col-header {
    line-height: 24px;
    padding-bottom: 8px;
    height: 32px;
}
.footer-col-header span {
    color: #319c9c;
    border-bottom: 1px solid #319c9c;
    text-transform: uppercase;
    font-size: 15px;
}
.footer-col-content {
    display: flex;
    flex-direction: column;
    line-height: 21px;
    font-size: 16px;
}

@media (max-width: 1000px) {
    .footer {
        padding-bottom: 70px;
    }
    .footer .g-em-footer-cols {
        justify-content: center;
        justify-items: center;
        grid-auto-flow: row;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        margin-bottom: 40px;
        padding: 32px;
        gap: 30px;
    }

    .footer .g-em-footer-cols .col-divider.desktop {
        display: none;
    }
}

@media (max-width: 576px) {
    .footer {
        align-items: center;
    }

    .footer .g-em-footer-cols {
        justify-content: center;
        justify-items: center;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr 50px) 1fr;
        gap: 40px 0;
        margin-bottom: 0;
    }

    .footer .g-em-footer-cols .col-divider {
        height: 1px;
        width: 250px;
        background-color: #6b6d70;
        margin: auto;
    }

    .footer .g-em-footer-cols .col-divider.desktop {
        display: block;
    }
}
