:root {
    --ui-st-color-white: #FFF;
    --ui-st-color-black: #000;
    --ui-st-color-accent: #164C90;
    --ui-st-color-accent-hover: #CF0B11;
    --ui-st-color-theme: #44484D;
    --ui-st-color-gray: #787878;
    --ui-st-color-lightg: #EFEFEF;

    --ui-st-font: 'Montserrat', sans-serif;
    --created-by-visnevsky: 'Actay', sans-serif;

    --ani-st-03-seconds: all .3s cubic-bezier(.5,0,.5,1);
    --ani-st-02-seconds: all .2s cubic-bezier(.5,0,.5,1);
    --ani-st-01-seconds: all .1s cubic-bezier(.5,0,.5,1);
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html {
    height: 100%;
    overflow-y: scroll;
}
body, html {
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--ui-st-color-lightg);
}
div {
    display: block;
}
a {
    text-decoration: none;
    color: var(--ui-st-color-accent);
}
p {
    margin: 0;
}
.mainPage {
    position: relative;
    width: 1320px;
    margin: 70px auto 0 auto;
}
body::-webkit-scrollbar {
    width: 10px;
    background-color: var(--ui-st-color-lightg);
    position: absolute;
}
body::-webkit-scrollbar-thumb {
    background-color: var(--ui-st-color-theme);
}
body::-webkit-scrollbar-thumb:hover {
    background-color: var(--ui-st-color-theme);
}
body::-webkit-scrollbar-track {
    position: absolute;
    right: -3rem;
    top: -50rem;
    background: transparent;
}

@font-face {
    font-family: "Actay";
    src: url("/fonts/Actay-Regular.otf");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-Thin.otf");

    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-ExtraLight.otf");

    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-Light.otf");

    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-Regular.otf");

    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-Medium.otf");

    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-SemiBold.otf");

    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-Bold.otf");

    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-ExtraBold.otf");

    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-Black.otf");

    font-weight: 900;
    font-style: normal;
}