
.container-large {
    padding-left: 80px;
    padding-right: 80px;
}

footer {
    padding-top: 6rem;
    background-image: url("../assets/components/footer-component.svg");
    background-size: cover;
    background-position: 0rem 0rem;
    background-repeat: no-repeat;
}

.logo-footer {
    margin-bottom: 15px;
}

.footer-links a {
    margin-bottom: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}

.footer-info {
    color: var(--white);
    font-weight: 700;
}

.footer-row-2 {
    margin-top: 135px;
}

.bottom-footer {
    margin-top: 50px;
    padding: 20px 80px;
    color: var(--white);
    background-color: var(--primary-color);

    p {
        margin: 0;
        font-weight: 400;
        font-size: 0.95rem;
    }
}

.payment-method,
.newsletter {
    p {
        font-size: 1rem;
        font-weight: 700;
        color: var(--white);
    }

    .payment-logos {
        flex-wrap: wrap;
        display: flex;
        gap: 30px;

        img {
            width: 35px;
        }
    }
}

.newsletter-button {
    border-radius: 3px;
    padding: 5px 10px;
    font-size: 0.6rem;
    position: absolute;
    top: 9px;
    right: 9px;
}

.newsletter-input {
    width: 100%;
    background-color: transparent;
    border: 2px solid var(--white);
    border-radius: 5px;
    padding: 10px;
    color: var(--white);
}

.newsletter {
    margin-top: 50px;
}

.service-time {
    padding-right: 50px;
    color: var(--white);
    font-weight: 400;

    span {
        font-weight: 700;
    }
}

.social-media {
    justify-content: center;

    i {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.1rem;
        width: 50px;
        aspect-ratio: 1/1;
        background-color: var(--white);
        color: var(--secondary-color);
        border-radius: 50%;
    }

    a {
        text-decoration: none;
    }

    .d-flex {
        gap: 10px;
    }
}

@media (max-width: 992px) {
    footer {
        font-size: 0.95rem;
        padding-top: 7rem;
    }

    .bottom-footer {
        margin-top: 0px;
        padding: 20px 30px;
    }

    .footer-links a {
        margin-bottom: 5px;
    }

    .footer-links .col-6 {
        margin-top: 60px;
        margin-bottom: 40px;
    }

    .footer-info p {
        margin-bottom: 1.5rem;
    }

    .footer-container-2 {
        padding-top: 5.3rem !important;
        background-image: url("../assets/components/footer-component-m.svg");
    }

    .payment-method {
        margin-top: 2rem;
    }

    .payment-logos {
        display: flex;
        flex-wrap: wrap;
    }

    .service-time {
        padding-right: 10px;

        p {
            margin-bottom: 1.5rem;
        }
    }

    .social-media {
        margin-top: 1.5rem;
        justify-content: start;
    }

    .container-large {
        padding-left: 30px;
        padding-right: 30px;
    }
}


