:root {
    --all-background-color: #0B1D39;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--all-background-color);
}

::-moz-selection {
    color: #fff;
    background: #34A2FF;
}

::selection {
    color: #fff;
    background: #34A2FF;
}


::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #34A2FF;
    border-radius: 15px;
    border: 2px solid #ffffff;
}

a {
    text-decoration: none;
    color: #34A2FF;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    line-height: 1em;
}

ul,
ol {
    list-style: none;
}

li {
    display: list-item;
    text-align: -webkit-match-parent;
}

.text-red {
    color: #34A2FF;
}

.section-width {
    width: 1170px;
    margin: 0 auto;
}

.section-width>* {
    margin-left: auto;
    margin-right: auto;
}

.left {
    float: left;
}

.right {
    float: right;
}

.line-separator {
    width: 100%;
    height: 1px;
    border: none;
    background-color: #dbdbdb;
    text-align: left;
}

.line-separator-red {
    width: 30px;
    height: 0.25em;
    border: none;
    margin-top: 10px;
    background-color: #34A2FF;
    text-align: left;
}

.main {
    height: 100%;
}