@font-face {
    font-family: Clarika;
    src: url(assets/font/clarika/ClarikaGeoBold.woff2);
    font-weight: 700;
    font-display: swap
}

@font-face {
    font-family: Clarika;
    src: url(assets/font/clarika/ClarikaGeoDemiBold.woff2);
    font-weight: 600;
    font-display: swap
}

@font-face {
    font-family: Clarika;
    src: url(assets/font/clarika/ClarikaGeoMedium.woff2);
    font-weight: 500;
    font-display: swap
}

@font-face {
    font-family: Clarika;
    src: url(assets/font/clarika/ClarikaGeoRegular.woff2);
    font-weight: 400;
    font-display: swap
}

/* Global styles */
body {
    font-family: 'Clarika', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, #fafafa 1px, transparent 1px), linear-gradient(to bottom, #fafafa 1px, transparent 1px);
}

/* Header styles */
.header-navbar {
    background-color: #fff;
    border-bottom: 1px solid #f4f4f4;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
    backdrop-filter: blur(9.8px);
    -webkit-backdrop-filter: blur(9.8px);
    z-index: 3;
}

.header-navbar a {
    color: #333;
    text-decoration: none;
}

.header-navbar-brand {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.header-navbar-brand img {
    height: 50px;
}

.header-navbar-mobile {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    display: none;
}

.header-navbar-mobile .navbar-nav a {
    text-decoration: none;
    font-weight: bold;
    color: #444;
    padding: 10px 15px;
    border: 1px solid rgba(0, 0, 0, 0.146);
    border-bottom: none;
}

.header-navbar-mobile .navbar-collapse {
    margin-top: 15px;
}

.header-navbar-mobile .navbar-nav a:first-child {
    border-radius: 5px 5px 0 0;
}

.header-navbar-mobile .navbar-nav a:last-child {
    border-radius: 0 0 5px 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.146);
}

@media only screen and (max-width: 992px) {
    .header-navbar {
        display: none;
    }

    .header-navbar-mobile {
        display: block;
    }
}

.section {
    margin-top: 50px;
    text-align: center;
}

.section h1 {
    margin-bottom: 5px;
}

.section p {
    font-size: 1.2rem;
    text-align: left;
    max-width: 800px;
    margin: auto;
}

.section p a {
    text-decoration: none;
    color: #4692da;
    border-bottom: 2px solid #e6eff5;
}

.section p u {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    border-bottom: 2px dashed #ddd;
}

.section img {
    width: 100%;
}

.svg {
    margin-top: -40px;
    margin-bottom: 100px;
}

.maps g.level0 path {
    fill: #dddddd;
}

.maps g.level1 path {
    fill: #cedefe;
}

.maps g.level2 path {
    fill: #b5cdfe;
}

.maps g.level3 path {
    fill: #97b8fe;
}

.maps g.level4 path {
    fill: #5791fd;
}

.maps g.level5 path {
    fill: #397afd;
}

.maps g.level6 path {
    fill: #216afc
}

.maps g.level-top path {
    fill: rgb(32, 169, 132);
}

/* Loading */
.loadingContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;
}

.loadingCenterBox {
    width: 90%;
}

/* For small screens like smartphones */
@media (max-width: 789px) {
    .svg {
        margin-top: 0px;
    }
    h1 {
        line-height: 2rem;
    }
    .section p {
        font-size: 1rem;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 500px) {
    .svg {
        margin-top: 40px;
    }
    .section p {
        font-size: 1rem;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Footer styles */
.footer-section-inner {
    background-color: #111827;
}

.footer-copy {
    background-color: #1f2937;
    padding: 10px;
    color: #eee;
    text-align: center;
}

.footer-bottom-logo {
    max-width: 100px;
    display: block;
    margin: auto;
}

.footer-bottom-logo img,
.footer-bottom-logo object {
    width: 100%;
}

.footer-social-media {
    margin: 10px 0 50px;
    text-align: center;
}

.footer-social-media a {
    color: #6c757d;
    text-decoration: none;
}

.footer-social-media a span {
    font-weight: bold;
}

.footer-social-media:hover > a {
    color: #ffffff;
}

.footer-links {
    text-align: center;
    margin-bottom: 30px;
}

.footer-links .footer-link {
    display: inline-block;
    margin: 10px;
}

.footer-links .footer-link a {
    color: #6c757d;
    text-decoration: none;
}

.footer-links .footer-link:hover > a {
    color: #ffffff;
}

@media only screen and (max-width: 550px) {
    .footer-social {
        display: none;
    }

    .footer-links .footer-link {
        display: block;
        width: 100%;
        text-align: left;
    }

    .footer-links {
        margin-bottom: 5px;
    }

    .footer-section-inner .container {
        padding-top: 10px !important;
    }
}