/* -Шалом- */
*{
	margin: 0;
	padding: 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%;
	-webcit-text-size-adjust: 100%;
}

input,button,textarea{font-family: inherit;}

input::-ms-clear{display: none; color: #c7c7c7;}
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;}

textarea {
resize: none;
}

/* - Шрифты - */

@font-face{
    font-family: 'SB Sans Interface';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/SBSansUI-Regular.woff2'); 
}

@font-face{
    font-family: 'SB Sans Interface';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/SBSansUI-Semibold.woff2'); 
}


@font-face{
    font-family: 'SB Sans Interface';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/SBSansUI-Bold.woff2'); 
}

/* - end Шрифты - */


body{
    font-family: 'SB Sans Interface';
    background: #fff;
    color: #303844;
}


a{
    font-weight: 400;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(85.51deg, #03E903 -25.07%, #01BFC5 58.03%, #00B2FF 105.71%);
    cursor: pointer;    
}


h1, h2, h3, h4, h5, p{
    font-weight: 400;
    font-family: 'SB Sans Interface';
}

h1{
    font-size: 48px;
    font-weight: 600;
    line-height: 120%;
}

h2{
    font-size: 36px;
    font-weight: 600;
    line-height: 120%;
}

h3{
    font-size: 24px;
    line-height: 120%;
}


h4{
    font-size: 20px;
    line-height: 120%;
}

h5{
    font-size: 14px;
    line-height: 120%;   
}

p{
    font-size: 16px;
    line-height: 120%;   
}

::-webkit-scrollbar{
    height: 4px;
    width: 9px;
}

::-webkit-scrollbar-track{
background: #f0f0f0;
border-radius: 0px;
}
::-webkit-scrollbar-track piece{
    background: #e3e3e3;
}

::-webkit-scrollbar-thumb{
    background: linear-gradient(85.51deg, #03E903 -25.07%, #01BFC5 58.03%, #00B2FF 105.71%);
    border-radius: 0px;
}

.mt_50{
    margin-top: 50px;
}

.mb_20{
    margin-bottom: 20px;
}

.flex-wrap{
    flex-wrap: wrap;
}

.popup{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(2 1 10 / 86%);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease 0s;
}

.popup.active {
    opacity: 1;
    visibility: visible;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup_body {
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 15px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 5px;
    flex-direction: column;
}

.container{
    width: 1170px;
    margin: 0px auto;
    padding: 0px 15px;
    box-sizing: border-box;
    position: relative;
}

.bg_grey{
    max-width: 1570px;
    margin: 0px auto;
    padding: 0px 15px;
    box-sizing: border-box;
    background: #F5F7FA;
    border-radius: 50px;
}

.btn {
    width: 265px;
    height: 55px;
    display: flex;
    background: linear-gradient(88.21deg, #12DE4B 0.86%, #02ADEE 97.76%);
    border-radius: 50px;
    color: #fff;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    justify-content: center;
    transition: all 1.8s ease-in;
}



@-webkit-keyframes btn {
  15% {
    -webkit-transform: translateX(9px);
    transform: translateX(9px);
  }
  30% {
    -webkit-transform: translateX(-9px);
    transform: translateX(-9px);
  }
  40% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  50% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  65% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes btn {
  15% {
    -webkit-transform: translateX(9px);
    transform: translateX(9px);
  }
  30% {
    -webkit-transform: translateX(-9px);
    transform: translateX(-9px);
  }
  40% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  50% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  65% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}


.btn:hover{
    -webkit-animation: btn 1.1s ease;
    animation: btn 1.1s ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;

}

.header {
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F5F7FA;
    padding-bottom: 20px;
}

.logo{
    display: flex;
    flex-direction: row;
    cursor: pointer;
}

.logo h4{
    font-weight: 600;
}

.logo h5{
    font-weight: 400;
    width: 160px;
}

.logo img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.logo_text{
    display: flex;
    flex-direction: column;
}

.burger{
    display: flex;
    cursor: pointer;
}

.burger img{
    height: 38px;
    width: 42px;
}

.navigation {
    display: flex;
    width: 100%;
    margin-top: 20px;
    justify-content: space-between;
    height: 0px;
    transition: all 0.8s ease;
    overflow: hidden;
    margin-top: 0px;
    border-bottom: 0px solid #F5F7FA;
}

.navigation.active {
    height: 40px;
    margin-top: 20px;
    border-bottom: 1px solid #F5F7FA;
}

.navigation a{
    font-size: 16px;
    color: #303844;
    margin-right: 40px;
    transition: 0.5s ease 0s;
}

.navigation a:hover{
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(85.51deg, #03E903 -25.07%, #01BFC5 58.03%, #00B2FF 105.71%);
}

.nav_enter a{
    margin-right: 0px;
}

.close{
    display: none;
}

.one{
    display: flex;
    width: 100%;
    margin-top: 40px;
    justify-content: space-between;
}

.one_text{
    display: flex;
    width: 395px;
    flex-direction: column;
}

.one_text h1{
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 30px;
}

.one_text h4{
    font-size: 18px;
    color: #989CA2;
    margin-bottom: 35px;
    width: 350px;
}

.one_i {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    margin-left: 20px;
}

.one_i img{
    margin-right: 5px;
}

.one_i h5{
    font-size: 12px;
    color: #989CA2;
}

.one_img {
    display: flex;
    margin-top: -30px;
}

.one_img img{
    width: 680px;
    height: 441px;
}

.two {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-top: 30px;
    box-sizing: border-box;
}

.two h2 {
    font-size: 36px;
    font-weight: 500;
    max-width: 600px;
    text-align: center;
}

.center {
    display: flex;
    justify-content: center;
}


.three {
    width: 990px;
    display: flex;
    flex-direction: row;
    margin: 50px 0px;
    justify-content: space-between;
}

.three h3{
    font-weight: 500;
    margin-bottom: 15px;
}

.three h5{
    font-weight: 400;
    color: #989CA2;
}

.three_max {
    width: 600px;
    height: 340px;
    display: flex;
    flex-direction: row;
    background: #F5F7FA;
    box-sizing: border-box;
    padding: 25px;
    border-radius: 35px;
    background-image: url(../img/img_3.png);
    background-size: 490px;
    background-repeat: no-repeat;
    background-position-x: 190px;
    background-position-y: -55px;
}

.three_max.bg_img{
    background-image: url(../img/img_6.png);
}

.three_max_text{
    display: flex;
    flex-direction: column;
}

.content_one{
    display: flex;
    flex-direction: column;
}

.content_one.off{
    display: none;
}

.content_two{
    display: flex;
    flex-direction: column;
}

.content_two.off{
    display: none;
}

.three_max_text h5{
    font-weight: 400;
    color: #989CA2;
    width: 250px;
    margin-bottom: 15px;
}

.loader_col{
    display: flex;
    flex-direction: row;
    margin: 10px 0px;
}

.loader{
    width: 65px;
    height: 10px;
    border-radius: 1px;
    background: #C3DED1;
    margin-right: 10px;
}

.load{
    width: 0%;
    height: 10px;
    border-radius: 1px;
    background: #19955A;
}

.three_column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.three_min {
    width: 350px;
    height: 155px;
    display: flex;
    flex-direction: row;
    background: #F5F7FA;
    box-sizing: border-box;
    padding: 25px;
    border-radius: 35px;
    align-items: center;
    justify-content: space-between;
}

.three_min img{
    width: 100px;
    height: 90px;
    margin-right: 10px;
}

.img_bg {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: -50px;
}

.img_bg img {
    width: 350px;
    height: 250px;
}


.footer_navi {
    display: flex;
    width: 100%;
    flex-direction: row;
    box-sizing: border-box;
    padding: 30px 0px;
    border-bottom: 1px solid #e1eaf9;
    justify-content: space-between;
}

.footer_navi a {
    font-size: 18px;
    color: #303844;
    margin-right: 40px;
    transition: 0.5s ease 0s;
}

.footer_navi a:hover{
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(85.51deg, #03E903 -25.07%, #01BFC5 58.03%, #00B2FF 105.71%);
}

.footer_col {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 30px 0px;
    justify-content: space-between;
}

.footer_block{
    display: flex;
    flex-direction: column;
}

.footer_block_right{
    align-items: flex-end;
    text-align: right;
}

.footer_block a {
    font-size: 18px;
    color: #303844;
    transition: 0.5s ease 0s;
}

.footer_block a:hover{
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(85.51deg, #03E903 -25.07%, #01BFC5 58.03%, #00B2FF 105.71%);
}


.footer_block h5{
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 20px;
}

.mb20{
    margin-bottom: 20px;
}

.footer_block span{
    font-weight: 400;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(85.51deg, #03E903 -25.07%, #01BFC5 58.03%, #00B2FF 105.71%);
}

.footer_block_img{
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.footer_block_img_col {
    width: 50px;
    height: 50px;
    display: flex;
    border-radius: 8px;
    background: #fff;
    margin-right: 15px;
    margin-top: 15px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


@keyframes footer_block_img_col {
  15% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  30% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  40% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  50% {
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
  }
  65% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.footer_block_img_col:hover{
    -webkit-animation: footer_block_img_col 0.9s ease;
    animation: footer_block_img_col 0.9s ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;

}

.footer_block_img_col img{
    width: 30px;
    height: 30px;
}

.enter_row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0px;
}

.enter_block{
    width: 100%;
    max-width: 420px;
    height: 455px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 25px;
    background: #F5F7FA;
    border-radius: 20px;
}

.enter_block h2{
    font-weight: 500;
    margin-bottom: 20px;
}

.enter_block h5{
    color: #ACB7C8;
    margin-bottom: 20px;
    cursor: pointer;
    margin-left: 20px;
}

.enter_block p{
    text-align: center;
    margin-top: 20px;
}

.all_btn{
    width: 100%;
}

.enter_block span{
    font-weight: 400;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(85.51deg, #03E903 -25.07%, #01BFC5 58.03%, #00B2FF 105.71%);
}

@media (max-width: 1200px){

.container{
width: 938px;
margin: 0px auto;
padding: 0px 15px;
}

.one_text h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.one_text h4 {
    margin-bottom: 25px;
}

.one_img img {
    width: 570px;
    height: 390px;
}

.three_max {
    width: 560px;
    height: 340px;
    background-size: 430px;
    background-repeat: no-repeat;
    background-position-x: 190px;
    background-position-y: -23px;
}

.three_min {
    width: 310px;
    padding: 20px;
}



}

@media (max-width: 990px){

.container{
  width: 100%;
  padding: 0px 20px;
}

.one {
    display: flex;
    width: 100%;
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
}

.one_text {
    display: flex;
    width: 100%;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.one_i {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    margin-left: 20px;
    justify-content: center;
}

.one_img {
    display: flex;
    margin-top: 0px;
}

.one_img img {
    width: 460px;
    height: 292px;
}

.three {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 50px 0px;
    justify-content: space-between;
    align-items: center;
}

.three_max {
    margin-bottom: 30px;
    width: 100%;
}

.three_min {
    margin-bottom: 30px;
    width: 100%;
    justify-content: flex-start;
}

.footer_navi {
    overflow: auto;
}

.footer_navi_col{
    width: 800px;
    display: flex;
}

.footer_col {
    flex-direction: column;
}

.footer_block {
    margin-bottom: 30px;
}

.footer_block a {
    margin-bottom: 10px;
}

.footer_block_right {
    align-items: flex-start;
    text-align: left;
}

}


@media (max-width: 550px){

.container {
    width: 100%;
    padding: 0px 10px;
}

.header {
    margin-top: 20px;
        
}



.logo img {
    width: 50px;
    height: 50px;
    margin-right: 5px;
}

.logo h4 {
    font-weight: 600;
    font-size: 16px;
}

.logo h5 {
    font-size: 12px;
}

.burger img {
    height: 31px;
    width: 35px;
}

.navigation{
    height: 0;
    transform: translate(100%, 0px);
    top: 0;
    right: 0;
    position: fixed;
    background: rgb(255 255 255 / 97%);
    transition: transform 0.8s ease;
}

.navigation.active {
    position: fixed;
    display: flex;
    width: 90%;
    top: 0;
    right: 0;
    border-top-left-radius: 20px;
    background: rgb(255 255 255 / 97%);
    height: 100%;
    margin-top: 0px;
    border-bottom: 1px solid #F5F7FA;
    flex-direction: column;
    z-index: 2;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: 20px;
    border: 1px solid #e1eaf9;
    transform: translate(0px, 0px);
    transition: transform 0.8s ease;
}

.navigation a {
    margin-bottom: 25px;
    margin-right: 0px;
    width: 150px;
}

.nav_col{
    display: flex;
    flex-direction: column;
}

.navigation.active .close{
    display: flex;
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 10px;
    box-sizing: border-box;
}



.one_text h1 {
    font-size: calc(36px + (36 - 32) * ( (100vw - 480px) / ( 480 - 320) ));
    margin-bottom: 20px;
}

.one_text h4 {
    font-size: 16px;
    width: 100%;
}

.one_img img {
    width: 300px;
    height: 190px;
    margin-top: 25px;
}

.bg_grey {
    max-width: 100%;
    margin: 0px auto;
    padding: 0px 0px;
    border-radius: 5px;
}

.two h2 {
    font-size: 24px;
    font-weight: 500;
    max-width: 600px;
    text-align: center;
}

.btn {
    width: 100%;
    font-size: 16px;
    max-width: 280px;
}

.three_max {
    height: 489px;
    background-size: 320px;
    background-position-x: center;
    background-position-y: 220px;
}

.img_bg img {
    width: 300px;
    height: 214px;
}

.bg_grey {
    max-width: 100%;
}

.enter_block {
    height: auto;
    padding: 25px 15px;
    border-radius: 10px;
}

.enter_block h2 {
    font-size: 32px;
}




}











































