*,
*::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);
    /* --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); }
}

@media (max-width: 992px) {
    header {
        background: white;
    }

    svg [fill="#FBFDFF"] {
        fill: #1d3060 !important;
    }
    
    main {
        padding-top: 72px;
    }
}
