/* 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-face {
  font-family: HarmonyOS_Sans_SC_Medium;
  font-style: normal;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/irozhi/HarmonyOS-Sans/HarmonyOS_Sans_SC/HarmonyOS_Sans_SC_Medium.woff2")
      format("woff2"),
    url("https://cdn.jsdelivr.net/gh/irozhi/HarmonyOS-Sans/HarmonyOS_Sans_SC/HarmonyOS_Sans_SC_Medium.woff")
      format("woff");
}
* {
  font-family: HarmonyOS_Sans_SC_Medium;
}

/* 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(./assets_main/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(./assets_main/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: #121212;
  text-align: center;
}
header .myContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  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;
}

.main_screen {
  background-color: #000;
}
.main_screen .main_screen_cont {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding-top: 120px;
  padding-bottom: 120px;
  max-width: 1100px;
}

.main_screen__item {
}
.main_screen__item .main_screen__item_title {
  padding-bottom: 80px;
}
.main_screen__item .main_screen__item_title h2 {
  font-size: 54px;
  line-height: 64px;
  color: #fff;
  /*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: 100px;
  color: #000;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  min-width: fit-content;
  padding: 23px 44px;
  text-align: center;
}
.main_screen__item .main_screen__item_video {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  width: 75%;
  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: 20px;
  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: 200px;
}
.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;
}

/*Table Style*/
.emp_table_stl {
  display: table;
  border-collapse: separate;
  box-sizing: border-box;
  text-indent: initial;
  border-spacing: 2px;
  border-color: gray;
  margin: 0 auto;
  padding-top: 30px;
}
.emp_table_stl tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
  background-color: #0c0731;
}
.emp_table_stl tbody tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}
.emp_table_stl tbody tr td {
  display: table-cell;
  vertical-align: inherit;
  padding: 5px;
  border: 1px solid gray;
  font-size: 20px;
}
