@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');@import url("https://fonts.googleapis.com/css?family=North+Coast" rel="stylesheet">)


@font-face {
font-family: 'North Coast';
src: url('path/to/northcoast.woff2') format('woff2'),
url('path/to/northcoast.woff') format('woff');
font-weight: normal;
font-style: normal;
}

/* Background color & fonts */
body,
body.theme-lumapps {
  	font-family: "Instrument Sans", sans-serif;
	background-color: #f1f1f1 !important;
}

.widget-title {
/*font-family: 'North Coast', sans-serif;*/
font-size: 16px;
color: #07677e;
}

/* Home Icon */
.main-nav__child--home .main-nav-item__label {
	display: none !important;
}

/* Footer */
.site-footer {
    background-color: #07677e;
    padding: 24px 8px 0px;
    width: 100%;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1152px;
    margin: 0 auto;
    padding: 24px 16px;
}
.footer-left {
    flex: 1;
}
.footer-left a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s ease;
}
.footer-left a:hover {
	color: #1e1e2f
}
.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.social-icon {
    display: inline-block;
    margin-left: 16px;
    width: 27px;
    height: 27px;
    line-height: 23px;
    text-align: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: border-color 0.3s ease;
}
.social-icon i {
    font-size: 14px;
}
.social-icon:hover {
    border-color: #1e1e2f; /* Red border on hover */
    color: #1e1e2f; /* Red border on hover */
}
@media (max-width: 1279px) {
    .footer-content {
        max-width: 984px;
    }
}
@media (max-width: 1023px) {
    .footer-content {
        max-width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-right {                
        margin: 0 auto;
        margin-top: 32px;
    }
    .footer-left {
        margin: 0 auto;
    }
    .social-icon {
        margin-left: 12px;
    }            
}