footer {
    .footer-section-container {
        border-top: 2px solid #eee;
        border-bottom: 2px solid #eee;
        padding-top: 2rem;
        padding-bottom: 2rem;
        > div {
            width: 25%;
            p {
                margin-top: 1rem;
                margin-bottom: 1rem;
                padding-top: 0rem;
                padding-bottom: 0rem;
            }
            p a {
                padding-top: 0.2rem;
                padding-bottom: 0.2rem;
                font-size: 1rem;
                &:hover {
                    color: #2F726C;
                }
            }
        }
        > div:nth-child(1) {
            width: 42%;
            p { width: fit-content; white-space: nowrap; font-size: min( 4.2vw, 15.5px) !important; }
        }
        > div:nth-child(3) {
            p::before {
                display: inline-block;
                position: absolute;
                left: 0;
                translate: -132%;
                width: 1.2em;
                height: 1.2em;
                vertical-align: -0.125em;
            }
            p.call-ico::before {
                content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232F726C' d='M19.95 21q-3.125 0-6.175-1.362t-5.55-3.863t-3.862-5.55T3 4.05q0-.45.3-.75t.75-.3H8.1q.35 0 .625.238t.325.562l.65 3.5q.05.4-.025.675T9.4 8.45L6.975 10.9q.5.925 1.187 1.787t1.513 1.663q.775.775 1.625 1.438T13.1 17l2.35-2.35q.225-.225.588-.337t.712-.063l3.45.7q.35.1.575.363T21 15.9v4.05q0 .45-.3.75t-.75.3'/%3E%3C/svg%3E");
            }
            p.email-ico::before {
                content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232F726C' d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m0 4l-8 5l-8-5V6l8 5l8-5z'/%3E%3C/svg%3E");
            }
            p.location-ico::before {
                content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232F726C' d='M10.115 21.811c.606.5 1.238.957 1.885 1.403a27 27 0 0 0 1.885-1.403a28 28 0 0 0 2.853-2.699C18.782 16.877 21 13.637 21 10a9 9 0 1 0-18 0c0 3.637 2.218 6.876 4.262 9.112a28 28 0 0 0 2.853 2.7M12 13.25a3.25 3.25 0 1 1 0-6.5a3.25 3.25 0 0 1 0 6.5'/%3E%3C/svg%3E");        
            }
        }
    }
}

@media screen and (max-width: 1000px) {
    footer {
        .footer-section-container {
            flex-direction: column; justify-content: center; align-items: center;
            > div, > div:nth-child(1), div:nth-child(3) {
                width: 100%; max-width: 300px;
                margin-top: 1rem;
            }
        }
    }
}