.footer {
    background-color: rgb(var(--bs-black-rgb));
    height: 100%;
    /* padding: unset !important; */
}

.footer .col-heading {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: rgb(var(--bs-dark-rgb));
}

.footer .footer-links,
.footer .footer-links a {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: rgb(var(--bs-dark-rgb));
}

.footer .footer-info {
    font-size: 14px;
}

.footer .social-media-links {
    margin-bottom: -15px;
    gap: 1.2rem;
    display: flex;
    font-size: 1.4rem;
}

.footer .left-curve {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 52px;
    width: 100%;
    border-top-right-radius: 0px;
    background-color: #11a452;
}

.footer .right-curve {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 52px;
    width: 35%;
    border-top-left-radius: 100px;
    background-color: #11a452;
}

/* Small devices (phones) */
@media screen and (max-width: 768px) {

    /* Styles for phones */
    .footer .social-media-links {
        margin-bottom: -15px;
        gap: 1rem;
        display: flex;
        font-size: 1rem;
    }
}

/* Medium devices (tablets) */
@media screen and (min-width: 769px) and (max-width: 1024px) {

    /* Styles for tablets */
    .footer .social-media-links {
        margin-bottom: -15px;
        gap: 1.2rem;
        display: flex;
        font-size: 1.4rem;
    }
}

/* Large devices (desktops) */
@media screen and (min-width: 1025px) {

    /* Styles for desktops and large screens */
    .footer .social-media-links {
        margin-bottom: -15px;
        gap: 1rem;
        display: flex;
        font-size: 2rem;
    }
}

@media screen and (min-width: 1440px) {

    /* Styles for large desktops */
    .footer .social-media-links {
        margin-bottom: -15px;
        gap: 1.5rem;
        display: flex;
        font-size: 2.5rem;
    }
}