.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 {
    width: 100%;
    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: grid;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    padding: 15px 0 20px;
    font-size: 12px;
}

@media (max-width: 500px) {
    .footer .payment-methods {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer .payment-methods #visa-logo {
    height: 14px;
}

.footer .payment-methods #mastercard-logo {
    height: 17px;
}

.footer .payment-methods #paypal-logo {
    height: 19px;
}

.footer .payment-methods #stripe-logo {
    height: 15px;
}

.footer .payment-methods #mybank-logo {
    height: 36px;
}

.footer .payment-methods #scala-logo {
    height: 20px;
}

.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;
    }
}
