.footer {
    /* background: #fff url('../images/arch.svg') repeat-x;
    background-size: 24px 33px;
    padding-top: 32px; */
    font-family: 'Arsenal', sans-serif;
    color: #000;
}

.footer.snap-section {
    scroll-snap-align: start;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: flex;
    background-color: #F6F6F6;
    padding: 50px 30px 0 30px;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
}

.footer-logo img {
    width: 202px;
    height: 128px;
    margin-bottom: 10px;
}

.footer-logo h2 {
    margin: 5px 0 0;
    font-size: 24px;
    color: #8B0000;
}

.footer-logo p {
    margin: 0;
    font-size: 14px;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 20px 0 65px;
}

.footer-menu a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.btn-football {
    background-color: #AF1914;
    color: white!important;
    width: 157px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    letter-spacing: 0!important;
}

.btn-football:hover {
    background-color: #9B2528;
}

.footer-social-row {
    display: flex;
    flex-direction: row;
    gap: 65px;
    align-items: center;
    justify-content: center;
}

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

.footer-newsletter h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 25px
}

.social-icons a img {
    width: 32px;
    height: 32px;
}

.newsletter-form {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-wrapper {
    position: relative;
    width: 460px;
    background-color: #F7F7FC;
}

.input-wrapper input {
    width: 100%;
    height: 58px;
    padding: 0 60px 0 20px;
    font-size: 16px;
    border: 0;
    background-color: transparent;
    border-radius: 60px;
    transition: background-color 0.3s, border 0.3s;
}

.input-wrapper input::placeholder {
    font-size: 16px;
    color: #949494
}

.input-wrapper button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 40px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    border-radius: 50%;
}

.input-wrapper input:hover,
.input-wrapper input:focus {
    border: 1px solid #000;
    background-color: rgb(236, 237, 243);
    outline: none;
}

.input-wrapper button img {
    width: 20px;
    height: 20px;
}

.input-wrapper input:focus~button img,
.input-wrapper input:hover~button img {
    filter: brightness(0) invert(0);
}

.footer-bottom {
    text-align: center;
    background-color: #F6F6F6;
    padding: 30px;
}

.footer-bottom-one,
.footer-bottom-two {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-one {
    margin-top: 30px;
}

.footer-bottom-two {
    margin-top: 80px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 25px
}

.footer-links a,
.footer-legal a {
    display: block;
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
}

.footer-links a:not(:last-child) {
    margin-bottom: 8px;
}

.footer-sites h4 {
    color: black;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.footer-sites img {
    width: 120px;
    height: 38px;
}

.footer-contact a {
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.footer-lang .active {
    text-decoration: underline;
}

.copyright {
    font-size: 14px;
    color: #000;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    padding: 0;
}

.hover-underline {
    display: inline-block;
    position: relative;
    color: #000000!important;
    text-decoration: none!important;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #000;
    transition: transform 0.25s ease-out;
}

.hover-underline::after {
    transform-origin: bottom right;
}

.hover-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-item[aria-expanded="true"] .hover-underline::after {
    transform: scaleX(1);
}

@media (max-width: 600px) {
    .footer {
        max-width: unset;
        width: 100%;
    }
    .footer-logo img {
        width: 140px;
        height: 112px;
    }
    .footer-newsletter h4 {
        margin-bottom: 25px;
    }
    .footer-social-row {
        gap: 20px;
    }
    .footer-top,
    .footer-bottom,
    .footer-newsletter,
    .footer-social-row,
    .footer-legal {
        display: flex;
        flex-direction: column!important;
        align-items: center;
    }
    .footer-bottom-one,
    .footer-bottom-two {
        flex-direction: column-reverse;
    }
    .footer-bottom-one {
        gap: 30px
    }
    .footer-links a,
    .footer-legal a {
        text-align: center;
    }
    .footer-links a:not(:last-child) {
        margin-bottom: 10px;
    }
    .footer-bottom-two {
        margin-top: 70px;
        gap: 50px
    }
    .footer-sites h4,
    .footer-contact {
        display: none;
    }
    .footer-lang a {
        margin: 0 15px;
        font-weight: bold;
        color: black;
        text-decoration: none;
    }
    .footer-menu {
        flex-direction: column;
        gap: 25px;
        margin: 30px 0 65px;
    }
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    .footer-newsletter,
    .footer-social-row,
    .input-wrapper {
        width: 100%;
    }
    .input-wrapper {
        border: 1px solid #E1E1E1;
        border-radius: 60px;
        background-color: white;
        display: flex;
        align-items: center;
        padding-left: 16px;
    }
    .input-wrapper input {
        padding: 0 10px;
    }
    .input-wrapper input:hover,
    .input-wrapper input:focus {
        border: unset;
        background-color: unset;
    }
    .input-wrapper:hover,
    .input-wrapper:focus {
        border: 1px solid #000;
        background-color: rgb(236, 237, 243);
        outline: none;
    }
    .input-wrapper:focus img,
    .input-wrapper:hover img {
        filter: brightness(0) invert(0);
    }
    .input-wrapper button img,
    .input-wrapper img {
        width: 18px;
        height: 18px;
    }
    .copyright {
        font-weight: 400;
    }
}
