
@font-face {
    font-family: 'Neue Machina';
    src: url('fonts/NeueMachina-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
	 font-display: swap;

}

@font-face {
    font-family: 'Neue Machina';
    src: url('fonts/NeueMachina-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
	 font-display: swap;
}


@font-face {
    font-family: 'Neue Machina';
    src: url('fonts/NeueMachina-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
	 font-display: swap;
}

@font-face {
    font-family: 'Neue Machina';
    src: url('fonts/NeueMachina-Ultrabold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;

}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
	 font-display: swap;
}



:root {
	--section-padding: 7.5rem;
	--c-f-padding:2.5rem;
}


html{
	box-sizing: border-box;
	 font-size: 1.111vw;

	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


body, h1, h2, h3, h4, h5, h6, p, a{
	 font-family: 'Neue Machina';
	 margin: 0;
}
body{
	margin: 0;
	position: relative;
	font-weight: 400;
	color: #000000;
	overscroll-behavior: none;
	/* cursor: none;*/
}
a{
  text-decoration: none;
}
/*a:hover{
  cursor: none;
}*/


/* Preloader  */
/*.preloader {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.prl-logo {
  font-family: "Abril Fatface", cursive;
  font-size: 1.3rem;
  z-index: 3;
  margin-right: 2rem;
}


.lightCyan-slider,
.persianGreen-slider,
.white-slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
}
.lightCyan-slider {
  background: #FFB115;
}

.persianGreen-slider {
  background: #FFD400;
}

.white-slider {
  background: #fff;
}

.hide {
	width: 9.813rem;
  opacity: 0;
  color: #03a6a6;
  font-weight: lighter;
}
*/

@keyframes scale {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}




/*////////////////////////////////*/


.container{
 max-width: 100rem;
 padding-left: var(--section-padding);
 padding-right: var(--section-padding);
 margin-left: auto;
 margin-right: auto;
}

.container-fluid{
 max-width: 100rem;
 padding-left: var(--c-f-padding);
 padding-right: var(--c-f-padding);
 margin-left: auto;
 margin-right: auto;
}

/* width */
::-webkit-scrollbar {
  width: 0.313rem;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.313rem grey; 
  border-radius: 0.313rem;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #FFD400; 
  border-radius: 0.625rem;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF; 
}



header{
	padding: 1.25rem 0;
	position: relative;
}


.header_wrap{
  align-items: center;
  justify-content: space-between;
}
.d-flex-center{
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.d-flex{
display: flex;
}
.flex-wrap{
  flex-wrap: wrap;
}

.logo{
  text-align: center;
}
.logo img{
  width: 9.813rem;
}
.nav{
	display: flex;
	align-items: center;
	column-gap: 3.13rem;
}
.nav ul{
padding: 0;
margin: 0;
}
.nav li{
  list-style: none;
}
.nav a:after {
	content: '';
	display: block;
	width: 0;
	height: 0.125rem;
	background: linear-gradient(90deg, #FFD400 0%, #FFB115 100%);
	transition: width .3s;
}
.nav a:hover::after {
    width: 100%;
}
.nav a{
	display: inline-block;
	font-size: 1em;
	text-transform: uppercase;
	color: #000;
	letter-spacing: 0.04rem;
	margin-left: 1.875rem;
}

/*////////////////////////////*/


.languages li{
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4.75rem;
	padding: 0.625rem 0rem;
	border-radius:0 0 1.25rem 1.25rem;
	background: #000;
	cursor: pointer;
	z-index: 1;
	opacity: 0;
	transform: translateY(-2rem);
	transition: all 0.4s ease-out;
}
.languages li.current{
	background: #EEEDF0;
	color: #000;
	position: relative;
	border-radius: 1.25rem;
	opacity: 1;
	transform: translateY(0);
	z-index: 2;
}

.languages:hover li{
	opacity: 1;
	transform: translateY(0rem);
}
.languages:hover li.current{
	border-radius:1.25rem 1.25rem 0 0;
}
.languages:hover img{
	transform: rotate(180deg);
}

.languages li.current a{
	color: #000;
}

.languages a{
	color: #fff;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 0.625rem;
}
.languages img{
	width: 0.625rem;
	transition: all 0.4s ease-out;
}

/*////////////////////////////////*/
.mob-btn{
	position: relative;
	background: none;
	border: none;
	display: none;
}
.mob-btn span{
  display: block;
  width:2rem;
  height: 0.225rem;
  background:  #000;
  margin-bottom:  0.625rem;
}
.mob-btn span:last-child{
 margin-bottom:  0;
}

/*.mob-nav{
	display: none;
}*/
.mob-nav ul{
	flex-direction: column;
}
.mob-nav li{
	overflow: hidden;
}

.overlay{
	z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #2E314C;
}

/*//////////////////////////////////////////////*/
.banner{
/*	position: relative;*/
	overflow: hidden;
  
	
}
.perspective{
	overflow: hidden;
	perspective: 62.5rem;
}

.mouse_move_wrap{
    transform-style: preserve-3d;
	transform: rotateX(var(--move-y)) rotateY(var(--move-x));
	will-change: transform;
	transition: transform var(--transition);
}
.banner-row{
	position: relative;
	padding: 4.7rem 5rem 2.86rem;
	border-radius: 3.75rem;
	background: linear-gradient(90deg, #FFD400 0%, #FFB115 100%);

}
.title{
	font-size: 4.375rem;
	font-weight: 700;
	line-height: 90%;
	letter-spacing: -0.0875rem;
	margin-bottom: 1.25rem;

}

.banner_date{
	display: inline-block;
	border-radius: 6.25rem;
	border:0.125rem solid #000;
	padding: 0.9375rem 1.25rem;
	font-size: 2.8125rem;
	margin-bottom: 3.06rem;
	line-height: 90%;
	letter-spacing: -0.05625rem;

	/*transform: translateZ(80px);*/
}

.banner_text_wrap{
	display: flex;
	column-gap: 1.88rem;
	align-items: center;
	margin-bottom: 2.65rem;

	/*transform: translateZ(180px);*/
}
.banner_text_wrap img{
	width: 5rem;
}
.banner_text_wrap p{
	max-width: 24.375rem;
	font-size: 1.5rem;
	font-family: Gilroy;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
}

.banner_btn{
	position: relative;
	display: inline-flex;
	align-items: center;
	column-gap: 0.62rem;
	padding: 1.25rem 1.875rem;
	border-radius: 6.25rem;
	background: #000;

	font-size: 1.875rem;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: 0.0375rem;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-bottom: 1.3rem;
	overflow: hidden;
	border: 0.063rem solid transparent;
	transition:all 1s ease-in-out;
	/*transform: translateZ(190px);*/

	animation: 1s infinite alternate scale;
}

.btn__text {
  position: relative;
  z-index: 2
}

.btn__overlay {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: auto;
  transition: width .5s ease-in-out;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background-color: #051e45;
}

.btn__overlay:before {
  position: relative;
  display: block;
  padding-bottom: 100%;
  content: ''
}

.banner_btn .btn__overlay {
  background-color: #fff
}

.banner_btn:hover {
	color: #000;
	border: 0.063rem solid #000;
}

.banner_btn:hover .btn__overlay {
  width: 225%
}

.banner_btn img{
	width: 1.6rem;
	position: relative;
	z-index: 2
}
.banner_free{
	border-radius: 0.625rem;
	border: 0.125rem dashed #000;
	display: inline-block;
	transform: rotate(4deg);
	padding: 0.625rem 1.125rem;

	text-align: center;
	/* Text 30 Reg */
	font-size: 1.875rem;
	font-weight: 300;
	line-height: 90%;
	letter-spacing: -0.01875rem;
	margin-left: 9rem;
}

.banner-img{
	position: absolute;
	width: 43.75rem;
	z-index: 2;
	right: -5rem;
	bottom: -4rem;
	transform: translateZ(1.75rem) scale(0.95);
	
}
.chart{
	position: absolute;
	
	right: -3.7rem;
    top: -32.75rem;
    width: 45.0625rem;
	height: 29.25rem;
/*	transform: translateZ(180px) scale(.8);*/
}

/*.anim-chart {
  animation: fade 3s infinite;
}
@keyframes fade {
  0%   { opacity: 1; }
  100% { opacity: 0.4; }
}*/

.star{
	position: absolute;
   right: -7.62rem;
    top: -40.75rem;
	width: 39.875rem;
/*transform: translateZ(80px) scale(.88);*/
	
}

/*//////////////////////////////////////////////*/
.to_whom{
	padding: 5rem 0;
}
.title{
	max-width: 49.375rem;
	color: #000;
	font-size: 3.75rem;
	font-family: Neue Machina;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: -0.075rem;
	margin-bottom: 2.5rem;
}

.whom_wrap{
	display: flex;
	align-items: center;
	gap: 1.87rem;
	flex-wrap: wrap;
}
.whom_item{
display: flex;
width: 19.75rem;
height: 14.5625rem;
padding: 1.875rem 1.875rem 2.5rem 1.875rem;
flex-direction: column;
align-items: flex-start;
gap: 1.25rem;
flex-shrink: 0;
border-radius: 2.5rem;
background: #EEEDF0;
}

.whom_item img{
	width: 3.64rem;
}

.whom_item p{
font-size: 1.25rem;
font-family: Gilroy;
font-style: normal;
font-weight: 400;
line-height: 130%;
}

.whom_item_white{
	background: #fff;
	width: 22.75rem;
	padding: 1.875rem 0rem;
	align-items: center;
}
.yellow_plashka{
	border-radius: 6.25rem;
	background: linear-gradient(150deg, #FFD400 0%, #FFB115 100%);
	padding: 0.9375rem 1.25rem;
	font-weight: 300;
	line-height: 90%;
	letter-spacing: -0.0625rem;
}

.yellow_plashka:nth-child(1){
	font-size: 3.125rem;
	margin-bottom: 2.2rem;
	transform: rotate(-6deg);
}

.yellow_plashka:nth-child(2){
	font-size: 2.5625rem;
	font-weight: 400;
	transform: rotate(4deg);
}
.fz-3{
	font-size: 3rem !important;
}
.fz-2{
	font-size: 2.25rem !important;
}
.whom_btn_wrap{
	display: flex;
	justify-content: center;
	margin-top: 3.13rem;
}
/*//////////////////////////////////////////////*/
.speaker_wrap{
	display: flex;
	column-gap: 1.87rem;
}
.speaker_item{
	position: relative;
	display: flex;
	width: 31.5625rem;
	height: 53rem;
	padding: 3.125rem 2.5rem 0rem 2.5rem;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
	border-radius: 2.5rem;
	overflow: hidden;
}
.speaker_item:nth-child(1){
	background: linear-gradient(150deg, #FFD400 0%, #FFB115 100%);
}
.speaker_item:nth-child(2){
	background: #EEEDF0;
}

.speaker_name{
	border-radius: 6.25rem;
	border: 2px solid #000;
	padding: 0.9375rem 1.25rem;
	font-size: 3rem;
	font-weight: 400;
	line-height: 90%;
	letter-spacing: -0.0625rem;
	/*margin-bottom: 1.88rem;*/

}

.speaker_item p{
	font-size: 1.5rem;
	font-family: Gilroy;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
}
.speaker_foto{
	width: 31.563rem;
	position: relative;
	z-index: 1;
}

.podol{
	height: 33rem;
    width: 27rem;
    object-fit: cover;
}
.star2{
	position: absolute;
	bottom: 5rem;
	width: 31.5rem;
	z-index: 0;
}
/*//////////////////////////////////////////////*/
.benefit{
	padding: 5rem 0;
	overflow: hidden;
}
.benefit_row{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;

}
.benefit_item{
	display: flex;
	width: 56rem;
	align-items: center;
	border-radius: 1.875rem;
	background: #EEEDF0;
	gap: 1.875rem;
	padding: 1.25rem 2.5rem;
	margin-bottom: 1.87rem;
	border: 0.125rem solid transparent;
	transition: all 0.4s ease-out;
}
.benefit_item:hover{
	border: 0.125rem solid #FFD400;
	background: #fff;
}
.benefit_item img{
	width: 3.75rem;
}
.benefit_item p{
	font-size: 1.75rem;
	font-family: Gilroy;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
}

.benefit_circul{
	opacity: 0;
	transition: all 0.4s ease-out;
	transform: rotate(4deg);
	font-size: 3rem;
	font-style: normal;
	font-weight: 300;
	line-height: 90%;
	letter-spacing: -0.06rem;

	position: absolute;
	right: -5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16.5625rem;
	height: 16.5625rem;
	border-radius: 16.5625rem;
	background:  linear-gradient(150deg, #FFD400 0%, #FFB115 100%);
}

.benefit_item:hover .benefit_circul{
	opacity: 1;
}

.benefit_btn_wrap{
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}
/*//////////////////////////////////////////////*/


.container-feedback{
	padding-left: var(--section-padding);
}
.feedback_item{
	display: flex;
	width: 23.25rem !important;
	height: max-content;
	padding: 1.875rem;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.9375rem;
	border-radius: 2.5rem 2.5rem 2.5rem 0rem;
	background: var(--gray-94, #EEEDF0);
}
.feedback_item_top{
	display: flex;
	align-items: center;
	gap: 0.625rem;
	align-self: stretch;
}
.feedback_name{
font-size: 1.125rem;
font-family: Gilroy;
font-style: normal;
font-weight: 700;
line-height: 130%;
}
.feedback_time{
	color:  #808080;
	/* Text/18 Med */
	font-size: 1.125rem;
	font-family: Gilroy;
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
}

.feedback_text{
	font-size: 1.25rem;
font-family: Gilroy;
font-style: normal;
font-weight: 400;
line-height: 130%;
}

/*
/////////////////////////////////////////////////////////////*/


.form{
	position: relative;
	padding-top: 5rem;
	overflow: hidden;
}
.form-row{
	display: flex;
	padding: 5.6rem 5rem;
	column-gap: 3.75rem;
	justify-content: space-between;
}
.form_wrap{
	position: relative;
	display: flex;
	align-items: center;
	width: 27rem;
	height: 25rem;
	padding: 2.5rem 1.875rem 1.875rem 1.875rem;
	background: #fff;
	border-radius: 1.875rem;
	z-index: 1;

}

.form_wrap .sp-form{
	margin: 0;
	padding: 0 !important;
	width: 100% !important;
}
.form_wrap  .sp-form-fields-wrapper{
	width: 100% !important;
}
.sp-form, .sp-form-outer {
    max-width: 100%;
    width: 100%;
}

.form_wrap .sp-form .sp-field{
	padding: 0.5rem 0;
}

.form_wrap .sp-form .sp-field>label{
	font-size:1rem !important;
	margin-bottom: 0.313rem;
}
.form_wrap .sp-form p:last-of-type span{
	font-size: 0.75rem !important;
}


.form_wrap .sp-form .sp-lg .sp-field .sp-form-control{
	font-size:1.1rem;
	padding-left: 0.875rem;
	padding-right: 0.875rem;
	height: 2.625rem;
}

.form_wrap .sp-form .sp-lg .sp-field .sp-button {
	font-size:1.1rem;
	height: 2.625rem;
	padding-left:1.313rem;
	padding-right:1.313rem;
	border-radius: 1.563rem;
}

.form .banner_free{
	transform: rotate(-4deg);
	margin-left: 0;
	position: absolute;
	top: 3rem;
}
.form .title{
	margin-top: 1rem;
}

.form .banner_date{
	padding: 0.7375rem 1.875rem 0.95rem;
	font-size: 2.625rem;
}
.form .star{
	width: 50rem;
	height: 50rem;
	top: -3rem;
	right: -4rem;
}

.form .chart{
	top: auto;
	right: auto;
	left: 1.25rem;
	bottom: 0;
	width: 46.5625rem;
	height: 28.744rem;
}

.form-num{
	position: absolute;
	color: #FFF;
	font-size: 3.75rem;
	font-family: Neue Machina;
	font-style: normal;
	font-weight: 800;
	line-height: 100%;
	letter-spacing: -0.075rem;
	-webkit-text-stroke: 0.043rem #808080;
	z-index: 1;
}

.form-num-1{
	transform: rotate(-6deg);
	left: 4.85rem;
	bottom: 13.47rem;
}

.form-num-2{
	transform: rotate(4deg);
	left: 30rem;
	bottom: 3.38rem;
}

/*////////////////////////////////////////////////////////*/
footer{
	padding: 1.88rem 0;

}	
.footer-wrap{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.copy{
	font-size: 0.875rem;
	font-family: Gilroy;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	color: #808080;
}
.footer-wrap a{
	color: #808080;/* Text/14 Link */
	font-size: 0.875rem;
	font-family: Gilroy;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	text-decoration-line: underline;
	margin-left: 1.875rem;
}
.mob-dblock{
	display: none;
}

/*////////////////////////////////////////////////////////*/
@media (max-width: 1025px){
	html{
		font-size: 2.083vw;
	}
	:root {
		--section-padding: 1.25rem;
		--c-f-padding:0rem;
	}

	.nav{
		column-gap: 2.13rem;
	}
	.decs-nav a.link{
		margin-left: 1.275rem;
	}

	.banner-row {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 4.7rem 3rem 2.86rem;
	}

	.banner-row .title{
		text-align: center;
	}
	.mob-dblock{
		display: block;
	}
	.banner_free{
		margin-left: 0;
	}


	.mouse_move_wrap{
		transform-style: inherit;
		transform: none;
		will-change: auto;
		transition: none;
	}
	.banner-img{
		position: relative;
		bottom: -5rem;
		right: auto;
		left: 50%;
		transform: translateX(-45%);
	}

	.star{
		right: 50%;
		top: auto;
		bottom: 3rem;
		transform: translateX(60%);
	}

	.chart{
		right: auto;
		top: auto;
		left: 2rem;
		bottom: 9rem;
	}
	.whom_wrap{
		gap: 1.25rem;
	}
	.whom_item{
		width: 17.75rem;
	}
	.whom_item_white{
		width: 21.75rem;
	}

	.whom_item:nth-child(1){
		order: 1;
	}
	.whom_item:nth-child(2){
		order: 3;
	}
	.whom_item:nth-child(3){
		order: 2;
	}
	.whom_item:nth-child(4){
		order: 5;
	}
	.whom_item:nth-child(5){
		order: 4;
	}
	.whom_item:nth-child(6){
		order: 6;
	}

	.yellow_plashka:nth-child(1){
		font-size: 2.875rem;
	}
	.yellow_plashka:nth-child(2){
		font-size: 2.375rem;
	}
	.fz-2{
		font-size: 2.0625rem !important;
	}
	.speaker_wrap{
		display: block;
	}
	.speaker_item{
		width: auto;
	}

	.speaker_item:nth-child(1){
		margin-bottom: 1.87rem;
	}

	.benefit_circul{
		display: none;
	}
	.feedback_item{
		width: 22rem !important;
	}

	.form .banner_free{
		left: 50%;
		transform: translateX(-50%) rotate(-4deg);
	}

	.form-row{
		padding: 5.6rem 5rem 24.8rem;
	}
	.form .star{
		top: auto;
		right: 50%;
		transform: translateX(50%);
		bottom: 15rem !important;
	}

	
	.footer-wrap{
		flex-direction: column;
	}
	.copy{
		margin-bottom: 1.4rem;
	}

}

@media (max-width: 480px){

	html{
		font-size: 3.951vw;
	}
	.mob-btn{
		display: block;
	}

	.nav {
		column-gap: 1.13rem;
	}

	.mob_wrap_nav{
		position: absolute;
		left: 0;
		top: 6rem;
		z-index: -1;
		background: white;
		width: 100%;
	}
	.mob_wrap_nav ul{
		flex-wrap: wrap;
		padding: 0rem 1rem 1rem;
	}
	.mob_wrap_nav li{
		width: 50%;
		text-align: center;

	}
	.decs-nav a.link{
		margin-left: 0;
		padding: 1rem;
		display: block;
	}
	.banner-row{
		padding: 3.75rem 0.9375rem 7rem;
	}
	.banner-row .title{
		font-size: 2.1rem;
	}
	.title{
		font-size: 2rem;
	}
	.banner_date{
		font-size: 1.6875rem;
		font-weight: 500;
		margin-bottom: 2.06rem;
		line-height: 90%;
		text-align: center;
	}
	.banner-img{
		width: 100%;
		height: auto;
		transform: translateX(-50%);
	}
	.chart{
		left: auto;
		right: 1rem;
		width: 32.59375rem;
		height: 20.12075rem;
		bottom: 5rem;
	}
	.banner_text_wrap{
	  column-gap: 1.1rem;
	  margin-bottom: 2rem;
	}
	.banner_text_wrap img {
		width: 3.15rem;
	}
	.banner_text_wrap p{
		font-size: 1.25rem;
	}

	.banner_btn{
		padding: 1.25rem 1.5625rem;
		font-size: 1.3rem;
		margin-bottom: 2.3rem;

	}

	.star,
	.star2{
		width: 100%;
		height: auto;
		object-fit: contain;
	}

	.speaker_foto{
		width: 100%;
		height:22rem;
		object-fit: contain;
	}
	.star2{
		bottom: 2rem;
	}

	.to_whom{
		padding: 3.75rem 0 1.75rem;
	}
	.whom_item {
		width: fit-content;
		height: auto;
	}

	.speaker_item{
		padding: 2.5rem 1.25rem 0rem 1.25rem;
		height: 42rem;
		align-items: flex-start;

	}

	.speaker_name{
		font-size: 1.6875rem;
	}
	.speaker_item p{
		font-size: 1.25rem;
		line-height: 130%;
	}
	.star2 {
		left: 50%;
		transform: translateX(-50%);
	}

	.benefit{
		padding: 3.7rem 0 1.7rem;
	}
	.benefit_row{
		display: block;
	}
	.benefit_item{
		width: auto;
		padding: 1.25rem;
	}
	.benefit_item img {
		width: 3.15rem;
	}
	.benefit_item p {
		font-size: 1.25rem;
	}

	.form{
		padding-top: 3.7rem;
	}

	.form-col{
		width: 100%;
	}
	.form_wrap{
		width: auto;
		height: auto;
	}
	.form-row {
		padding: 5.6rem 0.9rem 13.8rem;
	}
	.form .title {
		font-size: 2rem;
		margin-top: 2rem;
	}
	.form .banner_date{
		font-size: 1.55rem;
		display: block;
		position: relative;
		z-index: 1;
		text-align: center;
		margin: 0 auto 3.5rem;
	}

	.form-num{
		font-size: 1.95rem;
	}
	.form-num-1 {
		left: 1.3rem;
		bottom: 7.47rem;
	}
	.form-num-2 {
		left:auto;
		right: 2.2rem;
		bottom: 2.47rem;
	}
	.form .star{
		bottom: 3rem !important;
	}
	.form .chart{
		width: 24.2125rem;
		height: 14.94688rem;
	}
	


	.footer-wrap div{
		display: flex;
		/*flex-direction: column;*/
		justify-content: center;
		align-items: center;
	}
	.copy{
	
		text-align: center;
	}
	.footer-wrap a{
		text-align: center;
		margin-left: 0;
		margin-bottom: 1rem;
	}

	
}

.time {
  position: fixed;
  top: 5rem;
  right: 0;
  background-color: #fff;
  padding: 1rem 2rem 1rem 5rem;
  align-items: center;
  cursor: pointer;
  display: none;
  z-index: 999;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px
}

.last__box-text {
  margin-bottom: 10px;
  /* font-family: Montserrat, sans-serif; */
  font-size: 22px;
  line-height: 1.1;
  color: #000;
  font-weight: 700;
}

.last__box-count {
  font-size: 14px;
  line-height: 1;
  color: #ef2b2b;
  font-weight: 600;
}

.block-download-time:before {
  content: "";
  background-image: url(images/icon_download_green.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 8%;
  width: 30px;
  height: 30px
}


.iti--separate-dial-code .iti__selected-flag {
	background: transparent !important;
}

