/* General styling */
.footer {
    background: #f7f7f7;
    color: #4a5464;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.footer-content {
    margin: auto;
    padding: 60px 0px;
    display: flex;
    justify-content: space-between;
}

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Marquee */
.marquee {
    background: #f8c44f;
    padding: 20px 0px;
    overflow: hidden;
    box-sizing: border-box;
}

.marquee__content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee__content a{
    text-transform: uppercase;
    color: #344773;
    font-weight: 700;
    font-size: 16px;
    transition: all .3s ease-in-out;
}

.marquee__content a:hover{
    text-decoration: underline;
}

.marquee:hover .marquee__content {
    animation-play-state: paused;
}

.marquee__content div:last-child {
    margin-right: 0;
}

.marquee__content > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 0 0 auto;
    width: 25%;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.footer-contact .footer-logo {
    width: 180px;
    display: block;
}

.footer-contact .footer-contact img {
    max-width: 100%;
    width: 100%;
}

.footer-contact div p {
    margin: 0;
    padding-bottom: 8px;
    color: #404041;
    line-height: 1.4;
    font-size: 14px;
    font-weight: 400;
}

.footer-contact div a {
    color: #344773;
    text-decoration: underline;
    transition: opacity .3s ease-in-out;
}

.footer-contact div a:hover {
    opacity: .8;
}


/* Footer columns */
.footer-columns {
    display: flex;
    gap: 20px;
    flex: 0 0 auto;
    width: 70%;
}

.footer-column {
    flex: 1;
}

.footer-column label {
    text-transform: uppercase;
    color: #565d68;
    display: block;
    margin-bottom: 10px;
    cursor: default;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
}

.footer-column input[type="checkbox"] {
    display: none;
}

.footer-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-column ul li {
    padding: 4px 0px;
}

.footer-column ul li a {
    transition: all .3s ease-in-out;
}

.footer-column ul li a:hover {
    opacity: .8;
    text-decoration: none;
}

.footer-column ul li a{
    color: #344773;
    font-size: 14px;
}

.footer-column .list-products {
    display: flex;
    flex-wrap: wrap;
}

.footer-column .list-products li{
    display: flex;
    flex-wrap: wrap;
    width: 40%;
    margin-bottom: 8px;
}

/* Footer copyright */
.footer-copyright {
    color: #565d68;
    background: #f1f4fa;
    font-size: 14px;
    padding: 12px 0px;
    margin: 0;
    text-align: center;
}

/* Fixed buttons */
.fixed-buttons {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 -8px 24px 0 rgba(0, 0, 0, .2509803922);
    flex: 1;
}

.fixed-buttons a {
    background: #6482c0;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    padding: 10px 0px;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    text-align: center;
    flex: 1;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.fixed-buttons a:hover {
    background: #364978;
}

.fixed-buttons a:nth-child(2) {
    background: #344773;
}

.fixed-buttons a:nth-child(2):hover {
    background: #6482c0;
}

.fixed-buttons a .icon {
    margin-right: 6px;
}

@media (min-width: 576px) {
    .footer-content {
        max-width: 95%;
    }
}
@media screen and (min-width: 769px) {

    .fixed-buttons {
        display: flex;
    }
}

@media (min-width: 992px) {
    .footer-column label {
       font-size: 20px;
    }

    .footer-contact div p {
        font-size: 18px;
    }

    .marquee__content a{
        font-size: 18px;
    }

    .footer-column ul li a{
        font-size: 18px;
    }

    .footer-copyright {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .footer-content {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .footer-content {
        max-width: 1320px;
    }
}

/* Accordion mobile */
@media (max-width: 768px) {
   .footer-content {
       flex-direction: column;
       align-items: center;
    }

    .footer-contact {
        text-align: center;
        width: 100%;
        align-items: center;
        gap: 30px;
    }

    .footer-contact div p {
        font-size: 18px;
    }

    .footer-columns {
       flex-direction: column;
       gap: 0;
       width: 100%;
       margin-top: 40px;
    }

    .footer-column {
       border-bottom: 1px solid #8b919c;
       margin-bottom: 15px;
    }

    .footer-column input[type="checkbox"] {
       display: inline-block;
       position: absolute;
       opacity: 0;
       pointer-events: none;
       width: 0;
       height: 0;
    }

    .footer-column label {
       cursor: pointer;
        position: relative;
        padding: 10px;
        padding-top: 0;
        padding-left: 0;
        user-select: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 0;
    }

    .footer-column label::after {
       content: "+";
       font-weight: 900;
       font-size: 20px;
       transition: transform 0.3s ease;
    }

    .footer-column input[type="checkbox"]:checked + label::after {
       content: "-";
    }

    .footer-column ul {
       max-height: 0;
       overflow: hidden;
       transition: max-height 0.4s ease, padding 0.4s ease;
       padding-left: 10px;
       margin-top: 5px;
       margin-bottom: 0;
    }

    .footer-column input[type="checkbox"]:checked ~ ul {
       max-height: 100dvh;
       margin-bottom: 10px;
    }

    .footer-column ul li {
       font-size: 16px;
       margin-bottom: 4px;
    }

    .footer-column .list-products {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
}
