@font-face {
    font-family: Montserrat-Light;
    src: url(../fonts/Montserrat-Light.woff2);
}

@font-face {
    font-family: Montserrat-Regular;
    src: url(../fonts/Montserrat-Regular.woff2);
}

@font-face {
    font-family: Montserrat-Medium;
    src: url(../fonts/Montserrat-Medium.woff2);
}
@font-face {
    font-family: Montserrat-SemiBold;
    src: url(../fonts/Montserrat-SemiBold.woff2);
}
@font-face {
    font-family: Montserrat-Bold;
    src: url(../fonts/Montserrat-Bold.woff2);
}
@font-face {
    font-family: bebasneuebold;
    src: url(../fonts/bebasneuebold.woff2);
}

:root {
    --main-bg: #f3f3f3;
    --light-bg: #FFFFFF;
    --accent-bg:#00A8EF;
    --accent-color-two:#AAC3FF;
    --hover-bg: #60CFFF;
    --main-color: #01011C;
    --title-color: #22306E;
    --text-dark-color:rgba(255, 255, 255, 80%);
    --light: Montserrat-Light, sans-serif;
    --regular: Montserrat-Regular, sans-serif;
    --medium: Montserrat-Medium, sans-serif;
    --semibold: Montserrat-SemiBold, sans-serif;
    --bold: Montserrat-Bold, sans-serif;
    --title: bebasneuebold, sans-serif;
    --gradient: linear-gradient(156deg, rgba(1,1,28,1) 0%, rgba(34,48,110,1) 58%, rgba(70,100,200,1) 100%);
}
* {
    color: var(--main-color);
    font-size: 16px;
    line-height: 130%;
    font-family: var(--regular);
    user-select: none;
    letter-spacing: 2%;
}
*::selection {
    background: #c2c2c253;
    /* Safari */
}

*::-moz-selection {
    background: #c2c2c253;
    /* Firefox */
}
::-webkit-scrollbar {
    background: #6c6b6b38;
    width: 10px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
::-webkit-scrollbar {
    background: #6c6b6b38;
    width: 10px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #25C4E7 40%, #2ac2d2);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
html {
    scroll-behavior: smooth;
}
a,
button,
.burger {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    background: var(--main-bg);
}
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    /* position: relative; */
    /* overflow: hidden; */
}

.main {
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
}
.container {
    padding: 0 10px;
    margin: 0 auto;
    max-width: 1480px;
}