@font-face {
    font-family: 'Golos Font';
    src: url('../../assets/font/golos-text_vf.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    outline: none;
}

body, html {
    padding: 0;
    margin: 0;
    background: #F0F0F0;

    font-family: 'Golos Font';
    font-size: 16px;
    color: #212121;
}
body {
    background-image: url(/assets/img/bg.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top;
}


/* ТЕКСТ */
h1, h2, h3, h4 {
    font-weight: normal;
    margin: 0;
    padding: 0;
    
}
h1 {
    font-size: 128px;
    transform: translate(-10px);
}
h2 {
    font-size: 36px;
    color: #999999;
}
h4 {
    font-size: 24px;
}

a {
    text-decoration: none;
    color: #364D6E;
    transition: all .1s;
}
a:hover {
    color: #486691;
}

ul {
    list-style-type: none;
}






/* КНОПКИ */
.btn {
    font-family: 'Golos Font';
    font-size: 16px;
    color: #212121;

    padding: 12px 20px;
    border: 0;
    border-radius: 14px;
    transition: all .1s;

    cursor: pointer;
}
.btn-primary {
    color: white;
    background: #364D6E;
}
.btn-primary:hover {
    background: #486691;
    color: white;
}

.btn-secondary {
    color: #212121;
    background: #EAEAEA;
}
.btn-secondary:hover {
    color: #212121;
    background: #CFCFCF;
}

.btn-arrow {
    color: #212121;
    background: none;
    padding: 10px 0;
    display: inline-flex;
    width: fit-content;
    gap: 12px;

    border-bottom: solid 1px white; 
    border-radius: 0;
}
.btn-arrow:hover {
    color: #212121;
    border-bottom: solid 1px #212121; 
}





/* ПОЛЯ ВВОДА (input) */
input {
    font-family: 'Golos Font';
    font-size: 16px;
    color: #212121;

    padding: 12px 20px;
    border: 0;
    border-radius: 14px;
}
input::placeholder {
    color: #999999;
}






/* PRELOADER */
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;

    background: #F0F0F0;

    z-index: 1001;
}

.preloader__row {
    position: relative;
    top: 50%;
    left: 50%;
}

.preloader__item {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: 
        radial-gradient(farthest-side,#999999 94%,#0000) top/8px 8px no-repeat,
        conic-gradient(#0000 30%,#999999);
    mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
    animation:s3 1s infinite linear;
}

@keyframes s3{ 
    100%{transform: rotate(1turn)}
}

.loaded_hiding .preloader {
    transition: 0.3s opacity;
    opacity: 0;
}

.loaded .preloader {
    display: none;
}