/*Fonts*/ 
@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/ProximaNova-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/ProximaNova-Semibold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/ProximaNova-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Jost";
    src: url("../fonts/Jost-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/*Specification*/
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
button:active, button:hover, button:focus, 
input:active, input:hover, input:focus, 
textarea:active, textarea:hover, textarea:focus{
    outline: 0;
    outline-offset: 0;
}
li{
	list-style-type: none;
}
div{
    box-sizing: border-box;
}
*, ::after, ::before{
    box-sizing: border-box;
}
body{
	font-family: "Proxima Nova";
    font-weight: 400;
	color: #FFFFFF;
    font-size: 16px;
}
ul{
	padding: 0;
	margin: 0;
}
input:-internal-autofill-selected {
    background-color: rgb(232, 240, 254) !important;
    background-image: none !important;
    color: -internal-light-dark-color(black, white) !important;
}
a, a:hover{
	text-decoration: none;
}
a{
    color: #FFFFFF;
}
.container{
    max-width: 1210px;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.title{
    font-family: "Jost";
    font-weight: 700;
    font-size: 61px;
    line-height: 120%;
    text-align: center;
}
.subtitle{
    font-size: 20px;
    line-height: 160%;
    color: #FFFFFF;
    text-align: center;
}
.subtitle a{
    font-weight: 700;
    border-bottom: 1px solid white;
}
.btn{
    width: 270px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(93.05deg, #607FE9 0%, #6867F6 42.19%, #6050FA 100%);
    box-shadow: 0px 10px 16px transparent;
    font-weight: 700;
    color: white;
    font-size: 16px;
    line-height: 19px;
    border: 5px solid white;
    border-radius: 2px;
    position: relative;
    user-select: none;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}
.btn img{
    display: block;
    margin-right: 10px;
}
.btn span{
    display: block;
}
.btn:hover{
    box-shadow: 0px 10px 16px #2F52AD;
}
.btn:active{
    box-shadow: 0px 0px 16px #2F52AD;
}
.socials{
    display: flex;
    align-items: center;
}
.socials__item{
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-right: 20px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border: 2px solid transparent;
    position: relative;
    user-select: none;
}
.socials__item:before{
    border-radius: 2px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(93.05deg, #607FE9 0%, #6867F6 42.19%, #6050FA 100%);
    opacity: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.socials__item:hover{
    border: 2px solid #FFFFFF;
    box-shadow: 0px 10px 16px #2F52AD;
}
.socials__item:active{
    box-shadow: 0px 0px 16px #2F52AD;
}
.socials__item:hover:before{
    opacity: 1;
}
.socials__item:last-child{
    margin-right: 0;
}
.socials__item img{
    display: block;
    position: relative;
    z-index: 1;
}




/*HEADER*/
.header{
    background: linear-gradient(289.88deg, #6050FA 0%, #867AFF 100%);
    height: 130px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(47, 56, 78, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.header.scrolled{
    height: 90px;
}
.header__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__logo{
    display: block;
}
.header__logo img{
    display: block;
    width: 252px;
}
.header__menu{
    display: flex;
    align-items: center;
}
.header__list{
    display: flex;
    align-items: center;
    margin-right: 64px;
}
.header__link{
    margin-right: 30px;
    border-bottom: 1px solid transparent;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    user-select: none;
}
.header__link:hover{
    border-bottom: 1px solid white;
}
.header__link:last-child{
    margin-right: 0;
}



/*BASE*/
.base{
    background: linear-gradient(289.88deg, #6050FA 0%, #867AFF 100%);
    padding: 210px 0 180px 0;
}
.base__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.base__box{
    position: relative;
    z-index: 1;
}
.base__title{
    text-align: left;
}
.base__subtitle{
    margin: 20px 0 30px 0;
    text-align: left;
}
.base__btns{
    display: flex;
    align-items: center;
}
.base__btn:first-child{
    margin-right: 35px;
}
.base__img{
    display: block;
    width: 500px;
    position: relative;
    z-index: 1;
}
.base__img.mobile{
    display: none;
}
.base__bg {
    position: absolute;
    left: -204px;
    bottom: -131px;
    z-index: 0;
}


/*PROMO*/
.promo{
    padding-bottom: 150px;
    background: linear-gradient(144.95deg, #FAF9FC 0%, #DDE3EC 100%);
    position: relative;
}
.promo__link{
    background: #EEF0F4;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 16px;
    transform: translate(0, -50%);
}
.promo__link__wr{
    border: 1.5px dashed #9BA3B3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 31px 54px;
}
.promo__link__wr span{
    display: block;
    font-size: 36px;
    line-height: 130%;
    color: #28323C;
}
.promo__link__wr a{
    display: block;
    font-weight: 700;
    font-size: 40px;
    line-height: 130%;
    color: #28323C;
    border-bottom: 1.5px solid #28323C;
}
.promo__inner{
    border-radius: 10px;
    padding: 50px 0 60px 0;
    background: url("../img/promo_bg.svg"), linear-gradient(289.88deg, #6050FA 0%, #867AFF 100%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.promo__title{}
.promo__subtitle{
    margin: 14px auto 30px auto;
    width: 73%;
}
.promo__btn{
    margin: 0 auto;
    user-select: all;
    min-width: 270px;
    padding: 0 15px;
    width: max-content !important;
    text-align: center;
}
.promo__btn .time{
    display: none;
    font-weight: 600;
    font-size: 30px;
    line-height: 37px;
}
.promo__btn.timer .promo__btn__icon,
.promo__btn.timer .promo__btn__text{
    display: none;
}
.promo__btn.timer .time{
    display: flex;
}
.time__wr{
    display: flex;
    align-items: center;
}
.time .code{
    display: none;
}
.time.done .code{
    display: block;
}
.time.done .time__wr{
    display: none;
}

/*HOW*/
.how{
    background: linear-gradient(289.88deg, #6050FA 0%, #867AFF 100%);
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}
.how__bg{
    position: absolute;
    top: -230px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 0;
}
.how .container{
    position: relative;
    z-index: 1;
}
.how__title{}
.how__subtitle{
    margin: 14px 0 30px 0;
}
.how__btn{
    margin: 0 auto;
}
.how__list{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 140px;
}
.how__line {
    position: absolute;
    left: 25px;
    bottom: -35px;
}
.how__item{
    display: flex;
    align-items: flex-start;
    width: 10%
}
.how__item:last-child{
    margin-right: 0;
}
.how__item.item1{
    width: 21%;
}
.how__item.item2{
    width: 26%;
}
.how__item.item3{
    width: 22%;
}
.how__item.item4{
    width: 24%;
}
.how__icon{
    display: block;
    margin-right: 10px;
    position: relative;
    z-index: 1;
}
.how__info{
    position: relative;
}
.how__num{
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0, -70%);
}
.how__name{
    margin: 12px 0 4px 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}
.how__text{
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #FFFFFF;
}


/*THEMES*/
.themes{
    background: linear-gradient(144.95deg, #FAF9FC 0%, #DDE3EC 100%);
    padding: 150px 0;
    overflow: hidden;
}
.themes .container{
    position: relative;
}
.themes__bg{
    position: absolute;
    left: 55%;
    top: 244px;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.themes__title{
    color: #6F60FC;
    position: relative;
    z-index: 1;
}
.themes__list{
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.themes__item{
    border-radius: 6px;
    width: 49%;
    height: 174px;
    margin-right: 2%;
    margin-top: 1%;
    margin-bottom: 1%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: url("../img/themes_item_bg.svg"), linear-gradient(289.88deg, #6050FA 0%, #867AFF 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.themes__item:nth-of-type(2n){
    margin-right: 0;
}
.themes__item:last-child{
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.themes__name{
    font-weight: 700;
    font-size: 26px;
    line-height: 130%;
    color: #FFFFFF;
}
.themes__bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.themes__info{
    font-size: 16px;
    line-height: 160%;
}
.themes__info span:first-child{
    margin-right: 40px;
}
.themes__btn{
    width: 40px;
    height: 40px;
    border: 3px solid white;
}
.themes__btn img{
    margin-right: 0;
}



/*WHY*/
.why{
    background: linear-gradient(289.88deg, #6050FA 0%, #867AFF 100%);
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}
.why__bg{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-56%, -55%);
    z-index: 0;
}
.why .container{
    position: relative;
    z-index: 1;
}
.why__title{}
.why__subtitle{
    margin: 14px 0 60px 0;
}
.why__list{
    display: flex;
    flex-wrap: wrap;
}
.why__item{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 49%;
    height: 216px;
    margin-right: 2%;
    margin-bottom: 1%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333434;
    padding: 0 40px;
}
.why__item:nth-of-type(2n){
    margin-right: 0;
}
.why__item.item1{
    background-image: url("../img/why_bg1.svg");
}
.why__item.item2{
    background-image: url("../img/why_bg2.svg");
}
.why__item.item3{
    background-image: url("../img/why_bg3.svg");
}
.why__item.item4{
    background-image: url("../img/why_bg4.svg");
}
.why__icon{
    display: block;
    flex-shrink: 0;
    width: 160px;
}
.why__info{
    margin-left: 40px;
}
.why__name{
    font-weight: 700;
    font-size: 26px;
    line-height: 130%;
    margin-bottom: 6px;
}
.why__text{
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
}
.why__bank{
    display: block;
    width: 260px;
}



/*CATEGORY*/
.category{
    padding: 150px 0;
    background: linear-gradient(144.95deg, #FAF9FC 0%, #DDE3EC 100%);
    position: relative;
}
.category .container{
    position: relative;
    z-index: 1;
}
.category__bg{
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-43%, -51%);
}
.category__title{
    color: #6F60FC;
}
.category__list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 45px;
}
.category__item{
    background: linear-gradient(289.88deg, #6050FA 0%, #867AFF 100%);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 270px;
    height: 270px;
    margin: 15px 0;
    position: relative;
    box-shadow: 0px 4px 21px transparent;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    user-select: none;
    color: white;
}
.category__item:last-child .category__name{
    position: absolute;
    bottom: 24px;
}
.category__icon{
    display: block;
    flex-shrink: 0;
}
.category__name{
    font-weight: 700;
    font-size: 26px;
    line-height: 130%;
    text-align: center;
    margin-top: 14px;
}
.category__item:hover{
    box-shadow: 0px 4px 21px #5142E4;
}



/*DOWNLOAD*/
.download{
    padding: 70px 0 100px 0;
    background: linear-gradient(289.88deg, #6050FA 0%, #867AFF 100%);
    position: relative;
    overflow: hidden;
}
.download .container{
    position: relative;
    z-index: 1;
}
.download__bg{
    position: absolute;
    bottom: -24px;
    z-index: 0;
    left: 50%;
    transform: translate(-49%, 0);
}
.download__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.download__left{
    width: 64%;
}
.download__title{
    text-align: left;
}
.download__subtitle{
    margin: 14px 0 30px 0;
    text-align: left;
}
.download__btns{
    display: flex;
    align-items: center;
}
.download__btn{
    margin-right: 30px;
    width: 208px;
}
.download__btn:last-child{
    margin-right: 0;
}
.download__img{
    margin-right: -80px;
    display: block;
}


/*APPS*/
.apps{
    background: linear-gradient(144.95deg, #FAF9FC 0%, #DDE3EC 100%);
    padding: 150px 0;
    position: relative;
}
.apps .container{
    position: relative;
    z-index: 1;
}
.apps__bg{
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 0;
    transform: translate(-50%, 0);
}
.apps__title{
    color: #6F60FC;
}
.apps__subtitle{
    margin: 14px 0 40px 0;
    color: #777878;
}
.apps__main{
    display: flex;
    justify-content: space-between;
}
.apps__box.box1{
    background: url("../img/apps_bg1.svg"), linear-gradient(289.88deg, #6050FA 0%, #867AFF 100%);
}
.apps__box.box2{
    background: url("../img/apps_bg2.svg"), linear-gradient(289.88deg, #6050FA 0%, #867AFF 100%);
}
.apps__box{
    border-radius: 4.82906px;
    width: 49%;
    padding: 40px 30px 30px 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.apps__name{
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    text-align: center;
    margin-bottom: 30px;
}
.apps__list{}
.apps__item{
    display: flex;
    margin-bottom: 30px;
}
.apps__item:last-child{
    margin-bottom: 0;
}
.apps__icon{
    display: block;
    width: 42px;
    height: 42px;
    margin-right: 10px;
    flex-shrink: 0;
}
.apps__info{}
.apps__text{
    line-height: 22px;
    margin-bottom: 11px;
}
.apps__text a{
    font-weight: 600;
    color: white;
    text-decoration: underline;
}
.apps__download{}
.apps__download span{}
.apps__download a{
    color: #28323C;
    font-weight: 600;
}



/*FOOTER*/
.footer{
    background: linear-gradient(289.88deg, #6050FA 0%, #867AFF 100%);
    position: relative;
    overflow: hidden;
}
.footer__bg{
    position: absolute;
    top: -234px;
    left: 50%;
    z-index: 0;
    transform: translate(-52%, 0);
}
.footer .container{
    position: relative;
    z-index: 1;
}
.footer__top{
    padding: 113px 0 133px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.footer__left{}
.footer__title{
    text-align: left;
}
.footer__subtitle{
    text-align: left;
    margin: 14px 0 30px 0;
}
.footer__btn{}
.footer__img{}
.footer__img.mobile{
    display: none;
}
.footer__bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}
.footer__copyright{
    font-size: 14px;
    opacity: 0.6;
}
.footer__socials{}
.footer__social{}



/*menu animate*/
.menu-btn{
  width: 30px;
  height: 30px;
  display: none;
  justify-content: center;
  align-items: center;
}
.menu-icon{
  position: relative;
  width: 30px;
  height: 3px;
  background-color: white;
}
.menu-icon::before {
  position: absolute;
  left: 0;
  top: -8px;
  content: '';
  width: 30px;
  height: 3px;
  background-color: white;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
}
.menu-icon::after {
  position: absolute;
  left: 0;
  top: 8px;
  content: '';
  width: 30px;
  height: 3px;
  background-color: white;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
}
.active .menu-icon{
  background-color: transparent !important;
}
.active .menu-icon::before {
  transform: rotate(45deg);
  top: 0;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
}
.active .menu-icon::after {
  transform: rotate(-45deg);
  top: 0;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
}



@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}



.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}