@font-face {
	font-family: Roboto;
	src: url(fonts/Roboto-Light.ttf);
	font-weight: 300;
}
@font-face {
	font-family: Roboto;
	src: url(fonts/Roboto-Regular.ttf);
	font-weight: 400;
}
@font-face {
	font-family: Roboto;
	src: url(fonts/Roboto-Medium.ttf);
	font-weight: 500;
}
@font-face {
	font-family: Roboto;
	src: url(fonts/Roboto-Bold.ttf);
	font-weight: 700;
}

:root {
    --text: #272833;
    --blue: #177EF8;
    --border: #D1EEFF;
 
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
 
}
a {
    text-decoration: none;
}
 
img {
    vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
}
html,
body {
    height: 100%;
    background-color: #FEFEFF;
    font-family: Roboto, sans-serif;
 		color: var(--black);
 		min-width: 320px;
}

body._lock,
body.lock{
	overflow: hidden;
}

.wrapper {
	overflow: hidden;
	min-width: 100%;
}


.top-screen{
	background: url(svg/bg.png);
	padding-bottom: 40px;
}

.header{
		width: calc(100% - 20px);
	max-width: 1280px;
	margin: auto;
	padding: 40px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.language-switcher{
	display: flex;
	align-items: center;
	border: 3px solid var(--border);
	box-sizing: border-box;
	border-radius: 10px;
	position: relative;
}

.hide_lang{
	position: absolute;
	left: -3px;
	bottom: -28px;
	background: #FFF;
	text-align: center;
	width: calc(100% + 6px);
	border: 3px solid var(--border);
	padding: 5px 0;
	color: var(--blue);
	border-radius: 0 0 10px 10px;
 	display: none;
}

.hide_lang._active{
	visibility: visible;
	display: block;
}

.stroke{
	padding: 10px;
	cursor: pointer;
}

.lang{
	border-left: 3px solid var(--border);
	padding: 10px;
}

.main{
		width: calc(100% - 20px);
	max-width: 1280px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	font-size: 18px;
	color: var(--text);
}

.main_box{
	background: linear-gradient(115.1deg, rgba(204, 237, 255, 0.35) 11.69%, rgba(234, 249, 255, 0.35) 102.87%); 
	backdrop-filter: blur(20px);
	border-radius: 30px;
 	display: flex;
 	flex-direction: column;
 	align-items: center;
 	padding: 80px;
 	width: calc(50% - 15px);
 	text-align: center;
}

.main_title{
	font-size: 36px;
}

.main_text{
	padding: 20px 0;
}

.main_link{
	text-decoration: underline;
	color: var(--blue);
	margin-bottom: 20px;
}

.btn_yellow{
	background: linear-gradient(180deg, #FF9E0D -16.07%, #FF810D 100%);
	box-shadow: 0px 0px 13px rgba(255, 141, 13, 0.41);
	border-radius: 10px;
	color: #FFF;
	min-height: 45px;
	min-width: 140px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
}

.btn_yellow.more_q{
	filter: drop-shadow(0px 0px 13px rgba(255, 141, 13, 0.41));
	border-radius: 10px;
	color: #272833;
	background: none;
	border: 3px solid #FF9E0D;
	box-sizing: border-box;
	padding: 12px;
}

.advs{
	display: flex;
	align-items: center;
	justify-content: space-between;
		width: calc(100% - 20px);
	max-width: 1280px;
	margin: 40px auto;
	font-weight: 500;
}

.adv{
	display: flex;
	align-items: center;
	font-size: 18px;
}

.adv img{
	width: 65px;
	margin-right: 10px;
}

.advplus{
	border: 3px solid var(--border);
	padding: 15px 25px;
	border-radius: 20px;
}

.advplus span b{
	display: block;
	font-size: 22px;
}

.advplus small{
	font-weight: 300;
	line-height: 15px;
	display: block;
}

.section-title{
	text-align: center;
	color: var(--text);
	font-weight: 500;
	font-size: 40px;
	margin: 70px 0;
}

.steps{
		width: calc(100% - 20px);
	max-width: 1000px;
	margin: auto;
}

.step{
	display: flex;
	align-items: center;
	width: 49%;
	margin-bottom: 30px;
}

.step img{
	margin-right: 20px;
	height: 100px;
}

.step_cnt{
	display: flex;
	flex-direction: column;
}

.step_cnt b{
	font-size: 24px;
}

.steps .step_row:nth-child(odd){
	display: flex;
	width: 100%;
	justify-content: flex-end;
}
 
.prices{
		width: calc(100% - 20px);
	max-width: 1280px;
	margin: auto;
}

.prices-wrp{
	display: flex;
	justify-content: space-between;
}

.prices_left{
	display: flex;
	flex-wrap: wrap;
	background: linear-gradient(115.1deg, rgba(204, 237, 255, 0.5) 11.69%, rgba(234, 249, 255, 0.5) 102.87%);
	backdrop-filter: blur(20px);
	border-radius: 31px;
	justify-content: space-evenly;
	width: 65%;
}

.prices_title{
	width: 100%;
	color: #272833;
	text-align: center;
	font-size: 24px;
	padding-top: 34px;
}

.prices_left ul{
	color: var(--blue);
 list-style-position: inside;
 width: 40%;
}

.prices_left ul li{
	margin-top: 5px;
}

.prices_left ul b{
	font-size: 20px;
	text-align: center;
	display: block;
}

.prices_left ul span{
	color: var(--text);
}

.price_btn{
	width: 100%;
}

.price_btn .btn_yellow{
	max-width: 170px;
	margin: auto;
}

.prices_right{
	border: 3px solid #D1EEFF;
	box-sizing: border-box;
	border-radius: 31px;
	width: 33%;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 20px;
}

.price_lang{
	width: 50%;
	text-align: center;
	margin-top: 15px;
}

.price_lang img{
	background: #D1E4FF;
	padding: 15px;
	border-radius: 8px;
}

.lang_val{
	font-size: 14px;
	color: var(--text);
	margin-top: 7px;
}

.price_hr{
	background: var(--blue);
	height: 2px;
	width: 45px;
	display: block;
	margin: 7px auto;
}

.price_price{
	font-size: 16px;
	font-weight: 700;
	color: var(--blue);
}

.numbers{
		width: calc(100% - 20px);
	max-width: 1280px;
	margin: 75px auto;
	display: flex;
	justify-content: space-between;
 
}

.number{

}

.num_val{
	display: flex;
	align-items: center;
	color: var(--blue);
	width: 100%;
	justify-content: center;
}

.num_val span{
	font-weight: 700;
	font-size: 40px;
	margin-right: 8px;
}

.num_text{
	text-align: center;
	max-width: 228px;
	font-size: 14px;
	color: var(--text);
}

.create_tz{
	padding: 25px;
}

.create_tz img{
	max-width: 100%;
}

.tz_btns a:first-child{
	color: var(--blue);
}

.tz_btns{
	display: flex;
	width: 100%;
	justify-content: space-evenly;
	align-items: center;
}

.niches{
		width: calc(100% - 20px);
	max-width: 1280px;
	margin: auto;
}

.niches_wrp{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.niche{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	justify-content: space-between;
	border: 3px solid #D1EEFF;
	box-sizing: border-box;
	border-radius: 15px;
	width: calc(20% - 3%);
	padding: 20px 0;
	font-size: 18px;
}

.niche img{
	width: 100px;
	padding-bottom: 10px;
}

.qa_wrp{
		width: calc(100% - 20px);
	max-width: 980px;
	margin: auto;
}

.accordion {
  background: #FFF;
  color: #222;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.4s;
}

.active, .accordion:hover {
 
}

.accordion:after {
  content: '\002B';
  color: var(--blue);
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-bottom: 3px solid var(--border);
}

.panel p{
	padding-bottom: 20px;
	max-width: 70%;
}

.qa_btns{
	display: flex;
	align-items: center;
	justify-content: center;
}

.qa_btns a{
	min-width: 200px;
	margin: 20px;
}

.contacts_wrp{
		width: calc(100% - 20px);
	max-width: 1280px;
	display: flex;
	justify-content: space-between;
	margin: auto;
	align-items: flex-start;
}

.contact_ttl{
	font-size: 26px;
}

.contacts_wrp .form{
	width: 50%;
}

.form form{
	display: flex;
	flex-direction: column;
		max-width: 400px;
}

.form form input{
	font-size: 16px;
	font-family: Roboto;
	border-bottom: 3px solid #D1EEFF;
	padding: 12px 5px;
	outline: none;
}

.form form textarea{
	font-size: 16px;
	font-family: Roboto;
	border-bottom: 3px solid #D1EEFF;
	padding: 12px 5px;
	outline: none;
}

.form form .btn_yellow{
	max-width: 150px;
	font-size: 16px;
	font-family: Roboto;
	margin: auto;
	margin-top: 15px;
}

.contact_btns{
	width: 50%;
	display: flex;
		flex-wrap: wrap;
}

.contact_btns a{
	background: linear-gradient(115.1deg, rgba(204, 237, 255, 0.4) 11.69%, rgba(234, 249, 255, 0.4) 102.87%);
	box-shadow: 2px 2px 10px rgba(110, 116, 110, 0.1);
	border-radius: 16px;
	display: flex;
	align-items: center;
	padding: 15px;
	width: calc(50% - 20px);
	margin: 10px;
	font-weight: 500;
	color: #272833;
}

.contact_btns a img{
	width: 40px;
	margin-right: 10px;
}

footer{
	background: var(--border);
	padding: 40px 0;
	margin-top: 75px;
}

.footer_wrp{
		width: calc(100% - 20px);
	max-width: 1280px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: auto;
}

.footer_logo{
	display: flex;
	align-items: center;
}

.footer_logo img{
	margin-right: 50px;
}

.strokeup{
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.5);
	box-shadow: 2px 2px 10px rgba(23, 126, 248, 0.5);
	border-radius: 10em;
	display: flex;
	justify-content: center;
	align-items: center;
}

.popup {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	overflow-y: auto;
	overflow-x: hidden;
	transition: all 0.8s ease 0s;

}
.popup.open {
	opacity: 1;
	visibility: visible;
	z-index: 100;
}
.popup.open .popup__content {
	transform: perspective(600px) translate(0px, 0%) rotateX(0deg);
	opacity: 1;
}

.popup__area {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.popup__body {
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all 0.8s ease 0s;
}
.popup__content {
	background-color: #fff;
	box-shadow: 0px 8px 16px rgba(23, 42, 63, 0.08);
	border-radius: 4px;
	color: var(--aclr);
	width: 100%;
	max-width: 630px;
	padding: 60px;
	position: relative;
	transition: all 0.8s ease 0s;
	opacity: 0;
	transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
}
 
.popup__image img {
	max-width: 100%;
	vertical-align: top;
}

.popup__close {
	position: absolute;
	right: -40px;
	top: 0;
	font-size: 20px;
	width: 34px;
	height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	background: #FF8F0D;
	color: #FFF;
	font-weight: 700;
	font-size: 34px;
	transform: rotate(-45deg);
	border-radius: 10em;
}

.popup__close:hover{
	background: var(--blue);
}

.popup__title {
	font-size: 24px;
	display: block;
	font-family: Roboto;
	margin-bottom: 32px;
}

._pop-text {
	font-family: Roboto;
	height: 100px;
	border-bottom: 1px solid rgba(23,42,63,.2);
}

#popup-fallback{
	display: flex;
	width: 1px;
	height: 1px;
	position: fixed;
	top: 0;
	left: 0;
}

._pop-form{
	display: flex;
	flex-direction: column;
}

._pop-input{
	font-size: 16px;
	padding-bottom: 7px;
	border-bottom: 1px solid rgba(23,42,63,.2);
	margin-bottom: 30px;
}

._pop-btn{
	background: linear-gradient(180deg, #FF9E0D -16.07%, #FF810D 100%);
	box-shadow: 0px 0px 13px rgba(255, 141, 13, 0.41);
	border-radius: 10px;
	color: #FFF;
	min-height: 45px;
	min-width: 140px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	cursor: pointer;
	margin-top: 10px;
}

._pop-btn:hover{
	background: var(--blue);
}

@media screen and (max-width: 980px) {
	.popup__close{
		right: 5px;
		top: 5px;
	}
	.section-title{
		font-size: 28px;
		margin: 20px 0;
	}
	.main, 
	.advs,
	.prices-wrp{
		flex-direction: column;
	}
	.main_box,
	.prices_left,
	.prices_right{
		width: 100%;
		padding: 20px;
	}
	.main_box:nth-child(1){
		border-radius: 10px 10px 0 0;
	}
	.main_box:nth-child(2){
		border-radius: 0 0 10px 10px;
	}
	.adv{
		width: 100%;
		background: linear-gradient(115.1deg, rgba(204, 237, 255, 0.35) 11.69%, rgba(234, 249, 255, 0.35) 102.87%);
		border-radius: 10px;
		padding: 10px;
		margin-bottom: 10px;
	}
	.steps .step_row:nth-child(odd){
	justify-content: flex-start;
	}
	.step{
		width: 100%;
		font-size: 14px;
		border-bottom: 1px solid var(--border);
		margin-bottom: 0;
		padding: 15px 0;
	}
	.step img{
		height: 60px;
	}
	.step_cnt b{
		font-size: 18px;
	}
	.prices_left, .numbers, .niches_wrp, .contacts_wrp, .contact_btns{
		margin-bottom: 10px;
		flex-direction: column;
	}
	.prices_left ul, .niche, .contacts_wrp .form, .contact_btns{
		width: 100%;
		margin-bottom: 15px;
	}
	.prices_title{
		padding: 0;
	}
	.numbers{
		margin-top: 10px;
	}
	.number{
		display: flex;
		background: var(--border);
		padding: 10px;
		border-radius: 10px;
		margin-bottom: 10px;
	}
	.num_val{
		justify-content: flex-start;
	}
	.num_text{
		text-align: right;
	}
	.tz_ttl{
		text-align: center;
		display: block;
		width: 100%;
		margin-bottom: 10px;
	}
	.create_tz{
		margin-bottom: 15px;
	}
	.footer_logo span{
		display: none;
	}
	.contact_btns a{
		width: 100%;
		border: 3px solid var(--border);
		margin: 0 0 10px 0;
	}
	footer{
		margin-top: 0;
	}
}