.footer {
    border-top: 1px solid #727272;
    background: #222021;
    padding: 50px 0 30px 0;
}

.footer-content {
    /* display: flex;
    justify-content: space-between; */
}

.footer-content p {
    color: #E3E3E3;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 30px;
}

.footer-content-image {
    object-fit: contain;
    margin-bottom: 20px;
    width: 25%;
    height: 100%;
    max-width: 200px;
    max-height: 70px;
}

.footer-content-image img {
    object-fit: contain;
}

.footer-content-social {
    display: flex;
    gap: 10px;
}

.footer-content-social li a {
    color: #fff;
    font-size: 20px;
}

.footer-content-social li a svg {
    color: #fff;
    width: 20px;
    height: 20px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 0.804px solid #6C6C6C;
    background: #3C3C3C;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-content-social li a svg:hover {
    background: #ED2939;
    color: #fff;
    border: 0.804px solid #ED2939;
    transition: all 0.3s ease;
}

.footer-content-links h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-content-links ul li {
    margin-bottom: 10px;
}

.footer-content-links ul li a {
    color: #C7C7C7;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-content-links ul li a:hover {
    color: #ED2939;
    transition: all 0.3s ease;
}

.footer-content-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-content-links-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-content-links-contact h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-content-links-contact ul li {
    margin-bottom: 10px;
}

.footer-content-links-contact ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-content-links-contact ul li a:hover {
    color: #ED2939;
    transition: all 0.3s ease;
}

.footer-content-links-contact ul li a svg {
    color: #ED2939;
    font-size: 16px;
    font-weight: 400;
    margin-inline-end: 10px;
    transition: all 0.3s ease;
}

.copyright {
    background: #202020;
    padding: 10px 0;
}

.copyright p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin: 0;
}

.contact-us-btn {
    border-radius: 40px;
    border: 1px solid #6C6C6C;
    background: linear-gradient(180deg, #525252 -37.25%, #252525 100%);
    padding: 10px 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin: 0;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s ease;
}

.contact-us-btn:hover {
    background: #ED2939;
    border: 1px solid #ED2939;
    color: #fff;
    transition: all 0.3s ease;
}


@media (max-width: 768px) {
    .footer-content-links {
        margin: 1rem 0;
    }
    .footer-content {
        margin-bottom: 2rem;
    }
}









