/* USER VARIABLES SECTION */

:root {
	--accent: orange;
	--text: #333;
	--regular-text: 16px;
	--lineheight: 1.65;
	/*--userfont: roboto-st, sans-serif;*/
	/*--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;*/
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
/*.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: .625rem; }
.row, .row > * { --bs-gutter-x: 1.25rem; }*/

/* FONTS LOAD SECTION */

/*@font-face { src: url("../fonts/roboto-regular-webfont.woff2") format("woff2"); font-family: "roboto-st"; font-weight: 400; font-style: normal; }
@font-face { src: url("../fonts/roboto-italic-webfont.woff2") format("woff2"); font-family: "roboto-st"; font-weight: 400; font-style: italic; }
@font-face { src: url("../fonts/roboto-bold-webfont.woff2") format("woff2"); font-family: "roboto-st"; font-weight: 700; font-style: normal; }
@font-face { src: url("../fonts/roboto-bolditalic-webfont.woff2") format("woff2"); font-family: "roboto-st"; font-weight: 700; font-style: italic; }
*/
	*{font-family: Arial, sans-serif;}

	/* GENERAL CSS SETTINGS */

	::placeholder { color: #666; }
	::selection { background-color: var(--accent); color: #fff; }
	input, textarea { outline: none; }
	input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
	input:required:valid, textarea:required:valid { border-color: green; }

	body {
		font-family: var(--userfont);
		font-size: var(--regular-text);
		line-height: var(--lineheight);
		color: var(--text);
		min-width: 320px;
		position: relative;
		overflow-x: hidden;
		margin: 0;
		padding: 0;
	}

	body._lock {
		overflow: hidden;
	}

	/* USER STYLES */

	p {
		padding: 0;
		margin: 0;
	}

	a {
		text-decoration: none;
	}

	ul,
	ol,
	li {
		list-style: none;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-weight: inherit;
		font-size: inherit;
		padding: 0;
		margin: 0;
	}

/**
 * Hide the overflow in IE.
 */
 svg:not(:root) {
 	overflow: hidden;
 }

 .custom_input {
 	border: none;
 	outline: none;
 	color: #565656;
 	min-width: inherit;
 	font-size: 14px;
 	line-height: 1.5;
 	padding: 10px;
 	border-bottom: 1px solid white;
 	background: transparent;
 }

 .custom_input:focus {
 	outline: none;
 }

 .custom_input::-webkit-input-placeholder {
 	color: #BFBFBF;
 }

 .custom_input::-moz-placeholder {
 	color: #BFBFBF;
 }

 .custom_input::-ms-input-placeholder {
 	color: #BFBFBF;
 }

 .custom_input::placeholder {
 	color: #BFBFBF;
 }

 .inputfile {
 	width: 0.1px;
 	height: 0.1px;
 	opacity: 0;
 	overflow: hidden;
 	position: absolute;
 	z-index: -1;
 }

 .inputfile+label {
 	font-size: 1.25em;
 	font-weight: 700;
 	color: #565656;
 	display: inline-block;
 	display: -ms-flex;
 	display: -webkit-box;
 	display: -ms-flexbox;
 	display: flex;
 	-webkit-box-align: center;
 	-ms-flex-align: center;
 	align-items: center;
 	font-size: 14px;
 	line-height: 1;
 	font-weight: 400;
 }

 .inputfile+label {
 	cursor: pointer;
 	/* "hand" cursor */
 }

 .default_btn {
 	text-transform: uppercase;
 	font-size: 18px;
 	font-weight: 600;
 	line-height: 20px;
 	padding: 17px 20px 10px 20px;
 	display: inline-block;
 	color: #fff;
 	border: 2px solid transparent;
 	border-radius: 4px;
 	text-decoration: none;
 	text-align: center;
 	background: #ffae00;
 	max-width: 285px;
 	box-shadow: 0 5px 0 #c18b1c;
 }

 .default_btn:hover {
 	background: #fff;
 	color: #222b49;
 	font-weight: bold;
 	border: 2px solid #222b49;
 	box-shadow: 0 5px 0 #222b49;
 	-webkit-transition: all 0.3s;
 	transition: all 0.3s;
 }

 .blueHover_btn:hover {
 	-webkit-transition: all 0.5s;
 	transition: all 0.5s;
 }

 .hardBlueHover_btn:hover {
 	background: #083356;
 }

 .whiteHover_btn:hover {
 	background: white;
 	color: #1e1d1d;
 	-webkit-transition: all 0.5s;
 	transition: all 0.5s;
 }

 @media (max-width: 767px) {
 	.default_btn {
 		font-size: 15px;
 		/*line-height: 15px;*/
 		/*padding: 10px 44px;*/
 	}
 }

 .h2-custom {
 	font-size: 20px;
 	font-weight: 600;
 	font-style: normal;
 	margin-top: 0;
 	margin-bottom: 0;
 	text-transform: uppercase;
 	font-weight: bold;
 	text-align: center;
 	margin-bottom: 30px;
 }

 .h2-custom span {
 	font-size: 32px;
 	color: #154E55;
 	text-transform: uppercase;
 	font-weight: bold;
 }

 .h3-custom {
 	font-size: 16px;
 	line-height: 26px;
 	font-weight: 700;
 	margin-top: 0;
 	padding-bottom: 20px;
 	position: relative;
 	margin-bottom: 0;
 }

 .h3-custom::after {
 	content: "";
 	display: block;
 	width: 40px;
 	height: 4px;
 	background: #59a896;
 	position: absolute;
 	bottom: 0;
 }

 .h3-custom span {
 	font-size: 14px;
 	text-transform: none;
 }

 @media (max-width: 767px) {
 	.h2-custom {
 		font-size: 24px;
 		line-height: 1.3;
 		text-align: center;
 	}

 	.h3-custom {
 		font-size: 12px;
 		line-height: 16px;
 		padding-bottom: 18px;
 		margin-bottom: 20px;
 		text-align: center;
 	}

 	.h3-custom::after {
 		width: 20px;
 		height: 2px;
 		left: 50%;
 		-webkit-transform: translate(-50%, -50%);
 		transform: translate(-50%, -50%);
 	}
 }

 @media (max-width: 520px) {
 	.h2-custom {
 		font-size: 18px;
 	}

 	.h2-custom span {
 		font-size: 26px;
 	}
 }

 .visually-hidden {
 	display: none;
 }

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

 ul {
 	margin: 0;
 	padding: 0;
 }

 li {
 	margin: 0;
 	padding: 0;
 }

 .container {
 	padding-left: 2.5%;
 	padding-right: 2.5%;
 }

/* .form_container {
	padding-left: 2.5%;
	padding-right: 2.5%;
	} */

	@media (min-width: 768px) {
		.container {
			padding: 0;
			padding-left: 2.5%;
			padding-right: 2.5%;
			max-width: 960px;
			margin-left: auto;
			margin-right: auto;
		}

	/* .form_container {
		padding: 0;
		padding-left: 2.5%;
		padding-right: 2.5%;
		max-width: 960px;
		margin-left: auto;
		margin-right: auto;
		} */
	}

	@media (min-width: 1200px) {
		.container {
			padding: 0;
			padding-left: 2.5%;
			padding-right: 2.5%;
			max-width: 1280px;
			margin-left: auto;
			margin-right: auto;
		}

	/* .form_container {
		padding: 0;
		padding-left: 2.5%;
		padding-right: 2.5%;
		max-width: 1380px;
		margin-left: auto;
		margin-right: auto;
		} */
	}


	/*Back to top btn START*/
	/*#button {
		display: inline-block;
		background-color: #154E55;
		width: 50px;
		height: 50px;
		text-align: center;
		border: 1px solid #154E55;
		border-radius: 2px;
		line-height: 50px;
		text-decoration: none;
		position: fixed;
		bottom: 30px;
		right: 30px;
		-webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
		transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
		opacity: 0;
		visibility: hidden;
		z-index: 1000;
	}

	#button {
		color: #fff;
	}

	#button i:hover {
		color: #59A896;
	}

	#button:hover {
		cursor: pointer;
		background-color: #111111;
		color: #59A896;
		border: 1px solid #444444;
	}

	#button:active {
		background-color: #555;
	}

	#button.show {
		opacity: 0.7;
		visibility: visible;
	}

	@media (min-width: 500px) {
		#button {
			margin: 30px;
		}
	}

	@media (max-width: 500px) {
		#button {
			display: none;
		}
		}*/

		/*Back to top btn END*/

		/* Popup Start */

/*	.white_popup{
		background: #fff;
	}
	.small-popup{
		position: relative;
		max-width: 500px;
		padding-right: 30px;
		padding-left: 30px;
		margin: 0 auto;
		}*/

		/* Magnific Popup Animation Delay Start*/
/*	.mfp-fade.mfp-bg {
		opacity: 0;
		-webkit-transition: all 0.15s ease-out;
		-moz-transition: all 0.15s ease-out;
		transition: all 0.15s ease-out;
	}

	.mfp-fade.mfp-bg.mfp-ready {
		opacity: 0.8;
	}

	.mfp-fade.mfp-bg.mfp-removing {
		opacity: 0;
	}
	.mfp-fade.mfp-wrap .mfp-content {
		opacity: 0;
		transition: all 0.4s ease-out;
	}
	.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
		opacity: 1;
	}
	.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
		opacity: 0;
		}*/
		/* Magnific Popup Animation Delay End */

		/* Popup End */

		/* Popup Form Start */

		/* CONTACT FORM START */

/*	.form {
		max-width: 550px;
		margin: 0px auto;
		color: #fff; 
		padding: 30px 0; 
		}*/

/*	.select {
		position: relative;
	}

	.select__item {
		position: relative;
	}

	.select__title {
		color: #000;
		border: 1px solid #d9d9d9;
		background-color: #fff;
		cursor: pointer;
		border-radius: 5px;
	}

	.select__value {
		display: flex;
		font-size: 16px;
		height: 60px;
		padding: 0px 20px;
		align-items: center;
		justify-content: space-between;
		flex-direction: row-reverse;
	}

	.select__value span {
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
	}

	.select__value::before {
		content: "";
		display: inline-block;
		transition: all 0.3s ease 0s;
		width: 11px;
		height: 7px;
		background: url("../images/select.svg") center / 100% no-repeat;
	}

	.select__options {
		color: #000;
		display: none;
		position: absolute;
		top: 49px;
		border-radius: 0 0 4px 4px;
		min-width: 100%;
		left: 0;
		background-color: #fff;
		border-top: 0;
		border: 1px solid #d9d9d9;
		border-top: 0;
		font-size: 16px;
		padding: 0px 0px 5px 0px;
	}

	.select__option {
		cursor: pointer;
		padding: 10px 20px;
		margin: 0px 0px 0px 0px;
	}

	.select._active {
		z-index: 5;
	}

	.select._active .select__value::before {
		transform: rotate(-180deg);
	}

	.select._active.select__options {
		display: block;
	}

	.form * {
		outline: none;
	}

	.form__body {
		position: relative;
	}

	.form__body::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(51, 51, 51, 0.9) url("../images/loading.gif") center / 50px no-repeat;
		opacity: 0;
		visibility: hidden;
		transition: all 0.5s ease 0s;
	}

	.form__body._sending::after {
		opacity: 1;
		visibility: visible;
	}

	.form__title {
		font-size: 40px;
		font-weight: 700;
		margin: 0px 0px 30px 0px;
	}

	.form__item {
		margin: 0px 0px 20px 0px;
	}

	.form__label {
		font-size: 16px;
		display: block;
		margin: 0px 0px 10px 0px;
	}

	.form__input {
		height: 40px;
		padding: 0px 20px;
		width: -webkit-fill-available;
		font-size: 18px;
		transition: all 0.5s ease 0s;
	}

	.form__input:focus {
		box-shadow: 0 0 3px #7a956b;
	}

	.form__input._error {
		box-shadow: 0 0 15px red;
	}

	textarea.form__input {
		min-height: 60px;
		resize: vertical;
		padding: 20px;
	}

	.options {
		padding: 10px 0px 0px 0px;
	}

	.options__item {
		margin: 0px 0px 10px 0px;
	}

	.options__input {
		display: none;
	}

	.options__input:checked+.options__label::after {
		transform: scale(1);
	}

	.options__label {
		display: inline-flex;
		font-size: 16px;
		line-height: 140%;
		align-items: center;
		position: relative;
		cursor: pointer;
	}

	.options__label::before {
		content: "";
		align-self: flex-start;
		flex: 0 0 24px;
		height: 24px;
		background-color: #fff;
		border-radius: 50%;
		margin: 0px 10px 0px 0px;
	}

	.options__label::after {
		transition: transform 0.5s ease 0s;
		content: "";
		position: absolute;
		top: 4px;
		left: 4px;
		width: 16px;
		height: 16px;
		background-color: #7a956b;
		border-radius: 50%;
		transform: scale(0);
	}

	.file {}

	.file__item {
		position: relative;
	}

	.file__input {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		font-size: 0;
		cursor: pointer;
	}

	.file__button {
		display: inline-flex;
		min-height: 40px;
		border-radius: 30px;
		justify-content: center;
		align-items: center;
		background-color: #77608d;
		padding: 0px 20px;
	}

	.file__preview {
		display: inline-block;
		max-width: 100px;
		padding: 10px 0px 0px 0px;
	}

	.file__preview img {
		max-width: 100%;
	}

	.checkbox {}

	.checkbox._error .checkbox__label::before {
		box-shadow: 0 0 15px red;
	}

	.checkbox__input {
		display: none;
	}

	.checkbox__input:checked+.checkbox__label::after {
		transform: scale(1);
	}

	.checkbox__label {
		font-size: 16px;
		line-height: 140%;
		display: inline-flex;
		align-items: center;
		position: relative;
		cursor: pointer;
	}

	.checkbox__label::before {
		content: "";
		align-self: flex-start;
		flex: 0 0 24px;
		height: 24px;
		background-color: #fff;
		border-radius: 4px;
		margin: 0px 10px 0px 0px;
	}

	.checkbox__label::after {
		transition: transform 0.5s ease 0s;
		content: "";
		width: 16px;
		height: 16px;
		position: absolute;
		top: 4px;
		left: 4px;
		background-color: #7a956b;
		border-radius: 4px;
		transform: scale(0);
	}

	.checkbox__label a {
		color: #7a956b;
	}

	.main_form_section {
		padding: 50px 0;
	}

	.form__button {
		width: inherit;
		display: flex;
		justify-content: center;
		align-items: center;
		min-height: 60px;
		background-color: #154E55;
		color: #fff;
		font-size: 18px;
		text-transform: uppercase;
		letter-spacing: 2px;
		font-weight: 700;
		cursor: pointer;
		transition: background-color 0.5s ease 0s;
		position: relative;
		top: 0;
		padding: 18px 60px;
	}

	.form__button:hover {
		background-color: rgb(26, 103, 103);
	}

	.form__button:active {
		top: 3px;
		box-shadow: 0 2px 0 #161b13;
	}

	.form_container {
		display: grid;
		grid-column-gap: 30px;
		grid-template-areas:
		'form_item1 form_item2'
		'form_item3 form_item4'
		'form_item5 form_item5'
		'form_item6 form_item6';
	}

	.form_container__recall{
		grid-template-areas:
		'form_item1 form_item1'
		'form_item4 form_item4'
		'form_item6 form_item6';
	}

	.form_container .form_item1 {
		grid-area: form_item1;
	}

	.form_container .form_item2 {
		grid-area: form_item2;
	}

	.form_container .form_item3 {
		grid-area: form_item3;
	}

	.form_container .form_item4 {
		grid-area: form_item4;
	}

	.form_container .form_item5 {
		grid-area: form_item5;
	}

	.form_container .form_item6 {
		grid-area: form_item6;
		margin: 0 auto;
		}*/

		/* CONTACT FORM END */

		/* Popup Form End */


		header{
			background-color: #5D45DC;
			text-align: center;
		}
		header .myContainer{
			display: flex;
			justify-content: center;
			align-items: center;
			flex-direction: inherit;
			column-gap: 20px;
			padding-top: 20px;
			padding-bottom: 20px;
			/*box-shadow: 0 0 14px rgb(0 0 0 / 40%);*/
		}
		header .myContainer h1{
			color: #fff;
			margin: 0;
			font-size: 24px;
			font-weight: bold;
		}

		.main_screen{
			position: relative;
			/*background-color: #000;*/
			/*background: url("../images/main_bg.png") center / 50px no-repeat;*/
		}
		.main_screen_bgimage{
			top: 0px;
			left: 0px;
			width: 100%;
			height: 100%;
			z-index: -1;
			overflow: hidden;
			position: absolute;
			background-color: rgb(238, 236, 251);
		}
		.main_screen_bgimage .main_screen_bgimage__pct{
			width: 100%;
			height: 100%;
			-o-object-fit: cover;
			object-fit: cover;
			-o-object-position: 50% 50%;
			object-position: 50% 50%;
			line-height: 0;
		}
		.main_screen .main_screen_cont{
			display: grid;
			grid-template-columns: 2fr 1fr;
			align-items: center;
			padding-top: 120px;
			padding-bottom: 120px;
			max-width: 1100px;
		}

		.main_screen__item_descr{
			font-size: 26px;
			color: #242424;
			padding-bottom: 50px;
		}

		.main_screen__item{
			max-width: 475px;
		}
		.main_screen__item .main_screen__item_title{
			padding-bottom: 30px;
		}
		.main_screen__item .main_screen__item_title h2{
			font-size: 60px;
			line-height: 64px;
			color: #242424;
			font-weight: 600;
			max-width: 500px;
		}
		.main_screen__item .main_screen__item_title h2 span{
			font-weight: 600;
		}
		.main_screen__item .main_screen__item_btn{}
		.main_screen__item .main_screen__item_btn a{
			background: #fff;
			border: 1.5px solid #fff;
			border-radius: 90px;
			color: #000;
			cursor: pointer;
			font-size: 20px;
			font-weight: 500;
			min-width: fit-content;
			/*padding: 23px 44px;*/
			padding: 12px 32px;
			text-align: center;
			color: #FFFFFF;
			background: #5D45DC;
			border-color: #5D45DC;
		}
		.main_screen__item .main_screen__item_btn a:hover{
			opacity: 0.7;
			transition: all .3s;
		}
		.main_screen__item .main_screen__item_video{
			-webkit-box-sizing: border-box; 
			box-sizing: border-box; 
			padding-left: 12px;
			padding-right: 12px;
			width: 90%;
			margin: 0 auto;
		}
		.main_screen__item .main_screen__item_video video{
			height: auto;
			max-width: 100%;
		}

		.top_header_line_telegram {
			background: linear-gradient(100.72deg,#ff8a00,#d449f7);
			color: #fff;
			min-height: 30px;
			padding-top: 5px;
			padding-bottom: 5px;
			display: flex;
			align-items: center;
		}
		.top_header_line_telegram a {
			text-align: center;
			color: #fff;
			animation: text 30s infinite linear;
			padding-left: 100%;
			white-space: nowrap;
			font-size: 20px;
			padding-top: 5px;
			padding-bottom: 5px;
		}

		@keyframes text {
			0%{
				transform: translate(0, 0);
			}

			100%{
				transform: translate(-60%, 0);
			}
		}

		.trade_like{
			background-color: #000;
			text-align: center;
		}
		.trade_like__descr{
			color: #fff;
			text-align: center;
			font-size: 20px;
			padding-top: 60px;
		}

		.unlimited_slider{
			background-color: #000;
			padding-top: 80px;
			padding-bottom: 80px;
		}

		/*.unlimited_slider .wrapper .active { color: red; }*/
		.tab_item { display: none; }
		.tab_item:first-child { display: block; }

		.tab-container{
			border: 1px solid #fff;
			border-radius: 100px;
			-webkit-box-sizing: border-box;
			box-sizing: border-box;
			display: -ms-flexbox;
			display: flex;
			/*margin: 28px auto 32px;*/
			padding: 4px;
			width: 100%;
		}

		.unlimited_slider .unlimited_slider__cond .wrapper{
			width: 400px;
		}

		.tab-container .tab-item{
			-ms-flex-align: center;
			-ms-flex-pack: center;
			align-items: center;
			border-radius: 100px;
			color: #fff;
			cursor: pointer;
			display: -ms-flexbox;
			display: flex;
			-ms-flex: 1 1;
			flex: 1 1;
			font-size: 20px;
			font-weight: 500;
			justify-content: center;
			line-height: 16px;
			max-width: 33%;
			padding: 20px 10px;
		}
		.tab-container .tab-item.active{
			background: #fff;
			color: #000;
		}
		.unlimited_slider .wrapper h2{
			font-size: 46px;
			font-weight: 500;
			line-height: 132%;
			color: #fff;
			padding-bottom: 20px;
		}
		.tab_content{
			margin-top: 30px;
		}
		.tab_content .tab_item{
			color: #fff;
			font-size: 20px;
			font-weight: 400;
			line-height: 32px;
		}
		.unlimited_slider__cond{
			display: flex;
			justify-content: space-evenly;
			align-items: center;
		}
		.unlimited_slider__cond .first_img_tab{}
		.unlimited_slider__cond .first_img_tab img{
			max-width: 280px;
		}

		.step_way{
			background-color: #000;
			color: #fff;
			text-align: center;
			padding-top: 80px;
			padding-bottom: 80px;
		}
		.step_way h2{
			font-weight: 500;
			line-height: 132%;
			font-size: 46px;
		}
		.step_way p{
			font-size: 20px;
			font-weight: 400;
			line-height: 32px;
			margin-top: 20px;
		}
		.step_way .stepway__item_video{}
		.step_way .stepway__item_video video{
			height: auto;
			max-width: 100%;
		}

		.our_members{
			background-color: #000;
			padding-top: 80px;
			padding-bottom: 30px;
			text-align: center;
		}
		.our_members h2{
			padding-bottom: 70px;
			font-size: 46px;
			color: #fff;
			text-align: center;
			text-transform: uppercase;
		}
		.our_members .our_members__item_btn{
			margin: 0 auto;
		}
		.our_members .our_members__item_btn a{
			background: #fff;
			border: 1.5px solid #fff;
			border-radius: 100px;
			color: #000;
			cursor: pointer;
			font-size: 20px;
			font-weight: 500;
			min-width: fit-content;
			padding: 23px 44px;
			text-align: center;
		}

		.tesler_descr_bottom{
			background-color: #000;
			padding-top: 40px;
			padding-bottom: 40px;
			position: relative;
		}
		.tesler_descr_bottom img{
			position: absolute;
			right: 0;
			bottom: 50%;
		}
		.tesler_descr_bottom p{
			margin-top: 20px;
			margin-bottom: 20px;
			font-size: 16px;
			font-weight: 400;
		}
		.tesler_descr_bottom h2{
			font-size: 32px;
			padding-top: 20px;
			padding-bottom: 10px;
		}
		.preli{
			font-size: 20px;
			font-style: italic;
		}
		.tesler_descr_bottom ul{}
		.tesler_descr_bottom ul li{
			line-height: 1.8;
			font-weight: bold;
		}

		footer{
			margin-bottom: 40px;
		}
		footer img{
			max-width: 80px;
		}
		.privrtest{
			display: block;
			font-size: 20px;
			color: #fff;
			margin: 25px auto;
		}
		.soc_test_item{
			display: flex;
			font-size: 22px;
		}
		.soc_test_item_txt{
			padding-right: 14px;
		}
		.soc_test_item_txt2 a i{
			font-size: 26px;
			color: #fff;
		}


		.advantages{
			background-color: #fff;
			color: rgb(88, 65, 216);
			padding-top: 85px;
			padding-bottom: 90px;
		}
		.advantages h2{
			text-align: center;
			font-size: 40px;
			font-weight: 600;
			padding-bottom: 40px;
		}
		.advantages .advantages__cont{
			display: grid;
			grid-template-columns: 1fr 1fr 1fr;
		}
		.advantages .advantages__item{}
		.advantages .advantages__item .digits_adv{
			font-size: 48px;
			font-weight: 600;
			text-align: center;
		}
		.advantages .advantages__item .descr_adv{
			text-align: center;
			font-size: 16px;
			margin-top: 16px;
			margin-bottom: 16px;
			color: #242424;
		}

		.buy_cripto{
			background-color: #fff;
			color: #242424;
		}
		.buy_cripto__cont{
			display: grid;
			gap: 0px 68px;
			grid-template-columns: 5fr 4fr;
		}
		.buy_cripto .buy_cripto_img{}
		.buy_cripto .buy_cripto_img img{}
		.buy_cripto_right{}
		.buy_cripto_right p{}
		.buy_cripto_right .cripto_right_toptitle{
			font-size: 18px;
			font-weight: 600;
			text-transform: uppercase;
		}
		.buy_cripto_right .cripto_right_title{
			color: rgb(88, 65, 216);
			font-size: 40px;
			text-align: left;
			font-weight: 600;
			padding-top: 28px;
			padding-bottom: 50px;
			line-height: 1.4;
		}
		.buy_cripto_right .cripto_right_list_cont{
			padding-bottom: 40px;
		}
		.buy_cripto_right .cripto_right_list_cont .right_list_cont__item{
			display: flex;
			align-items: center;
		}
		.buy_cripto_right .cripto_right_list_cont .right_list_cont__item img{
			width: 58px;
		}
		.buy_cripto_right .cripto_right_list_cont .right_list_cont__item p{
			font-size: 24px;
			font-weight: 600;
			line-height: 1.2;
		}
		.buy_kripto_button a{
			background: #fff;
			border: 1.5px solid #fff;
			border-radius: 90px;
			color: #000;
			cursor: pointer;
			font-size: 16px;
			font-weight: 500;
			min-width: fit-content;
			/* padding: 23px 44px; */
			padding: 12px 32px;
			text-align: center;
			color: #FFFFFF;
			background: #5D45DC;
			border-color: #5D45DC;
		}
		.buy_kripto_button a:hover{
			opacity: 0.7;
			transition: all .3s;
		}
		.mb_buy_cripto{
			display: none;
		}

		.why_storm{
			background-color: #fff;
			color: #242424;
			padding-bottom: 90px;
		}
		.why_storm h2{
			padding-top: 84px;
			background-position: 56px;
			font-size: 40px;
			color: rgb(88, 65, 216);
			text-align: center;
			font-weight: 600;
			padding-bottom: 56px;
		}
		.why_storm__cont_inf{
			padding-bottom: 56px;
		}
		.why_storm__item{
			display: flex;
			align-items: center;
			gap: 30px;
			padding-bottom: 20px;
			/*border-bottom: 1px solid #242424;*/
		}
		.why_storm__item_img_cont{
		      text-align: center;
		}
		.why_storm__item img{
		      max-width: 200px;
		}
		.why_storm__item .why_storm__item_txt{}
		.why_storm__item .why_storm__item_txt p{
		    font-size: 20px;
            font-weight: 600;
		}
		.why_storm__item .why_storm__item_img_cont .why_storm_txt_title{
			font-size: 24px;
			font-weight: 600;
			line-height: 1.2;
			margin-bottom: 20px;
			padding-top: 10px;
		}
		.why_storm__item .why_storm__item_txt .why_storm_txt_descr{
			font-size: 16px;
			font-weight: 400;
			margin-top: 10px;
			margin-bottom: 10px;
		}
		.why_storm_txt_descr__up{}
		.buy_kripto_button_snk{
			text-align: center;
			padding-bottom: 100px;
		}

		.starting_crypto_sec{
			background-color: rgb(250, 250, 255);
			color: #242424;
		}
		.starting_crypto_sec_toptitle{
			text-align: center;
			font-size: 18px;
			padding-top: 64px;
			padding-bottom: 16px;
			font-weight: bold;
		}
		.starting_crypto_sec_title{
			text-align: center;
			color: rgb(88, 65, 216);
			font-size: 40px;
			padding-bottom: 16px;
			font-weight: bold;
		}
		.starting_crypto_sec_subtitle{
			text-align: center;
			font-size: 16px;
			padding-bottom: 40px;
		}
		.starting_crypto_sec_cont{
			display: flex;
			row-gap: 70px;
			flex-wrap: wrap;
			column-gap: 30px;
			flex-direction: row;
			justify-content: center;
		}
		.starting_crypto_sec__item{
			filter: drop-shadow(0px 10px 20px rgba(41, 41, 42, 0.07));
			padding: 34px 24px 24px 24px;
			box-sizing: border-box;
			text-align: center;
			border-radius: 8px;
			background-color: #fff;
			width: 270px;
		}
		.starting_crypto_sec__item img{
			max-width: 48px;
		}
		.starting_crypto_sec__item p{}
		.starting_crypto_sec__item .crypto_sec__item_title{
			font-size: 21px;
			margin-top: 6px;
			font-weight: 600;
		}
		.starting_crypto_sec__item .crypto_sec__item_descr{
			font-size: 16px;
			margin-top: 10px;
			font-weight: 600;
		}
		.starting_crypto_sec__item .crypto_sec__prcent{
			color: #3B9B4A;
			font-size: 24px;
			white-space: nowrap;
			margin-top: 10px;
		}
		.starting_crypto_sec__item .crypto_sec__item_title span{
			color: #AFAFAF;
		}

		.crpt_benefits{
			display: grid;
			grid-template-columns: 1fr 1fr 1fr;
			padding-top: 40px;
		}
		.crpt_benefits__item{
			text-align: center;
		}
		.crpt_benefits__item img{
			max-width: 58px;
		}
		.crpt_benefits__item p{
			color: #242424;
			font-size: 24px;
			font-weight: 600;
			max-width: 190px;
			margin: 0 auto;
			padding-bottom: 20px;
		}

		.storm_pro{
			background-color: rgb(25, 27, 39);
			background-image: radial-gradient(circle at center top, rgb(49, 35, 76) 10%, rgb(49, 35, 76) 0%, transparent 50%, transparent 100%), linear-gradient(rgb(25, 27, 39), rgb(25, 27, 39));
		}
		.storm_pro_toptitle{
			padding-top: 80px;
			padding-bottom: 24px;
			font-size: 24px;
			font-weight: 600;
			color: #fff;
			text-transform: uppercase;
			text-align: center;
		}
		.storm_pro_cont{
			margin-left: 20px;
			margin-right: 20px;
			padding-bottom: 30px;
		}
		.storm_pro_cont .storm_pro__descr{
			margin-top: 20px;
			margin-bottom: 20px;
			font-size: 20px;
			text-align: justify;
		}
		.storm_pro img{}

		.storm_pro_advantages{
			padding-bottom: 54px;
			display: grid;
			grid-template-columns: 1fr 1fr 1fr;
		}
		.pro_advantages__item{
			text-align: center;
		}
		.pro_advantages__item img{
			max-width: 58px;
		}
		.pro_advantages__item .advantages__item_title{
			font-size: 24px;
			font-weight: 600;
			text-align: center;
			padding-bottom: 8px;
			color: #fff;
		}
		.pro_advantages__item .advantages__item_descr{
			font-size: 16px;
			color: #fff;
			text-align: center;
			max-width: 300px;
			margin: 0 auto;
		}
		.storm_pro .buy_kripto_button_snk a{
			color: #5841D8;
			background: #FFFFFF;
			border-color: #FFFFFF;
		}

		.storm_pro_subinfo_cont{
			display: flex;
			gap: 30px;
			flex-flow: row wrap;
			align-items: stretch;
			justify-content: center;
		}
		.pro_subinfo_cont__item{
			width: 100%;
			max-width: 370px;
			background: rgb(46, 51, 80);
			box-sizing: border-box;
			margin-left: 0px;
			padding: 1px;
			margin-right: 0px;
			border-radius: 8px;
		}
		.pro_subinfo_cont__item2{
			width: 100%;
			height: 100%;
			background: rgb(32, 35, 51);
			box-sizing: border-box;
			margin-left: 0px;
			margin-right: 0px;
			padding-left: 16px;
			border-radius: 8px;
			padding-right: 16px;
			padding-top: 35px;
			padding-bottom: 25px;
/*			display: flex;
			align-items: center;
			justify-content: center;
			flex-direction: column;*/
		}
		.pro_subinfo_cont__item .subinfo_cont__item_title{
			padding-bottom: 30px;
			font-weight: 600;
			font-size: 14px;
		}
		.pro_subinfo_cont__item .subinfo_cont__item_descr{
			text-align: justify;
			font-size: 14px;
		}

		.crypto_journey{
			background-color: #fff;
			padding-top: 160px;
			padding-bottom: 100px;
		}
		.crypto_journey__cont{
			display: flex;
		}
		.crypto_journey_start{}
		.crypto_journey_start h2{
			color: rgb(88, 65, 216);
			font-size: 40px;
			padding-bottom: 30px;
			font-weight: 600;
			margin-top: 40px;
		}
		.crypto_journey_start .journey_start_descr{
			font-size: 32px;
			color: #242424;
			padding-bottom: 50px;
		}
		.crypto_journey__cont .buy_kripto_button_snk{
			text-align: left;
		}
		.crypto_journey__cont .buy_kripto_button_snk a{}
		.crypto_journey_img{}
		.crypto_journey_img img{}

		.tesler_descr_bottom{
			font-size: 24px;
			font-weight: 600;
		}

		.myRow_two{
			background-color: rgb(25, 27, 39);
			background-image: radial-gradient(circle at center top, rgb(49, 35, 76) 10%, rgb(49, 35, 76) 0%, transparent 50%, transparent 100%), linear-gradient(rgb(25, 27, 39), rgb(25, 27, 39));
		}
