*,
*::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: rgba(0, 21, 74, 1);
    /* --secondary-color: rgba(255, 255, 255, 1); */
}

h2,
.section-title {
    font-family: CircularXX, sans-serif;
    font-weight: 450;
    font-size: 56px;
    line-height: 67.2px;
    text-align: center;
    color: var(--text-color);
}

@media (max-width: 992px) {
    h2,
    .section-title {
        font-size: 40px;
        line-height: 40px;
    }
}

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); }
}

.volunteer-button {
    width: fit-content;
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    font-family: CircularXX, sans-serif;
    font-weight: 450;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    padding: 16px 20px;
    border-radius: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: rgba(114, 52, 196, 1);
}
