*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: 0 !important;
}

html {
  height: 100%;
}

body {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

body.menu-opened {
  overflow: hidden;
}

body.sticky {
  padding-top: 93px;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  font-weight: 300;
  font-family: "Inter", sans-serif;
}

ul,
ol {
  padding-left: 0;
  margin: 0;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

input,
textarea {
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.wrapper {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.field-wrap {
  padding-bottom: 16px;
}

.field-label {
  color: #fff;
  display: block;
  padding-bottom: 8px;
  font-size: 16px;
  line-height: 20px;
}

.field-input {
  background-color: rgba(255, 255, 255, 0.3);
  display: block;
  width: 100%;
  height: 42px;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
}

.field-input__area {
  resize: none;
  height: 140px;
}

.field-input__search {
  height: 42px;
  padding: 8px 16px 8px 48px;
  font-size: 16px;
  border-radius: 8px;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input::placeholder,
textarea::placeholder,
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-moz-placeholder,
textarea::-moz-placeholder,
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  opacity: 0.7;
}

input:focus::placeholder,
textarea:focus::placeholder,
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder,
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder,
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0.7;
}

.dropdown {
  position: relative;
}

.dropdown__button svg {
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.dropdown__content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border-radius: 4px;
  overflow: hidden;
}

.dropdown__content_align_right {
  left: auto;
  right: 0;
}

.dropdown__content_align_center {
  left: 0;
  right: 0;
  width: 100%;
}

.dropdown.is-open .dropdown__button svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.dropdown.is-open .dropdown__content {
  display: block;
}

.main-link {
  font-size: 16px;
  font-weight: 500;
  color: #3A6CF4;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.main-link_theme_white {
  color: #fff;
}

.main-link_theme_white:hover {
  color: #d7d7d7 !important;
}

.main-link:hover {
  color: #3a4df4;
}

.checkbox-field__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  gap: 8px;
}

.checkbox-field__input {
  display: none;
}

.checkbox-field__input:checked + .checkbox-field__box {
  background-color: #fff;
  border-color: #fff;
}

.checkbox-field__input:checked + .checkbox-field__box::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  width: 5px;
  height: 10px;
  border: solid #3A6CF4;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.checkbox-field__box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: border-color 0.2s, background-color 0.2s;
  -o-transition: border-color 0.2s, background-color 0.2s;
  transition: border-color 0.2s, background-color 0.2s;
  background-color: rgba(255, 255, 255, 0.3);
}

.checkbox-field__txt {
  font-size: 16px;
  color: #fff;
  line-height: 20px;
}

.btn {
  background-color: #3A6CF4;
  padding: 9px 18px;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  border: none;
  display: inline-block;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.btn_theme_white {
  background-color: #fff;
  color: #3A6CF4;
}

.btn_theme_white:hover {
  background-color: #d7d7d7 !important;
}

.btn_theme_border {
  color: #3A6CF4;
  background-color: transparent;
  border: 1px solid #DADADA;
}

.btn_theme_border:hover {
  background-color: #3a4df4;
  color: #fff;
  border-color: #3a4df4;
}

.btn_theme_border:hover svg {
  fill: #fff;
}

.btn_width_100 {
  display: block;
  width: 100%;
}

.btn_with_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn_with_icon span {
  display: block;
  padding-left: 16px;
}

.btn_with_icon svg {
  width: 21px;
  height: 13px;
  display: block;
  fill: #3A6CF4;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.btn:hover {
  background-color: #3a4df4;
}

.btn-loading{
  background-color: #3a4df4;
  height: 59px;
  position: relative;
}

.btn-loading.btn_theme_red {
  background-color: #E84649;
  color: #fff;
}

.fade-in {
  animation: fadeIn 0.3s ease forwards;
}
.fade-out {
  animation: fadeOut 0.3s ease forwards;
}

.spinner-custom-wrap{
  position: absolute;
  toP: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spinner-custom {
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.main-headline-page {
  color: #000;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.main-headline-page_theme_white {
  color: #fff;
}

.main-headline-page_size_sm {
  font-size: 24px;
  line-height: 32px;
}

.main-headline-page_align_center {
  text-align: center;
}

.main-headline {
  color: #000;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.main-headline_theme_white {
  color: #fff;
}

.gpt-wgt {
  position: relative;
  left: -15px;
}

.gpt-wgt__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.gpt-wgt__logo {
  position: relative;
  z-index: 11;
  left: 15px;
}

.gpt-wgt__logo img {
  display: block;
  height: 37px;
  width: auto;
}

.gpt-wgt__label {
  background-color: rgba(0, 160, 169, 0.3);
  height: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 32px;
  padding-right: 16px;
  color: #00A0A9;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0 8px 8px 0;
  white-space: nowrap;
}

.customers-wgt__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.customers-wgt__favicons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.customers-wgt__favicons-item {
  width: 37px;
  height: 37px;
  min-width: 37px;
  background-color: #E5E5E5;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.customers-wgt__favicons-item img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

.customers-wgt__favicons-item:nth-child(2) {
  -webkit-transform: translateX(-16px);
      -ms-transform: translateX(-16px);
          transform: translateX(-16px);
}

.customers-wgt__favicons-item:nth-child(3) {
  -webkit-transform: translateX(-32px);
      -ms-transform: translateX(-32px);
          transform: translateX(-32px);
}

.customers-wgt__content {
  -webkit-transform: translateX(-24px);
      -ms-transform: translateX(-24px);
          transform: translateX(-24px);
}

.customers-wgt__content-headline {
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  padding-bottom: 4px;
}

.customers-wgt__content-stat {
  color: 14px;
  line-height: 18px;
  color: #7F7F7F;
}

.content-loading{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.7);
}

.content-loading .spinner-custom-wrap{
  top: 64px;
  transform: translateY(-50%);
}

.content-loading .spinner-custom {
  display: block;
  width: 42px;
  height: 42px;
  border: 2px solid #3A6CF4;
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.faq-accordion{
  position: relative;
}

.accordion-item {
  border: 1px solid #DADADA;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  cursor: pointer;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.accordion-item.active,
.accordion-item:hover {
  background-color: #EAF1FF;
}

.accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
}

.accordion-header__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 35px;
  height: 35px;
  min-width: 35px;
  border-radius: 50%;
  background-color: #3A6CF4;
}

.accordion-header__icon-open {
  width: 18px;
  height: 18px;
}

.accordion-header__icon-close {
  display: none;
  width: 18px;
  height: 2px;
}

.accordion-header__icon svg {
  stroke: #fff;
}

.accordion-header.active .accordion-header__icon {
  background-color: rgba(58, 108, 244, 0.3);
}

.accordion-header.active .accordion-header__icon-open {
  display: none;
}

.accordion-header.active .accordion-header__icon-close {
  display: block;
}

.accordion-content {
  color: #7F7F7F;
  font-size: 16px;
  line-height: 22px;
  padding-top: 16px;
}

.custom-select {
  position: relative;
}

.custom-select select {
  display: none;
}

.select-selected {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  height: 42px;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 16px;
  width: 15px;
  height: 10px;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/chevron-down.svg");
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.select-selected.select-arrow-active:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select-items div {
  color: #000;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  height: 42px;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.select-items {
  position: absolute;
  background-color: #fff;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 99;
  max-height: 250px;
  overflow: auto;
  border-radius: 8px;
}

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: #f7f7f7;
}

.header {
  -webkit-transition: top 0.3s ease, background-color 0.3s ease;
  -o-transition: top 0.3s ease, background-color 0.3s ease;
  transition: top 0.3s ease, background-color 0.3s ease;
  top: 0;
  z-index: 1000;
  position: relative;
}

.header__inner {
  padding-top: 16px;
  padding-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #EBEBEB;
}

.header__middle {
  width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: none;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header .custom-logo {
  height: 42px;
  display: block;
  width: auto;
}

.header__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
}

.header__menu ul li {
  padding-left: 16px;
  padding-right: 16px;
}

.header__menu ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #7F7F7F;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.header__menu ul li a:hover {
  opacity: 0.7;
}

.header__control {
  display: none;
}

.header__language {
  padding-left: 32px;
  display: none;
}

.header__language button {
  background: none;
  padding: 0;
  border: none;
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__language button span {
  display: block;
  padding-right: 4px;
}

.header__language button svg {
  width: 10px;
  height: 5px;
  display: block;
  fill: #000;
}

.header__language ul {
  list-style-type: none;
}

.header__language ul li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #7F7F7F;
  border-bottom: 1px solid #EBEBEB;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
  padding: 8px;
}

.header__language ul li a:hover {
  background-color: #f7f7f7;
}

.header__language ul li:last-child a {
  border-bottom: none;
}

.header__mobile-menu-btn {
  width: 35px;
  height: 35px;
  min-width: 35px;
  border-radius: 8px;
  border: 1px solid #DADADA;
  background: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__mobile-menu-btn svg {
  display: block;
  stroke: #5B5B5B;
  width: 14px;
  height: 10px;
}

.header.hidden {
  top: -100px;
}

.header.sticky {
  position: fixed;
  top: 0 !important;
  left: 0;
  right: 0;
  background: #f7f7f7;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.front-banner {
  position: relative;
  overflow: hidden;
}

.front-banner__inner {
  background-color: #fff;
  padding-top: 32px;
  padding-bottom: 32px;
}

.front-banner__headline-wrap {
  padding-bottom: 16px;
  text-align: center;
}

.front-banner__description {
  text-align: center;
  padding-bottom: 16px;
}

.front-banner__description p {
  font-size: 16px;
  line-height: 20px;
  color: #5B5B5B;
  margin: 0;
}

.front-banner__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 16px;
  padding-bottom: 32px;
}

.front-banner__nav-item {
  padding-bottom: 16px;
}

.front-banner__nav-item:last-child {
  padding-bottom: 0;
}

.front-banner__btn-video {
  background: none;
  border: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.front-banner__btn-video-circle {
  border-radius: 50%;
  width: 37px;
  min-width: 37px;
  height: 37px;
  border: 1px solid #3A6CF4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.front-banner__btn-video-circle svg {
  width: 12px;
  height: 14px;
  display: block;
  fill: #3A6CF4;
  margin-left: 2px;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.front-banner__btn-video-label {
  font-size: 16px;
  color: #3A6CF4;
  font-weight: 500;
  display: block;
  padding-left: 8px;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.front-banner__btn-video:hover .front-banner__btn-video-circle {
  border-color: #3a4df4;
}

.front-banner__btn-video:hover .front-banner__btn-video-circle svg {
  fill: #3a4df4;
}

.front-banner__btn-video:hover .front-banner__btn-video-label {
  color: #3a4df4;
}

.front-banner__gpt {
  padding-top: 32px;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.front-banner__customers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.front-banner__thumb {
  width: 100%;
  height: auto;
}

.front-banner__thumb_first {
  position: absolute;
  left: 45%;
  top: 60%;
  z-index: 11;
  -webkit-transform: rotate(3deg);
      -ms-transform: rotate(3deg);
          transform: rotate(3deg);
  display: none;
}

.front-banner__thumb_second {
  position: absolute;
  left: 60%;
  top: 0%;
  z-index: 11;
  -webkit-transform: rotate(3deg);
      -ms-transform: rotate(3deg);
          transform: rotate(3deg);
  display: none;
}

.statisctics-section__inner {
  background-color: #3A6CF4;
  border-radius: 16px;
  padding: 16px 32px;
}

.statisctics-wgt {
  text-align: center;
  padding: 16px 0;
}

.statisctics-wgt__inner {
  padding-left: 16px;
}

.statisctics-wgt__value-wrap {
  padding-bottom: 8px;
}

.statisctics-wgt__value {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.statisctics-wgt__headline-wrap {
  padding-bottom: 16px;
}

.statisctics-wgt__headline {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.statisctics-wgt__content {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.statisctics-wgt__content p {
  margin: 0;
}

.front-about {
  background-color: #fff;
}

.front-about-wgt {
  padding-top: 16px;
  padding-bottom: 16px;
}

.front-about-wgt__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.front-about-wgt__thumb {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.front-about-wgt__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.front-about-wgt__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.front-about-wgt__headline-wrap {
  padding-bottom: 16px;
  text-align: center;
}

.front-about-wgt__description {
  padding-bottom: 16px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #5B5B5B;
  text-align: center;
}

.front-about-wgt__description p {
  margin: 0;
}

.front-about-wgt_reverse .front-about-wgt__thumb {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.front-about-wgt_reverse .front-about-wgt__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.front-about-wgt__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.video-section {
  background-color: #fff;
  padding-bottom: 32px;
}

.video-section__headline-wrap {
  padding-bottom: 32px;
  text-align: center;
}

.video-section__preview {
  position: relative;
}

.video-section__preview img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
}

.video-section__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  background-color: #3A6CF4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: none;
  width: 50px;
  height: 50px;
  min-width: 50px;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
}

.video-section__play-btn svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: #fff;
}

.video-section__play-btn:hover {
  background-color: #3a4df4;
}

.started-section {
  background-color: #fff;
  padding-bottom: 32px;
}

.started-section__inner {
  background-color: #3A6CF4;
  border-radius: 16px;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.started-section__headline-wrap {
  text-align: center;
  padding-bottom: 16px;
}

.started-section__description {
  text-align: center;
  padding-bottom: 32px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.started-section__description p {
  margin: 0;
}

.started-section__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.started-section__nav-item {
  text-align: center;
  padding-bottom: 16px;
}

.started-section__nav-item:last-child {
  padding-bottom: 0;
}

.about-banner__inner {
  background-color: #fff;
  padding-top: 32px;
  padding-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
}

.about-banner__headline-wrap {
  padding-bottom: 16px;
  text-align: center;
}

.about-banner__description {
  text-align: center;
}

.about-banner__description p {
  font-size: 22px;
  line-height: 30px;
  color: #5B5B5B;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.about-banner__thumbnails {
  display: none;
}

.about-banner__thumbnails-item-first,
.about-banner__thumbnails-item-second {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-banner__thumbnails-item-first img,
.about-banner__thumbnails-item-second img {
  width: 100%;
}

.about-banner__thumbnails-item-third {
  padding-top: 32px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-banner__thumbnails-item-third img {
  width: 50%;
}

.about-banner__thumb {
  display: block;
}

.about-steps {
  background-color: #F7F7F7;
  padding: 32px 0;
}

.about-steps__headline-wrap {
  padding-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-steps__headline-gpt {
  width: 85px;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.step-wgt {
  padding: 8px 0;
}

.step-wgt__inner {
  background-color: #fff;
  padding: 16px;
  border-radius: 16px;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.15);
}

.step-wgt__headline-wrap {
  padding-bottom: 8px;
}

.step-wgt__headline {
  color: #3A6CF4;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.step-wgt__question {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.step-wgt:hover .step-wgt__inner {
  background-color: #3A6CF4;
}

.step-wgt:hover .step-wgt__headline {
  color: #fff;
}

.step-wgt:hover .step-wgt__question {
  color: #fff;
}

.about-advantages {
  background-color: #fff;
  padding: 32px 0;
}

.about-advantages__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.about-advantages__headline-wrap {
  padding-bottom: 16px;
  text-align: center;
}

.about-advantages__items ul {
  list-style-type: none;
}

.about-advantages__items ul li {
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-advantages__items ul li svg {
  display: block;
  width: 23px;
  height: 16px;
  fill: #00A0A9;
}

.about-advantages__items ul li span {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  display: block;
  padding-left: 8px;
}

.about-advantages__footer {
  padding-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blog-list {
  background-color: #F7F7F7;
  padding-top: 32px;
  padding-bottom: 32px;
}

.blog-list__header {
  padding-bottom: 32px;
}

.blog-list__headline-wrap {
  padding-bottom: 16px;
  text-align: center;
}

.blog-list__description {
  font-size: 16px;
  line-height: 20px;
  color: #5B5B5B;
  text-align: center;
}

.blog-list__description p {
  margin: 0;
}

.blog-list__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 32px;
}

.blog-wgt {
  padding: 8px 0;
}

.blog-wgt__link:hover .blog-wgt__inner {
  background-color: #3A6CF4;
}

.blog-wgt__link:hover .blog-wgt__headline {
  color: #fff;
}

.blog-wgt__link:hover .blog-wgt__info {
  color: #fff;
}

.blog-wgt__inner {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.15);
}

.blog-wgt__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.blog-wgt__content {
  padding: 24px 16px 32px 16px;
}

.blog-wgt__headline {
  font-size: 20px;
  color: #000;
  line-height: 24px;
  font-weight: 700;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.blog-wgt__headline-wrap {
  padding-bottom: 16px;
}

.blog-wgt__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #7F7F7F;
  font-size: 16px;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.blog-wgt__info-time {
  display: block;
}

.blog-wgt__info-time::after {
  content: " - ";
  padding: 0 4px;
}

.price-banner {
  background-color: #fff;
  padding: 32px 0;
}

.price-banner__inner {
  text-align: center;
}

.price-banner__headline-wrap {
  padding-bottom: 16px;
}

.price-banner__description {
  font-size: 16px;
  line-height: 20px;
  color: #5B5B5B;
}

.price-banner__description p {
  margin: 0;
}

.price-content {
  padding-bottom: 32px;
  background-color: #fff;
}

.price-wgt {
  padding: 8px 0;
}

.price-wgt__inner {
  padding: 32px;
  border-radius: 32px;
  border: 1px solid #DADADA;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.price-wgt__headline-wrap {
  padding-bottom: 16px;
  text-align: center;
}

.price-wgt__headline {
  color: #000;
  font-size: 24px;
  line-height: 28px;
  font-weight: 900;
}

.price-wgt__description {
  padding-bottom: 32px;
  text-align: center;
}

.price-wgt__description p {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  color: #5B5B5B;
}

.price-wgt__values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 16px;
}

.price-wgt__values-current {
  color: #000;
  line-height: 40px;
  font-size: 32px;
  font-weight: 700;
}

.price-wgt__values-old {
  color: #CDCDCD;
  font-size: 24px;
  font-weight: 700;
  text-decoration: line-through;
  padding-left: 16px;
}

.price-wgt__period {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #000;
  padding-bottom: 16px;
  text-align: center;
}

.price-wgt__items {
  padding-bottom: 16px;
}

.price-wgt__items ul {
  list-style-type: none;
}

.price-wgt__items ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 12px 0;
}

.price-wgt__items ul li svg {
  width: 18px;
  height: 12px;
  display: block;
  fill: #00A0A9;
}

.price-wgt__items ul li span {
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  padding-top: 8px;
}

.price-wgt:hover .price-wgt__inner {
  background-color: #f7f7f7;
}

.faq-banner {
  padding: 32px 0;
}

.faq-banner__inner {
  padding: 32px 16px;
  border-radius: 16px;
  background-color: #3A6CF4;
}

.faq-banner__headline-wrap {
  padding-bottom: 16px;
}

.faq-banner__search-wrap {
  position: relative;
}

.faq-banner__search-icon {
  width: 20px;
  height: 20px;
  display: block;
  fill: #fff;
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

.faq-content {
  background-color: #fff;
  padding: 32px 0;
}

.faq-content__nav-headline-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #DADADA;
  cursor: pointer;
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.faq-content__nav-headline {
  color: #000;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
}

.faq-content__nav-dropdown-icon {
  width: 15px;
  height: 10px;
  display: block;
  fill: #000;
}

.faq-content__nav-choose-items {
  display: none;
}

.faq-content__nav-items {
  position: relative;
}

.faq-content__nav-items.is-open .faq-content__nav-choose-items {
  display: block;
}

.faq-content__nav-items ul {
  list-style-type: none;
}

.faq-content__nav-items ul li {
  padding: 8px 0;
  border-bottom: 1px solid #DADADA;
}

.faq-content__nav-items ul li button {
  background: none;
  padding: 8px 0;
  border: none;
  font-size: 16px;
  width: 100%;
  text-align: left;
  line-height: 20px;
  color: #000;
  display: block;
  font-weight: 500;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.faq-content__nav-items ul li:first-child {
  padding-top: 0;
}

.faq-content__nav-items ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.archive-blog-news {
  background-color: #fff;
  padding: 32px 0;
}

.archive-blog-news__headline-wrap {
  padding-bottom: 32px;
}

.archive-blog-news__description p {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  color: #5B5B5B;
  font-weight: 500;
}

.archive-last-news {
  background-color: #fff;
  padding: 0;
}

.last-news-wgt__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
}

.last-news-wgt__content {
  background-color: #3A6CF4;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.last-news-wgt__content-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.last-news-wgt__headline-wrap {
  padding-bottom: 16px;
}

.last-news-wgt__headline-link:hover .last-news-wgt__headline {
  opacity: 0.7;
}

.last-news-wgt__headline {
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.last-news-wgt__description {
  display: none;
}

.last-news-wgt__description p {
  color: #fff;
  margin: 0;
  font-size: 20px;
  line-height: 24px;
}

.last-news-wgt__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 16px;
}

.last-news-wgt__info-time {
  display: block;
}

.last-news-wgt__info-time::after {
  content: " - ";
  padding: 0 4px;
}

.last-news-wgt__thumb {
  border-radius: 0 16px 16px 0;
  overflow: hidden;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.last-news-wgt__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.archive-blog-list {
  background-color: #fff;
  padding: 32px 0 64px 0;
}

.archive-blog-list__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 32px;
}

.archive-blog-wgt {
  padding: 8px 0;
}

.archive-blog-wgt__inner {
  border: 1px solid #DADADA;
  border-radius: 16px;
  background-color: #fff;
  overflow: hidden;
}

.archive-blog-wgt__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.archive-blog-wgt__content {
  padding: 16px;
}

.archive-blog-wgt__content-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.archive-blog-wgt__headline-wrap {
  padding-bottom: 16px;
}

.archive-blog-wgt__headline-link:hover .archive-blog-wgt__headline {
  opacity: 0.7;
}

.archive-blog-wgt__headline {
  color: #000;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.archive-blog-wgt__description {
  display: none;
}

.archive-blog-wgt__description p {
  color: #5B5B5B;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  margin: 0;
}

.archive-blog-wgt__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #7F7F7F;
  font-size: 16px;
}

.archive-blog-wgt__info-time {
  display: block;
}

.archive-blog-wgt__info-time::after {
  content: " - ";
  padding: 0 4px;
}

.single-blog-content {
  padding: 32px 0;
  background-color: #fff;
}

.single-blog-content__headline-wrap {
  padding-bottom: 16px;
}

.single-blog-content__headline {
  color: #000;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  text-align: center;
}

.single-blog-content__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #7F7F7F;
  font-size: 16px;
  padding-bottom: 16px;
}

.single-blog-content__info-time {
  display: block;
}

.single-blog-content__info-time::after {
  content: " - ";
  padding: 0 4px;
}

.single-blog-content__thumb {
  padding-bottom: 32px;
}

.single-blog-content__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.single-blog-content__full {
  line-height: 1.4;
  font-weight: 500;
  padding-bottom: 32px;
}

.contacts-page-content {
  padding: 32px 0;
}

.contacts-page-content__inner {
  background-color: #F7F7F7;
  border-radius: 16px;
}

.contacts-page-content__info {
  background-color: #F7F7F7;
  border-radius: 32px 32px 0 0;
  padding: 32px;
}

.contacts-page-content__headline-wrap {
  padding-bottom: 16px;
}

.contacts-page-content__headline {
  font-size: 24px;
  line-height: 28px;
  color: #000;
  text-align: center;
}

.contacts-page-content__unheadline-wrap {
  padding-bottom: 24px;
  display: none;
}

.contacts-page-content__unheadline {
  font-size: 36px;
  line-height: 42px;
  color: #000;
  font-weight: 500;
}

.contacts-page-content__form {
  background-color: #3A6CF4;
  border-radius: 0 0 16px 16px;
  padding: 32px;
}

.contacts-page-content__description p {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #5B5B5B;
  text-align: center;
}

.contacts-page-content__form-headline-wrap {
  padding-bottom: 16px;
}

.contacts-page-content__form-headline {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.contacts-page-content__form-success {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  padding-top: 64px;
  padding-bottom: 32px;
}

.contacts-page-content__form-success.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
}

.contacts-page-content__form-success-icon-wrap {
  padding-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contacts-page-content__form-success-icon {
  width: 138px;
  height: 138px;
  min-width: 138px;
  display: block;
}

.contacts-page-content__form-success-headline-wrap {
  padding-bottom: 32px;
  text-align: center;
}

.contacts-page-content__form-success-headline {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
}

.contacts-page-content__form-success-description {
  text-align: center;
}

.contacts-page-content__form-success-description p {
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  margin: 0;
}

.not-found-content {
  padding: 32px 0;
}

.not-found-content__thumb {
  display: none;
}

.not-found-content__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.not-found-content__thumb-mob img {
  width: 100%;
  height: auto;
  display: block;
}

.not-found-content__headline-wrap {
  padding-bottom: 16px;
  text-align: center;
}

.not-found-content__description {
  padding-bottom: 16px;
  text-align: center;
}

.not-found-content__description p {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #5B5B5B;
}

.not-found-content__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -8px;
}

.not-found-content__nav-item {
  padding: 0 8px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background-color: #3A6CF4;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  pointer-events: none;
  opacity: 0;
}

.mobile-menu__inner {
  padding: 32px;
  height: 100%;
}

.mobile-menu__logo img {
  height: 35px;
  width: auto;
  display: block;
}

.mobile-menu__nav-wrap {
  padding-top: 64px;
  padding-bottom: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-menu__nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.mobile-menu__nav ul li {
  text-align: center;
  padding: 12px 0;
}

.mobile-menu__nav ul li a {
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  font-weight: 600;
}

.mobile-menu__language-switch {
  padding-top: 32px;
}

.mobile-menu__language-switch button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  padding: 0;
  color: #fff;
  background: none;
  font-size: 16px;
}

.mobile-menu__language-switch button svg {
  fill: #fff;
  width: 10px;
  height: 5px;
  display: block;
}

.mobile-menu__language-switch-label {
  display: block;
  padding-right: 4px;
}

.mobile-menu__language-switch-current {
  display: block;
  padding-left: 4px;
  padding-right: 4px;
}

.mobile-menu__language-switch ul {
  list-style-type: none;
}

.mobile-menu__language-switch ul li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #7F7F7F;
  border-bottom: 1px solid #EBEBEB;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
  padding: 8px;
}

.mobile-menu__language-switch ul li a:hover {
  background-color: #f7f7f7;
}

.mobile-menu__close-btn {
  border: none;
  padding: 0;
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  position: fixed;
  bottom: 24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 999999;
}

.mobile-menu__close-btn svg {
  stroke: #3A6CF4;
  display: block;
  width: 30px;
  height: 30px;
}

.mobile-menu.is-active {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.video-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}

.video-popup {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  -webkit-animation: fadeIn 0.4s ease;
          animation: fadeIn 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.video-popup__content {
  width: 100%;
  height: 100%;
}

.video-popup__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-popup__close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 32px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.footer {
  background-color: #fff;
}

.footer__top {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  padding: 32px 0;
}

.footer__description {
  padding-bottom: 24px;
  text-align: center;
}

.footer__started-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 16px;
}

.footer__started-item:last-child {
  padding-bottom: 0;
}

.footer__bottom {
  padding: 16px 0;
}

.footer__copy {
  font-size: 16px;
  font-weight: 500;
  color: #8D8D8D;
  text-align: center;
}

.footer-logo {
  padding-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-logo img {
  display: block;
  height: 50px;
  width: auto;
}

.footer-menu-wgt {
  padding-top: 48px;
}

.footer-menu-wgt__headline-wrap {
  padding-bottom: 16px;
}

.footer-menu-wgt__headline {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.footer-menu-wgt ul {
  list-style-type: none;
}

.footer-menu-wgt ul li {
  text-align: center;
  padding-bottom: 8px;
}

.footer-menu-wgt ul li:last-child {
  padding-bottom: 0;
}

.footer-menu-wgt ul li a {
  color: #8D8D8D;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: 200ms all;
  -o-transition: 200ms all;
  transition: 200ms all;
}

.footer-menu-wgt ul li a:hover {
  opacity: 0.7;
}

@media (min-width: 576px) {
  .wrapper {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .wrapper {
    max-width: 720px;
  }

  .main-headline-page_size_sm {
    font-size: 32px;
    line-height: 40px;
  }

  .main-headline-page {
    font-size: 32px;
    line-height: 40px;
  }

  .header .custom-logo {
    height: 60px;
  }

  .statisctics-section__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-radius: 32px;
    padding: 32px;
  }

  .statisctics-wgt {
    text-align: left;
    width: 50%;
  }

  .about-steps__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
  }

  .step-wgt {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 8px;
  }
}

@media (min-width: 992px) {
  .wrapper {
    max-width: 960px;
  }

  .main-link {
    font-size: 20px;
  }

  .btn {
    padding: 18px 24px;
    border-radius: 16px;
    font-size: 20px;
  }

  .main-headline-page {
    font-size: 48px;
    line-height: 56px;
  }

  .main-headline {
    font-size: 32px;
    line-height: 40px;
  }

  .header__inner {
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
  }

  .header__left,
  .header__right {
    width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .header__middle {
    display: block;
  }

  .header__control {
    display: block;
  }

  .header__language {
    display: block;
  }

  .header__mobile-menu-btn {
    display: none;
  }

  .front-banner__inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .front-banner__description p {
    font-size: 20px;
    line-height: 28px;
  }

  .front-banner__nav-item:last-child {
    padding-bottom: 0;
    padding-right: 0;
  }

  .front-banner__nav-item {
    padding-right: 32px;
    padding-bottom: 0;
  }

  .front-banner__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 48px;
  }

  .front-banner__btn-video-label {
    font-size: 20px;
  }

  .front-banner__gpt {
    padding-top: 0;
    padding-bottom: 48px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .front-banner__customers {
    display: block;
  }

  .front-banner__thumb_first {
    display: block;
  }

  .front-banner__thumb_second {
    display: block;
  }

  .front-banner__thumb {
    position: absolute;
    right: -55%;
    bottom: -86px;
    max-width: 1920px;
    -webkit-transform: rotate(-22deg);
        -ms-transform: rotate(-22deg);
            transform: rotate(-22deg);
    z-index: 10;
  }

  .front-about-wgt__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .front-about-wgt__thumb {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-right: 64px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .front-about-wgt__content {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .front-about-wgt__headline-wrap {
    text-align: left;
  }

  .front-about-wgt__description {
    text-align: left;
    font-size: 20px;
    line-height: 24px;
  }

  .front-about-wgt_reverse .front-about-wgt__thumb {
    padding-right: 0;
    padding-left: 64px;
  }

  .front-about-wgt__footer {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .front-about-wgt {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .video-section__play-btn svg {
    width: 35px;
    height: 35px;
  }

  .video-section__play-btn {
    width: 105px;
    height: 105px;
    min-width: 105px;
  }

  .video-section {
    padding-bottom: 64px;
  }

  .started-section__inner {
    padding: 64px;
    border-radius: 32px;
  }

  .started-section__headline-wrap {
    padding-bottom: 32px;
  }

  .started-section__description {
    font-size: 20px;
    line-height: 28px;
  }

  .started-section {
    padding-bottom: 64px;
  }

  .about-banner__inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-banner__headline-wrap {
    max-width: 65%;
    text-align: left;
  }

  .about-banner__description p {
    font-size: 36px;
    line-height: 42px;
  }

  .about-banner__description {
    max-width: 90%;
    text-align: left;
  }

  .about-banner__thumbnails {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 35%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .about-steps__headline-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .about-steps__headline-gpt {
    width: 115px;
    margin-bottom: 0;
    margin-right: 32px;
  }

  .step-wgt__headline-wrap {
    font-size: 18px;
  }

  .step-wgt__headline {
    font-size: 24px;
    line-height: 28px;
  }

  .step-wgt__question {
    font-size: 18px;
  }

  .about-advantages__headline-wrap {
    text-align: left;
  }

  .about-advantages__items ul li svg {
    width: 32px;
    height: 24px;
  }

  .about-advantages__items ul li span {
    font-size: 18px;
  }

  .about-advantages__items ul li {
    padding: 16px 0;
  }

  .about-advantages__footer {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .blog-list__headline-wrap {
    text-align: left;
  }

  .blog-list__description {
    font-size: 20px;
    line-height: 24px;
    text-align: left;
  }

  .blog-list__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
    padding-bottom: 32px;
  }

  .blog-list__footer {
    padding-top: 0;
  }

  .blog-list {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .blog-wgt {
    width: 33.3333333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 8px;
  }

  .price-banner__description {
    font-size: 20px;
    line-height: 24px;
  }

  .price-banner {
    padding: 64px 0;
  }

  .price-content__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-left: -8px;
    margin-right: -8px;
  }

  .price-content {
    padding-bottom: 64px;
  }

  .price-wgt__headline-wrap {
    text-align: left;
  }

  .price-wgt__description p {
    font-size: 20px;
    line-height: 24px;
  }

  .price-wgt__description {
    text-align: left;
  }

  .price-wgt__values-current {
    line-height: 42px;
    font-size: 48px;
  }

  .price-wgt__values-old {
    font-size: 32px;
  }

  .price-wgt__values {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .price-wgt__period {
    text-align: left;
  }

  .price-wgt__items ul li span {
    padding-left: 8px;
    padding-top: 0;
  }

  .price-wgt__items ul li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 8px 0;
  }

  .price-wgt {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 8px;
  }

  .faq-banner__inner {
    padding: 32px;
    border-radius: 32px;
  }

  .faq-banner__headline-wrap {
    padding-bottom: 32px;
  }

  .archive-blog-news__description p {
    font-size: 20px;
    line-height: 24px;
  }

  .archive-blog-news {
    padding: 64px 0 32px 0;
  }

  .archive-last-news {
    padding: 16px 0 32px 0;
  }

  .last-news-wgt__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border-radius: 0;
    overflow: visibility;
  }

  .last-news-wgt__content {
    width: 500px;
    padding: 32px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    border-radius: 16px 0 0 16px;
  }

  .last-news-wgt__headline {
    font-size: 36px;
    line-height: 42px;
  }

  .last-news-wgt__description {
    display: block;
  }

  .last-news-wgt__thumb {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
    border-radius: 0 16px 16px 0;
  }

  .archive-blog-wgt__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .archive-blog-wgt__thumb {
    width: 450px;
    height: 350px;
  }

  .archive-blog-wgt__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .archive-blog-wgt__content {
    padding: 32px;
  }

  .archive-blog-wgt__headline {
    font-size: 36px;
    line-height: 42px;
  }

  .archive-blog-wgt__description p {
    font-size: 20px;
    line-height: 24px;
  }

  .archive-blog-wgt__description {
    display: block;
  }

  .single-blog-content__inner {
    width: 65%;
    margin: 0 auto;
  }

  .single-blog-content__headline-wrap {
    padding-bottom: 32px;
  }

  .single-blog-content__headline {
    font-size: 48px;
    line-height: 56px;
  }

  .single-blog-content__info {
    padding-bottom: 32px;
  }

  .single-blog-content {
    padding: 64px 0;
  }

  .contacts-page-content__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    border-radius: 32px;
  }

  .contacts-page-content__headline {
    text-align: left;
    font-size: 48px;
    line-height: 56px;
  }

  .contacts-page-content__unheadline-wrap {
    display: block;
  }

  .contacts-page-content__form {
    border-radius: 0 0 32px 32px;
  }

  .contacts-page-content__description p {
    font-size: 20px;
    line-height: 24px;
    text-align: left;
  }

  .contacts-page-content__form-headline {
    font-size: 36px;
  }

  .contacts-page-content {
    padding: 64px 0;
  }

  .not-found-content__description p {
    font-size: 20px;
    line-height: 28px;
  }

  .not-found-content {
    padding: 64px 0;
  }

  .mobile-menu {
    display: none !important;
  }

  .footer__top-left,
  .footer__top-right {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .footer__top-left {
    padding-right: 64px;
  }

  .footer__top-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 64px;
  }

  .footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .footer__description {
    text-align: left;
  }

  .footer__started-item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .footer__menu {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .footer__copy {
    text-align: left;
  }

  .footer-logo {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .footer-menu-wgt__headline {
    text-align: left;
  }

  .footer-menu-wgt ul li {
    text-align: left;
  }

  .footer-menu-wgt {
    padding-top: 48px;
  }
}

@media (min-width: 1200px) {
  .wrapper {
    max-width: 1140px;
  }

  .field-input__search {
    height: 60px;
    padding: 8px 16px 8px 64px;
    font-size: 20px;
    border-radius: 16px;
  }

  .main-headline-page_size_sm {
    font-size: 36px;
    line-height: 44px;
  }

  .main-headline-page_size_sm {
    font-size: 48px;
    line-height: 56px;
  }

  .main-headline-page {
    font-size: 64px;
    line-height: 72px;
  }

  .main-headline {
    font-size: 48px;
    line-height: 56px;
  }

  .front-banner__content {
    width: 65%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .front-banner__headline-wrap {
    max-width: 75%;
    text-align: left;
  }

  .front-banner__description {
    max-width: 90%;
    text-align: left;
  }

  .statisctics-wgt {
    width: 25%;
    padding: 0;
  }

  .video-section__headline-wrap {
    text-align: left;
  }

  .video-section__headline-wrap {
    max-width: 60%;
  }

  .started-section__content {
    max-width: 70%;
  }

  .about-banner__content {
    width: 65%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .about-advantages__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .about-advantages__thumb,
  .about-advantages__content {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .about-advantages__thumb {
    padding-right: 64px;
  }

  .blog-list__header {
    max-width: 60%;
  }

  .price-banner__inner {
    max-width: 65%;
    margin: 0 auto;
  }

  .faq-banner__search-icon {
    width: 30px;
    height: 30px;
  }

  .faq-content__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .faq-content__nav {
    width: 250px;
  }

  .faq-content__nav-headline-wrap {
    display: block;
    border: none;
    padding: 0 0 16px 0;
    margin-bottom: 0;
    border-radius: 0;
    cursor: unset;
  }

  .faq-content__nav-headline {
    font-size: 20px;
    line-height: 24px;
  }

  .faq-content__nav-dropdown-icon {
    display: none;
  }

  .faq-content__nav-choose-items {
    display: block;
  }

  .faq-content__nav-items ul li button:hover {
    opacity: 0.7;
    -webkit-transform: translateX(4px);
        -ms-transform: translateX(4px);
            transform: translateX(4px);
  }

  .faq-content__nav-items ul li button {
    padding: 0;
  }

  .faq-content__nav-items ul li {
    border-bottom: none;
  }

  .faq-content__nav-items {
    padding-right: 64px;
    position: sticky;
    top: 32px;
    border-right: 1px solid #EBEBEB;
  }

  .faq-content__accordion {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 64px;
  }

  .archive-blog-news__description {
    max-width: 60%;
  }

  .contacts-page-content__info {
    width: 60%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 64px;
    border-radius: 32px 0 0 32px;
  }

  .contacts-page-content__form {
    width: 40%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    border-radius: 32px;
  }

  .not-found-content__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .not-found-content__info,
  .not-found-content__thumb {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .not-found-content__info {
    padding-right: 64px;
  }

  .not-found-content__thumb-mob {
    display: none;
  }

  .not-found-content__thumb {
    padding-left: 64px;
    display: block;
  }

  .not-found-content__headline-wrap {
    text-align: left;
    padding-bottom: 32px;
  }

  .not-found-content__description {
    text-align: left;
    padding-bottom: 32px;
  }

  .not-found-content__nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .footer__started-item:last-child {
    padding-right: 0;
  }

  .footer__started-item {
    padding-right: 16px;
    padding-bottom: 0;
  }

  .footer__started {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1440px) {
  .wrapper {
    max-width: 1320px;
  }
}

@media (min-width: 1920px) {
  .wrapper {
    max-width: 1600px;
  }
}

@media (max-width: 1199px) {
  .faq-content__nav-choose-items {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #DADADA;
    padding: 16px;
  }
}