/* footer start  */
.footer {
    background-color: #50957D;
    color: #FFFFFF;
    padding: 50px 10px;
}

.footer h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.2
}

/* Email Input */
.footer input[type="email"] {
    height: 45px;
    width: 100%;
    max-width: 30rem;
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    border-radius: 10px;
    padding: 8px 12px;
}

.footer input[type="email"]::placeholder {
    color: #eaeaea;
}

/* Subscribe Button */
.subscribe-now-btn {
    background: #EDA358;
    color: white;
    border: none;
    padding: 7px 50px;
    font-size: 16px;
    border-radius: 10px;
    margin-top: 10px;
}

/* Footer Links */
.footer-links a {
    display: block;
    font-size: 1.2rem;
    /* line-height: 1.3; */
    text-decoration: none;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.footer .nav-link.active {
    position: relative;
    font-weight: 700;
}

/* Logo */
.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

.footer-left,
.footer-links {
    margin-bottom: 30px;
}

/* SOCIAL + COPYRIGHT */
.footer-icon-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.email-text:focus {
    box-shadow: none;
}

#chk1:focus,
#chk2:focus {
    box-shadow: none;
}

.footer-links{
    gap: 6rem;
}

/* .icons{
    flex-direction: row-reverse !important;
} */

.copyright {
    align-items: center;
    display: flex;
}


/* Mobile  */
@media (max-width: 767.98px) {
    .footer-links {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-left h2,
    .footer-left p {
        text-align: center !important;
        width: 100%;
    }

    .subscribe-now-btn {
        text-align: center !important;
    }


    /* Center logo */
    .footer-logo {
        margin: 0 auto 20px;
    }

    .sub-btn {
        display: flex;
        justify-content: center;
    }

    .icons {
        flex-direction: column-reverse !important;
        align-items: center !important;
        text-align: center;
        gap: 20px;
    }

    .icons .icon img {
        margin: 0 5px;
    }

    .copyright p {
        font-size: 16px;
        margin: 0;
    }

    .left-links {
        columns: 2;
        /* Split into 2 columns */
        column-gap: 20px;
        /* Space between columns */
        text-align: left !important;
    }

    .left-links a {
        display: block;
        margin-bottom: 8px;
    }

}

/* Tablet */

@media (min-width: 768px) and (max-width: 991.98px) {


    .footer-left h2,
    .footer-left p {
        text-align: start !important;
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .right-links {
        order: 1;
        text-align: start !important;
    }

    .left-links {
        order: 2;
        text-align: start !important;
        columns: 2;
    }

    /* Make sure internal nav links align left */
    .left-links a,
    .right-links a {
        text-align: start !important;
    }
}