/* CSS Variables and base settings */

:root {
    --primary-color: #f8f9fa;
    --secondary-color: #0A173B;
    --tertiary-color: #FFF;
    --font-base: 'Open Sans', sans-serif;
    --font-size-micro: 12px;
    --font-size-mini: 14px;
    --font-size-small: 16px;
    --font-size-regular: 20px;
    --font-size-large: 34px;
    --font-size-xlarge: 48px;
    --font-weight-thin: 300;
    --font-weight-normal: 400;
    --font-weight-semiBold: 600;
    --font-weight-bold: 700;
    --font-primary-color: #0A173B;
    --font-secondary-color: #FFF;
    --font-tertiary-color: #67748E;
    --font-footerInfo-color: #A6AFB5;
    --orange: #FA703A;
    --red: #FF0000;
    --active-color: #E31E24;
}
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: var(--font-base);
    background-color: var(--primary-color);
    color: #212529;
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}



@media only screen and (max-width: 1259px) {
    button, a, .hamburger, .scrollToTop, span {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        user-select: none;
        tap-highlight-color: transparent; 
    }
}