/*============FOOTER START================*/
footer {
    background-image: linear-gradient(60deg, rgb(225, 255, 255), rgb(225, 255, 255, 0.7), rgba(0, 0, 0, 0)), url("https://res.cloudinary.com/djrigb7ok/image/upload/v1747183630/dipi-bg_dkwwzl.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    width: auto;
    height: 24rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stickyFooter {
    background: var(--primary-color);
    padding: 5rem 2rem 4rem;
    width: 30rem;
    border-radius: 0 13rem 13rem 0;

    .socMed {
        margin-left: 2rem;
        display: flex;
        padding: 10px;
        & a {
            font-family: "Poppins", sans-serif;
            margin-left: 0.5rem;
            color: var(--light-color);
            text-decoration: none;
        }

        & img {
            width: 1rem;
        }
    }
}

.logoEnCopyRight {
    margin-right: 10rem;
    display: flex;
    flex-direction: column;
    & img {
        height: 5rem;
    }

    & p {
        margin-top: 2rem;
        text-align: center;
        font-family: "Poppins", sans-serif;
        color: var(--dark-color);
    }
}

.footerDesign {
    z-index: 5;
    width: 100%;
    background: var(--primary-color);
    height: 4rem;
}

.footerGroup {
    display: block;
    height: 28rem;
    overflow: hidden;
}

.footerMobileGroup {
    display: none;

}

.mobile-footer {
    background-image: linear-gradient(60deg, rgb(225, 255, 255), rgb(225, 255, 255, 0.7), rgba(0, 0, 0, 0)), url("https://res.cloudinary.com/djrigb7ok/image/upload/v1747183630/dipi-bg_dkwwzl.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    width: auto;
    height: 16.5rem;
    overflow: hidden;
}

.stickyFooter-1 {
    padding: 0.5rem;
    background: var(--primary-color);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.socMed-1 {
    padding: 0.7rem;

    & img {
        width: 2rem;
    }
}

.logoEnCopyRight-1 {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;

    & img {
        align-content: center;
        height: 5rem;
    }

    & p {
        font-size: 1rem;
        margin-top: 2rem;
        text-align: center;
        font-family: "Poppins", sans-serif;
        color: var(--dark-color);
    }
}



@media (max-width: 600px) {
    .footerGroup {
        display: none;
    }

    .footerMobileGroup {
        display: block;

    }

    #hamburger {
        z-index: 10;
        display: block;
    }

}

/*============FOOTER END================*/
