@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600;700&display=swap');

/* section-footer
-------------------------------------------------------------- */
.footer-section {
  position: relative;
  width: 100%;
  margin: 0 auto;  
  color: var(--department-color-3);
  background-color: #fff;
  padding: 5px 0 15px 0;
}
    @media (min-width:768px) {
        .footer-section {
            padding: 15px 0 40px 0;
        }
    }
    .footer-section {
        text-align: center;
    }
        .footer-section .items {
            width: 100%;
        }
        .footer-section .items > a {
            font-size: 19px;
            width: 40px;
            height: 40px;
            line-height: 40px;
            display: inline-block;
            text-align: center;
            border-radius: 50%;
            border: 1px solid var(--department-color-3);
            margin-left: 10px;
            color: var(--department-color-3) !important;
            opacity: 0.75;
        }
        .footer-section .items > a:hover {
            opacity: 0.9;
        }
    .footer-section .copyright {
        font-family: "Karla", sans-serif;
        margin-top: 14px;
        margin-bottom: 0;
        font-size: 15px;
        opacity: 1;
        color: #333;
    }
