*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

* {
    -webkit-tap-highlight-color: transparent;
  }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-family: 'CircularXX TT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

@font-face {
    font-family: 'CircularXX TT';
    src: url('../fonts/CircularXXWeb-Regular.woff2') format('woff2'),
         url('../fonts/CircularXXWeb-Regular.woff') format('woff');
    font-weight: 450;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CircularXX TT';
    src: url('../fonts/CircularXXWeb-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CircularXX TT';
    src: url('../fonts/CircularXXWeb-Bold.woff2') format('woff2'),
         url('../fonts/CircularXXWeb-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


:root {
    --primary-color: rgba(50, 186, 246, 1);
    --volunteer-color: rgba(114, 52, 196, 1);
    --text-color: #0C1937;
    /* --secondary-color: rgba(255, 255, 255, 1); */
}

main {
    /* padding-top: 96px; */
    padding-top: 0;

    /* @media (max-width: 1280px) {
        padding-top: 80px;
    } */
}

/* Spinner loader */
.spinner-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

* {
    color: var(--text-color);
}

.container {
    padding: 24px;
    margin: 0 auto;
}

.section-container {
    width: 100%;
    max-width: 1760px;
    padding: 80px 0;
    margin: 0 auto;
}

@media (max-width: 1440px) {
    .section-container {
        max-width: calc(100% - 160px);
    }
}

@media (max-width: 767px) {
    .section-container {
        max-width: 100%;
        padding: 56px 24px;
    }
}

h2, .section-title {
    font-family: CircularXX TT, sans-serif;
    font-weight: 450;
    font-size: 40px;
    line-height: 130%;
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    h2, .section-title {
        font-size: 32px;
    }
}