:root {
	font-size: 11px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	line-height: 1.18;
	text-align: center;
    background: var(--body-bg);
    font-family: "Roboto", sans-serif;
}

.container {
	width: 100%;
	max-width: var(--container-size);
	margin-left: auto;
	margin-right: auto;
	margin: 0 auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

header{
	display: flex;
	flex-direction: column;
	padding-top: 1rem;
	padding-bottom: 1rem;
	font-family: "Open Sans", sans-serif;
	margin-bottom: 10px;
    justify-content: center;
    background: var(--header-bg);
}

.header-top{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
	color: var(--header-top-color);
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.headerWrapper{
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}



.menu-btn {
	width: 3.5rem;
	padding: 4px;
	cursor: pointer;
}

.menu-btn div {
	height: 0.4rem;
	background: var(--burger-color);
	border-radius: 50px;
	margin-bottom: 0.5rem;
}

.menu-btn div+div {
	margin-top: 4px;
}

.popup {
    display: none;
  }

  .menu > li > a {
    text-decoration: none;
  }

  .hamb {
          display: flex;
          align-items: center;
          z-index: 999;
          position: absolute;
          top: 10px;
          left: 25px;
  }

    .hamb__field {
      cursor: pointer;
    }

    .bar {
      display: block;
      width: 30px;
      height: 3px;
      margin: 5px auto;
      background-color: #d9d9d9;
      transition: 0.2s;
    }

    .popup {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background-color: var(--navbar-bg);
      z-index: 100;
      display: flex;
      flex-direction: column;
      transition: 0.3s;
    }

    .popup.open {
      left: 0;
    }

    .popup .menu {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: start;
      padding: 100px 0 0;
      overflow: auto;
    }

    .popup .menu > li {
      width: 100%;
      z-index: 999;
    }

    .popup .menu > li > a {
      width: 100%;
      display: flex;
      justify-content: center;
      padding: 20px 0;
      font-size: 20px;
      font-weight: bold;
      color: var(--nvabarClose-bg);
    }

    .popup .menu > li > a:hover {
      background-color: var(--navbarBtn-hover);
    }

    .hamb__field.active .bar:nth-child(2) {
      opacity: 0;
    }

    .hamb__field.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .hamb__field.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    .closeBtnWrapper{
      max-width: 400px;
      width: 100%;
      display: flex;
      margin:0 auto;
      position: relative;
    }

    .close-btn {
      font-size: 45px;
      color: var(--nvabarClose-bg);
      cursor: pointer;
      z-index: 1000;
      position: absolute;
      top: 5px;
      left: 30px;
      width: 32px;
      height: 30px;
      cursor: pointer;
  }

  .close-btn:hover {
      color: var(--navbarClose-hover);
  }

.service-logo {
    justify-self: center;
	width: 15rem;
	height: 3rem;
}


.langs {
	display: flex;
	justify-content: center;
	align-items: center;
	direction: ltr;
	font-size: 1.5rem;
    gap: 1rem;
    margin-bottom: 1rem;

}

.lang {
	font-family: "Inter", sans-serif;
	display: inline-block;
	border: 2px solid transparent;
	border-radius: 4px;
	font-weight: 300;
	text-align: center;
	cursor: pointer;
    color: var(--lang-color);
    padding: 0.2rem;
}

.lang.active {
	border-color: var(--lang-border-color);
    color: var(--lang-activeColor);
}


.footer {
    padding: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    border: 1px solid var(--footerBorder-color);
    background: var(--footer-bg);
    color: var(--footerText-color);
    border-radius: 15px;
}

.footer p{
    font-size: 1.24rem;
    font-weight: bold;
    unicode-bidi: isolate;
}

.footer a {
    color: var(--footerTextLinks-color);
}

section{
    display: block;
    position: relative;
    padding: 14px 0;
    margin: 0 auto;
}

.how_works_title {
	margin-bottom: 16px;
	font-size: 2.5rem;
	text-align: left;
    margin-left: 1rem;
	color: var(--howWorksTitle);
}

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

.how_works_blocks {
	display: flex;
	flex-direction: row;
}

.how_works_block {
	width: 45%;
	border-radius: 24px;
	padding: 1rem 1rem;
	margin: 8px auto;
	border: 2.5px solid var(--howWorksBlocks-border);
	background-color: var(--howWorksBlocks-bg);
}

.how_works_block_title {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 12px;
	color: var(--howWorksBlocksTitle);
}

.how_works_block_title span {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	width: 2.5rem;
	height: 2.5rem;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	background-color: var(--howWorksBlocksNumber-bg);
	color: var(--howWorksBlocksNumberText);
	margin-right: 6px;
	line-height: 25px;
	border: solid 0.2rem var(--howWorksBlocksNumber-border);
}

.how_works_block_title h2 {
	font-size: 1.8rem;
}

.how_works_block_text {
	font-size: 1.4rem;
	text-align: left;
	color: var(--howWorksBlockText-color);
}

.how_works_help {
	margin-top: 36px;
}

.how_works_help h2 {
	font-size: 2.3rem;
	font-style: oblique;
	line-height: 1.2;
	margin-bottom: 24px;
	color: var(--sectionTitle-color);
}

.how_works_help p {
	color: var(--sectionText-color);;
	font-size: 1.7rem;
	line-height: 1.2;
}

.how_works_help img {
	width: 100%;
	margin-top: 24px
}

.easy_us_title {
	font-size: 2.2rem;
	font-style: oblique;
	line-height: 1.2;
	margin-bottom: 24px;
	color: var(--easyUsTitle-color);
}



.every_sub_block_content svg{
	width: 21px;
	height: 21px;
	margin-right: 7px;
	fill: var(--every-icon-bg);
}

.every_sub_block_content span{
	flex: 1;
}



.easy_us_block img {
	width: 20px;
	height: auto;
}

.easy_us_blocks {
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 10px auto;
	text-align: left;
	width: 90%;
}

.easy_us_block h2 {
	font-size: 1.7rem;
	color: var(--easyUsBlockTitle-color);
	line-height: 1.25;
	margin-bottom: 0.5rem;
}

.easy_us_block p {
	font-size: 1.5rem;
	text-align: left;
	color: var(--easyUsBlockText-color);
	margin-bottom: 21px;
}

.popular_insides{
	display: none;
}

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

.popular_feat_blocks {
    display: flex;
    flex-direction: row;

}

.popular_feat_block {
    width: 45%;
    border: 1px solid var(--popular-border, #15333A);
    border-radius: 24px;
    padding: 24px 12px;
    margin: 8px auto;
    background-color: var(--popular-bg, #0C1116);
}

.popular_feat_title{
	color: var(--popularFeaturesTitle);
    font-size: 2rem;
}

.popular_feat_block_title {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 14px 0;
    text-align: left;
    background: var(--popular-title-bg, #081A19);
    border-radius: 16px;
    margin: 0 auto 14px;
    justify-content: center;
}

.popular_feat_icon{
	width: 25px;
	height: 25px;
	margin-right: 6px;
	border-radius: 50px;
}

.popular_feat_icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.popular_feat_icon svg path {
    fill: var(--popular-icon-fill, #000000);
}

.popular_feat_block_title h2 {
	flex: 1;
    font-size: 1.6rem;
    color: var(--popular-title-color, #00C7B1);
    line-height: 1.25;
}

.popular_feat_block_text {
    font-size: 1.2rem;
    text-align: left;
    line-height: 1.5;
    color: var(--popular-text-color, #7E8189);
    margin-bottom: 14px;
}

.popular_feat_block_btn {
    display: block;
    text-align: left;
    text-decoration: none;
    color: var(--popular-btn-color, #00C7B1);
    font-size: 1.2rem;
}

.popular_feat_block_btn:hover {
    color: var(--popular-btn-hover, #009f8d);
}

.fit_sup_block {
	position: relative;
	text-align: left;
    display: flex;
    flex-direction: column;
    padding: 14px 28px;
    background: var(--fitSupBlock-bg);
    border: 2px solid var(--fitSupBlock-border);
    border-radius: 18px;
    margin: 20px auto;
}

.fit_sup_title{
    font-size: 2rem;
	color:var(--fitSupTitle-color);
}

.fit_sup_line{
	position: absolute;
	left: 0px;
	top: 5px;
	width: 10px;
	height: 90%;
	background: var(--fitSupBlockLine-bg);
	border-radius: 50px;
}

.fit_sup_block_title{
	font-size: 1.9rem;
	color: var(--fitSupBlockTitle-color);
	line-height: 1.25;
	margin-bottom: 14px;
}

.fit_sup_block_text{
	font-size: 1.2rem;
    text-align: left;
    line-height: 1.5;
    color: var(--fitSupBlockText-color);
}

.every_sub_blocks {
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: row;
    padding: 14px 7px;
    background: var(--every-bg, #0C1116);
    border: 2px solid var(--every-border, #15333A);
    border-radius: 18px;
    margin: 20px auto;
    justify-content: space-around;
}

.every_sub_title{
    font-size: 2rem;
	color: var(--everySubTitle-color);
}

.every_sub_block {
    width: 45%;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: space-between;
}

.every_sub_block_content {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 7px 0;
    font-size: 1.6rem;
    line-height: 1.25;
    color: var(--every-text-color, #ffffff);
}


/* ===== simple_sub ===== */

.simple_sub_title{
    font-size: 2rem;
	color: var(--simpleTitle-color);
	margin-bottom: 1rem;
}

.simple_sub_subtitle {
    font-size: 1.5rem;
    color: var(--simple-subtitle-color, #ffffff);
    margin-bottom: 10px;
}

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

.simple_sub_block {
    width: 100%;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 14px 28px;
    background: var(--simple-bg, #0C1116);
    border: 2px solid var(--simple-border, #15333A);
    border-radius: 18px;
    margin: 10px auto;
}

.simple_sub_block_title {
    font-size: 1.5rem;
    color: var(--simple-title-color, #ffffff);
    line-height: 1.25;
    margin-bottom: 7px;
}

.simple_sub_block_subtitle {
    font-size: 1.5rem;
    color: var(--simple-price-color, #00C7B1);
    line-height: 1.25;
    margin-bottom: 14px;
}

.simple_sub_block_text {
    font-size: 1.4rem;
    color: var(--simple-text-color, #8C8F96);
    margin-bottom: 10px;
}

/* ===== faq ===== */
.faq_title{
    font-size: 2rem;
	color: var(--faqTitle-color);
	margin-bottom: 1rem;
}

.faq h3 {
    font-weight: 300;
    letter-spacing: 1px;
    display: block;
    font-size: 1.5rem;
    background: var(--faq-title-bg, #0C1116);
    margin: 0;
    cursor: pointer;
    border-radius: 8px;
    padding: 20px 80px 20px 30px;
    color: var(--faq-title-color, #ffffff);
    font-weight: 700;
    border: 2px solid var(--faq-border, #15333A);
    border-radius: 18px;
}

.faq p {
    color: var(--faq-text-color, #ffffff);
    background: var(--faq-text-bg, #0C1116);
    font-size: 1.2rem;
    line-height: 26px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    max-height: 800px;
    opacity: 1;
    transform: translate(0, -16px);
    z-index: 2;
    border-radius: 0 0 18px 18px;
    padding: 20px 20px 20px 30px;
    border-bottom: 2px solid var(--faq-border, #15333A);
    border-right: 2px solid var(--faq-border, #15333A);
    border-left: 2px solid var(--faq-border, #15333A);
}

.faq ul {
    list-style: none;
    perspective: 900;
    padding: 0;
    margin: 0;
    width: 90%;
    margin: 0 auto;
}

.faq ul li {
    position: relative;
    padding: 0;
    margin: 0;
    padding-bottom: 4px;
    text-align: left;
}

.faq ul li i {
    position: absolute;
    margin-top: 25px;
    right: 40px;
}

.faq ul li i:before,
.faq ul li i:after {
    content: "";
    position: absolute;
    background-color: var(--faq-arrow-color, #00C7B1);
    width: 3px;
    height: 15px;
}

.faq ul li i:before {
    transform: translate(4px, 0) rotate(270deg);
}

.faq ul li i:after {
    transform: translate(4px, 0) rotate(270deg);
}

.faq ul li input[type=checkbox] {
    position: absolute;
    cursor: pointer;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
}

.faq ul li input[type=checkbox]:checked ~ p {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translate(0, 50%);
}

.faq ul li input[type=checkbox]:checked ~ i:before {
    transform: translate(4px, 0) rotate(0deg);
}

.faq ul li input[type=checkbox]:checked ~ i:after {
    transform: translate(4px, 0) rotate(270deg);
}

/* ===== ready ===== */
.ready_block {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 18px;
    /* background: var(--ready-bg, #082625); */
    color: var(--ready-text-color, #ffffff);
    text-align: center;
    padding: 20px 20px;
}

.ready_block_title {
    font-size: 2rem;
    text-align: center;
    color: var(--ready-title-color, #ffffff);
}

.ready_block_subtitle {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--ready-subtitle-color, #ffffff);
}

.ready_block_button {
    width: 100%;
    display: block;
    padding: 14px 0;
    background: var(--ready-btn-bg, #00C7B1);
    color: var(--ready-btn-color, #032927);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    border-width: 0;
    transition: background 0.2s;
}

.ready_block_button:hover {
    background: var(--ready-btn-hover, #008576);
    cursor: pointer;
}

.inside{
	display: none;
}

.form2{
	display: none;
}



@media (max-width: 640px) { :root {font-size: 10px;} .mainLogo{display: none;} }
@media (max-width: 500px) { :root {font-size: 10px;} .steps__item{ width: 8rem;} }
@media (max-width: 400px) { :root {font-size: 10px;} }
@media (max-width: 370px) { :root {font-size: 9px;} .popular_feat_block_title h2{font-size: 1.4rem;} }
@media (max-width: 350px) { :root {font-size: 8px;} }