.contact-div {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    color: white;
    margin-inline: auto;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    background-color: #1F76BD;
}

.footer-main-text {
    font-size: 2rem;
    font-weight: bold;
}

form input {
    width: 100%;
    margin-bottom: 10px;
}

.input-text input {
    padding-block: 16px;
    padding-inline: 20px;
    border: none;
    box-shadow: none;
    border-radius: 5px;
}

.input-btn input {
    padding: 16px;
    border: none;
    box-shadow: none;
    border-radius: 10px;
    font-weight: bold;
    background-color: #F2A6E7;
}

.footer-title {
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2563EB;
}

.footer-links a {
    text-decoration: none;
    color: #555;
    line-height: 22px;
    font-size: 0.875rem;
    font-weight: 400;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: #000;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
}

.info-div {
    width: 90%;
    margin-inline: auto;
}

.footer-contact-icon {
    position: absolute;
    left: 0;
    translate: -150%;
}

.logo-marquee {
    width: 100vw;
    overflow: hidden;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.logo-track img {
    width: 100vw;
    flex-shrink: 0;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100vw);
    }
}

@media (min-width: 768px) {
    .contact-div {
        aspect-ratio: 3.5;
    }

    .contact-div::before,
    .contact-div::after {
        content: "";
        position: absolute;
        width: 266px;
        height: 217px;
        border: 7px solid #ffffff;
        border-radius: 50%;
        pointer-events: none;
    }

    .contact-div::before {
        top: -80px;
        left: -80px;
        opacity: 0.2;
        transform: rotate(-28.21deg);
    }

    .contact-div::after {
        bottom: -100px;
        right: -100px;
    }

    form input {
        min-width: 270px;
        width: 100%;
        margin-inline: 0;
    }

    .footer-main-text {
        font-size: 2.625rem;
        font-weight: bold;
    }
}