@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;500;600&display=swap");
body {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  /* background: #FFFFFF;
  color: #000000; */
  min-height: 100vh;
}

a {
  /* color: #2546FF; */
  text-decoration: none;
}

p {
  /* color: #000000; */
  margin-top: 0;
  margin-bottom: 10px;
}

img {
  max-width: 100%;
  height: auto;
}

div {
  box-sizing: border-box;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  padding: 0 20px;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1160px;
  }
}

/* header */

/* btns */
.btn {
  font-size: 16px;
  padding: 11px 16px;
  border-radius: 15px;
  outline: none;
}

.btn-light {
  background: #2546FF !important;
  border: 1px solid #2546FF !important;
  color: #FFFFFF !important;
  
  transition: all 0.5s;
}
@media (min-width: 1150px) {
.btn-light:hover {
  border: 1px solid #000000 !important;
  background: transparent !important;
  color: #000000 !important;
}
body.dark-theme .btn-light:hover {
  border: 1px solid #fff !important;
  background: transparent !important;
  color: #fff !important;
}
.btn-get:hover {
	border: 1px solid #fff !important;
  background: transparent !important;
  color: #fff !important;
}
}
.btn-white {
  border: 1px solid #FFFFFF;
  background: transparent;
  color: #FFFFFF;
  transition: all 0.5s;
}
@media (min-width: 1150px) {
.btn-white:hover {
  background: linear-gradient(127deg, #086570 0%, #01C916 100%);
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
}
.btn-dark {
  background: #000000;
  border: 0;
  transition: all 0.5s;
}
@media (min-width: 1150px) {
.btn-dark:hover {
  border: 0;
  background: linear-gradient(127deg, #086570 0%, #01C916 100%);
  color: #FFFFFF;
}
}
.btn-color {
  border: 0;
  color: #FFFFFF;
  border-radius: 15px;
  background: linear-gradient(133deg, #440AFF 0%, #E800F0 100%);
  transition: all 0.5s;
}
@media (min-width: 1150px) {
.btn-color:hover {
  border: 0;
  /*background: linear-gradient(127deg, #086570 0%, #01C916 100%);*/
  background: linear-gradient(134deg, #086471 0%, #01C916 100%);
  color: #FFFFFF;
}
}

/* mobile section */
.mobile header {
  position: relative;
  z-index: 125;
  border-bottom: 1px solid #E7E7E7;
  background: #FFF;
}

.mobile-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
  background: #FFFFFF;
  top: 0;
  left: 0;
  opacity: 0;
}

.mobile-menu.active {
  z-index: 100;
  opacity: 1;
  overflow: auto;
}

body.mobile {
  width: 100%;
  height: 100%;
  overflow: hidden;
}



body.mobile .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10;
}

@media (max-width: 991px) {
  .lg-mobile {
    width: 100%;
    height: 100%;
  }
  .lg-mobile .languages {
    position: unset;
  }
}

@media (max-width: 991px) {
  .lg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 10;
  }
}


.menu-mobile {
  overflow: auto;
  height: 100%;
}


.mobile-menu .menu-block > ul {
  display: block;
  padding: 0;
  margin-top: 130px;
}

.mobile-menu .menu-block > ul > li {
  padding: 6px 0;
  text-align: center;
  margin: 0;
}

.mobile-menu .menu-block > ul > li a {
  width: 100%;
  text-align: center;
}

/* top banner */
.top-banner {
  position: relative;
}

.top-banner .container-fluid {
  max-width: 1438px;
}

@media (min-width: 1140px) {
  .top-banner .container-fluid {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .top-banner .container-fluid {
    padding: 0;
  }
}

.top-banner-wrapper {
  position: relative;
  height: 633px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 36px;
}

@media (max-width: 767px) {
  .top-banner-wrapper {
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .top-banner-wrapper {
    height: 570px;
  }
}

.top-banner-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .top-banner-bg {
    border-radius: 0;
  }
}

.top-banner-bg {
	background: #2546ff;
}
@media (min-width: 1140px) {
  .top-banner-bg {
			background: #2546ff;
  }
}

.top-banner-bg__bg {
	display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-banner-bg__img-1 {
	width: 90%;
	max-width: 1400px;
	position: absolute;
	transform: translateX(-50%);
	top: -27%;
	left: 50%;
}
.top-banner-bg__img-2 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 35%;
}
.top-banner-bg__img-3 {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 35%;
}
@media (max-width: 1200px) {
	.top-banner-bg__img-1 {
    width: 99%;
    max-width: 1400px;
    position: absolute;
    transform: translateX(-50%);
    top: -14%;
    left: 50%;	
	}
}
@media (max-width: 800px) {
	.top-banner-bg__bg {
  display: block;
	}
	.top-banner-bg__img-1,
	.top-banner-bg__img-2,
	.top-banner-bg__img-3 {
		display: none;
	}
}
/* .top-banner-bg-md {
	display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-banner-bg-sm {
	display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

@media (max-width: 350px) {

}
@media (max-width: 320px) {

	}
.top-banner-info {
  position: relative;
  z-index: 1;
  max-width: 670px;
  margin-top: 90px;
  padding: 0 15px;
}
@media (max-width: 1200px) {
	.top-banner-info {
  max-width: 800px;
	}
}
@media (max-width: 800px) {
.top-banner-info {
	max-width: 586px;
}
}

@media (max-width: 450px) {
	.top-banner-info h1 { 
		font-size: 28px;
	}

}
@media (max-width: 400px) {
	.top-banner-info h1 { 
		font-size: 26px;
	}


}
@media (max-width: 320px) {
	.top-banner-bottom {
		text-align: center;
		margin: 0 auto;
		max-width: 250px;
	}
	.launch-app-block {
		padding: 15px;
	}
}

@media (max-width: 300px) {
  .top-banner-info {
    margin-top: 0px;
  }
}

.top-banner-info h1 {
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  line-height: 110%;
  margin-top: 0;
  margin-bottom: 35px;
}




.launch-app-block {
  max-width: 515px;
  margin: 0 auto 35px;
  border-radius: 30px;
  background: #FFF;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1), 0px 12px 27px 0px rgba(0, 0, 0, 0.1), 0px 48px 48px 0px rgba(0, 0, 0, 0.09), 0px 109px 65px 0px rgba(0, 0, 0, 0.05), 0px 193px 77px 0px rgba(0, 0, 0, 0.01), 0px 302px 85px 0px rgba(0, 0, 0, 0);
  backdrop-filter: blur(2px);
  padding: 15px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .launch-app-block {
    max-width: 560px;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .launch-app-block {
    flex-wrap: wrap;
    padding: 20px;
		max-width: 390px;

  }
	.top-banner-info h1 {
    font-size: 30px;
    margin-bottom: 36px;
  }

	.top-banner-info {
		margin-top: 108px;
	}
}
@media (max-width: 500px) {
	.launch-app-block {
		max-width: 90%;
	}
}
.launch-app-block p {
  width: calc(100% - 215px);
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 125.49%;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .launch-app-block p {
    font-size: 16px;
    width: calc(100% - 223px);
    margin-left: 25px;
  }
}

@media (max-width: 600px) {
  .launch-app-block p {
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .launch-app-block .btn {
    order: 1;
    width: 100% !important;
  }
}
@media (max-width: 320px) {
  .top-banner-info h1 {
		font-size: 27px;
  }

	.launch-app-block {
	padding: 15px;
	}
}
.top-banner-bottom {
  text-align: center;
}

.top-banner-bottom p {
  color: #FFFFFF;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 140%;
}

.media-wrapper {
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  .media-wrapper {
    padding-bottom: 30px;
  }
}

.media-title-block {
  height: 70px;
}

@media (max-width: 767px) {
  .media-title-block {
    height: auto;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
  }
}

.media-title {
  color: #000;
  font-family: Arial;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .media-title {
    max-width: 92px;
  }
}

@media (max-width: 767px) {
  .media-title {
    max-width: 100%;
  }
}

.media-title span {
  font-weight: 700;
}

.media-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 217px;
  height: 70px;
  width: 100%;
  border-radius: 25px;
  border: 1px solid #E3E3E3;
  background: #FFF;
  backdrop-filter: blur(15px);
  transition: border 0.5s;
}

@media (max-width: 767px) {
  .media-logo {
    max-width: 100%;
  }
}

.media-logo img {
  max-width: 120px;
  height: auto;
  object-fit: cover;
  filter: grayscale(1);
  transition: 0.5s ease-in-out;
}

.media-logo:hover {
  border: 1px solid #2546FF;
}

.media-logo:hover img {
  filter: grayscale(0);
}

.bg-light {
  /* border-radius: 30px; */
  background: linear-gradient(118deg, #BAC6FF 24.03%, #E3F2FE 62.89%, #E7F5FC 107.85%) !important;
}

.video-section {
  padding-top: 100px;
  padding-bottom: 70px;
}

@media (max-width: 767px) {
  .video-section {
    padding-top: 48px;
    padding-bottom: 50px;
  }
}

.video-title-block {
  border-radius: 30px;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .video-title-block {
    border-radius: 0;
    padding: 0;
    margin-bottom: 30px;
    background: none;
  }
}

.video-title {
  color: #000000;
  font-size: 40px;
  font-weight: 700;
  line-height: 130%;
  text-align: center;
  max-width: 730px;
  margin: 0 auto;
}

body.ru .video-title {
  max-width: 760px;
}

@media (max-width: 767px) {
  .video-title {
    font-size: 30px;
  }
}

.video-title span {
  color: #2546FF;
}

.video-block {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
  position: relative;
  width: 100%;
  height: 628px;
}

@media (max-width: 991px) {
  .video-block {
    height: 494px;
  }
}

@media (max-width: 767px) {
  .video-block {
    height: auto;
    margin-bottom: 24px;
  }
}

@media (max-width: 560px) {
  .video-block {
    height: 248px;
  }
}

.video-bg {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  width: 100px;
  height: 100px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
  opacity: 0.7;
}

@media (max-width: 767px) {
  .video-play-btn {
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
  }
}

.video-play-btn svg {
  width: 100px;
  height: 100px;
}

@media (max-width: 767px) {
  .video-play-btn svg {
    width: 70px;
    height: 70px;
  }
}

.video-play-btn circle {
  fill: #FFFFFF;
}

.video-play-btn path {
  fill: #000000;
}

.video-signature {
  display: flex;
  height: 50px;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .video-signature {
    width: 100%;
    height: auto;
    justify-content: center;
  }
}

.video-logos {
  max-width: 356px;
}

.video-logos-wrap {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .video-logos-wrap {
    justify-content: center;
  }
}

.video-bottom {
  max-width: 1086px;
  margin: 0 auto;
}

.partners-wrapper {
  padding: 96px 0;
}

@media (max-width: 767px) {
  .partners-wrapper {
    padding: 30px 0;
  }
}

.partners-wrapper .container-xl {
  max-width: 1127px;
}

.partners-title-block {
  height: 50px;
	width: 180px;
	display: flex;
	align-items: center;
}

@media (max-width: 767px) {
  .partners-title-block {
    height: auto;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
  }
}

.partners-title {
  color: #000;
  font-family: Arial;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
	white-space: nowrap;
}

.partners-title span {
  font-weight: 700;
}
.partners__logo-list {
	max-width: calc(100% - 180px);
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 15px;
}
.partners__logo-list div {
	width: 100%;
}
.partners-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 217px;
  height: 50px;
  transition: border 0.5s;
}

@media (max-width: 991px) {
  .partners-logo {
    height: 40px;
  }
}

@media (max-width: 767px) {
  .partners-logo {
    max-width: 100%;
    width: auto;
    margin: 6px 30px;
  }
	.partners__logo-list  {
		margin: 0 auto; 
	}

}

@media (max-width: 560px) {
  .partners-logo {
    margin: 6px 20px;
  }
}

.partners-logo svg {
  object-fit: contain;
  flex-shrink: 0;
  height: auto;
}

@media (max-width: 991px) {
  .partners-logo svg {
    height: 40px;
  }
}

.partners-wrap{
  gap: 15px;
  row-gap: 24px;
  flex-wrap: wrap;
  justify-content: space-around;
}

@media (max-width: 991px) {
  .partners-wrap {
    margin-top: 8px;
  }
}

@media (max-width: 767px) {
  .partners-wrap {
    margin-top: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.advantages {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .advantages {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.advantages-title-block {
  border-radius: 30px;
  /*background: #E1EAFF;
    padding: 16px;*/
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .advantages-title-block {
    border-radius: 0;
    padding: 0;
    margin-bottom: 30px;
    background: none;
  }
}

.advantages-title-block .title-block {
  text-align: center;
  margin-bottom: 34px;
}

@media (max-width: 767px) {
  .advantages-title-block .title-block {
    margin-bottom: 30px;
  }
}

.advantages-title-block .subtitle {
  text-align: center;
}

.title-block {
  color: #000000;
  font-size: 40px;
  font-weight: 400;
  line-height: 130%;
}

@media (max-width: 767px) {
  .title-block {
    font-size: 30px;
  }
}

.title-block span {
  color: #2546FF;
}

.subtitle {
  font-size: 30px;
  line-height: 140%;
}

@media (max-width: 767px) {
  .subtitle {
    font-size: 25px;
  }
}
.card__blue-box-container {
gap: 15px;
margin-bottom: 20px;
}
.card__blue-box-container .card__blue-box {
	width: 49%;
}
.card-blue {
  border-radius: 30px;
  background: linear-gradient(134deg, #411CFF 0%, #0E0450 100%);
  padding: 30px;
	height: 100%;
  min-height: 180px;
	flex-grow: 1;
	transition: transform 0.4s ease;
}
.card-frame-container{
	gap: 15px;
	justify-content: space-between;
}
.card-frame-container .card-frame-box {
	width: 32%;
}
@media (max-width: 782px) {
.card__blue-box-container .card__blue-box{
width: 100%;
}
.card-frame-container .card-frame-box {
	width: 100%;
}
}
@media (min-width: 1100px) {
 .card-frame-box .card-frame-wrap:hover {
		transform: scale(1.04);
		outline: 2px solid #2546FF;
	}
	.card-blue:hover {
	transform: scale(1.04);
	outline: 2px solid #2546FF;
}
}
@media (max-width: 767px) {
  .card-blue {
    margin-bottom: 0;
    border-radius: 30px;
    background: linear-gradient(134deg, #411CFF 0%, #096BFF 100%);
    padding: 20px 47px 24px 20px;
  }
}

.card-blue-title {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 400;
  line-height: 147.6%;
  text-transform: capitalize;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .card-blue-title {
    margin-bottom: 17px;
  }
}

.card-blue-text {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 149.99%;
}

.card-frame {
  /* border-radius: 30px;
  background: linear-gradient(138deg, #FF00B8 0%, #2400FF 100%);
  padding: 1px; */

  border-radius: 30px;
  
  box-shadow: 0px 4px 4px 0px rgba(152, 152, 152, 0.25);
}

.card-frame-wrap {
  border-radius: 30px;
  /* background: linear-gradient(138deg, #FFF 0%, #FFF 100%); */
  background: #F1F8FF;
  padding: 24px;
}

.card_icon {
  width: 84px;
  height: 84px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card_icon img {
  object-fit: contain;
}


@media (max-width: 767px) {
  .card-frame-wrap {
    padding: 20px 20px;
    min-height: 224px;
  }
}

.card-frame-top {
  margin-bottom: 26px;
}

@media (max-width: 767px) {
  .card-frame-top {
    margin-bottom: 17px;
  }
}

.card-frame-logo {
  padding-left: 16px;
  position: relative;
  margin-right: 15px;
}

.card-frame-logo::before {
  content: '';
  width: 50px;
  height: 50px;
  background: #F2F2F2;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.card-frame-logo img {
  position: relative;
  z-index: 1;
}

.card-frame-title {
  color: #000000;
  font-size: 30px;
  line-height: 147.6%;
  text-transform: capitalize;
}

.card-frame-text {
  color: #373737;
  font-size: 16px;
  font-weight: 400;
  line-height: 149.99%;
}

@media (max-width: 767px) {
  .advantages-row {
    margin-top: 4px;
  }
}

.advantages-row .card-frame {
  height: 100%;
}

.advantages-row .card-frame-wrap {
  height: 100%;
}

.text-section {
  padding: 24px 0 90px;
}

@media (max-width: 767px) {
  .text-section {
    padding: 90px 0 40px;
  }
}

.text-block-1 {
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 45px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .text-block-1 {
    margin-bottom: 45px;
  }
}

@media (max-width: 767px) {
  .text-block-1 {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}

.text-block-1 .title-block {
  max-width: 1060px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .text-block-1 .title-block {
    max-width: 96%;
  }
}

.text-block-2 p {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .text-block-2-text {
    order: 1;
  }
}

.text-block-2-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .text-block-2-wrap {
    max-width: 100%;
  }
}

.text-block-2-wrap > div {
  display: flex;
  align-items: center;
}

.text-block-2-img {
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .text-block-2-img {
    justify-content: center;
    margin-bottom: 30px;
  }
}

.banner-offer {
  padding-top: 120px;
}

.banner-offer-wrapper {
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 767px) {
  .banner-offer-wrapper {
    margin-bottom: 10px;
  }
}

.banner-offer-wrap {
  height: 166px;
  border-radius: 30px;
  background: linear-gradient(134deg, #411CFF 0%, #0B0246 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.banner-offer-wrap .title-block {
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.banner-offer-icon {
  width: 100px;
  height: 100px;
  left: 50%;
  position: absolute;
  top: -49px;
  margin-left: -50px;
  z-index: 1;
}

.banner-offer-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1066px;
  max-width: 1066px;
  height: auto;
  margin-left: -533px;
}

@media (max-width: 767px) {
  .banner-offer-bg {
    display: none;
  }
}

.pluses {
  margin-bottom: 20px;
}



.pluses .card-frame-wrap {
  height: 100%;
  min-height: 230px;
}

.pluses .card-frame {
  height: 100%;
}

.pluses-card-frame-title{
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 149.99%;
}

.card-frame-plus {
  margin-bottom: 8px;
}

.banner-payback{
  margin-top: 120px;
}

.banner-payback-wrapper {
  margin-bottom: 150px;
  position: relative;
}

@media (max-width: 767px) {
  .banner-payback-wrapper {
    margin-bottom: 90px;
  }
}

.banner-payback-wrap {
  min-height: 527px;
  border-radius: 30px;
  background: linear-gradient(134deg, #411CFF 0%, #0B0246 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.banner-payback-wrap .title-block {
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 2;
  max-width: 710px;
  margin: 90px auto 30px;
  padding: 0 15px;
}

@media (max-width: 767px) {
  .banner-payback-wrap .title-block {
    margin: 70px auto 28px;
  }
}

.banner-payback-wrap .subtitle {
  max-width: 618px;
  margin: 0 auto;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 163%;
  padding: 0 15px;
}

.banner-payback-icon {
  width: 100px;
  height: 100px;
  left: 50%;
  position: absolute;
  top: -49px;
  margin-left: -50px;
  z-index: 1;
}

.banner-payback-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1120px;
  max-width: 1120px;
  height: auto;
  margin-left: -560px;
}

@media (max-width: 767px) {
  .banner-payback-bg {
    display: none;
  }
}

.services-wrap {
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 58px;
  padding-bottom: 40px;
}

@media (max-width: 767px) {
  .services-wrap {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}

.service-item {
  width: 198px;
  height: 57px;
  display: flex;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid #E3E3E3;
  background: #FFF;
  backdrop-filter: blur(15px);
  text-decoration: none;
  margin: 6px;
  pointer-events: none;
}

.service-item img{
  width: 30px;
  height: 30px;
}

@media (max-width: 767px) {
  .service-item {
    /* width: 100%; */
    /* max-width: 195px; */
    margin: 5px;
    padding: 12px;
    display: none;
  }
}

@media (max-width: 400px) {
  .service-item {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .service-item.mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75%;
  }
}

.service-item span {
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 44.28px;
  text-transform: capitalize;
  margin-left: 6px;
  /* width: calc(100% - 36px); */
}

@media (max-width: 400px) {
  .service-item span {
    font-size: 16px;
    width: auto;
  }
}

.video-overview {
  margin-bottom: 90px;
  margin-top: 140px;
}

@media (max-width: 767px) {
  .video-overview {
    margin-top: 45px;
    margin-bottom: 30px;
  }
}

.video-overview .title-block {
  text-align: center;
  margin-bottom: 50px;
}

/* ================= main__reviews ================= */


.main__reviews .title-block {
  text-align: center;
  margin-bottom: 30px;

	/* display: none; */
}
.reviews__container {
	overflow: hidden;
	text-align: center;	
	/* display: none; */

}
.review__slider {
	opacity: 0;
	position: relative;
	display: flex;
	gap: 35px;
	padding-bottom: 90px;
}
/* .review__slider .slick-prev{
	position: absolute;
	right: 180px;
	top: -30px;
	left: auto;
}
.review__slider .slick-next {
	position: absolute;
	right: 57px;
	top: -30px;
	left: auto;
} */
.review__slider .slick-next {
  right: auto;
  bottom: 27px;
  left: 65%;
	top: auto;
}

.review__slider .slick-prev {
  right: 65%;
  bottom: 27px;
  left: auto;
	top: auto;
}
.review__slider .slick-prev:before {
	position: absolute;
	content: "";
  top: 50%;
  left: 50%;
	opacity: 1;
  transform: translate(-50%, -50%) rotate(180deg);
  width: 50px;
  height: 50px;
}
.review__slider .slick-next:before {
	position: absolute;
	content: "";
  top: 50%;
	opacity: 1;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
}
.review__slider .slick-prev:before { 
	background: url("../images/nav-arrow-black.svg");
	background-size: cover;
	background-repeat: no-repeat;

}
.review__slider .slick-next:before {
	background: url("../images/nav-arrow-black.svg");
	background-size: cover;
	background-repeat: no-repeat;
}


@media (min-width: 1050px) {
	
	.review__slider .slick-prev:hover:before { 
	background: url("../images/nav-arrow-blue.svg");
	background-size: cover;
	background-repeat: no-repeat;

}
.review__slider .slick-next:hover:before {
	background: url("../images/nav-arrow-blue.svg");
	background-size: cover;
	background-repeat: no-repeat;
}
	}
body.dark-theme .review__slider .slick-prev:before { 
	background: url("../images/nav-arrow-white.svg");
	background-size: cover;
	background-repeat: no-repeat;

}
body.dark-theme .review__slider .slick-next:before {
	background: url("../images/nav-arrow-white.svg");
	background-size: cover;
	background-repeat: no-repeat;
}


@media (min-width: 1050px) {
	body.dark-theme .review__slider .slick-prev:hover:before { 
	background: url("../images/nav-arrow-mint.svg");
	background-size: cover;
	background-repeat: no-repeat;

}
body.dark-theme .review__slider .slick-next:hover:before {
	background: url("../images/nav-arrow-mint.svg");
	background-size: cover;
	background-repeat: no-repeat;
}
}
.review__slider .review__item{
  /* width: 370px; */
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  padding: 35px;
  background: #F4F8FF;
  box-shadow: 2px 5px 2px 1px rgba(0, 0, 0, 0.16);
	/* height: 100%; */
  justify-content: space-between;
	margin: 0 3px;

}
body.dark-theme .review__slider .review__item{
	background:  #2D3340;

}
.review__slider .slick-track {
	display: flex;
	gap: 20px;
	padding: 20px 0;
  height: 100%;
  align-items: stretch;
}
.main__reviews .review__text {
	color:  #000;
	font-family: Inter;
	font-size: 18px;
	text-align: left;
	font-style: normal;
	font-weight: 400;
	line-height: 160%; 
	margin-bottom: 20px;
}.main__reviews .review__text a {
	color: #24A8DB;
}

.review__person{
	width: 60px;
	height: 60px;
	margin-right: 8px;
	border-radius: 50%;
}
.review__content{
	flex-grow: 1;
}
.review__name-box {
	margin-bottom: 4px;
	display: flex;
	justify-content: space-between;
	cursor: pointer;
}
.review__name-box img {
	width: 32px;
}
@media (min-width: 1150px) {
.review__bottom:hover .review__name-box img {
	opacity: 0.5;
}
}
.review__name{
  text-align: left;
  color: #000;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review__date{
	display: flex;
	align-self: start;
	color:  #000;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 31.024px;
}
body.dark-theme .main__reviews .review__text ,
body.dark-theme .review__date,
body.dark-theme .review__name{
	color: #fff;
	}
.review__bottom{
	display: flex;
}
.review__name-box{
	display: flex;
}
@media (max-width: 1099px) {
.review__name{
max-width: 100%;
}
}
@media (max-width: 980px) {
	.review__name{
	max-width: 200px;
	}
	}
	@media (max-width: 980px) {
		.review__name{
		max-width: 150px;
		}
		}
		@media (max-width: 767px) {
			.review__name{
			max-width: 100%;
			}
			}
			@media (max-width: 480px) {
				.review__name{
				max-width: 200px;
				}
				}
				@media (max-width: 450px) {
					.review__name{
					max-width: 140px;
					}
					}
@media (max-width: 700px) {
.review__slider .slick-next {
  right: auto;
  bottom: 27px;
  left: 65%;
	top: auto;
}

.review__slider .slick-prev {
  right: 65%;
  bottom: 27px;
  left: auto;
	top: auto;
}
}
@media (max-width: 576px) {
	.marquee__item3{
		display: flex;
		gap: 20px;
	}
	.review__item{
		padding: 25px;
	}
	.main__reviews .review__text {
		font-size: 18px;
	}
	.review__name{
		font-size: 18px;
	}
	.review__person{
		width: 50px;
		height: 50px;
		margin-right: 6px;
	}
	.review__date{
		font-size: 15px;
	}


}
@media (max-width: 450px) {
	.marquee__item3{
		display: flex;
		gap: 20px;
	}
	.review__item{
		padding: 20px;
	}
	.main__reviews .review__text {
		font-size: 16px;
	}
	.review__name{
		font-size: 16px;
	}
	.review__person{
		width: 50px;
		height: 50px;
		margin-right: 6px;
	}
	.review__date{
		font-size: 14px;
		margin-top: -8px;
	}
	.review__name-box {
		margin-bottom: 0px;
	}
}
@media (max-width: 400px) {
.review__slider .review__item {
	padding: 30px;
}

}

@media (max-width: 350px) {
	.marquee__item3{
		display: flex;
		gap: 15px;
	}
	.review__item{
		padding: 20px;
	}
	.main__reviews .review__text {
		font-size: 14px;
	}
	.review__name{
		font-size: 14px;
	}
	.review__person{
		width: 40px;
		height: 40px;
		margin-right: 6px;
	}
	.review__date{
		font-size: 12px;
	}
	.review__name-box img {
		width: 24px;
	}
	.review__slider .review__item {
		padding: 25px;
	}
	.review__slider .review__person{
		display: none;
	}
	.review__name {
		max-width: 150px;
	}
}
@media (max-width: 300px) {
	.review__slider .review__item {
		padding: 15px;
	}
}
@media (max-width: 767px) {
  .video-overview .title-block {
    margin-bottom: 30px;
  }

}

.banner-deposit {
  background: linear-gradient(134deg, #2300FF 0%, #080038 100%);
  padding: 60px 0;
}

.banner-deposit .title-block {
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .banner-deposit .title-block {
    margin-bottom: 38px;
    text-align: center;
  }
}

.banner-deposit-btns {
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .banner-deposit-btns {
    justify-content: center;
  }
}

.banner-deposit-btns .btns {
  max-width: 450px;
  width: 100%;
}
@media (max-width: 950px) {
  .banner-deposit-btns .btns {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
 .first_dep div{
		width: 100%;
	}
}
@media (max-width: 768px) {
	.first_dep div{
		width: 50%;
	}
}
@media (max-width: 500px) {
	.first_dep div{
		width: 100%;
	}
}

.banner-deposit-btns .btns > div {
  display: flex;
  align-items: center;
}

.banner-deposit-btns .btn {
  width: 100%;
  padding: 18px 16px;
	font-size: 23px;
  /* height: 60px; */
}

.banner-deposit-btns .btn-light {
  border: 1px solid #000000;
}

.banner-deposit-btns .btn-light:hover {
  border: 1px solid #FFFFFF;
}

.faq {
  padding: 90px 0;
}

.faq .title-block {
  margin-bottom: 60px;
}

.faq-content__inner {
  border-bottom: 1px solid #BEBEBE;
}

.faq-content__inner:first-child {
  border-top: 1px solid #BEBEBE;
}

.faq-content__question {
  border: none;
  outline: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 26px;
}

.faq-content__question span {
  transition: transform .3s ease-in-out;
	transform: rotate(-135deg);
}
.faq-content__inner.collapsed .faq-content__question span {
	transform: rotate(0deg);
}

.faq-content__text  {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  color: #171717;
}

.faq-content__answer {
  padding: 0 26px;
}

.faq-content__descr {
  margin-bottom: 26px;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: #171717;
}

@media (max-width: 480.98px) {
  .faq-content__question {
    padding: 26px 6px;
  }

  .faq-content__text {
    padding-right: 46px;
    line-height: 22px;
  }

  .faq-content__answer {
    padding: 0 6px;
  }

  .faq-content__descr {
    line-height: 22px;
  }
}

.footer-info {
  padding-top: 60px;
  padding-bottom: 95px;
  text-align: center;
}

.footer-info p {
  color: #1A1A1A;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.9px;
  margin-bottom: 17px;
}

.footer-info-links {
  justify-content: center;
}

.footer-info-links a {
  color: #2546FF;
  font-size: 13px;
  font-weight: 400;
  line-height: 18.9px;
  text-decoration: none;
  margin: 0 12px;
}

.sotial-block {
  justify-content: center;
  margin-top: 17px;
}

.sotial-block a {
  margin: 0 2.5px;
}

.sotial-block a:hover path {
  fill: #2546FF;
  transition: 0.5s;
}

.sotial-block a.twitter:hover path {
  fill: #DDDDDD;
}

.sotial-block a.twitter:hover rect {
  fill: #2546FF;
  transition: 0.5s;
}

.steps {
  background: linear-gradient(180deg, #E3EBFF 0%, #B7CBFF 97.25%);
}

.steps-wrapper {
  position: relative;
  padding-top: 80px;
  padding-bottom: 110px;
}

@media (max-width: 767px) {
  .steps-wrapper {
    padding-bottom: 45px;
  }
}

.steps-wrapper .title-block {
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .steps-wrapper .title-block {
    margin-bottom: 30px;
  }
}

.steps-container {
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
}

.steps-icon {
  width: 100px;
  height: 100px;
  left: 50%;
  position: absolute;
  top: -49px;
  margin-left: -50px;
  z-index: 1;
}

/*
.steps-desctop {
    @media (max-width: 767px) {
        display: none;
    }
}

.steps-mobile {
    display: none; 
    @media (max-width: 767px) {
        display: block;
    }
}*/
.steps .steps-select {
  display: none;
}

@media (max-width: 767px) {
  .steps .steps-select {
    display: block;
    margin-bottom: 30px;
    height: 52px;
    position: relative;
  }
}

.steps-select-active {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  border-radius: 30px;
  border: 1px solid rgba(208, 208, 208, 0.9);
  background: #FFF;
  text-decoration: none;
  height: 52px;
  width: 100%;
  position: relative;
  padding: 15px 25px;
}

.steps-select-active span {
  opacity: 0.7;
}

.steps-select-active::after {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  background: url(../images/icon-down-gray.svg) top center no-repeat;
  top: 11px;
  right: 15px;
}

.steps-options {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 5;
  display: none;
  width: 100%;
}

@media (max-width: 500px) {
  .steps-options {
    right: 0 !important;
    left: auto !important;
  }
}

.step-link {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #707072;
  padding-bottom: 10px;
  padding-left: 10px;
  text-decoration: none;
  display: block;
}

.step-link.active {
  color: #000;
}

.steps-options-link:last-child .step-link {
  padding-bottom: 0;
}

#pills-tab {
	gap: 14px;
  justify-content: center;
  margin-bottom: 55px !important;
}

@media (max-width: 767px) {
  #pills-tab {
    display: none !important;
  }
}

#pills-tab .nav-item {
  /* margin: 0 7.5px; */
  width: 120px;
}

@media (max-width: 991px) {
	#pills-tab {
    gap: 9px;
  }
  #pills-tab .nav-item {
    /* margin: 0 4.5px; */
    width: 110px;
    margin-bottom: 7px;
  }
}

#pills-tab .nav-item button {
  border-radius: 30px;
  border: 1px solid rgba(208, 208, 208, 0.9);
  background: #FFF;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 27.9px;
  width: 100%;
}

#pills-tab .nav-link.active {
  background: #2546FF;
  border: 1px solid #2546FF;
  color: #FFFFFF;
}

.step-item-image img {
  border-radius: 10px;
}

.step-item-title {
  color: #2546FF;
  font-size: 21px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 20px;
}

.step-item-content li,
.step-item-content p {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.step-item-content p {
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .step-item-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .step-item-image .image-desc {
    display: none;
  }
}

.step-item-image .image-mobile {
  display: none;
}

@media (max-width: 767px) {
  .step-item-image .image-mobile {
    display: block;
  }
}

.banner-form {
  margin-top: 120px;
  background: linear-gradient(131deg, #3F1BF6 0%, #13065D 100%);
  padding: 17px 0;
}

@media (max-width: 767px) {
  .banner-form {
    padding-bottom: 40px;
  }
}

.banner-form .container-xl {
  max-width: 1100px;
}

.banner-form .title-block {
  font-size: 30px;
  color: #FFFFFF;
  max-width: 302px;
}

@media (max-width: 767px) {
  .banner-form .title-block {
    margin: 0 auto 20px;
    text-align: center;
  }
}

.banner-form-form {
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .banner-form-form {
    justify-content: center;
  }
}

.banner-form-form .subscribe-form {
  /*max-width: 400px;*/
  max-width: 520px;
  width: 100%;
}

.banner-form-form .subscribe-form > div {
  display: flex;
  align-items: center;
}

.subscribe-form form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media (max-width: 450px) {
  .subscribe-form form {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.subscribe-form .form-group-color {
  /*max-width: 275px;*/
  max-width: 400px;
  width: 100%;
  position: relative;
}

@media (max-width: 450px) {
  .subscribe-form .form-group-color {
    max-width: 100%;
    margin-bottom: 10px;
  }
}

.subscribe-form .form-group-color .color-wrap {
  border-radius: 15px;
  background: linear-gradient(133deg, #E800F0 0%, #440AFF 100%);
  padding: 1px;
  position: relative;
}

.subscribe-form .form-group-color input {
  width: 100%;
  color: #EBF1FF;
  height: 48px;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  padding: 15px;
  border-radius: 15px;
  border: 0;
  outline: none;
  background: linear-gradient(90deg, #240FAF 0%, #1A0B8D 100%);
}

.subscribe-form .form-group-color input::placeholder {
  /* Most modern browsers support this now. */
  color: #EBF1FF;
}

@media (max-width: 450px) {
  .subscribe-form .fotm-btn {
    width: 100%;
    text-align: center;
  }
}

.subscribe-form .btn-color {
  width: 130px;
  height: 50px;
  margin-left: 10px;
  line-height: 1;
}

@media (max-width: 450px) {
  .subscribe-form .btn-color {
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }
}

.fotm-btn .btn-color:disabled {
  border: 0;
  background: linear-gradient(127deg, #086570 0%, #01C916 100%);
  color: #FFFFFF;
}

.fotm-btn .btn-color .submitted {
  display: none;
}

.fotm-btn .btn-color .submitted.active {
  display: inline-block;
}

.fotm-btn .btn-color .submit-btn.hide {
  display: none;
}

.success {
  display: none;
  position: absolute;
  width: calc(100% - 2px);
  height: 48px;
  top: 1px;
  left: 1px;
  align-items: center;
  padding: 15px 15px;
  border-radius: 15px;
  background: linear-gradient(90deg, #240FAF 0%, #1A0B8D 100%);
}

@media (max-width: 450px) {
  .success {
    padding: 10px 15px;
  }
}

.success span {
  color: #FFF;
  font-size: 16px;
  margin-left: 10px;
  width: calc(100% - 40px);
  line-height: 1;
}

.success.active {
  display: flex;
}

.invalid-feedback {
  position: absolute;
  bottom: -24px;
  left: 16px;
  color: #c202f3;
}

@media (max-width: 450px) {
  .invalid-feedback {
    position: relative;
    bottom: 0;
  }
}

.pluses {
  width: 100%;
  overflow: hidden;
}

.pluses-wrap {
  position: relative;
}

@media (max-width: 767px) {
  .pluses-wrap {
    padding-bottom: 20px;
  }
}

.pluses-wrap .swiper-container {
  overflow: visible;
}

@media (min-width: 768px) {
  .pluses-wrap .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .pluses-wrap .swiper-wrapper .swiper-slide {
    width: 32.25%;
    height: auto;
    margin-bottom: 20px;
  }
}

.pluses-wrap .swiper-scrollbar {
  height: 6px;
  background: #E1E1E1;
  width: 50%;
  left: 25%;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .pluses-wrap .swiper-scrollbar {
    display: none;
  }
}

.pluses-wrap .swiper-scrollbar-drag {
  background: #2546FF;
}

.pluses-wrap .card-frame {
  height: auto;
}


@media (max-width: 991px) {
  .mobile-menu .btn-present {
    max-width: 255px;
    width: 100%;
    padding: 4px 10px;
  }
  .mobile-menu .btn-present img {
    position: relative;
    top: -3px;
    left: -3px;
  }
}

.mobile-btns {
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .mobile-btns {
    display: none;
  }
}

.mobile-btns .btn-light {
  width: 156px;
  text-align: center;
  padding: 7px 5px 7px 46px;
  position: relative;
  height: 40px;
}

.mobile-btns .btn-light img {
  position: absolute;
  top: -3px;
  left: 4px;
}





.lang_kr .banner-deposit-btns .btns {
  max-width: 424px;
}

@media (max-width: 446px) {
  .lang_kr .banner-deposit-btns .btns > div {
    width: 100%;
  }
}

.page-wrap {
  padding-top: 100px;
  min-height: 80vh;
}

@media (max-width: 991px) {
  .page-wrap {
    padding-top: 60px;
  }
}

.page-wrap h1 {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .page-wrap h1 {
    margin-bottom: 30px;
  }
}

.page-wrap h3 {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .page-wrap h3 {
    margin-bottom: 20px;
  }
}


.aibot {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 5;
    @media (min-width: 991px) {
        position: fixed;
        width: 336px;
        height: calc(100% - 128px);
        max-height: 450px;
        background-color: transparent;
        z-index: 5;
        top: auto;
        bottom: 128px;
        left: auto;
        right: 5%;
        box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
        border-radius: 10px;
    }
    
}

/*# sourceMappingURL=style.css.map */






#about{
  position: relative;
  top: -120px
}

#offer{
  position: relative;
  top: -70px;
}

.christmas_logo{
  position: relative;
  top: -5px;
}

.calculator{
  text-align: center;
  margin-bottom: 35px;
}

.before_footer{
  position: relative;
  /* z-index: 1001; */
}

.header_snow{
  position: absolute;
  height: 100%;
  /* max-height: 85px; */
  /* width: 100%; */
  z-index: -1;
  display: flex;
  object-fit: contain;
  overflow: hidden;
	left: 80px;
}
.left_cloud{
  object-fit: contain;
  height: 100%;
  z-index: -1;
}

.right_cloud{
  object-fit: contain;
  height: 80%;
  z-index: -1;
	margin-left: 65px;
}

@media (max-width: 701px) {
  .header_snow{
    max-height: 76px;
  }
}
@media (max-width: 450px) {
  .header_snow{
    left: auto;
		right: 37px;
  }
	.left_cloud{
		height: 70%;
		display: flex;
		align-self: flex-end;
	}
	.right_cloud{
		height: 55%;
		margin-left: 30px;
	}
}
.header_cloud{
	display: none;
  position: absolute;
  height: 100%;
  z-index: -1;
  /* display: flex; */
  object-fit: contain;
  overflow: hidden;
	right: 357px;
}
@media (max-width: 1300px) {
.header_cloud{
	display: none;
}
}
.chinese_cloud{
  object-fit: contain;
  height: 100%;
  z-index: -1;
}

.timer_wrap{
  padding: 10px 0px;
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(13.850000381469727px);
}

/* #timerd03d614e7ca954574c2ca34922133613 span{
  font-weight: 700 !important;
}

#timerd03d614e7ca954574c2ca34922133613{
  min-width: 0 !important;
  height: fit-content !important;
} */




@media (max-width: 767px){

/*   
  .timer-slide-old, .timer-slide-new, .timer-slide-bounding, .timer-separator{
    font-size: 48px !important;
  }

  #timer-text-d03d614e7ca954574c2ca34922133613-minutes, #timer-text-d03d614e7ca954574c2ca34922133613-days, #timer-text-d03d614e7ca954574c2ca34922133613-hours{
    font-size: 20px !important;
  } */

}

@media (max-width: 576px) {
  /* .timer-slide-old, .timer-slide-new, .timer-slide-bounding, .timer-separator{
    font-size: 32px !important;
  }

  #timer-text-d03d614e7ca954574c2ca34922133613-minutes, #timer-text-d03d614e7ca954574c2ca34922133613-days, #timer-text-d03d614e7ca954574c2ca34922133613-hours{
    font-size: 16px !important;
  } */
  
.timer-separator{
  padding: 0px 16px !important;
}

}

.christmas_smiles{
  height: 40px;
  position: relative;
  margin-bottom: 9px;
}

.christmas_ball{
  position: relative;
  top: 80px;
  right: -91%;

}

@media (max-width: 350px) {
  .col-xxs-12{
    width: 100%;
  }
  
}

.container-xl .promo_wrap {
  position: relative;
  border-radius: 20px;
  background: #2546ff;
  margin-bottom: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 5px 16.1px 0px rgba(0, 0, 0, 0.25);
}
.promo__line {
  position: absolute;
  min-width: 1200px;
  top: 0;
  left: 0;
}
.promo__box {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 41%;
}
.promo__list {
  margin-top: 180px;
  margin-bottom: 14px;
  max-width: 530px;
  padding-left: 100px;
}
.promo__item {
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 40px;
}

.promo_wrap .get__btn {
  margin: 0 auto;
  display: inline-block;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  background: #fff;
  border: 2px solid #fff;
  padding: 15px 54px;
  border-radius: 15px;
  margin-bottom: 48px;
  transition: color 0.4s ease, background 0.4s ease;
  z-index: 2;
}
.promo_wrap .get__btn:hover {
  color: #fff;
  background: #2546ff;
}
.blue-btn {
	min-width: 180px;
  display: inline-block;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  border: 2px solid #2546ff;
  padding: 17px 28px;
  border-radius: 15px;
  transition: color 0.4s ease, background 0.4s ease;
  z-index: 2;
	background: #2546ff;
}
.blue-btn:hover {
  color: #2546ff;
  background: #fff;
	transition: color 0.4s ease, background 0.4s ease;
}
.promo__mobile-gift {
	display: none;
}

@media (max-width: 914px) {
	.promo__list{
		padding-left: 70px;
	}
	.promo__item {
		font-size: 28px;
	}

}
@media (max-width: 840px) {
.promo_wrap .get__btn {
		max-width: 180px;
		margin: 0;
		margin-left: 70px;
		margin-bottom: 48px;
	}
		.promo__item {
			font-size: 26px;
	}
	.promo__list {
		max-width: 430px;
	}

	.promo__line {
		min-width: 890px;
		top: 24px;
	}
	.promo__box {
		max-width: 48%;
	}
}
@media (max-width: 730px) {
	.promo__item {
    font-size: 24px;
		margin-bottom: 25px;
	}
	.promo__list {
		margin-top: 160px;
	}
}
@media (max-width: 670px) {
	.promo__item {
    font-size: 22px;
		margin-bottom: 20px;
	}

	.promo__line {
		min-width: 700px;
		top: 24px;
		z-index: 2;
	}
}
@media (max-width: 576px) {
	.promo__box{
		display: none;
	}
	.promo__mobile-gift {
		display: block;
		margin: 0 auto;
		margin-top: 94px;
		width: 70%;	
	}

	.promo__item{
		font-size: 24px;
	}
	.promo__list {
    margin: 0 auto;
		margin-bottom: 15px;
		padding-left: 27px;
		max-width: 338px;
}
.promo_wrap .get__btn{
	margin: 0 auto;
	margin-bottom: 48px;
}
		



}
@media (max-width: 450px) {
	.promo__line {
		left: -196px;
		min-width: 700px;
		top: 24px;
		height: 95px;
		z-index: 2;
	}

.promo__item {
	font-size: 22px;
}
.promo__list{
	max-width: 313px;
}
.promo_wrap .get__btn {
margin-bottom: 38px;
}
.promo__line {
	top: 8px;
}
}
@media (max-width: 400px) {
.promo__item {
	font-size: 19px;
}
.promo__list{
	max-width: 272px;
}
.promo__mobile-gift {
	width: 80%;	
}
}


@media (max-width: 350px) {
	.promo__item {
		font-size: 15px;
		margin-bottom: 15px;
	}
	.promo__list {
    max-width: 221px;
		margin-bottom: 10px;
	}
	.promo_wrap .get__btn {
		min-width: 75vw;
	}
	.promo__line {
    left: -0;
    min-width: 510px;
    top: 24px;
    height: 75px;
    z-index: 2;
}

	}
	
	



/* бонус */
.bonus-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;

  border-radius: 12px;
  width: 649px;
  height: 678px;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 10000;
  transition: all 0.3s ease;
	background: url("../images/promo-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
	margin: 20px 0	;
}

.modal__slider{
	width: 100%;
	height: 100%; 
	height: 86%; 

}

.modal__slider.slick-dotted.slick-slider{
	margin-bottom: 0;
}

.modal__slider .slick-track {
	display: flex;
	height: 100%;
	left: 0;
}
.modal__slider .slick-list {
	height: 100%;
}
.modal__slider .slide {
	position: relative;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0;
	justify-content: space-between;
}
.modal__slider .slick-dots {
	margin: 0; 
	padding: 0;
	display: flex;
	position: absolute;
	transform: translateX(-50%);
	left: 50%;
	bottom: 22px;
	list-style: none;
	width: auto;
}
.modal__slider .slick-dots li {
	width: 15px;
	height: 15px;
	background-color: #2546FF;
	border-radius: 50%;
	opacity: 0.5;
  margin: 0 10px;
	cursor: pointer;
}
.modal__slider .slick-dots li.slick-active {
	opacity: 1;
}
.bonus_modal_bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-x: hidden;
	overflow-y: auto;
  z-index: 10000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.8s ease;
}
.bonus_modal_bg.show__promo {
	opacity: 1;
	pointer-events: auto;
	transition: opacity 0.8s ease;
}
.bonus_modal-container{
	display: flex;
	align-items: center;
	min-height: 100%;
	justify-content: center;
}
.promo-slide-one {
  max-width: 85%;
  position: absolute;
  bottom: 0;
	transform: translateX(-50%);
	left: 50%;
}
.promo-slide-two {
	max-width: 460px;
	position: absolute;
  bottom: 17%;
}
.promo-slide-third {
	max-width: 330px;
	position: absolute;
	bottom: 16%;
}
.promo-slide-fourth {
	max-width: 450px;
}


.bonus-modal__info__title {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 245px;
  margin-top: 40px;
  margin-bottom: 50px;
  z-index: 1;
}

.bonus-modal__info__subtitle {
	color: #006591;
	text-align: center;
	font-family: Inter;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
  margin-bottom: 15px;
  z-index: 1;
}
.bonus-modal__text-box {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bonus-modal__text {
	position: relative;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}
.bonus-modal__text-one{
	max-width: 390px;
}
.bonus-modal__text-two{
	max-width: 460px;
}
.bonus-modal__text-three{
	max-width: 460px;
}

.bonus-modal__text-one::after {
	content: "";
	position: absolute;
	bottom: -10px;
	right: 15%;
	width: 18%;
	height: 12px;
	background: url(../images/promo-slide-one-line.png);
	background-repeat: no-repeat;
	background-size: contain;
}
.bonus-modal__text span {
	color: #006591;
  font-weight: 700;
}
.bonus-modal__info__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  margin-bottom: 60px;
}
.bonus-modal__info__wrapper p {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  margin-bottom: 15px;
}
.bonus-modal__info__wrapper a {
  width: 194px;
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  background: #fff;
	border: 2px solid #fff;
  box-shadow: 0px 4px 15.4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 13px;
	transition: background 0.4s ease, color 0.4s ease;
}
.bonus-modal__info__wrapper a:hover {
background: #1ABDFF;
color: #fff;
}

.support_buttons {
  z-index: 1000;
}

@media (max-width: 670px) {
	.bonus-modal__info__title {
		margin-bottom: 25px;
	}
  .bonus-modal {
    max-width: 95%;
    height: 110vw;
  }
  .bonus-modal__info__subtitle {
    font-size: 5vw;
  }
  .bonus-modal__text {
		max-width: 90%;
    font-size: 3.5vw;
  }
  .bonus-modal__info__wrapper p {
    font-size: 4.5vw;
  }
	.promo-slide-two{
		width: 70%;
	}
	.promo-slide-third {
		width: 52%;
		bottom: 20%;

	}
	.promo-slide-fourth {
		width: 67%;
	}

}

@media (max-width: 576px) {
  .bonus-modal {
    max-width: 95%;
  }

  .bonus-modal__info__wrapper p {
    margin-bottom: 5px;
  }
  .bonus-modal__info__subtitle {
    margin-bottom: 10px;
  }
	.promo-slide-two {
    bottom: 20%;
}
.promo-slide-third {
  width: 52%;
  bottom: 23%;
}
}

@media (max-width: 480px) {
	.bonus-modal {
    height: 120vw;
}
  .promo-slide-one {
    max-width: 100%;
  }
	.bonus-modal__text-box {
		padding: 0 15px;
	}
	.bonus-modal__info__title {
    max-width: 174px;
    margin-top: 30px;
	}
	.bonus-modal__text-two{
		max-width: 90%;
	}
	.promo-slide-two {
		width: 74%;
		bottom: 22%;

	}
	.bonus-modal__text {
    font-size: 4vw;
}


}

@media (max-width: 400px) {
  .bonus-modal__info__title {
    margin-bottom: 15px;
  }
  .bonus-modal__info__subtitle {
    margin-bottom: 5px;
  }
  .bonus-modal__info__wrapper a {
    padding: 8px;
    border-radius: 12px;
  }
  .bonus-modal__text {
    font-size: 4vw;
  }
  .bonus-modal__info__subtitle {
    font-size: 5vw;
  }
 
  .bonus-modal__info__wrapper p {
    margin-bottom: 2px;
  }

	.promo-slide-one {
		max-width: 100%;
	}
	.bonus-modal__info__subtitle {
		line-height: 110%;
	}
	.bonus-modal__info__subtitle{
		margin-bottom: 10px;
	}
	.bonus-modal__text {
		font-size: 4.2vw;
		line-height: 140%;
	}
	.promo-slide-two {
		bottom: 25%;
	}
	.promo-slide-third {
		width: 52%;
		bottom: 26%;
	}
}
@media (max-width: 350px) {
	.bonus-modal__info__title {
    margin-top: 50px;
}

	.bonus-modal {
    height: 132vw;
}
.promo-slide-one {
	max-width: 117%;
}


}
@media (max-width: 320px) {
	.bonus-modal {
    height: 133vw;
}
.promo-slide-third {
  width: 52%;
  bottom: 29%;
}
}
@media (max-width: 300px) {
  .bonus-modal__info__wrapper p {
    display: none;
  }
	.bonus-modal {
    height: 150vw;
}
.bonus-modal__text {
	font-size: 4.7vw;
}
.bonus-modal__info__subtitle {
	font-size: 6vw;
}
}



.calculator-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr ;
  gap: 42px;
  width: 85%;
}



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

.calculator_wrapper{
  border-radius: 16px;
  background: linear-gradient(101deg, #0C0250 -24.98%, #2202E8 107.4%);
  color: #FFF;
  padding: 93px 30px;
  margin-top: 35px;
  margin-bottom: 24px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.calculator_grid_title, .calculator_label{
  text-align: left;
  margin-left: 19px;

  color: #D7E6FE;
  font-family: Arial;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
}

#number_accounts_value, #number_projects_value{
  text-align: left;
  border-radius: 14px 14px 0px 0px;
  border-top: 2px solid #D7E6FE;
  border-right: 2px solid #D7E6FE;
  border-left: 2px solid #D7E6FE;

  padding: 10px 19px;

  color: #D7E6FE;
  font-family: Arial;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 48px */
}

#payback_result{
  text-align: left;
  color: #2546FF;
  font-family: Arial;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 117.49%; /* 75.194px */

  border-radius: 14px;
  background: #D7E6FE;

  padding: 10px 19px;

}

#account_expenses_result{
  text-align: left;
  color: #E8E8E8;
  font-family: Arial;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 117.49%; /* 75.194px */

  padding: 10px 19px;

}

#number_projects_input, #number_accounts_input{
  border-radius: 2px;
  height: 12px;
  -webkit-appearance: none;
  background: #C5CDFF;
  z-index: 12;

  position: relative;
  top: -6px;
}

#number_projects_input::-webkit-slider-thumb, #number_accounts_input::-webkit-slider-thumb
{

  -webkit-appearance: none;
  background: #D7E6FE;
  width: 37px;
  height: 37px;
  border-radius: 100%;

}

#number_projects_input::-moz-range-thumb, #number_accounts_input::-moz-range-thumb{
  -webkit-appearance: none;
  background: #D7E6FE;
  width: 37px;
  height: 37px;
  border-radius: 100%;
}
#number_projects_input::-ms-thumb, #number_accounts_input::-ms-thumb{
  -webkit-appearance: none;
  background: #D7E6FE;
  width: 37px;
  height: 37px;
  border-radius: 100%;
}

.medium_part{
  display: none;
}

.small_part{
  display: none;
}

.calculator_left{
  position: absolute;
  z-index: 10;
  transform: translate(-570px, 75px);
}

.calculator_right{
  position: absolute;
  z-index: 10;
  transform: translate(545px, -114px);
}

@media (max-width: 1350px){
  .big_part{
    display: none;
  }
  .medium_part{
    display: block;
  }
  .calculator_right{
    transform: translate(520px, 0px);
    /* transform: none;
    right: 0; */
  }
  .calculator_left{
    transform: translate(-516px, -16px);
    /* transform: none;
    left: 0; */
  }
}

@media (max-width: 1200px){
  .calculator_right{
    /* transform: translate(520px, 0px); */
    transform: none;
    right: 0;
  }
  .calculator_left{
    /* transform: translate(-516px, -16px); */
    transform: none;
    left: 0;
  }
}

@media (max-width: 960px) {
  .calculator-grid{
    width: 100%;
  }
  #payback_result, #account_expenses_result{
    font-size: 40px;
  }
  
}
@media (max-width: 767px) {
  .calculator-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .calculator_wrapper{
    padding: 40px 30px;
  }
  #number_projects_input::-webkit-slider-thumb, #number_accounts_input::-webkit-slider-thumb{
    width: 30px;
    height: 30px;
  }
  #number_projects_input::-moz-range-thumb, #number_accounts_input::-moz-range-thumb{
    width: 30px;
    height: 30px;
  }
  #number_projects_input::-ms-thumb, #number_accounts_input::-ms-thumb{
    width: 30px;
    height: 30px;
  }
  .big_part{
    display: none;
  }
  .medium_part{
    display: none;
  }

}
@media (max-width: 350px) {
  #payback_result, #account_expenses_result, #number_accounts_value, #number_projects_value{
    font-size: 32px;
  }
  .calculator_label, .calculator_grid_title{
    font-size: 18px;
    margin-left: 10px;
  }
  #number_projects_input::-webkit-slider-thumb, #number_accounts_input::-webkit-slider-thumb{
    width: 20px;
    height: 20px;
  }
  #number_projects_input::-moz-range-thumb, #number_accounts_input::-moz-range-thumb{
    width: 20px;
    height: 20px;
  }
  #number_projects_input::-ms-thumb, #number_accounts_input::-ms-thumb{
    width: 20px;
    height: 20px;
  }
  #number_projects_input, #number_accounts_input{
    height: 8px;
  }
}

#timerd03d614e7ca954574c2ca34922133613 span{
  color: #CA5E56 !important;
}.appLink{
  cursor: default;
  opacity: 0.5;
}

.calculator_button_wrap{
  margin-bottom: 100px;
}

.center_btn {
  font-size: 20px !important;
  width: 50%;
}

@media (max-width: 576px) {

  .center_btn{
    width: 75%;
  }
}

.footer_success{
  /* background: linear-gradient(90deg, #240FAF 0%, #1A0B8D 100%); */
  /* border-radius: 0 0 15px 15px;
  padding: 15px; */
  position: absolute;
  max-width: 278px;
  display: none;
}

.btn-chinese{
  background: #CA5E56 !important;
  border: 1px solid #CA5E56 !important;
}

.modal__slider .slick-track {
	left: 0;
}
.review__slider .slick-track{
	left: 0;
}

.not_found-content {
	text-align: center;
	margin-bottom: 50px;
}
.not_found-content img {
	margin: 0 auto;
	width: 628px;
	max-width: 70%;
}
.not_found-content a {
	color: #2546FF;
	text-align: center;
	font-family: Inter;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
}
.not_found-title {
	color: #2546FF;
	text-align: center;
	font-family: Inter;
	font-size: 64px;
	font-style: normal;
	font-weight: 800;
	line-height: 100%;
	margin-bottom: 32px;
}
@media (max-width: 650px) {
	.not_found-title {
		font-size: 7vw;
		margin-bottom: 2vw;
	}
	.not_found-content a {
		font-size: 5vw;
	}
	.not_found-content {
		margin-bottom: 3vw;
	}
}