@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700;800;900&display=swap');
/*���������*/
* {
    padding: 0;
    margin: 0;
    border: 0;
}

    *, *:before, *:after {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

:focus, :active {
    outline: none;
}

a:focus, a:active {
    outline: none;
}

nav, footer, header, aside {
    display: block;
}

html, body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input, button, textarea {
    font-family: inherit;
}

    input::-ms-clear {
        display: none;
    }

button {
    cursor: pointer;
}

    button::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

a, a:visited {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: 400;
}
/*--------------------*/

/* Main style */

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

header {
    /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
    flex: 0 0 auto;
}

.main-content {
    /* 1 flex-grow, 0 flex-shrink, auto flex-basis */
    flex: 1 0 auto;
}

footer {
    /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
    flex: 0 0 auto;
}


html, body {
    font-family: "Golos Text";
    background: #F0F5FB;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

h2 {
    color: #373C59;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}


/* ������ �������� ����� */

.loadercirclediv {
    width: 50px;
    height: 50px;
}

.loadercircle {
    animation: 2s linear infinite svg-animation;
}

@keyframes svg-animation {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(360deg)
    }
}

.circlemail {
    animation: 1.4s ease-in-out infinite both circle-animation;
    display: none;
    fill: transparent;
    stroke: #006;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 280;
    stroke-width: 10px;
    transform-origin: 50% 50%;
}

@keyframes circle-animation {
    0%, 25% {
        stroke-dashoffset: 280;
        transform: rotate(0);
    }

    50%, 75% {
        stroke-dashoffset: 75;
        transform: rotate(45deg);
    }

    100% {
        stroke-dashoffset: 280;
        transform: rotate(360deg);
    }
}

input[type=file]::file-selector-button {
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

input[type=file]::file-selector-button {
    color: #373C59;
    text-transform: uppercase;
    font-size: 18px;
    text-align: center;
    font-family: "Golos Text";
    font-weight: 700;
    line-height: 130%; /* 23.4px */
    background: #F0F5FB;
    box-shadow: 6px 6px 15px 0px rgba(144, 147, 151, 0.90), -6px -6px 12px 0px rgba(255, 255, 255, 0.90), 6px -6px 12px 0px rgba(144, 147, 151, 0.20), -6px 6px 12px 0px rgba(144, 147, 151, 0.20), -1px -1px 2px 0px rgba(144, 147, 151, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
    padding: 14px 26px;
    border-radius: 10px;
    margin: 20px;
    cursor: pointer;
}

h3 {
    color: #373C59;
    font-family: "Golos Text";
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

/* Navigation */

.navigation {
    margin-top: 180px;
}

.navigation-row {
    display: flex;
}

.navigation-menu {
    display: inline-flex;
}

.navigation-ul {
    display: inline-flex;
    gap: 5px;
}

    .navigation-ul a:visited {
        color: #5B5B5B;
    }

    .navigation-ul a:hover {
        color: #5B5B5B;
    }

    .navigation-ul li:first-child {
        font-weight: 600;
    }

/*--------------------*/


/*Main*/

.main-content {
    margin-bottom: 90px;
}

    .main-content h2 {
        text-align: center;
        margin-bottom: 30px;
    }

.news-main {
    margin-top: 90px;
}

    .news-main span {
        display: flex;
        justify-content: center;
        color: var(--grey-1, #969AB4);
        font-size: 18px;
        font-weight: 700;
        line-height: 130%; /* 23.4px */
    }


.news-main-row {
    display: flex;
    gap: 50px;
    margin: 60px 0px;
}

.news-main-text p {
    color: #373C59;
    font-size: 21px;
    font-weight: 400;
    line-height: 163%; /* 34.23px */
    text-align: justify;
}

.news-main-function {
    display: flex;
    align-items: center;
}


.news-main-img img{
    width: 600px;
}



.arrows {
    display: flex;
    color: #0056b3;
    justify-content: center;
    align-items: center;
    border-radius: 80px;
    background: #F0F5FB;
    box-shadow: 6px 6px 15px 0px rgba(144, 147, 151, 0.90), -6px -6px 12px 0px rgba(255, 255, 255, 0.90), 6px -6px 12px 0px rgba(144, 147, 151, 0.20), -6px 6px 12px 0px rgba(144, 147, 151, 0.20), -1px -1px 2px 0px rgba(144, 147, 151, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
    color: #232E75;
    padding: 10px;
    cursor: pointer;
    width: 51px;
    height: 51px;
    font-size: 24px;
}

.circle span {
    color: #232E75;
}


.arrow-line {
    width: 30px;
    height: 4px;
    background-color: white;
    border-radius: 2px;
}



.button {
    display: flex;
    margin-top: 60px;
    justify-content: center;
    margin: 0 auto; /* ������������� ������ */
}

    .button button {
        color: #373C59;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%; /* 23.4px */
        background: #F0F5FB;
        box-shadow: 6px 6px 15px 0px rgba(144, 147, 151, 0.90), -6px -6px 12px 0px rgba(255, 255, 255, 0.90), 6px -6px 12px 0px rgba(144, 147, 151, 0.20), -6px 6px 12px 0px rgba(144, 147, 151, 0.20), -1px -1px 2px 0px rgba(144, 147, 151, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
        padding: 14px 36px;
        border-radius: 10px;
        transition: transform 0.3s, box-shadow 0.3s;
    }

        .button button:hover {
            transform: scale(1.05);
            box-shadow: 20px 20px 50px 0px rgba(168, 171, 173, 0.90), -20px -20px 40px 0px rgba(255, 255, 255, 0.90), 20px -20px 40px 0px rgba(168, 171, 173, 0.20), -20px 20px 40px 0px rgba(168, 171, 173, 0.20), -1px -1px 2px 0px rgba(168, 171, 173, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
        }




/*--------------------*/
@media screen and (max-width: 1024px) {
    .container{
        max-width: 1024px;
        margin: 0px 15px 0px 15px;
        

    }

    .news-main-row{
        flex-direction: column;
    }

    .news-main-img{
        display: flex;
        justify-content: center;
    }



    .news-main-img img{
        width: 600px;
    }


}

@media screen and (max-width: 769px) {
    .navigation {
        margin-top: 120px;
    }
    .container{
        max-width: 768px;
        margin: 0px 35px 0px 35px;
        
    }

    .news-main-img img{
        max-width: 500px;
    }
    

    h2{
        font-size: 24px;
    }

    .news-main-text p{
        font-size: 18px;
    }

    .news-main-row{
        flex-direction: column;
    }

    .news-main-img{
        display: flex;
        justify-content: center;
    }


    .news-main-img img{
        width: auto;
    }
}

@media screen and (max-width: 425px) {

    .container{
        max-width: 600px;
        margin: 0px 15px 0px 15px;
        
    }

    .news-main-img img{
        width: 300px;
    }

    .button button{
        font-size: 14px;
    }

    .arrow{
        width: 17px;
        height: 25px;
    }

    .circle span{
        font-size: 16px;
    }

}
