@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');
/* --------------- Style to null --------------- */
*{-moz-box-sizing:border-box;box-sizing:border-box;}html,body,div,span,h1,h2,h3,h4,h5,h6,p,em,img,strong,sub,sup,b,u,i,dl,dt,dd,ol,ul,li,fieldset,form,label,table,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,a,footer,header,menu,nav,section,summary,time,mark,audio,video{border:0;outline:0;vertical-align:baseline;background:transparent;font-size:100%;margin:0;padding:0;}a{background:transparent;}table{border-collapse:collapse;border-spacing:0;}td,td img{vertical-align:top;}input,select,button,textarea{font-size:12px;font-family:Arial, Helvetica, sans-serif;margin:0;}input[type="text"],input[type="password"],textarea,input[type="email"],input[type="phone"],input[type="number"]{font:12px Arial, Helvetica, sans-serif;padding:0;}input[type="checkbox"]{vertical-align:bottom;}input[type="radio"]{vertical-align:text-bottom;}sub{vertical-align:sub;font-size:smaller;}sup{vertical-align:super;font-size:smaller;}article,aside,details,figcaption,figure,footer,header,menu,nav,section{display:block;}ul,ol{list-style:none;}html{overflow-y:scroll;overflow-x:auto;}html,body{height:100%;}body{line-height:1;color:#000;text-align:left;z-index:1;position:relative;}input [type='text']{padding:0;}textarea{resize:none;overflow:auto;}label,input[type="button"],input[type="submit"],button{cursor:pointer;}input[type="button"],input[type="reset"],input[type="submit"],button,input[type="text"],input[type="password"],textarea,input[type="email"],input[type="tel"],input[type="phone"],input[type="number"]{-webkit-appearance:none;}a,a:visited,a:hover,a:focus,a:active{text-decoration:none;}input[type="submit"]::-moz-focus-inner,button::-moz-focus-inner{border:0;padding:0;}input:invalid{outline:none;-moz-box-shadow:none;border:none;}input,textarea,input[type="search"]:focus,:focus{outline:none;}
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}
body {
    font-family: 'Roboto', sans-serif;
    color: #000;
}
a {
    cursor: pointer;
}
/* --------------- Style to null --------------- */

/*
    main styles
    version: 13.03.2019
*/

/* --------------- placeholder --------------- */
::-webkit-input-placeholder {
    color: #898989;
    -webkit-transition: color 300ms ease-in-out;
}
:-moz-placeholder {
    color: #898989;
    -webkit-transition: color 300ms ease-in-out;
    transition: color 300ms ease-in-out;
}
.placeholder {
    color: #898989;
    -webkit-transition: color 300ms ease-in-out;
    transition: color 300ms ease-in-out;
}
:focus::-webkit-input-placeholder {color: transparent}
:focus::-moz-placeholder          {color: transparent}
:focus:-moz-placeholder           {color: transparent}
:focus:-ms-input-placeholder      {color: transparent}
/* --------------- /placeholder --------------- */

[data-elem-lang] {
    display: none;
}

/* ------------ centering ------------ */
.centering {
    display: table;
    width: 100%;
    height: 100%;
}
.centering > div {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
/* ------------ /centering ------------ */

/* ------------ btn ------------ */
.btn {
    display: block;
    padding: 18px 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #000;
    text-align: center;
    background: #ffc864;
    font-size: 18px;
    width: 244px;
    border-radius: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: color 0.2s ease, background 0.2s ease;
    transition: color 0.2s ease, background 0.2s ease;
}
.btn_2 {
    color: #fff;
    background: rgba(255,255,255,0.3);
}
.btn_3 {
    display: inline-block;
    border: none;
}
.btn_3 span {
    position: relative;
    padding: 0 37px 0 18px;
}
.btn_3 span:before {
    content:'';
    position: absolute;
    width: 9px;
    height: 9px;
    top: 5px;
    right: 0;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: border 0.2s ease;
    transition: border 0.2s ease;
}
/* ------------ /btn ------------ */

/* ------------ nice-list ------------ */
.nice-list__item {
    display: block;
    position: relative;
    padding-left: 35px;
    line-height: 1.3;
    margin-bottom: 19px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
}
.nice-list__item:before {
    content:'';
    position: absolute;
    width: 11px;
    height: 17px;
    top: 1px;
    left: 3px;
    box-sizing: border-box;
    border-bottom: 5px solid #ffc95e;
    border-right: 5px solid #ffc95e;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* ------------ /nice-list ------------ */

/* ------------ site-form ------------ */
.site-form__wrap {
    position: relative;
    max-width: 440px;
    margin: 0 auto;
    padding: 23px 0 0;
}
.site-form__title {
    color: #fff;
    font-size: 26px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}
.site-form__field {
    position: relative;
    margin: 0 0 46px;
    text-align: justify;
    width: 100%;
}
.site-form__field_submit:before {
    display: none;
}
.site-form__field:before {
    content:'';
    position: absolute;
    height: 1px;
    bottom: 3px;
    left: 0;
    right: 0;
    background: #bcbcbc;
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
}
.site-form__field_error:before {
    background: #ff0000;
}
.site-form__field label {
    display: inline-block;
    vertical-align: top;
    width: 40%;
    padding: 2px 0 0 0;
    font-size: 14px;
    font-weight: 700;
}
.site-form input,
.site-form textarea {
    display: inline-block;
    vertical-align: top;
    width: 55%;
    background: transparent;
    border: none;
    font-size: 14px !important;
    height: 20px;
    color: #444 !important;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif !important;
    -webkit-transition: background 0.2s ease, border 0.2s ease;
    transition: background 0.2s ease, border 0.2s ease;
}
.site-form__field:after {
    display: inline-block;
    content: '';
    width: 100%;
}
.site-form__field_link {
    text-align: center;
}
.site-form__link {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    border-bottom: 1px solid #fff;
    -webkit-transition: border-bottom 0.2s ease;
    transition: border-bottom 0.2s ease;
}
.site-form__field_submit {
    padding-top: 16px;
    text-align: center;
    margin-bottom: 0;
}
.site-form__finish {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #000;
    background: #fff;
    font-size: 18px;
    line-height: 40px;
    font-weight: 300;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.site-form__finish.active {
    opacity: 1;
    visibility: visible;
}
.site-form__finish > div {
    display: table;
    width: 100%;
    height: 100%;
}
.site-form__finish > div > div {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.site-form__finish b {
    display: block;
    font-size: 20px;
    text-transform: uppercase;
}
/* ------------ /site-form ------------ */

/* --------------- site --------------- */
.site {
    min-height: 100%;
    min-width: 300px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-family: 'Roboto', sans-serif;
}
.site:after {
    content: '';
    display: block;
    clear: both;
    width: 100%;
}
.site__centered {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 10px;
}
.site__header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ccc;
    z-index: 100;
}
.site__header .site__centered {
    position: relative;
    height: 55px;
}
.site__content {
    position: relative;
    z-index: 2;
    padding-top: 56px;
    padding-bottom: 50px;
}
.site__footer {
    z-index: 2;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f0f0f1;
    padding: 20px 0;
}
.site__footer-address-title {
    font-weight: 400;
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
}
.site__footer-address-text {
    font-weight: 400;
    font-size: 12px;
    color: #484848;
    margin-bottom: 20px;
}
.site__header-btn {
    display: block;
    position: absolute;
    top: 11px;
    padding: 0;
    left: 15px;
    width: 35px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 4;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.site__header-btn span {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -2px;
    height: 2px;
    background-color: #54514f;
    font-size: 0;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
.site__header-btn span:before,
.site__header-btn span:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #54514f;
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}
.site__header-btn span:before {
    -ms-transform: translateY(-400%);
    -webkit-transform: translateY(-400%);
    transform: translateY(-400%);
}
.site__header-btn span:after {
    -ms-transform: translateY(400%);
    -webkit-transform: translateY(400%);
    transform: translateY(400%);
}
.site__header-btn.opened span {
    background-color: transparent;
}
.site__header-btn.opened span:before {
    -ms-transform: translateY(0) rotate(45deg);
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
}
.site__header-btn.opened span:after {
    -ms-transform: translateY(0) rotate(-45deg);
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
}
.site__header-wrap {
    position: absolute;
    z-index: 3;
    top: 56px;
    left: -300px;
    width: 198px;
    -webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease;
    /* overflow-y: auto; */
    text-align: left;
    background: #fed057;
    opacity: 0;
}
.site__header-wrap.opened {
    -ms-transform: translateX(315px);
    -webkit-transform: translateX(315px);
    transform: translateX(300px);
    opacity: 1;
}
.site__footer .site__centered {
    position: relative;
}
.site__title {
    padding: 30px 0;
    color: #2ca0e1;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 500;
}
.site__title span {
    color: #2c2c2c;
}
.site__footer-top .social {
    margin-bottom: 15px;
}
.site__footer-top .logo {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    margin: 0 0 15px 0;
}
.site__footer-bottom {
    padding-top: 15px;
}
.site__footer-top + .site__footer-bottom {
    border-top: 1px solid #d8d8d8;
}
/* --------------- /site --------------- */

/* --------------- logo --------------- */
.logo {
    position: absolute;
    width: 180px;
    height: 26px;
    top: 15px;
    left: 50%;
    margin-left: -90px;
}
.logo img {
    width: 100%;
    height: 100%;
}
/* --------------- /logo --------------- */

/* ------------ menu ------------ */
.menu {
    max-height: calc(100vh - 58px);
    /* overflow-y: auto; */
}
.menu__item {
    display: block;
    padding: 0 16px;
    height: 40px;
    color: rgb(44, 44, 44);
    line-height: 40px;
    font-size: 16px;
    box-sizing: content-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-top: 1px solid #fff;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}
.menu__item:first-child {
    border-top: none;
}
.menu__item_single {
    color: #fff;
    background: #269de0;
}
/* ------------ /menu ------------ */

/* ------------ copyright ------------ */
.copyright {
    color: #2c2c2c;
    font-size: 12px;
    line-height: 18px;
}
/* ------------ /copyright ------------ */

/* ------------ preview ------------ */
.preview {
    background-size: cover;
    background-position: center;
    padding: 30px 0;
}
.preview__title {
    font-size: 28px;
    text-transform: uppercase;
    line-height: 1.37;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.3px;
}
.preview__title span {
    display: block;
    font-size: 20px;
}
.preview__btn .btn {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px 20px 0;
}
.preview__btn .btn:last-child {
    margin-right: 0;
}
/* ------------ /preview ------------ */

/* ------------ about-us ------------ */
.about-us__wrap {
    background: #48bee5;
}
.about-us__item {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    font-weight: 700;
    padding: 20px 0;
}
.about-us__item:last-child {
    margin-bottom: 0;
}
.about-us__item_2 {
    background: #f0f0f1;
    font-weight: 300;
    color: #000;
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
}
.about-us__item_2 b {
    font-weight: 500;
}
/* ------------ /about-us ------------ */

/* ------------ audience ------------ */
.audience {
    padding-bottom: 30px;
}
.audience .nice-list {
    margin-bottom: 30px;
}
.audience__pic {
    position: relative;
}
.audience__pic-title {
    font-weight: 300;
    font-size: 4vw;
    position: absolute;
    top: 0;
    left: 0;
    text-transform: uppercase;
    z-index: 1;
}
.audience__img-container {
    position: relative;
}
.audience__img-text {
    position: absolute;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.25;
    font-size: calc(16 * 100vw / 1023);
    display: flex;
    justify-content: center;
    align-items: center;
}
.audience__site {
    left: 49%;
    transform: translateX(-50%);
    top: 0%;
    color: #009ad6;
    width: 300px;
}
.audience__action-1 {
    left: 74%;
    top: 3%;
    text-transform: none;
    font-weight: 500;
    max-width: 224px;
}
.audience__action-2 {
    top: 60.5%;
    left: 40.5%;
    text-transform: none;
    font-weight: 500;
    text-align: center;
    width: 21.5%;
    height: 23%;
}
.audience__newsfeed-horizontal {
    left: 19.7%;
    top: 77.5%;
    width: 16.5%;
}
.audience__newsfeed-vertical {
    left: 54.8%;
    top: 18.8%;
    font-size: calc(10 * 100vw / 1023);
    /* max-width: 56px; */
    text-align: center;
    line-height: 1.1;
    width: 8.5%;
    height: 6.4%;
}
.audience__partner {
    color: #009ad6;
    width: 14.8%;
}
.audience__partner-1 {
    left: 7.3%;
    top: 23.3%;
}
.audience__partner-2 {
    left: 12.1%;
    top: 32.8%;
}
.audience__partner-3 {
    left: 16.8%;
    top: 42%;
}
.audience__read-more {
    left: 82.7%;
    top: 45.4%;
    color: #fff;
    font-size: calc(10 * 100vw / 1023);
    font-weight: 500;
    width: 8.5%;
    height: 3.8%;
}
.audience__pic img {
    display: block;
    width: 100%;
    height: auto;
}
/* ------------ /audience ------------ */

/* ------------ partners ------------ */
.partners {
    background: #009ad9;
    padding-bottom: 20px;
}
.partners.hidden {
    display: none;
}
.partners__title {
    color: #feffff;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    padding: 30px 0;
    text-transform: uppercase;
}
.partners__wrap {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.partners__wrap:after {
    content: '';
    clear: both;
    display: table;
}
.partners__cover {
    float: left;
    width: 50%;
    padding: 0 15px;
    margin-bottom: 20px;
}
.partners__item {
    display: table;
    width: 100%;
    height: 80px;
}
.partners__item a:hover {
    opacity: .6;
}
.partners__item > span {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.partners__item img {
    display: block;
    margin: 0 auto;
}
/* ------------ /partners ------------ */

/* ------------ footer-menu ------------ */
.footer-menu__item {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 15px 0;
}
.footer-menu__item:last-child {
    margin-right: 0;
}
.footer-menu__link {
    font-size: 16px;
    color: #000;
    border-bottom: 1px solid transparent;
    -webkit-transition: border-bottom 0.2s ease;
    transition: border-bottom 0.2s ease;
}
/* ------------ /footer-menu ------------ */

/* ------------ footer-menu2 ------------ */
.footer-menu2__item {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 15px 0;
}
.footer-menu2__item:last-child {
    margin-right: 0;
}
.footer-menu2__link {
    font-weight: 700;
    font-size: 14px;
    color: #000;
    border-bottom: 1px solid transparent;
    -webkit-transition: border-bottom 0.2s ease;
    transition: border-bottom 0.2s ease;
}
/* ------------ /footer-menu2 ------------ */

/* ------------ footer-menu3 ------------ */
.footer-menu3__item {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 15px 0;
    display: flex;
    gap: 20px
}
.footer-menu3__item:last-child {
    margin-right: 0;
}
.footer-menu3__link {
    font-weight: 400;
    font-size: 14px;
    color: #000;
    border-bottom: 1px solid transparent;
    -webkit-transition: border-bottom 0.2s ease;
    transition: border-bottom 0.2s ease;
}
/* ------------ /footer-menu3 ------------ */

/* ------------ social ------------ */
.social__item {
    display: inline-block;
    vertical-align: middle;
    font-size: 22px;
    margin: 0 0 0 16px;
    color: #009ad9;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}
.social__item:first-child {
    margin-left: 0;
}
/* ------------ /social ------------ */

/* ------------ content ------------ */
.content {
    padding: 10px;
}
.content h1 {
    padding: 30px 0;
    color: #2ca0e1;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 500;
}
.content h1 span {
    color: #2c2c2c;
}
.content h2 {
    text-align: center;
    font-size: 140%;
    margin-bottom: 30px;
    line-height: 1.5;
}
.content h3 {
    font-size: 130%;
    margin-bottom: 12px;
}
.content h4 {
    font-size: 120%;
    margin-bottom: 10px;
}
.content h5 {
    font-size: 110%;
    margin-bottom: 10px;
}
.content h6 {
    font-size: 100%;
    margin-bottom: 10px;
}
.content p.justify {
    text-align: justify;
}
.content p {
    margin-bottom: 15px;
    line-height: 1.4;
}
.content ul {
    list-style: disc;
    margin: 0 15px 10px 15px;
}
.content ul ul {
    margin: 10px 0 10px 25px;
}
.content ol {
    list-style: decimal;
    margin: 0 15px 10px 20px;
}
.content ol ol {
    margin: 10px 0 10px 25px;
}
.content li {
    margin-bottom: 5px;
    line-height: 1.4;
}
.content table {
    margin-bottom: 15px;
    font-size: 100%;
    width: auto;
    border: none;
}
.content th,
.content td {
    padding: 10px;
    text-align: left;
    border: none;
}
.content th {
    font-weight: bold;
    text-align: center;
}
.content td.center {
    text-align: center;
}
.content a,
.content a font {
    color: #0000ff;
    text-decoration: underline;
}
.content a:visited,
.content a:visited font {
    color: #0000aa;
}
.content a:hover,
.content a:hover font {
    color: #0000ff;
    text-decoration: none;
}
.content a:active,
.content a:active font {
    color: #ff0000;
}
.content img[align=left] {
    margin: 0 10px 10px 0;
    float: left;
}
.content img[align=right] {
    margin: 0 0 10px 10px;
    float: right;
}
.content dl {
    margin: 0 0 15px 0;
}
.content dt {
    font-weight: bold;
    margin-bottom: 2px;
}
.content dd {
    margin-bottom: 5px;
}
.content hr {
    height: 1px;
    border: none;
    color: #aaa;
    background: #aaa;
    margin: 10px 0;
    clear: both;
}
/* ------------ /content ------------ */

/* ------------ register-form ------------ */

.register-form input.error {
    border: 1px solid red;
}
.register-form input:required:invalid:not(:placeholder-shown):not(:focus) {
    border: 1px solid red;
}
.overlay {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 999;
}
.register-form, .success-pop-up, .error-pop-up {
    position: absolute;
    display: none;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: 520px;
    margin: 0 auto;
    padding: 0;
    background: #fff;
    z-index: 999;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    border-radius: 20px;
    border: 5px solid #009ad9;
    bottom: auto;
    height: auto;
    overflow: hidden;
}
#success-message-container {
    position: absolute;
    display: none;
    left: 0;
    top: 50%;
    padding: 20px;
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
    height: 100%;
    background: inherit;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1000;
}
.register-form .bg_popup {
    width: 96%;
    margin: 0 auto;
}
.register {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 95%;
}
#register > * {
    margin-top: 10px;
}
.register-form h2 {
    font-family: 'Roboto', sans-serif;
    color: #222;
    font-size: 16px;
    padding-bottom: 5px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin-top: 18px;
    margin-bottom: 10px;
}
.register .line {
    margin: 0 auto;
}
.checkbox {
    font-size: 13px;
    margin: 1% auto;
    font-family: 'Roboto', sans-serif;
    max-width: 95%;
    text-align: center;
}
.register-form #comments, .register-form .field {
    border-radius: 16px;
    border: 1px solid #ccc;
    color: #222;
    padding: 8px;
    width: 95%;
    margin: 0 auto;
    display: block;
    font-size: 15px;
    outline: none;
    transition: .26s ease;
    box-sizing: border-box;
}
#comments:focus, .field:focus {
    border: 1px solid rgba(82, 63, 119, .5);
}
#comments {
    max-width: 100%;
    min-height: 120px;
    max-height: 140px;
    font-family: Roboto, sans-serif;
    resize: vertical;
}
.register-site, .register-mail, .register-phones, .register-commentary {
    margin: 0 auto;
    width: 100%;
}

.iti {
    width: 95% !important;
    margin: 0 auto;
    display: block !important;
    font-family: 'Open Sans', sans-serif;
}
.iti__selected-flag {
    border-radius: 16px 0 0 16px;
}
.iti input, .iti input[type=tel] {
    border-radius: 16px !important;
    height: 37px !important;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
}
.register-form .sign {
    display: block;
    width: 56%;
    max-height: 54px;
    margin: 0 auto;
    border: none;
    outline: none;
    border-radius: 55px;
    background: #009ad9;
    -webkit-transition: color 0.2s ease, background 0.2s ease;
    transition: color 0.2s ease, background 0.2s ease;
    color: #fff;
    font-size: 18px;
    padding: 17px;
    cursor: pointer;
}
#errors-container {
    text-align: center;
    color: #DC143C;
    margin: 10px auto;
    width: 95%;
    font-size: 15px;
    line-height: 1.2;
}

/*REGISTER_FORM-END*/

@media (max-width: 767px) {
    .register-form {
        max-width: 520px;
        width: 93%;
        margin: 0 auto;
    }
    .register-form .button {
        width: 70%;
        max-width: 225px;
    }
    .register-form h2 {
        font-size: 16px;
        padding-bottom: 5px;
    }
    p.register-title {
        margin-bottom: 5px;
    }
}

@media (max-width: 385px) {
    .register-form, .success-pop-up, .error-pop-up {
        width: 90%;
        margin: 0 auto;
    }
    .register-form .button {
        width: 80%;
    }
}
@media (max-width: 374px) {
    .register-form .button {
        width: 93%;
        max-width: 225px;
        margin: 10px auto 0 auto;
    }
    .register-title {
        font-size: 13px;
    }
}
.regForm {
    cursor: pointer;
}
/* ------------ /register-form ------------ */

/* ------------ switch-lang ------------ */
.switch-lang {
    display: inline-block;
    position: relative;
    float: left;
    width: 50%;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    line-height: 39px;
    box-sizing: border-box;
    padding: 0 16px;
    color: rgb(44, 44, 44);
    min-width: 56px;
    text-align: center;
}
.switch-lang__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    min-width: 100px;
}
.switch-lang__list {
    display: none;
}
.is-active .switch-lang__list {
    display: block;
}
.switch-lang__option {
    color: #2c2c2c;
    font-size: 15px;
    display: block;
    padding: 0 15px;
    line-height: 45px;
    text-align: left;
    transition: 0.1s;
}
.switch-lang__option:hover:not(.switch-lang__option--selected) {
    background-color: #fff1d7;
}
.switch-lang__option--selected {
    background-color: #ffc864;
}
/* ------------ /switch-lang ------------ */


/* ------------- tos ------------------*/

.tos {
    padding-top: 40px;
    padding-right: 26px;
}
.tos h1 {
    font-size: 22px;
    text-align: center;
}

.tos h2 {
    text-align: center;
    margin-top: 12px;
}
.tos ol {
    list-style: auto;
}
.tos li + li {
    margin-top: 1em;
}
.tos li ol,
.tos li ul {
    margin-top: 1em;
}

.tos li p {
    font-weight: 400;
    margin-top: 1em;
    margin-bottom: 1em;
}

.tos .mark-list li {
    list-style: disc;
}

.tos .dash-list li::marker {
    content: '—';
}

.tos .table {
    border-collapse: collapse;
    border: 2px solid black;
    max-width: 500px;
    width: 100%;
    margin: 20px auto;
}
.tos .table td {
    border: 1px solid black;
    padding: 6px 12px;
}

.tos .table td:nth-child(n+2) {
    text-align: center;
}

.tos .list-level-3 {
    list-style-type: lower-alpha;
    padding-left: 1em;
}
.tos .list-level-3 > li {
    padding-left: 1em;
}
.tos .list-level-4 > li {
    padding-left: 1em;
}
.tos .list-level-4 {
    list-style-type: lower-roman;
    padding-left: 1em;
}

.list-level-1 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    margin-top: 40px;
    text-align: justify;
}
.list-level-2 {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
    font-weight: 400;
}


.list-level-1 > li,
.list-level-2 > li {
    display: table;
    counter-increment: item;
}

.list-level-1 > li:before,
.list-level-2 > li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.3em;
}

.list-level-2 > li:before {
    content: counters(item, ".") " ";
}

/* ------------- /tos ------------------*/

/* ------------- privacy ------------------*/
.privacy {
    padding-top: 40px;
    padding-left: 10px;
    padding-right: 20px;
}
.privacy * {
    font-size: 16px;
    line-height: 1.3;
    text-align: justify;
}
.privacy h1 {
    font-size: 22px;
    text-align: center;
    /*margin-bottom: 40px;*/
}
.privacy h2 {
    /*margin-top: 20px;*/
    margin-top: 2.5em;
    text-transform: uppercase;
}
.privacy h3 {
    margin-top: 1.4em;
}
.privacy h4 {
    margin-top: 1em;
}
.privacy p {
    margin-top: 1em;
}
.privacy ul {
    list-style: disc;
    margin-top: 1em;
    padding-left: 2em;
}
.privacy ol {
    list-style: decimal;
    margin-top: 1em;
    padding-left: 2em;
}
.privacy li {
    margin-top: 0.6em;
}
.cookie-toggle {
    display: flex;
    gap: 26px;
    padding-left: 2em;
    margin-top: 2em;
    margin-bottom: 2em;
}
.cookie-toogle__label-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cookie-toogle__label {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: default;
}
.cookie-toggle__input {
    position: relative;
    width: 52px;
    height: 100px;
    background: #269de0;
    border: 1px solid #bbc1e1;
    border-radius: 30px;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
}
.cookie-toggle__input::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 3px;
    width: calc(100% - 4px);
    aspect-ratio: 1/1;
    background-color: #fff;
    border-radius: 50%;
    transform: translateX(0);
    transition: all 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
}
.cookie-toggle__input:checked::after {
    transform: translateY(calc(-100% - 3px));
    background-color: #269de0;
    top: 100%;
}
.cookie-toggle__input:checked {
    background-color: #fff;
}
.cookie-toggle__tooltip {
    position: relative;
    padding: 8px;
    border-radius: 50%;
    background: #269de0;
    line-height: 0.5;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-toggle__tooltip-text {
    left: -690%;
    min-width: 240px;
    display: none;
    position: absolute;
    top: 0;
    font-size: 12px;
    font-weight: 400;
    text-align: left;
    padding: 8px;
    background: rgb(25 104 149 / 90%);
    border-radius: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.cookie-toggle__tooltip:hover .cookie-toggle__tooltip-text {
    display: block;
}
/* ------------- /privacy ------------------*/

@media screen and (min-width: 540px) {
    .cookie-toggle__tooltip-text {
        left: calc(100% + 15px);
        min-width: 260px;
    }
    /* ------------ partners ------------ */
    .partners__cover {
        width: 33.3333%;
    }
    /* ------------ /partners ------------ */

}

@media screen and (min-width: 768px) {
    .cookie-toggle__tooltip-text {
        min-width: 320px;
    }
    /* ------------ site-form ------------ */
    .site-form__field label {
        padding: 2px 0 0 23px;
        width: 39%;
        font-size: 16px;
    }
    .site-form input,
    .site-form textarea {
        width: 60%;
    }
    /* ------------ /site-form ------------ */

    /* ------------ nice-list ------------ */
    .nice-list {
        margin: 0 -10px;
    }
    .nice-list:after {
        content: '';
        clear: both;
        display: table;
    }
    .nice-list__item {
        float: left;
        width: 50%;
        padding: 0 10px 0 70px;
    }
    .nice-list__item:before {
        left: 16px;
    }
    /* ------------ /nice-list ------------ */

    /* ------------ site-form ------------ */
    .site-form__title {
        margin-bottom: 47px;
    }
    /* ------------ /site-form ------------ */

    /* --------------- site --------------- */
    .site__header .site__centered {
        height: 69px;
    }
    .site__content {
        padding-top: 70px;
        padding-bottom: 100px;
    }
    .site__footer {
    }
    .site__footer .site__centered {
        padding-top: 0;
    }
    .site__footer .copyright {
        font-size: 14px;
    }
    .site__title {
        padding: 34px 0;
        font-size: 32px;
    }
    .site__header-btn {
        top: 17px;
    }
    .site__header-wrap {
        top: 69px;
    }
    /* --------------- /site --------------- */

    /* --------------- logo --------------- */
    .logo {
        position: absolute;
        top: 16px;
        margin-left: -144px;
        width: 250px;
        height: 38px;
    }
    /* --------------- /logo --------------- */

    /* ------------ preview ------------ */
    .preview {
        padding: 114px 0 61px;
    }
    .preview__title {
        font-size: 45px;
        margin-bottom: 17.2%;
    }
    .preview__title span {
        font-size: 33px;
    }
    .preview .site__centered {
        padding: 0 10px 0 10px;
    }
    /* ------------ /preview ------------ */

    /* ------------ about-us ------------ */
    .about-us__wrap .site__centered {
        display: table;
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 0;
    }
    .about-us__item {
        display: table-cell;
        padding: 52px 22% 48px 15px;
        font-size: 24px;
    }
    .about-us__item_2 {
        width: 41%;
        padding-left: 70px;
        padding-right: 30px;
        font-size: 18px;
    }
    /* ------------ /about-us ------------ */

    /* ------------ audience ------------ */
    .audience {
        padding-bottom: 50px;
    }
    .audience .nice-list {
        margin-bottom: 40px;
    }
    /* ------------ /audience ------------ */

    /* ------------ partners ------------ */
    .partners__title {
        padding: 34px 0;
        font-size: 32px;
    }
    .partners__cover {
        width: 25%;
    }
    /* ------------ /partners ------------ */

    /* ------------ content ------------ */
    .content h1 {
        padding: 34px 0;
        font-size: 32px;
    }
    /* ------------ /content ------------ */

}

@media screen and (min-width: 880px) {

    /* ------------ partners ------------ */
    .partners__cover {
        width: 20%;
    }
    /* ------------ /partners ------------ */
    .tos {
        padding-right: 20px;
    }
}

@media screen and (min-width: 1024px) {
    .privacy {
        padding-left: 0px;
        padding-right: 0px;
    }
    /* ------------ nice-list ------------ */
    .nice-list__item {
        padding-left: 108px;
    }
    /* ------------ /nice-list ------------ */

    /* ------------ btn ------------ */
    .btn:hover {
        color: #fff;
        background: #2ca0e1;
    }
    .btn_3:hover span:before {
        border-color: #fff;
    }
    /* ------------ /btn ------------ */

    /* ------------ site-form ------------ */
    .site-form__title {
        margin-bottom: 47px;
    }
    .site-form__link:hover {
        border-bottom: 1px solid transparent;
    }
    .site__footer {
        padding: 0;
    }
    .site__footer-top:after,
    .site__footer-bottom:after {
        content: '';
        clear: both;
        display: table;
    }
    .site__footer-top {
        margin: 0 -15px;
        padding-top: 55px;
        padding-bottom: 10px;
    }
    .site__footer-top .logo,
    .site__footer-top .footer-menu,
    .site__footer-top .social,
    .site__footer-top .footer-menu2,
    .site__footer-bottom .footer-menu3,
    .site__footer-bottom .copyright {
        float: left;
        padding: 0 15px;
    }
    .site__footer-top .logo {
        width: 252px;
    }
    .site__footer-top .footer-menu {
        width: 50%;
        padding: 14px 0 0 40px;
    }
    .site__footer-top .social {
        width: 22.7%;
        text-align: right;
        padding-top: 7px;
    }
    .site__footer-top .footer-menu2 {
        float: right;
        width: 17.25%;
        padding-top: 15px;
    }
    .site__footer-bottom {
        margin: 0 -15px;
        padding: 24px 0 10px;
    }
    .site__footer-bottom .footer-menu3 {
        width: 50%;
    }
    .site__footer-bottom .copyright {
        width: 50%;
        float: right;
        text-align: right;
        letter-spacing: -0.6px;
    }
    .site__footer-address {
        padding-left: 15px;
    }
    /* ------------ /site-form ------------ */

    /* --------------- site --------------- */
    .site__header-btn {
        display: none;
    }
    .site__header-wrap {
        position: absolute;
        right: 10px;
        left: auto;
        top: 17px;
        width: 730px;
        padding: 0;
        height: auto;
        background: none;
        /* overflow: hidden; */
        opacity: 1;
    }
    .site__header-wrap.opened {
        -ms-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    .site__title {
        padding: 87px 0 77px;
    }
    /* --------------- /site --------------- */

    /* --------------- logo --------------- */
    .logo {
        left: 10px;
        margin-left: 0;
    }
    /* --------------- /logo --------------- */

    /* ------------ menu ------------ */
    .menu {
        /* overflow-y: visible; */
        text-align: right;
        display: flex;
        align-items: center;
        justify-content: end;
    }
    .menu__item {
        display: inline-block;
        vertical-align: top;
        position: relative;
        height: 36px;
        margin-left: 0;
        line-height: 37px;
        color: #2c2c2c;
        font-size: 15px;
        padding: 0 13px;
        border-top: none;
        -webkit-transition: color 0.2s ease, background 0.2s ease;
        transition: color 0.2s ease, background 0.2s ease;
    }
    .menu__item_single {
        color: #fff;
        margin-left: 28px;
        padding: 0 28px;
    }
    .menu__item:not(.active):hover {
        color: #2ca0e1;
    }
    .menu__item:not(.active):hover:before {
        opacity: 1;
    }
    .menu__item_single:before {
        display: none;
    }
    .menu__item_single:hover {
        color: #2c2c2c !important;
        background: #fed057;
    }
    .menu__item:before {
        content:'';
        position: absolute;
        height: 3px;
        bottom: 0;
        left: 4px;
        right: 4px;
        background: #2ca0e1;
        opacity: 0;
        -webkit-transition: opacity 0.2s ease;
        transition: opacity 0.2s ease;
    }
    .menu__item.active {
        cursor: default;
    }
    .menu__item.active:before {
        opacity: 1;
    }
    /* ------------ /menu ------------ */

    /* ------------ lang-switch ------------ */
    .switch-lang {
        display: inline-block;
        width: auto;
        float: none;
        vertical-align: top;
        -webkit-transition: color 0.2s ease, background 0.2s ease;
        transition: color 0.2s ease, background 0.2s ease;
        line-height: 36px;
        padding: 0 15px;
        color: #2c2c2c;
        font-size: 15px;
        border: none;
        cursor: pointer;
    }
    .switch-lang:before {
        content: '';
        position: absolute;
        height: 3px;
        bottom: 0;
        left: 0;
        right: 0;
        background: #2ca0e1;
        opacity: 0;
        -webkit-transition: opacity 0.2s ease;
        transition: opacity 0.2s ease;
    }
    .switch-lang:hover,
    .switch-lang.is-active {
        color: #2ca0e1;
    }
    .switch-lang:hover:before,
    .switch-lang.is-active:before {
        opacity: 1;
    }
    .switch-lang__list {
        right: unset;
    }
    .active-lang {
        display: block;
    }
    .is-active .switch-lang__list {
        display: block;
    }
    /* ------------ /lang-switch ------------ */

    /* ------------ preview ------------ */
    .preview {
        padding: 13.4% 0 1.5%;
    }
    /* ------------ /preview ------------ */

    /* ------------ about-us ------------ */
    .about-us__wrap {
        position: relative;
    }
    .about-us__wrap:before {
        content:'';
        position: absolute;
        top: 0;
        right: 40%;
        bottom: 0;
        left: 0;
        background: url("../img/about-us.jpg") no-repeat center;
        background-size: cover;
    }
    .about-us__wrap:after {
        content:'';
        position: absolute;
        width: 196px;
        height: 14px;
        bottom: -14px;
        left: 50%;
        background: transparent;
        margin-left: 326px;
    }
    /* ------------ /about-us ------------ */

    /* ------------ audience ------------ */
    .audience {
        padding-bottom: 79px;
    }
    .audience .nice-list {
        padding-top: 9px;
        margin-bottom: 132px;
    }
    .audience__img-text {
        font-size: 18px;
    }
    .audience__newsfeed-vertical {
        font-size: 11px;
    }
    .audience__read-more {
        font-size: 11px;
    }
    .audience__pic-title {
        font-size: 46px;
        top: -64px;
        left: 3px;
        line-height: 1.2;
    }
    /* ------------ /audience ------------ */

    /* ------------ partners ------------ */
    .partners {
        padding-bottom: 48px;
    }
    .partners__title {
        padding: 83px 0 67px;
    }
    .partners__cover {
        width: 16.6666%;
    }
    .partners__item {
        height: 100px;
    }
    /* ------------ /partners ------------ */

    /* ------------ footer-menu ------------ */
    .footer-menu:after {
        content: '';
        clear: both;
        display: table;
    }
    .footer-menu__item {
        float: left;
        width: 50%;
        display: block;
        margin: 0 0 50px;
        padding: 0 10px;
    }
    .footer-menu__link:hover {
        border-bottom: 1px solid #000;
    }
    /* ------------ /footer-menu ------------ */

    /* ------------ footer-menu2 ------------ */
    .footer-menu2__link:hover {
        border-bottom: 1px solid #000;
    }
    /* ------------ /footer-menu2 ------------ */

    /* ------------ footer-menu3 ------------ */
    .footer-menu2__item {
        display: block;
        margin: 0 0 50px;
    }
    .footer-menu3__item {
        margin-right: 51px;
    }
    .footer-menu3__link:hover {
        border-bottom: 1px solid #000;
    }
    .footer-menu3__link {
        letter-spacing: -0.8px;
    }
    /* ------------ /footer-menu3 ------------ */

    /* ------------ social ------------ */
    .social__item:hover {
        color: #ffc95e;
    }
    /* ------------ /social ------------ */

    /* ------------ content ------------ */
    .content h1 {
        padding: 80px 0;
    }
    /* ------------ /content ------------ */
    .tos {
        padding-right: 0px;
    }
}

@media screen and (max-width: 1023px) and (orientation: landscape) {

    /* ------------ header ------------ */
    .site__header-wrap {
        width: 100%;
    }
    /* ------------ /header ------------ */

    /* ------------ menu ------------ */
    .menu:after {
        content: '';
        clear: both;
        display: table;
    }
    .menu__item {
        width: 50%;
        float: left;
        box-sizing: border-box;
    }
    .menu__item:nth-child(2) {
        border-top: none;
    }
    .menu__item:nth-child(even) {
        border-left: 1px solid #fff;
    }
    .menu__item_single {
        /* width: 100%; */
    }
    /* ------------ /menu ------------ */
}
