.footer-ecl {
    padding: 6rem 4% 5rem;
    position: relative;
    z-index: 5;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    font-family: var(--font);
}

/* Responsive Padding for different screen sizes */
@media screen and (min-width: 950px) {
    .footer-ecl {
        padding: 8rem 4% 3rem;
    }
}

@media screen and (min-width: 1400px) {
    .footer-ecl {
        padding: 10rem 4% 4rem;
    }
}

.footer-ecl .link-we6 {
    position: relative;
    display: flex;

    margin-bottom: 6rem;
    justify-content: space-between;
    align-items: flex-start;
}

@media screen and (min-width: 768px) {
    .footer-ecl .link-we6 {
        margin-bottom: 8rem;
    }
}

.footer-ecl .link-we6 a {
    font-family: "GT-Walsheim", var(--font);
    font-size: 2.2rem;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.35px;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    .footer-ecl .link-we6 a {
        font-size: 1.2rem;
        gap: 1rem;
    }
}

@media screen and (min-width: 950px) {
    .footer-ecl .link-we6 a {
        font-size: 2.8rem;
    }
}


@media screen and (min-width: 1400px) {
    .footer-ecl .link-we6 a {
        font-size: 3.2rem;
    }
}

.footer-ecl .link-we6 a:hover {
    opacity: 0.7;
}

.footer-ecl .link-we6 a img {
    width: 3.5rem;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    .footer-ecl .link-we6 a img {
        width: 2rem;
    }
}



@media screen and (min-width: 950px) {
    .footer-ecl .link-we6 a img {
        width: 4.5rem;
    }
}

@media screen and (min-width: 1400px) {
    .footer-ecl .link-we6 a img {
        width: 5.5rem;
    }
}

.footer-ecl .link-we6 a:hover img {
    transform: translateX(10px);
}

.footer-ecl .link-we6 span {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .footer-ecl .link-we6 span {
        position: absolute;
        flex-direction: row;
        right: 0;
        top: -5rem;
        gap: 0.7rem;
    }
}

@media screen and (min-width: 768px) {
    .footer-ecl .link-we6 span {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

.footer-ecl .link-we6 span svg {
    width: 3rem;
    height: 3rem;
    transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 768px) {
    .footer-ecl .link-we6 span svg {
        width: 3rem;
        height: 2rem;
    }
}

.footer-ecl .link-we6 span a:hover svg {
    transform: scale(1.1);
}

.footer-ecl .logo-container {
    margin: 2rem 0;
    width: 100%;
}

.footer-ecl .logo-container img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-ecl .text-hyg {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 5rem;
    align-items: center;
    border-top: 1px solid rgba(0, 129, 255, 0.1);
    padding-top: 4rem;
}

@media screen and (min-width: 768px) {
    .footer-ecl .text-hyg {
        flex-direction: row;
        justify-content: space-between;
        padding-top: 5rem;
    }
}

.footer-ecl .text-hyg h2 {
    font-size: 1.3rem;
    font-family: inherit;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
}

@media screen and (min-width: 950px) {
    .footer-ecl .text-hyg h2 {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 1400px) {
    .footer-ecl .text-hyg h2 {
        font-size: 1.8rem;
    }
}

.footer-ecl .text-hyg h2:first-child {
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid var(--primary-color);
    padding: 1.2rem 2.5rem;
    cursor: default;
    width: fit-content;
    font-size: 2rem;
    border-radius: 2.5rem;
}

@media screen and (max-width: 768px) {
    .footer-ecl .text-hyg h2:first-child {
        padding: 1.3rem 2.5rem;
        border-radius: 1.5rem;
        gap: 3rem;
        width: 100%;
    }
}

.footer-ecl .text-hyg svg {
    max-width: 3.5rem;
    transition: all 0.3s ease;
}

@media screen and (min-width: 950px) {
    .footer-ecl .text-hyg svg {
        max-width: 4.5rem;
    }
}

.footer-ecl .text-hyg svg:hover {
    transform: rotate(90deg);
}