/* footer */

.footer__container {
    width: 100%;
    position: relative;
}

.footer__sections {
    display: flex;
    flex-direction: column;
    padding-inline: 5vw;
    padding-bottom: 20px;
    padding-top: 40px;
    background: var(--secondary-color);
}

.footer__company-contact-info-and-inner-links {
    display: flex;
    gap: 7vw;
}

.footer__contact-info--wrapper {
    display: flex;
    flex-direction: column;
}

.footer__logo-and-social-icons--wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.footer__social-icons-wrapper {
    display: flex;
    justify-content: space-between;
}

.footer__social-icon {
    aspect-ratio: 1;
    width: 20px;
}

.footer__company-contact-info {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-style: normal;
}

.footer__logo--wrapper {
    width: 12vw;
    position: relative;
}

.footer__logo {
    width: 100%;
    object-fit: contain;
}

.footer__contact-info--link {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-style: normal;
    font-size: 18px;
}

.footer__contact-info--icon {
    width: 20px;
    aspect-ratio: 1;
    display: block;
}

.footer__contact-info--text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    font-weight: 300;
    font-size: 13px;
    gap: 5px;
}

.footer__title {
    font-size: 27px;
    margin-bottom: 20px;
}

.footer-adress-link {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
}

.footer__links--wrapper {
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    list-style: none;
    color: #ffffff;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.footer__payment-methods-fanshop--wrapper {
    display: flex;
    justify-content: flex-end;
}

.footer__payment-methods-fanshop {
    display: flex;
    gap: 20px;
}

.footer__bottom {
    position: relative;
    padding-block: 15px;
    padding-inline: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--tertiary-color);
}

.footer-bottom-text {
    font-size: 14px;
}

.footer__bottom-text--left {
    font-family: 'Poppins', 'Raleway', Arial, Helvetica, sans-serif;
    color: #ffffff;
    font-weight: 300;
}

.footer__bottom-text--left__font-size {
    font-size: 13px;
}

.footer__bottom-text--center {
    text-align: center;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    color: #ffffff;
    font-weight: 400;
}

/* Centering the middle <div> */
.footer__bottom > div:nth-child(2) {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.footer__bottom-text--center__font-size {
    font-size: 14px;
}

.fathom-link {
    color: #ffffff;
}

.footer-legal-links-wrapper {
    display: flex;
    gap: 5px;
}

.footer-legal-link {
    font-family: 'Poppins', 'Raleway', Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: #ffffff;
    font-weight: 300;
    font-size: 13px;
}

.footer-legal-link:not(:last-of-type)::after {
    content: "|";
    margin-left: 5px;
}

.page-under-construction__footer--wrapper {
    display: flex;
}

.page-under-construction__footer {
    position: relative;
}

.page-under-construction__footer--image {
    position: absolute;
    width: 120%;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1350px) {
    .footer__bottom {
        padding-block: 15px;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }

    .footer__bottom > div:nth-child(2) {
        position: static;
        left: auto;
        transform: none;
    }

    .footer-legal-link {
        font-size: 14px;
    }

    .footer__bottom-text--left__font-size {
        font-size: 14px;
    }
}

@media only screen and (max-width: 1100px) {
    .footer__logo--wrapper {
        width: 15vw;
    }
}

@media only screen and (max-width: 900px) {
    .footer__company-contact-info-and-inner-links {
        display: flex;
        flex-direction: column;
    }

    .footer__sections {
        padding-inline: 10vw;
    }

    .footer__logo--wrapper {
        width: 45vw;
    }

    .footer__social-icon {
        width: 25px;
    }

    .footer__company-contact-info-and-inner-links {
        gap: 30px;
    }

    .footer__title {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 500px) {
    .footer-legal-links-wrapper {
        flex-direction: column;
        gap: 5px;
    }

    .footer-legal-link {
        text-align: center;
    }

    .footer-legal-link:not(:last-of-type)::after {
        content: "";
        margin-left: 0;
    }
}



/* end footer section */