html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Start layout*/

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.eot');
    src: local('☺'), url('../fonts/Montserrat-Bold.woff') format('woff'), url('../fonts/Montserrat-Bold.ttf') format('truetype'), url('../fonts/Montserrat-Bold.svg') format('svg');
    font-weight: normal;
    font-style: bold;
}

html {
    box-sizing: border-box;
}

.screen {
    min-height: 100vh;
    margin: 0 auto;
    position: relative;
    background: #F2F4F9;
	overflow: hidden;
}

.circle_top {
    position: absolute;
    top: 0;
    left: 0;
}

.circle_top_inside {
    position: absolute;
    top: 0;
    left: 0;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: relative;
    margin-left: 16px;
    margin-right: 16px;
    padding-top: 97px;
    text-align: center;
    z-index: 5;
}

.head {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 40px;
    color: #002868;
}

.logotips {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.new_site {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 288px;
    height: 46px;
    background: #FACE33;
    border-radius: 51px;
    text-decoration: none;
}

.button_go {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    line-height: 3em;
    color: #002868;
}

.arrow {
    
    margin: 20px;
}
.vector__1, .vector__2, .vector__3 {
    margin: -5px;
    animation: arrow-down 1s infinite;
	-webkit-animation: arrow-down 1s infinite;
}

.vector__2 {
    animation-delay: 0.1s;
	-webkit-animation-delay: 0.1s;
}

.vector__3 {
    animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
    
}

@keyframes arrow-down {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes arrow-down{
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.circle_bottom {
    position: absolute;
    bottom: -4px;
    right: 0;
}

.circle_bottom_inside {
    position: absolute;
    bottom: -4px;
    right: 0;
}

@media (min-width: 769px) {
    .main {
        padding-top: 200px;
        max-width: 728px;
        margin-left: auto;
        margin-right: auto;
    }
    .head {
        font-size: 42px;
        line-height: 52px;
        margin-bottom: 110px;
    }
    .logotips {
        flex-direction: row;
    }
    .new_site {
        margin-top: 100px;
        width: 352px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .arrow {
        margin: 0 50px;
        display: flex;
    }
}