a {
    text-decoration: none
}



.footer-section {
    font-size: 20px;
    background-color: #192D45;
    clip-path: ellipse(150% 200% at 50% 200%);
}

.logo-section {
    width: 18%;
}

.sub-footer-section p {
    font-size: .61em;
    line-height: 1.2em;
    color: #3C3950;
}

.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(--w-c);
    font-size: .9em;
}

.footer-nav-links {
    position: relative;
    width: max-content;
    transition: .4s;
    transform: translateX(0);
    font-size: .7em;
    color: var(--w-c);
}

.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%;
}

.subscribe-box {
    position: relative;
    width: 300px;
    transform: scale(.9);
    transform-origin: left top;
}

.subscribe-box input {
    width: 100%;
    padding-bottom: 4.5px;
    border-radius: 30px;
    border: 2px solid var(--p-c);
    padding-left: 10px;
}

.subscribe-box::after {
    content: "Subscribe";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 8px 20px 8px 20px;
    background-color: var(--p-c);
    color: #fff;
    display: flex;
    align-items: center;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
    font-size: 0.7em;
    font-weight: 600;
    cursor: pointer;
}

.subscribe-box input::placeholder {
    font-size: .7em;
}

.address-section p,
.contact-section a,
.mail-section p {
    font-size: .7em;
    color: var(--w-c);
}

.bootom-footer {
    background-color: var(--p-c);
}

.footer-links .footer-nav-links {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: .6em;
}

.bottom-section-box {
    font-size: 20px;
}

.bottom-icon-section {
    padding: 15px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--p-c);
}

.bottom-section-content h6 {
    color: var(--p-c);
    font-size: 1em;
    font-weight: 600;
}

.bottom-section-content p {
    font-size: .6em;
    color: var(--w-c);
}

.bottom-section-content a {
    font-size: .7em;
    color: var(--w-c);
}

.bottom-box-container {
    background-color: #3C39501A;
    box-shadow: 0 2px 8px rgba(210, 174, 85, 0.2);
    position: relative;
    border-radius: 10px;
}

.bottom-box-container {
    background-color: #3C39501A;
    box-shadow: 0 2px 8px rgba(210, 174, 85, 0.2);
    position: relative;
    border-radius: 15px;
    border-bottom: 3px solid var(--p-c);
}


@media (min-width: 0px) and (max-width: 786px) {
    .footer-section {
        font-size: 20px;
        background-color: #192D45;
        clip-path: ellipse(220% 200% at 50% 200%);
    }

    .bottom-section-box {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .logo-section {
        width: 50%;
    }
}