a {
    text-decoration: none
}


.footer-section {
    font-size: 20px;
}

.logo-section {
    background-color: #3C3950;
    width: 16%;
    border-radius: 15px;
    aspect-ratio: 1.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tablet */
@media (max-width: 992px) {
    .logo-section {
        width: 25%;
        aspect-ratio: 1.8;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .logo-section {
        width: 60%;
        aspect-ratio: 1.8;
    }
}

.sub-footer-section p {
    font-size: .61em;
    text-align: justify;
    line-height: 1.2em;
    letter-spacing: .1em;
    color: #3C3950;
    font-weight: 500;
}

.foot-social-icons {
    border-radius: 100vh;
    background-color: var(--bg-w);
    width: 35px;
    height: 35px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.31);
    transition: .4s;
}

.foot-social-icons:hover {
    background-color: var(--p-c);
}

.footer-heading p {
    color: var(--b-c);
    font-size: .9em;
}

.footer-nav-links {
    position: relative;
    width: max-content;
    transition: .4s;
    transform: translateX(0);
    font-size: .7em;
    color: var(--b-c);
    font-weight: 500;
}

.footer-nav-links:hover {
    transform: translateX(5px);
}

.footer-nav-links::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: .8em;
    height: .8em;
    transform: translate(-120%, -40%);
    background-color: var(--p-c);
    mask-image: url(../images/footer-images/icons/arrow.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.footer-nav-links::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background-color: var(--p-c);
    border-radius: 100vh;
    transition: width .4s ease;
}

.footer-nav-links:hover::after {
    width: 100%;
}

.address-section {
    font-size: 20px;
}


.address-section p,
.contact-section a,
.mail-section p {
    font-size: .7em;
    color: var(--b-c);
    font-weight: 500;
}

.bootom-footer {
    background-color: var(--p-c);
}