footer {
    position: relative;
    width: 100%;
    /* min-height: 300px; */
    background-color: var(--section1-color);
    padding: 0;
}

.footer-container {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #dbdbdb;
    color: #246921;
    display: flex;
    gap: 20px;
}

.footer-container-element {
    width: 25%;
}

.footer-container-element h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 15px;
}
.footer-container-element p {
    padding: 0 22px !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    line-height: 1rem;
    margin-bottom: 5px;
}
.footer-container-element p span { color: #246921 !important; }

.footer-container-element:last-child { margin-bottom: 25px; }

.footer-social-links {
    color: #246921;
    font-size: 1.5rem;
    transition: .5s ease-in-out;
}
.footer-social-links:hover {
    color: rgb(207, 207, 207);
}

.btn-modal-footer {
    margin-left: 22px;
    margin-top: 8px;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #333;
    background-color: transparent;
    padding: 5px 0;
    transition: all .5s ease-in-out;
}
.btn-modal-footer:hover {
    border-bottom: 1px solid #246921;
    background-color: #dfdfdf;
}
.btn-modal-footer label {
    font-size: 14px;
    color: #aaaaaa;
}

.copyright {
    position: relative;
    width: 100%;
    background-color: #246921;
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.copyright p { font-size: 16px !important; color: #ececec !important; font-weight: 400; }
.copyright p span { color: #fff !important; font-weight: 600; }


@media screen and (max-width: 800px) {
    .footer-container {
        flex-wrap: wrap;
    }
    .footer-container-element {
        width: 45%;
    }    
}

@media screen and (max-width: 550px) {
    .footer-container {
        flex-direction: column;
        padding-top: 20px;
        padding-bottom: 30px;
    }
    .footer-container-element {
        width: 100%;
    }    
}