:root {
    --orange: #F8A73E;
    --blue: #306CB4;
    --darkBlue: #113C6F;
    --hoverBlue: #1d579c;
    --hoverOrange: #da8e2a;
    --white: #FFFFFF;
    --black: #000000;
    --grey: grey;
}

@font-face {
  font-family: 'SegoeUIRegular';
  src: url('../fonts/SegoeUIRegular.woff') format('woff'),
       url('../fonts/SegoeUIRegular.woff2') format('woff2'),
       url('../fonts/SegoeUIRegular.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 100;
    font-family: 'SegoeUIRegular', sans-serif !important;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'SegoeUIRegular', sans-serif !important;
    background: #ffffff;
}

a {
    color: inherit;
}

a:focus {
    outline: none !important;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

::-moz-selection {
    background: var(--orange);
    color: var(--blue);
}

::selection {
    background: var(--darkBlue);
    color: var(--white);
}

.mainWrapper {
    width: 100%;
    height: auto;
}

/* scrollbar */

body::-webkit-scrollbar {
    background-color: #fff;
    width: 14px;
    display: none;
}

body::-webkit-scrollbar-track {
    background-color: #fff;
}

body::-webkit-scrollbar-thumb {
    background-color: #babac0;
    border-radius: 15px;
    border: 4px solid #fff;
}

body::-webkit-scrollbar-button {
    display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.infoButton {
    height: 25px;
    width: 25px;
    border: 2px solid var(--blue);
    color: var(--blue);
    border-radius: 3px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}









/*==*/