:root {
  --font-family: "Poppins";
  --content-width: 1340px;
  --container-offset: 50px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --colorMain: #170038;
  --colorBg1: #47009c;
  --colorBg2: #7600ff;
  --colorPurple: #534072;
  --colorGreen: #14efb5;
  --colorWhite: #ffffff;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/../fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/../fonts/Poppins-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/../fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/../fonts/Poppins-ExtraBold.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/../fonts/GothamPro.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/../fonts/GothamPro-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/../fonts/Gotham-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.all_pages {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 101;
}
.all_pages:hover ul {
  right: 0;
}
.all_pages .page_point {
  padding: 10px 15px;
  background: #00d2ff;
  cursor: pointer;
}
.all_pages ul {
  background: #00d2ff;
  padding: 15px 20px;
  position: absolute;
  top: 100%;
  width: 200px;
  right: -200px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  max-height: 480px;
  overflow-y: auto;
}
.all_pages ul li {
  list-style: none;
  margin-bottom: 15px;
  font-size: 16px;
}
.all_pages ul li a {
  color: #fff;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
  color: var(--colorMain);
}
.page__body.lock {
  overflow: hidden;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.btn-outline {
  padding: 8px 25px;
  border: 1px solid #14efb5;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: var(--colorMain);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn-outline:hover {
  background-color: var(--colorGreen);
}
@media (max-width: 768px) {
  .btn-outline {
    padding: 6px 20px;
    font-size: 14px;
  }
}

.btn {
  padding: 8px 25px;
  border: 1px solid #14efb5;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: var(--colorMain);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: var(--colorGreen);
}
.btn:hover {
  background-color: transparent;
}
@media (max-width: 768px) {
  .btn {
    padding: 6px 20px;
    font-size: 14px;
  }
}

.title {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 44px;
  line-height: 53px;
  letter-spacing: 0.5px;
}
@media (max-width: 1200px) {
  .title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media (max-width: 992px) {
  .title {
    font-size: 32px;
    line-height: 37px;
  }
}
@media (max-width: 576px) {
  .title {
    font-size: 32px;
    line-height: 37px;
    letter-spacing: 0.5px;
  }
}

.scroll-down {
  position: relative;
  z-index: 10;
  position: absolute;
  right: 7px;
  bottom: 35px;
}
.scroll-down .container {
  position: relative;
}
.scroll-down span {
  font-size: 15px;
  line-height: 24px;
  color: var(--colorMain);
  position: absolute;
  bottom: 90px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: -40px;
  display: block;
  width: 100px;
}
.scroll-down img {
  z-index: 100;
}

@media (max-width: 400px) {
  .price .scroll-down {
    right: 3px;
  }
}

@media (max-width: 400px) {
  .case .scroll-down {
    right: 3px;
  }
}

.product .scroll-down {
  bottom: auto;
  top: 200px;
}
@media (max-width: 500px) {
  .product .scroll-down {
    right: 3px;
  }
}

@media (max-width: 400px) {
  .blog .scroll-down {
    right: 3px;
  }
}

@media (max-width: 992px) {
  .single .scroll-down {
    bottom: 220px;
  }
}
@media (max-width: 576px) {
  .single .scroll-down {
    right: 2px;
  }
}

@media (max-width: 992px) {
  .contact .scroll-down {
    right: 3px;
    bottom: auto;
    top: 180px;
  }
}

.cookies {
  padding-top: 17px;
  padding-bottom: 14px;
  background-color: var(--colorMain);
  position: relative;
  z-index: 200;
  color: var(--colorWhite);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}
.cookies__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cookies__text {
  line-height: 26px;
}
@media (max-width: 768px) {
  .cookies__text {
    font-size: 13px;
    line-height: 18px;
  }
}
@media (max-width: 576px) {
  .cookies__text {
    font-size: 12px;
    line-height: 16px;
  }
}
.cookies__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .cookies__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.cookies__btn:nth-child(1) {
  color: var(--colorWhite);
  margin-left: 100px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cookies__btn:nth-child(1):hover {
  color: var(--colorGreen);
}
.cookies__btn:nth-child(2) {
  margin-left: 30px;
}
.cookies__btn:nth-child(2):hover {
  color: var(--colorWhite);
}
@media (max-width: 768px) {
  .cookies__btn:nth-child(1) {
    margin-left: 30px;
    margin-bottom: 10px;
  }
  .cookies__btn:nth-child(2) {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}

.header {
  padding: 17.7px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header.backgroundWhite {
  background-color: white;
  padding: 10px 0;
  border-bottom: 1px solid rgba(50, 62, 72, 0.3);
}
@media (max-width: 1100px) {
  .header.backgroundWhite {
    padding-bottom: 60px;
    padding-top: 20px;
  }
}
.header__wrap {
  position: relative;
  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;
}
.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__logo .logo-white {
  display: none;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__login {
  font-size: 15px;
  line-height: 24px;
}
.header__login a {
  position: relative;
  margin: 0 5px;
  color: var(--colorMain);
}
.header__login a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--colorMain);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header__login a:hover:after {
  width: 100%;
}
.header__lang {
  margin: 0 25px;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  padding: 5px 7px;
  border-radius: 3px;
}
.header__lang:hover {
  background-color: var(--colorGreen);
}
.header__lang > ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
}
.header__lang > ul > li {
  padding: 2px 5px;
  background-color: var(--colorGreen);
  border-radius: 3px;
  margin-top: 3px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header__lang > ul > li:hover {
  background-color: #0a9570;
}
.header__lang:hover.header__lang > ul {
  display: block;
}

.nav-menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 48px;
}
.nav-menu > ul > li {
  margin-left: 10px;
}
.nav-menu > ul > li > a {
  font-size: 15px;
  line-height: 24px;
  color: #000000;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
}
.nav-menu > ul > li > a.active {
  font-weight: 700;
  color: var(--colorMain);
}
.nav-menu > ul > li > a:hover {
  background-color: var(--colorGreen);
}

.burger__wrap {
  position: absolute;
  border-radius: 4px;
  display: none;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  background-color: var(--colorGreen);
  width: 40px;
  height: 40px;
  padding: 5px;
}

.burger {
  width: 22px;
  height: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.burger:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 22px;
  height: 2px;
  background-color: var(--colorMain);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: translate(-50%, -8px);
  -ms-transform: translate(-50%, -8px);
  transform: translate(-50%, -8px);
}
.burger:before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 22px;
  height: 2px;
  background-color: var(--colorMain);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: translate(-50%, 8px);
  -ms-transform: translate(-50%, 8px);
  transform: translate(-50%, 8px);
}
.burger span {
  position: absolute;
  width: 22px;
  height: 2px;
  display: block;
  left: 50%;
  display: inline-block;
  background-color: var(--colorMain);
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.burger.open:after {
  -webkit-transform: rotate(-45deg) translateY(-1px);
  -ms-transform: rotate(-45deg) translateY(-1px);
  transform: rotate(-45deg) translateY(-1px);
  left: 11px;
}
.burger.open:before {
  -webkit-transform: rotate(45deg) translateY(2px);
  -ms-transform: rotate(45deg) translateY(2px);
  transform: rotate(45deg) translateY(2px);
  left: 11px;
}
.burger.open span {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.promo, .talent {
  position: relative;
  padding-top: 140px;
  background-blend-mode: multiply;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(70%, #fff), to(rgba(20, 239, 181, 0.2)));
  background: -o-linear-gradient(left top, #fff 70%, rgba(20, 239, 181, 0.2) 100%);
  background: linear-gradient(to right bottom, #fff 70%, rgba(20, 239, 181, 0.2) 100%);
  overflow: hidden;
}
.promo .container, .talent .container {
  padding-bottom: 185px;
}
.promo__wrap, .talent__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;
}
.promo__descr, .talent__descr {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
}
.promo__suptitle, .talent__suptitle {
  font-size: 15px;
  line-height: 24px;
}
.promo__title, .talent__title {
  margin-top: 8px;
}
.promo__text, .talent__text {
  line-height: 26px;
  margin-top: 30px;
}
.promo__buttons, .talent__buttons {
  margin-top: 30px;
}
.promo__btn:first-child, .talent__btn:first-child {
  margin-right: 30px;
}
.promo__img, .talent__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 60;
  flex: 0 1 60;
}
.promo__img img, .talent__img img {
  -webkit-transform: translateX(21px);
  -ms-transform: translateX(21px);
  transform: translateX(21px);
}

.trusting {
  color: var(--colorWhite);
  background-blend-mode: multiply;
  background: -webkit-gradient(linear, left top, right top, from(#24193a), to(#2e1a4c));
  background: -o-linear-gradient(left, #24193a 0%, #2e1a4c 100%);
  background: linear-gradient(to right, #24193a 0%, #2e1a4c 100%);
}
.trusting .container {
  padding-right: 0;
  padding-left: 0;
}
.trusting__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 992px) {
  .trusting__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.trusting__left {
  padding-bottom: 50px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  background-image: url("../img/union-left.png");
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.trusting__left img:last-child {
  display: none;
}
.trusting__right {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  flex: 0 1 50%;
  background-image: url("../img/Union.png");
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.trusting__right img:last-child {
  display: none;
}
@media (max-width: 768px) {
  .trusting__right {
    background-position: 0 -55px;
    padding-bottom: 0;
    background-color: var(--colorMain);
  }
}

.left-trusting__two {
  display: none;
}
.left-trusting__title {
  padding: 60px 30px 0 53px;
  font-size: 48px;
  line-height: 53px;
  letter-spacing: 0.5px;
}
@media (min-width: 992px) {
  .left-trusting__title {
    height: 311px;
  }
}
@media (max-width: 1200px) {
  .left-trusting__title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media (max-width: 992px) {
  .left-trusting__title {
    font-size: 32px;
    line-height: 37px;
  }
}
@media (max-width: 576px) {
  .left-trusting__title {
    font-size: 32px;
    line-height: 37px;
    letter-spacing: 0.5px;
  }
}
.left-trusting__img {
  position: relative;
}
@media (min-width: 992px) {
  .left-trusting__img {
    min-height: 600px;
  }
}
.left-trusting__img img,
.left-trusting__img svg {
  position: relative;
  top: 24px;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1440px) {
  .left-trusting__img img,
.left-trusting__img svg {
    right: -122px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1439px) {
  .left-trusting__img img,
.left-trusting__img svg {
    right: auto;
    left: 8.4vw;
  }
}
@media (max-width: 992px) {
  .left-trusting__img img,
.left-trusting__img svg {
    position: static;
  }
}
@media (max-width: 576px) {
  .left-trusting__img img,
.left-trusting__img svg {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.right-trusting__two {
  display: none;
}
.right-trusting__content {
  padding: 71px 73px 40px 51px;
  line-height: 26px;
}
@media screen and (max-width: 1200px) {
  .right-trusting__content {
    padding: 20px;
    padding-top: 45px;
  }
}
@media (min-width: 992px) {
  .right-trusting__content {
    height: 311px;
  }
}
.right-trusting__content span {
  font-weight: 700;
}
.right-trusting__btn {
  display: block;
  margin-top: 32px;
  display: block;
  margin-right: auto;
  max-width: 240px;
}
.right-trusting__btn:hover {
  color: var(--colorWhite);
}
.right-trusting__img {
  position: relative;
}
@media (min-width: 992px) {
  .right-trusting__img {
    min-height: 600px;
  }
}
@media screen and (max-width: 992px) {
  .right-trusting__img {
    margin-top: 30px;
  }
}
.right-trusting__img img,
.right-trusting__img svg {
  width: 100%;
  height: auto;
  position: relative;
  top: 0;
  left: -23px;
}
@media (min-width: 992px) {
  .right-trusting__img img,
.right-trusting__img svg {
    max-width: 500px;
  }
}
@media (max-width: 992px) {
  .right-trusting__img img,
.right-trusting__img svg {
    position: static;
  }
}
@media (max-width: 576px) {
  .right-trusting__img img,
.right-trusting__img svg {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.chart_list {
  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;
  padding: 10px;
}
.chart_list li {
  padding-left: 15px;
  position: relative;
}
.chart_list li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
}
.chart_list li div::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  border: 3px solid #47009C;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50%;
  margin-right: 16px;
}
.chart_list li div.with::before {
  border-color: #14EFB5;
}

.calculator {
  padding-top: 100px;
  padding-bottom: 100px;
}
.calculator__suptitle {
  text-align: center;
}
.calculator__title {
  text-align: center;
}
.calculator__wrap {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.calculator__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
.calculator__right {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

#rangevalue {
  position: absolute;
  top: 0;
  left: 0;
}

.range_container {
  position: relative;
  padding-top: 70px;
}

.left-calculator {
  padding-right: 113px;
  /* input {
    display: inline-block;
  }
  .slider {
    position: relative;
    appearance: none;
    width: 100%;
    //max-width: 557px;

    height: 20px;
    background: linear-gradient(90deg, var(--colorWhite) 68%, var(--colorWhite) 68%);
    border-radius: 10px;
    position: relative;
    box-shadow: 4px 4px 8px 2px rgba(78, 77, 77, 0.25);
  }
  .slider::-webkit-slider-thumb {
    appearance: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background-image: url("../img/circle-slider.png");
    position: relative;
  }
  .slider::-moz-range-thumb {
    appearance: none;
    -moz-appearance: none;
    border-radius: 50%;
    border: none;
    outline: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background-image: url("../img/circle-slider.png");
    position: relative;
  }
  #value {
    background: #ffffff;
    box-shadow: 4px 4px 8px 2px rgba(189, 189, 189, 0.25);
    border-radius: 5px;
    font-size: 16px;
    line-height: 26px;
    //margin-top: 30px;
    margin: 30px auto 0 auto;
    display: flex;
    justify-content: center;
    width: 40px;
    padding: 3px 5px;
  } */
  /* Input Thumb */
  /* input[type="range"]::-webkit-slider-thumb:hover {
    background: #ff0200;
  }

  input[type="range"]::-moz-range-thumb:hover {
    background: #ff0200;
  }

  input[type="range"]::-ms-thumb:hover {
    background: #ff0200;
  } */
  /* Input Track */
}
.left-calculator .num {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.left-calculator label {
  font-family: "Gotham";
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  display: block;
}
.left-calculator input,
.left-calculator output {
  display: inline-block;
  vertical-align: middle;
  font-size: 1em;
}
.left-calculator output {
  background: var(--colorWhite);
  -webkit-box-shadow: 4px 4px 8px 2px rgba(189, 189, 189, 0.25);
  box-shadow: 4px 4px 8px 2px rgba(189, 189, 189, 0.25);
  border-radius: 5px;
  line-height: 26px;
  color: var(--colorMain);
  width: 51px;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  display: block;
  margin: 10px auto 25px auto;
}
.left-calculator input[type=number] {
  width: 100%;
  padding: 4px 5px;
  border: 1px solid #bbb;
  border-radius: 3px;
}
@media screen and (min-width: 769px) {
  .left-calculator input[type=number] {
    max-width: 557px;
  }
}
.left-calculator input[type=range]:focus,
.left-calculator input[type=number]:focus {
  /* box-shadow: 0 0 3px 1px #4b81dd; */
  outline: none;
}
.left-calculator input[type=range] {
  -webkit-appearance: none;
  margin-right: 15px;
  width: 100%;
  height: 20px;
  background: var(--colorWhite);
  border-radius: 5px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--colorGreen)), to(var(--colorGreen)));
  background-image: -o-linear-gradient(var(--colorGreen), var(--colorGreen));
  background-image: linear-gradient(var(--colorGreen), var(--colorGreen));
  background-size: 68% 100%;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 0 3px 1px #a5a8ac;
  box-shadow: 0 0 3px 1px #a5a8ac;
}
@media screen and (min-width: 769px) {
  .left-calculator input[type=range] {
    max-width: 557px;
  }
}
.left-calculator input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background: var(--colorWhite);
  border: 5px solid var(--colorGreen);
  cursor: pointer;
  outline: 3px solid var(--colorGreen);
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.left-calculator input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background: var(--colorWhite);
  border: 5px solid var(--colorGreen);
  cursor: pointer;
  box-shadow: 0 0 2px 0 #555;
  -moz-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.left-calculator input[type=range]::-ms-thumb {
  -webkit-appearance: none;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background: var(--colorWhite);
  border: 5px solid var(--colorGreen);
  cursor: pointer;
  box-shadow: 0 0 2px 0 #555;
  -ms-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.left-calculator input[type=range]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  background: transparent;
}
.left-calculator input[type=range]::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}
.left-calculator input[type=range]::-ms-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.right-calculator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.right-calculator p {
  margin: 3px 0;
  font-size: 15px;
  line-height: 24px;
}
.right-calculator span {
  font-family: "Gotham";
  font-size: 48px;
  line-height: 53px;
  letter-spacing: 0.5px;
  font-weight: 700;
  display: block;
}
.right-calculator__btn:nth-of-type(1) {
  margin-top: 40px;
  margin-bottom: 24px;
}
.quality {
  background-color: #422670;
  padding-top: 80px;
  padding-bottom: 80px;
  color: var(--colorWhite);
}
.quality__wrap {
  max-width: 1187px;
  margin: 0 auto;
}
.quality__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.quality__item {
  padding: 24px 32px;
  border: 1px solid var(--colorWhite);
  width: 345px;
  cursor: pointer;
}
.quality__item:hover, .quality__item.active {
  color: var(--colorGreen);
  border: 1px solid var(--colorGreen);
  -o-border-image: -o-linear-gradient(right top, var(--colorGreen) 10%, var(--colorGreen) 30%, var(--colorGreen) 60%, #155242 80%);
  border-image: -webkit-gradient(linear, right top, left bottom, color-stop(10%, var(--colorGreen)), color-stop(30%, var(--colorGreen)), color-stop(60%, var(--colorGreen)), color-stop(80%, #155242));
  border-image: linear-gradient(to left bottom, var(--colorGreen) 10%, var(--colorGreen) 30%, var(--colorGreen) 60%, #155242 80%);
  border-image-slice: 1;
}
.quality__supname {
  font-size: 15px;
  line-height: 24px;
}
.quality__name {
  font-family: "Gotham";
  font-size: 48px;
  line-height: 53px;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.quality__content {
  margin-top: 56px;
}

.content-quality {
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.content-quality.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.content-quality__left {
  max-width: 555px;
  margin-right: 100px;
  line-height: 26px;
}
.content-quality__left span {
  font-weight: 700;
}
.content-quality__right blockquote {
  font-family: "Poppins";
  line-height: 26px;
  margin: 0;
  padding-left: 105px;
  background-image: url("../img/avatar.png");
  background-position: left top;
  background-size: 65px 65px;
  background-repeat: no-repeat;
}
.content-quality__right blockquote span {
  font-family: "Gotham";
  font-size: 26px;
  line-height: 30px;
  letter-spacing: 0.5px;
  color: var(--colorGreen);
}
.content-quality__name {
  padding-left: 105px;
  font-weight: 700;
  line-height: 26px;
  margin-top: 20px;
}

.video {
  padding-top: 100px;
  padding-bottom: 100px;
}
.video__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.video__block {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  width: 673px;
  height: 432px;
}
.video__block img {
  border-radius: 15px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 432px !important;
}
.video__descr {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  padding-left: 110px;
}
.video .play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 41px;
  height: 40px !important;
  cursor: pointer;
}

.descr-video__supname {
  font-size: 15px;
  line-height: 24px;
}
.descr-video__title {
  margin-top: 7px;
  font-size: 48px;
}
.descr-video__text {
  margin-top: 32px;
  line-height: 26px;
}
.descr-video__text span {
  font-weight: 700;
}

.ready-light {
  padding-top: 45px;
  padding-bottom: 60px;
  background-image: url("../img/bg-ready-light.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ready-light__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--colorWhite);
  max-width: 1187px;
  margin: 0 auto;
}
.ready-light__suptitle {
  font-size: 15px;
  line-height: 24px;
}
.ready-light__title {
  margin-top: 8px;
  font-size: 48px;
  line-height: 53px;
  letter-spacing: 0.5px;
}
.ready-light__right {
  padding-left: 105px;
  background-image: url("../img/avatar.png");
  background-size: 65px 65px;
  background-position: left top;
  background-repeat: no-repeat;
}
.ready-light__right blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  max-width: 350px;
}
.ready-light__right blockquote span {
  font-family: "Gotham";
  font-size: 26px;
  line-height: 30px;
  letter-spacing: 0.5px;
}
.ready-light__name {
  font-weight: 700;
  margin-top: 17px;
  margin-bottom: 10px;
}
.ready-light__btns {
  margin-top: 25px;
}
.ready-light__btns button:nth-of-type(1) {
  margin-right: 32px;
}
.ready-light__btns button:nth-of-type(1):hover {
  color: var(--colorWhite);
}
.ready-light__btns button:nth-of-type(2) {
  color: var(--colorWhite);
}
.ready-light__btns button:nth-of-type(2):hover {
  color: var(--colorMain);
}
.map {
  padding-top: 130px;
  padding-bottom: 90px;
}
.map__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.map__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  background-image: url("../img/map.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 90px;
  padding-bottom: 90px;
}
.map__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
.map__right {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
.map__suptitle {
  font-size: 15px;
  line-height: 24px;
}
.map__title {
  font-size: 48px;
}
.map__btn {
  display: inline-block;
  margin-top: 48px;
}

.testimonials {
  padding-top: 20px;
  padding-bottom: 100px;
  background-blend-mode: multiply;
  background: -webkit-gradient(linear, right top, left bottom, color-stop(60%, #fff), to(rgba(118, 0, 255, 0.2)));
  background: -o-linear-gradient(right top, #fff 60%, rgba(118, 0, 255, 0.2) 100%);
  background: linear-gradient(to left bottom, #fff 60%, rgba(118, 0, 255, 0.2) 100%);
}
.testimonials__suptitle {
  font-size: 15px;
  line-height: 24px;
}
.testimonials__suptitle_center {
  text-align: center;
}
.testimonials__title {
  font-size: 48px;
}
.testimonials__title_center {
  text-align: center;
}
.testimonials__wrap {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
}
.testimonials__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.testimonials__item span {
  display: inline;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  font-family: "Gotham";
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.5px;
  background-color: var(--colorGreen);
  padding: 11px 13px;
  border-radius: 5px;
}
.testimonials__block {
  position: relative;
  height: 220px;
}
.testimonials__block img {
  width: 340px;
  height: 220px;
  border-radius: 15px;
}
.testimonials .play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 41px;
  height: 40px !important;
  cursor: pointer;
}
.testimonials__info {
  margin-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.testimonials__descr {
  max-width: 450px;
}
.testimonials__text {
  margin-top: 32px;
  font-size: 16px;
  line-height: 26px;
}
.testimonials__list p {
  margin-bottom: 48px;
  line-height: 26px;
  color: #000000;
  padding-left: 78px;
  line-height: 40px;
  background-image: url("../img/bg-list.png");
  background-size: 40px 40px;
  background-position: left top;
  background-repeat: no-repeat;
}

.ready {
  padding-top: 100px;
  padding-bottom: 110px;
  background-image: url("../img/bg-ready.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.ready__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  color: var(--colorWhite);
  margin: 0 auto;
}
.ready__left {
  margin-right: 42px;
}
.ready__title {
  line-height: 44px;
  margin-top: 8px;
}
.ready__btns button:nth-of-type(1):hover {
  color: var(--colorWhite);
}
.ready__btns button:nth-of-type(2) {
  color: var(--colorWhite);
}
.ready__btns button:nth-of-type(2):hover {
  color: var(--colorMain);
}
.ready__btn {
  margin-left: 32px;
}

.price {
  padding-top: 140px;
  padding-bottom: 125px;
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}
@media (max-width: 992px) {
  .price {
    padding-top: 90px;
    padding-bottom: 65px;
  }
}
@media (max-width: 768px) {
  .price {
    padding-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .price {
    padding-top: 40px;
    padding-bottom: 25px;
  }
}
.price__title {
  text-align: center;
}
.price__subtitle {
  margin-top: 6px;
  text-align: center;
  max-width: 385px;
  margin: 0 auto;
  line-height: 26px;
}
@media (max-width: 576px) {
  .price__subtitle {
    margin-top: 15px;
  }
}
.price__switch {
  margin-top: 40px;
  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;
  position: relative;
}
@media (max-width: 576px) {
  .price__switch {
    margin-top: 20px;
  }
}
.price__switch_month.active {
  font-weight: bold;
}
.price__switch_year.active {
  font-weight: bold;
}
.price__wrap {
  margin-top: 48px;
  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;
}
@media (max-width: 993px) {
  .price__wrap {
    margin-top: 35px;
  }
}
@media (max-width: 968px) {
  .price__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .price__wrap {
    margin-top: 25px;
  }
}
.price__item {
  margin: 0 30px;
}
@media (max-width: 992px) {
  .price__item {
    margin: 0 15px 35px 15px;
  }
}
.price__item:last-child .item-price__month,
.price__item:last-child .item-price__starter {
  color: transparent;
}
.price__btn {
  margin-top: 16px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.price__btn:hover {
  color: var(--colorWhite);
}
.price .switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 24px;
  margin-right: 24px;
  margin-left: 24px;
}
.price .switch input {
  display: none;
}
.price .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--colorGreen);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.price .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.price input:checked + .slider {
  background-color: var(--colorGreen);
}
.price input:focus + .slider {
  -webkit-box-shadow: 0 0 1px var(--colorGreen);
  box-shadow: 0 0 1px var(--colorGreen);
}
.price input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.price .slider.round {
  border-radius: 34px;
}
.price .slider.round:before {
  border-radius: 50%;
}

.item-price {
  cursor: pointer;
  width: 274px;
  height: 430px;
  padding-top: 24px;
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  outline: 1px solid #e9e5e5;
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .item-price:after {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}
.item-price:nth-child(1) {
  border-radius: 12px;
  background-blend-mode: multiply;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.item-price:nth-child(1):after {
  content: "";
  background-color: rgba(228, 224, 224, 0.35);
  background-image: url("../img/bg-price-mobile-first.png");
  opacity: 0.35;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  border-radius: 6px;
  -webkit-filter: blur(3px);
  filter: blur(3px);
}
.item-price:nth-child(2) {
  background-blend-mode: multiply;
}
.item-price:nth-child(2):after {
  content: "";
  background: url("../img/bg-price-mobile-second.png") rgba(228, 224, 224, 0.35);
  opacity: 0.07;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  border-radius: 6px;
  -webkit-filter: blur(3px);
  filter: blur(3px);
}
.item-price:nth-child(3) {
  background-blend-mode: multiply;
}
.item-price:nth-child(3):after {
  content: "";
  background: url("../img/bg-price-mobile-third.png") rgba(228, 224, 224, 0.35);
  opacity: 0.35;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  border-radius: 6px;
  -webkit-filter: blur(3px);
  filter: blur(3px);
}
@media (max-width: 993px) {
  .item-price {
    padding-right: 10px;
    padding-left: 10px;
    position: relative;
  }
}
@media (max-width: 576px) {
  .item-price {
    width: 310px;
    height: 400px;
  }
}
.item-price:hover {
  background: #170038;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 6px;
  -webkit-transform: scale(1.2) translateZ(0);
  transform: scale(1.2) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: var(--colorWhite);
}
@media (max-width: 768px) {
  .item-price:hover {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.item-price p:nth-of-type(1) {
  margin-top: 65px;
}
@media (max-width: 993px) {
  .item-price p:nth-of-type(1) {
    margin-top: 35px;
  }
}
.item-price__month {
  font-size: 15px;
  line-height: 24px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.item-price__price {
  font-weight: 700;
  font-size: 44px;
  line-height: 53px;
  letter-spacing: 0.5px;
  margin-top: 8px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.item-price__starter {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  margin-top: 16px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.item-price__text {
  line-height: 22px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@-moz-document url-prefix() {
  .item-price {
    position: relative;
  }
}
.footer {
  color: var(--colorWhite);
  background-color: var(--colorMain);
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}
.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  max-width: 500px;
}
.footer__title {
  font-size: 48px;
}
.footer__text {
  line-height: 26px;
  margin-top: 40px;
}
.footer__btn {
  margin-top: 45px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__btn:hover {
  color: var(--colorWhite);
}
.footer__contact {
  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;
  height: 315px;
}
.footer__contact a {
  color: var(--colorWhite);
}
.footer__contact a:hover {
  text-decoration: underline;
  color: var(--colorGreen);
}
.footer__contact address {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.footer__title-sm {
  font-family: "Gotham";
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-top: 78px;
}
.footer__link {
  font-family: "Gotham";
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: var(--colorGreen) !important;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: underline;
}
.footer__link:hover {
  color: var(--colorWhite) !important;
  text-decoration: none !important;
}
.footer__social {
  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;
  height: 315px;
}
.footer__social-block {
  margin-top: -49px;
}
.footer__social-block a {
  font-family: "Gotham";
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: var(--colorWhite);
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: underline;
}
.footer__social-block a:hover {
  text-decoration: none;
  color: var(--colorGreen);
}
.footer__privacy {
  font-family: "Gotham";
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--colorWhite);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: underline;
}
.footer__privacy:hover {
  text-decoration: none;
  color: var(--colorGreen);
}

.scroll-up {
  position: relative;
  z-index: 10;
  position: absolute;
  right: 7px;
  bottom: 40px;
}
.scroll-up .container {
  position: relative;
}
.scroll-up span {
  font-size: 15px;
  line-height: 24px;
  color: var(--colorWhite);
  position: absolute;
  bottom: 90px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: -40px;
  display: block;
  width: 100px;
}
.scroll-up img {
  z-index: 100;
}

.trusted {
  padding-top: 100px;
  padding-bottom: 100px;
  background: -o-linear-gradient(355.11deg, #fbfbfb 1.63%, rgba(251, 251, 251, 0.58) 94.66%);
  background: linear-gradient(94.89deg, #fbfbfb 1.63%, rgba(251, 251, 251, 0.58) 94.66%);
}
@media (max-width: 768px) {
  .trusted {
    padding-top: 45px;
  }
}
@media (max-width: 576px) {
  .trusted {
    padding-bottom: 50px;
  }
}
.trusted__suptitle {
  text-align: center;
  font-size: 15px;
  line-height: 24px;
}
.trusted__title {
  margin-top: 10px;
  text-align: center;
  font-size: 48px;
  letter-spacing: 0.5px;
}
@media (max-width: 992px) {
  .trusted__title {
    font-size: 32px;
    line-height: 37px;
    margin: 10px auto 0 auto;
  }
}
@media (max-width: 576px) {
  .trusted__title {
    max-width: 312px;
  }
}
.trusted__wrap {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 992px) {
  .trusted__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 831px) {
  .trusted__wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .trusted__wrap {
    margin-top: 35px;
  }
}
.trusted__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.trusted__item span {
  display: inline;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  font-family: "Gotham";
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.5px;
  background-color: var(--colorGreen);
  padding: 11px 13px;
  border-radius: 5px;
}
@media (max-width: 576px) {
  .trusted__item span {
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .trusted__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.trusted__content {
  padding-top: 20px;
  max-width: 341px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 140px 100px;
  grid-template-rows: 140px 100px;
}
@media (max-width: 1200px) {
  .trusted__content {
    -ms-grid-rows: 170px 150px;
    grid-template-rows: 170px 150px;
  }
}
@media (max-width: 992px) {
  .trusted__content {
    -ms-grid-rows: 120px 100px;
    grid-template-rows: 120px 100px;
  }
}
@media (max-width: 992px) {
  .trusted__content {
    -ms-grid-rows: 130px 80px;
    grid-template-rows: 130px 80px;
  }
}
.trusted__text {
  line-height: 26px;
  color: #170038;
}
.trusted__name {
  margin-top: 20px;
  font-family: "Gotham";
  font-size: 26px;
  line-height: 30px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.case {
  padding-top: 100px;
  padding-bottom: 150px;
  background-blend-mode: multiply;
  background: #fbfbfb -o-linear-gradient(350deg, rgba(20, 239, 181, 0.2) 3%, #fff 30%);
  background: #fbfbfb linear-gradient(100deg, rgba(20, 239, 181, 0.2) 3%, #fff 30%);
}
@media (max-width: 992px) {
  .case {
    padding-bottom: 70px;
    padding-top: 50px;
  }
}
@media (max-width: 576px) {
  .case {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .case__wrap .case__block:first-child {
    margin-bottom: 60px;
  }
}
.case__wrap {
  margin-top: 40px;
}
.case__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 150px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.case__block:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .case__block {
    display: block;
  }
  .case__block:first-child {
    margin-bottom: 100px;
  }
}
.case__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  max-width: 558px;
  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;
  height: 432px;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
@media (max-width: 992px) {
  .case__info {
    max-width: 100%;
    margin-top: 30px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: auto;
  }
}
@media (max-width: 576px) {
  .case__info {
    height: auto;
  }
}
.case__suptitle {
  font-size: 15px;
  line-height: 24px;
}
.case__title {
  font-size: 48px;
  margin-top: 8px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .case__title {
    font-size: 32px;
    line-height: 37px;
  }
}
.case__tetx {
  line-height: 26px;
  margin-top: 30px;
}
@media (max-width: 1200px) {
  .case__tetx {
    margin-right: 20px;
  }
}
@media (max-width: 992px) {
  .case__tetx {
    margin-top: 15px;
  }
}
.case__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
}
.case__links span {
  display: block;
  font-size: 15px;
  line-height: 24px;
}
.case__links p {
  margin: 0;
  margin-top: 8px;
  font-family: "Gotham";
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.case__links a {
  margin-top: 8px;
  font-family: "Gotham";
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.5px;
  text-decoration: underline;
  font-weight: 700;
  color: var(--colorMain);
}
@media (max-width: 992px) {
  .case__links {
    margin-top: 20px;
  }
}
.case__when {
  margin-right: 135px;
}
.case__download a:hover {
  text-decoration: none;
}
.case__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  width: 671px;
  height: 432px;
  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: var(--colorWhite);
  -webkit-box-shadow: 4px 4px 8px 2px rgba(189, 189, 189, 0.25);
  box-shadow: 4px 4px 8px 2px rgba(189, 189, 189, 0.25);
  border-radius: 6px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .case__img {
    margin-right: 20px;
  }
}
@media (max-width: 992px) {
  .case__img {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .case__img {
    width: 90%;
    height: 300px;
  }
}
@media (max-width: 576px) {
  .case__img {
    height: 200px;
  }
  .case__img img {
    width: 50%;
  }
}

.team {
  padding-top: 147px;
  padding-bottom: 50px;
  background-blend-mode: multiply;
  background: -webkit-gradient(linear, right top, left bottom, color-stop(60%, #fff), to(rgba(20, 239, 181, 0.2)));
  background: -o-linear-gradient(right top, #fff 60%, rgba(20, 239, 181, 0.2) 100%);
  background: linear-gradient(to left bottom, #fff 60%, rgba(20, 239, 181, 0.2) 100%);
}
@media (max-width: 1100px) {
  .team {
    padding-top: 130px;
  }
}
@media (max-width: 992px) {
  .team {
    padding-top: 60px;
  }
}
@media (max-width: 576px) {
  .team {
    padding-top: 40px;
  }
}
.team__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 32px;
}
.team__wrap p {
  line-height: 26px;
}
@media (max-width: 768px) {
  .team__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .team__wrap {
    margin-top: 20px;
  }
}
.team__textleft {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  padding-right: 100px;
}
@media (max-width: 1100px) {
  .team__textleft {
    padding-right: 50px;
  }
}
@media (max-width: 768px) {
  .team__textleft {
    padding-right: 0;
    padding-right: 20px;
  }
}
.team__textright {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  padding-right: 100px;
}
@media (max-width: 1100px) {
  .team__textright {
    padding-right: 50px;
  }
}
@media (max-width: 768px) {
  .team__textright {
    padding-right: 0;
  }
}
.team__btn {
  margin-top: 42px;
}
@media (max-width: 768px) {
  .team__btn {
    margin-top: 30px;
  }
}

.teamtabs {
  padding-top: 50px;
  padding-bottom: 75px;
  background-blend-mode: multiply;
  background: -webkit-gradient(linear, right bottom, left top, color-stop(60%, #fff), to(rgba(20, 239, 181, 0.2)));
  background: -o-linear-gradient(right bottom, #fff 60%, rgba(20, 239, 181, 0.2) 100%);
  background: linear-gradient(to left top, #fff 60%, rgba(20, 239, 181, 0.2) 100%);
}
@media (max-width: 768px) {
  .teamtabs {
    padding-bottom: 50px;
  }
}
.teamtabs__suptitle {
  font-size: 15px;
  line-height: 24px;
}
@media (max-width: 460px) {
  .teamtabs__suptitle {
    text-align: center;
  }
}
@media (max-width: 460px) {
  .teamtabs__title {
    text-align: center;
  }
}
.teamtabs .hide {
  display: none;
}

.tabs__wrap {
  margin-top: 32px;
}
.tabs__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 460px) {
  .tabs__items {
    text-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.tabs__item {
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  padding: 8px 25px;
  background-color: var(--colorWhite);
  margin-right: 16px;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  /* &:hover {
    background-color: rgb(235, 230, 230);
  } */
}
@media (max-width: 521px) {
  .tabs__item {
    margin-bottom: 16px;
  }
}
.tabs__item:hover {
  color: var(--colorWhite);
  background-color: var(--colorMain);
  border-radius: 6px;
}
.tabs__content {
  margin-top: 24px;
}

.content-tabs__items {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1433px) {
  .content-tabs__items {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.content-tabs__item {
  cursor: pointer;
}
@media (max-width: 671px) {
  .content-tabs__item {
    text-align: center;
  }
}
.content-tabs__img {
  background: var(--colorWhite);
  -webkit-box-shadow: 4px 4px 8px 2px rgba(189, 189, 189, 0.25);
  box-shadow: 4px 4px 8px 2px rgba(189, 189, 189, 0.25);
  border-radius: 6px;
  width: 296px;
  height: 378px;
  overflow: hidden;
}
.content-tabs__img img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.content-tabs__img:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.content-tabs__worker {
  font-size: 15px;
  line-height: 24px;
  margin-top: 20px;
}
.content-tabs__name {
  font-family: "Gotham";
  font-weight: 700;
  font-size: 16px;
  line-height: 31px;
}

.question {
  padding-top: 75px;
  padding-bottom: 100px;
  background-blend-mode: multiply;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(80%, #fff), to(rgba(118, 0, 255, 0.2)));
  background: -o-linear-gradient(left top, #fff 80%, rgba(118, 0, 255, 0.2) 100%);
  background: linear-gradient(to right bottom, #fff 80%, rgba(118, 0, 255, 0.2) 100%);
}
@media (max-width: 992px) {
  .question {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}
@media (max-width: 576px) {
  .question {
    padding-bottom: 50px;
    padding-top: 15px;
  }
}
.question__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .question__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.question__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  padding-right: 80px;
}
@media (max-width: 1200px) {
  .question__left {
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .question__left {
    padding-right: 0px;
  }
}
.question__suptitle {
  font-size: 15px;
  line-height: 24px;
}
@media (max-width: 576px) {
  .question__suptitle {
    text-align: center;
  }
}
.question__title {
  font-size: 48px;
  margin-top: 8px;
}
@media (max-width: 1200px) {
  .question__title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media (max-width: 576px) {
  .question__title {
    text-align: center;
    font-size: 32px;
    line-height: 37px;
  }
}
.question__text {
  font-size: 15px;
  line-height: 26px;
  margin-top: 30px;
}
.question__right {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  padding-left: 80px;
}
@media (max-width: 1200px) {
  .question__right {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .question__right {
    padding-left: 0px;
  }
}
.question__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 50px;
}
@media (max-width: 576px) {
  .question__contacts {
    margin-top: 25px;
  }
}
.question__contacts span {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 24px;
}
@media (max-width: 576px) {
  .question__contacts span {
    margin-bottom: 4px;
  }
}
@media (max-width: 400px) {
  .question__contacts span {
    margin-bottom: 0px;
  }
}
.question__phone a {
  font-family: "Gotham";
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: var(--colorMain);
}
@media (max-width: 576px) {
  .question__phone a {
    font-size: 25px;
  }
}
@media (max-width: 400px) {
  .question__phone a {
    font-size: 18px;
  }
}
.question__code {
  font-family: "Gotham";
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.question__code span {
  font-weight: 400;
}
@media (max-width: 576px) {
  .question__code {
    font-size: 25px;
    margin-right: 25px;
  }
}
@media (max-width: 400px) {
  .question__code {
    margin-right: 0px;
    font-size: 18px;
  }
}

.feed-form {
  position: relative;
}
@media (max-width: 768px) {
  .feed-form {
    margin-top: 20px;
  }
}
.feed-form label[for=name] {
  margin-top: 0;
}
.feed-form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000000;
  padding-bottom: 8px;
  outline: none;
}
.feed-form input::-webkit-input-placeholder {
  line-height: 24px;
  color: #cbcbcb;
}
.feed-form input::-moz-placeholder {
  line-height: 24px;
  color: #cbcbcb;
}
.feed-form input:-ms-input-placeholder {
  line-height: 24px;
  color: #cbcbcb;
}
.feed-form input::-ms-input-placeholder {
  line-height: 24px;
  color: #cbcbcb;
}
.feed-form input::placeholder {
  line-height: 24px;
  color: #cbcbcb;
}
.feed-form input[type=text] {
  font-size: 30px;
  font-weight: 700;
}
.feed-form input[type=text]::-webkit-input-placeholder {
  font-size: 30px;
  padding-top: 8px;
  font-weight: 700;
}
.feed-form input[type=text]::-moz-placeholder {
  font-size: 30px;
  padding-top: 8px;
  font-weight: 700;
}
.feed-form input[type=text]:-ms-input-placeholder {
  font-size: 30px;
  padding-top: 8px;
  font-weight: 700;
}
.feed-form input[type=text]::-ms-input-placeholder {
  font-size: 30px;
  padding-top: 8px;
  font-weight: 700;
}
.feed-form input[type=text]::placeholder {
  font-size: 30px;
  padding-top: 8px;
  font-weight: 700;
}
.feed-form__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.feed-form__wrapper div {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
.feed-form__wrapper div input {
  width: 100% !important;
}
@media (max-width: 576px) {
  .feed-form__wrapper {
    display: block;
  }
}
.feed-form label {
  display: block;
  line-height: 24px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.feed-form #email,
.feed-form #phone {
  width: 50%;
}
.feed-form textarea {
  width: 100%;
  resize: none;
  border: none;
  border-bottom: 1px solid #000000;
  height: 130px;
  outline: none;
  background-color: transparent;
}
.feed-form textarea::-webkit-input-placeholder {
  line-height: 24px;
  color: #cbcbcb;
}
.feed-form textarea::-moz-placeholder {
  line-height: 24px;
  color: #cbcbcb;
}
.feed-form textarea:-ms-input-placeholder {
  line-height: 24px;
  color: #cbcbcb;
}
.feed-form textarea::-ms-input-placeholder {
  line-height: 24px;
  color: #cbcbcb;
}
.feed-form textarea::placeholder {
  line-height: 24px;
  color: #cbcbcb;
}
.feed-form .button__wrap {
  text-align: right;
}
.feed-form__btn {
  margin-top: 32px;
}
.feed-form .error {
  color: red;
}

.product {
  padding-top: 147px;
  background-color: red;
  background-blend-mode: multiply;
  background: -o-linear-gradient(140deg, #fff 70%, rgba(20, 239, 181, 0.2) 100%);
  background: linear-gradient(-50deg, #fff 70%, rgba(20, 239, 181, 0.2) 100%);
}
.product_bottom {
  padding-top: 0;
  padding-bottom: 50px;
  background-blend-mode: multiply;
  background: -o-linear-gradient(140deg, #fff 0%, #fff 100%);
  background: linear-gradient(-50deg, #fff 0%, #fff 100%);
}
@media (max-width: 576px) {
  .product_bottom {
    padding-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .product {
    padding-top: 60px;
  }
}
@media (max-width: 576px) {
  .product {
    padding-top: 40px;
  }
}
.product__top {
  text-align: center;
}
.product__suptitle {
  font-size: 15px;
  line-height: 24px;
}
.product__title {
  font-size: 48px;
  margin-top: 8px;
}
@media (max-width: 992px) {
  .product__title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media (max-width: 576px) {
  .product__title {
    font-size: 32px;
    line-height: 37px;
  }
}
.product__btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .product__btn {
    margin-top: 15px;
  }
}
.product__wrap {
  margin-top: 59px;
}
@media (max-width: 768px) {
  .product__wrap {
    margin-top: 40px;
  }
}
.product__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.product__item:nth-child(odd) .product__info {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  padding-left: 0;
  padding-right: 98px;
}
@media (max-width: 1200px) {
  .product__item:nth-child(odd) .product__info {
    padding-right: 30px;
  }
}
@media (max-width: 992px) {
  .product__item:nth-child(odd) .product__info {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (max-width: 576px) {
  .product__item:nth-child(odd) .product__info {
    padding-right: 0px;
  }
}
@media (max-width: 992px) {
  .product__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.product__item .product__img_mb {
  margin-bottom: 25px;
}
.product__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  padding-left: 98px;
}
@media (max-width: 1200px) {
  .product__info {
    padding-left: 30px;
  }
}
@media (max-width: 992px) {
  .product__info {
    padding-left: 0px;
  }
}
.product__info p {
  line-height: 26px;
}
@media (max-width: 992px) {
  .product__info {
    margin-bottom: 20px !important;
  }
  .product__info:last-child {
    margin-bottom: 0 !important;
  }
}
.product__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  overflow: hidden;
  border-radius: 6px;
  background: #ffffff;
  -webkit-box-shadow: 4px 4px 8px 2px rgba(189, 189, 189, 0.25);
  box-shadow: 4px 4px 8px 2px rgba(189, 189, 189, 0.25);
  height: 430px;
  margin-bottom: 150px;
}
.product__img img {
  border-radius: 6px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1437px) {
  .product__img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 992px) {
  .product__img {
    max-width: 671px;
    margin-bottom: 25px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .product__img:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 576px) {
  .product .info-product__title {
    text-align: center;
  }
}
.product .info-product__suptitle {
  font-size: 15px;
  line-height: 24px;
}
@media (max-width: 576px) {
  .product .info-product__suptitle {
    text-align: center;
  }
}
.product .info-product__list {
  margin-top: 32px;
}
.product .info-product__list > ul > li {
  line-height: 26px;
  padding-left: 37px;
  margin-bottom: 24px;
  background-image: url("../img/marker-list.svg");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-position: left 7px;
}
.product .info-product__list > ul > li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .product .info-product__list > ul > li {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .product .info-product__list > ul > li {
    padding-left: 25px;
  }
}
@media (max-width: 1200px) {
  .product .info-product__list {
    margin-top: 15px;
  }
}
@media (max-width: 992px) {
  .product .info-product__list {
    margin-bottom: 20px !important;
  }
}
.blog {
  padding-top: 147px;
  background: -o-linear-gradient(140deg, #fff 70%, rgba(20, 239, 181, 0.2) 100%);
  background: linear-gradient(-50deg, #fff 70%, rgba(20, 239, 181, 0.2) 100%);
}
@media (max-width: 992px) {
  .blog {
    padding-top: 60px;
  }
}
@media (max-width: 576px) {
  .blog {
    padding-top: 40px;
  }
}
@media (max-width: 1433px) {
  .blog__title {
    text-align: center;
  }
}
.blog__wrap {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1433px) {
  .blog__wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 1027px) {
  .blog__wrap {
    row-gap: 30px;
  }
}
@media (max-width: 768px) {
  .blog__wrap {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
.blog__wrapbtn {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  display: none;
}
@media (max-width: 576px) {
  .blog__wrapbtn {
    display: block;
  }
}
.blog__item {
  width: 296px;
  border-radius: 6px;
  display: block;
}
.blog__img {
  border-radius: 6px;
  height: 378px;
  overflow: hidden;
}
.blog__img img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.blog__img img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-filter: sepia(100%) blur(1px);
  filter: sepia(100%) blur(1px);
}
.blog__info {
  margin-top: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.blog__info:hover .blog__date,
.blog__info:hover .blog__name {
  color: #594477;
  text-shadow: 0px 0px 0.5px rgba(70, 51, 97, 0.5);
}
.blog__date {
  font-size: 15px;
  line-height: 24px;
  color: var(--colorMain);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.blog__name {
  font-family: "Gotham";
  font-size: 23px;
  line-height: 25px;
  letter-spacing: 0.5px;
  color: var(--colorMain);
  margin-top: 10px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.blog__pagination {
  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;
  margin-top: 100px;
}
.blog__pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.blog__pagination .page-numbers {
  font-size: 15px;
  line-height: 15px;
  color: var(--colorMain);
  width: 40px;
  height: 40px;
  border: 1px solid var(--colorMain);
  border-radius: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0 auto;
  cursor: pointer;
}
.blog__pagination .page-numbers.dots {
  border: none;
  font-size: 28px;
  color: #bbbbbb;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 5px;
}
.blog__pagination .page-numbers.dots:hover {
  background-color: transparent;
  border: none;
  color: #bbbbbb;
}
.blog__pagination .page-numbers:hover {
  color: var(--colorWhite);
  background-color: var(--colorGreen);
  border: 1px solid var(--colorGreen);
}
.blog__pagination .page-numbers.current {
  color: var(--colorWhite);
  background-color: var(--colorGreen);
  border: 1px solid var(--colorGreen);
}
@media (max-width: 992px) {
  .blog__pagination {
    margin-top: 50px;
  }
}
@media (max-width: 576px) {
  .blog__pagination {
    display: none;
  }
}

.single {
  padding-top: 147px;
  background: -o-linear-gradient(140deg, #fff 50%, rgba(20, 239, 181, 0.2) 100%);
  background: linear-gradient(-50deg, #fff 50%, rgba(20, 239, 181, 0.2) 100%);
}
@media (max-width: 992px) {
  .single {
    padding-top: 60px;
  }
}
@media (max-width: 576px) {
  .single {
    padding-top: 40px;
  }
}
.single__wrap {
  max-width: 770px;
  margin: 0 auto;
}
.single__title {
  font-size: 48px;
  letter-spacing: -2px;
  line-height: 53px;
}
@media (max-width: 1200px) {
  .single__title {
    letter-spacing: 0.5px;
  }
}
@media (max-width: 992px) {
  .single__title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media (max-width: 576px) {
  .single__title {
    font-size: 32px;
    line-height: 37px;
  }
}
.single__author {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
}
.single__name {
  padding-left: 64px;
  background-image: url("../img/Oval.png");
  background-position: left center;
  background-size: 48px 48px;
  background-repeat: no-repeat;
  padding-top: 15px;
  padding-bottom: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-right: 43px;
}
@media (max-width: 576px) {
  .single__name {
    margin-right: 20px;
    font-size: 13px;
    background-size: 35px 35px;
    padding-top: 13px;
    padding-left: 44px;
  }
}
.single__date {
  padding-top: 15px;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 576px) {
  .single__date {
    font-size: 13px;
    padding-top: 13px;
  }
}
.single__content p {
  margin: 0;
}
.single__text {
  line-height: 24px;
  margin-top: 30px !important;
}
.single__text a {
  text-decoration: underline;
  font-weight: 700;
}
.single__text a:hover {
  text-decoration: none;
}
.single__text_weight {
  font-weight: 700;
  line-height: 24px;
  margin-top: 40px !important;
}
@media (max-width: 576px) {
  .single__text_weight {
    margin-top: 20px !important;
  }
}
.single__img {
  width: 100%;
  height: 432px;
  margin-top: 32px;
  background: #ffffff;
  -webkit-box-shadow: 4px 4px 8px 2px rgba(189, 189, 189, 0.25);
  box-shadow: 4px 4px 8px 2px rgba(189, 189, 189, 0.25);
  border-radius: 6px;
  overflow: hidden;
}
.single__img img {
  border-radius: 6px;
  height: auto;
  width: 100%;
}
@media (max-width: 770px) {
  .single__img {
    height: auto !important;
  }
  .single__img img {
    height: 100% !important;
  }
}
.single__images {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 576px) {
  .single__images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.single__imagesm {
  width: 364px;
  height: 204px;
  -webkit-box-shadow: 4px 4px 8px 2px rgba(189, 189, 189, 0.25);
  box-shadow: 4px 4px 8px 2px rgba(189, 189, 189, 0.25);
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .single__imagesm {
    width: 100%;
    margin-bottom: 20px;
  }
  .single__imagesm:last-child {
    margin-bottom: 0;
  }
}
.single__imagesm img {
  border-radius: 6px;
  height: auto;
  width: 100%;
}
@media (max-width: 770px) {
  .single__imagesm {
    height: auto !important;
  }
  .single__imagesm img {
    height: 100% !important;
  }
}
.single__social {
  margin-top: 40px;
  margin-bottom: 20px;
}
.single__social a {
  margin-left: 25px;
  color: var(--colorBg2);
  font-weight: 700;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.single__social a:hover {
  text-decoration: none;
}
@media (max-width: 576px) {
  .single__social a {
    margin-left: 12px;
  }
}

.contact {
  padding-top: 75px;
}
@media (max-width: 992px) {
  .contact {
    padding-top: 30px;
  }
}
@media (max-width: 576px) {
  .contact {
    padding-top: 10px;
  }
}

.autorisation {
  background: -o-linear-gradient(140deg, #fff 50%, rgba(20, 239, 181, 0.2) 100%);
  background: linear-gradient(-50deg, #fff 50%, rgba(20, 239, 181, 0.2) 100%);
}
.autorisation .error {
  color: red;
}
.autorisation__wrap {
  width: 100%;
  max-width: 557px;
  margin: 0 auto;
  text-align: center;
}
.autorisation__subtitle {
  line-height: 26px;
  margin-top: 6px;
}
.autorisation__passwrap {
  position: relative;
}
.autorisation__passwrap img {
  position: absolute;
  right: 15px;
  bottom: 20px;
  cursor: pointer;
}
.autorisation__form {
  margin-top: 45px;
}
.autorisation__form label {
  display: block;
  text-align: left;
  line-height: 24px;
  margin-bottom: 15px;
}
.autorisation__form input[type=text],
.autorisation__form input[type=password],
.autorisation__form input[type=email] {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000000;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 5px;
  outline: none;
  margin-bottom: 10px;
  background: transparent;
  font-size: 16px;
  border-radius: 0;
  /* &:focus {
    background-color: rgba(#14efb5, 0.1);
  } */
}
.autorisation__form input[type=text]::-webkit-input-placeholder, .autorisation__form input[type=password]::-webkit-input-placeholder, .autorisation__form input[type=email]::-webkit-input-placeholder {
  line-height: 24px;
  color: #cbcbcb;
}
.autorisation__form input[type=text]::-moz-placeholder, .autorisation__form input[type=password]::-moz-placeholder, .autorisation__form input[type=email]::-moz-placeholder {
  line-height: 24px;
  color: #cbcbcb;
}
.autorisation__form input[type=text]:-ms-input-placeholder, .autorisation__form input[type=password]:-ms-input-placeholder, .autorisation__form input[type=email]:-ms-input-placeholder {
  line-height: 24px;
  color: #cbcbcb;
}
.autorisation__form input[type=text]::-ms-input-placeholder, .autorisation__form input[type=password]::-ms-input-placeholder, .autorisation__form input[type=email]::-ms-input-placeholder {
  line-height: 24px;
  color: #cbcbcb;
}
.autorisation__form input[type=text]::placeholder,
.autorisation__form input[type=password]::placeholder,
.autorisation__form input[type=email]::placeholder {
  line-height: 24px;
  color: #cbcbcb;
}
.autorisation__form input[type=text].error,
.autorisation__form input[type=password].error,
.autorisation__form input[type=email].error {
  border-color: red;
}
.autorisation__form input[type=password] {
  position: relative;
}
.autorisation__form svg {
  position: absolute;
  right: 0;
}
.autorisation__switch {
  margin-top: 32px !important;
}
.autorisation__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.autorisation__checkbox label {
  margin-bottom: 0;
  margin-left: 15px;
}
@media (max-width: 576px) {
  .autorisation__checkbox label {
    font-size: 13px;
  }
}
.autorisation__checkbox a {
  margin-left: auto;
  font-size: 16px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #170038;
}
.autorisation__checkbox a:hover {
  -webkit-text-decoration-line: none;
  text-decoration-line: none;
}
@media (max-width: 576px) {
  .autorisation__checkbox a {
    font-size: 13px;
  }
}
.autorisation__checkbox input[type=checkbox] {
  position: relative;
  cursor: pointer;
}
.autorisation__checkbox input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  width: 22px;
  height: 22px;
  top: -4px;
  left: 0;
  border: 1px solid #170038;
  border-radius: 6px;
  background-color: white;
}
.autorisation__checkbox input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  border: solid var(--colorGreen);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: -2px;
  left: 7px;
}
.autorisation__checkbox_reg {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 400px;
}
.autorisation__checkbox_reg input {
  margin-top: 10px;
}
.autorisation__checkbox_reg label {
  margin-left: 20px;
  margin-top: 15px;
  text-align: left !important;
}
.autorisation__checkbox_reg div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.autorisation__btn:first-child {
  display: block;
  margin-left: auto;
  margin-bottom: 16px;
}
.autorisation .button__wrap {
  margin-top: 30px;
  text-align: right;
}
.autorisation .button__wrap_reg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: left;
}
.autorisation .button__wrap_reg a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 300px;
  padding-left: 32px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: var(--colorMain);
}
.autorisation .button__wrap_reg a:hover {
  text-decoration: none;
}
@media (max-width: 576px) {
  .autorisation .button__wrap_reg a {
    padding-left: 0;
    font-size: 13px;
    max-width: 60%;
  }
}
.autorisation select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-bottom: 1px solid #000000;
  width: 100%;
  outline: none;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 5px;
  line-height: 24px;
  color: #cbcbcb;
  margin-bottom: 10px;
  background-color: transparent;
  background-image: url("../img/bird.png");
  background-size: 14px 9px;
  background-position: 97% center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.autorisation .select__wrap {
  /* position: relative;
  &::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 15px;
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 1px solid #000;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    cursor: pointer;
  } */
}
.autorisation option {
  color: var(--colorMain);
}
.autorisation .reg_form,
.autorisation .reg_title_wrap {
  display: none;
}
.autorisation .message {
  padding: 17px 40px 17px 55px;
  font-family: "Poppins";
  line-height: 26px;
  display: block;
  margin: 0 auto 15px auto;
  text-align: center;
  background: #cdfff2;
  border-radius: 6px;
  background-image: url("../img/bg-message.png");
  background-position: 32px center;
  background-repeat: no-repeat;
  background-size: 23px 23px;
}
@media (max-width: 500px) {
  .autorisation .message {
    font-size: 14px;
    line-height: 18px;
    background-position: 20px center;
  }
}
.autorisation .message__email {
  max-width: 700px;
  position: relative;
}
.autorisation .message__email.active {
  display: block;
}
.autorisation .message__email .close {
  position: absolute;
  cursor: pointer;
  top: 12px;
  right: 25px;
  font-size: 25px;
  margin-top: 5px;
}
@media (max-width: 652px) {
  .autorisation .message__email .close {
    top: 5px;
    right: 10px;
  }
}
.autorisation .message__login {
  max-width: 445px;
  position: relative;
}
.autorisation .message__login.active {
  display: block;
}
.autorisation .message__login .close {
  position: absolute;
  cursor: pointer;
  top: 12px;
  right: 25px;
  font-size: 25px;
  margin-top: 5px;
}
@media (max-width: 652px) {
  .autorisation .message__login .close {
    top: 5px;
    right: 10px;
  }
}

.autorisation__passwrap input.error + label + .show-password img {
  bottom: 42px;
}

.talent {
  background-blend-mode: multiply;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(70%, #fff), to(rgba(20, 239, 181, 0.15))), -webkit-gradient(linear, right top, left bottom, color-stop(70%, #fff), to(rgba(118, 0, 255, 0.15)));
  background: -o-linear-gradient(left bottom, #fff 70%, rgba(20, 239, 181, 0.15) 100%), -o-linear-gradient(right top, #fff 70%, rgba(118, 0, 255, 0.15) 100%);
  background: linear-gradient(to right top, #fff 70%, rgba(20, 239, 181, 0.15) 100%), linear-gradient(to left bottom, #fff 70%, rgba(118, 0, 255, 0.15) 100%);
}
@media (max-width: 992px) {
  .talent {
    padding-top: 60px;
  }
}
@media (max-width: 992px) {
  .talent__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .talent__img {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}
@media (max-width: 576px) {
  .talent__title, .talent__suptitle, .talent__buttons {
    text-align: center;
  }
}
.talent__btn:first-child {
  margin-right: 0;
}
.talent .container {
  padding-bottom: 100px;
}

.features {
  padding-bottom: 95px;
  background-blend-mode: multiply;
  background: -webkit-gradient(linear, right bottom, left top, color-stop(70%, #fff), to(rgba(118, 0, 255, 0.15)));
  background: -o-linear-gradient(right bottom, #fff 70%, rgba(118, 0, 255, 0.15) 100%);
  background: linear-gradient(to left top, #fff 70%, rgba(118, 0, 255, 0.15) 100%);
}
@media (max-width: 576px) {
  .features {
    padding-bottom: 40px;
  }
}
.features__title {
  text-align: center;
  font-size: 48px;
}
@media (max-width: 1200px) {
  .features__title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media (max-width: 992px) {
  .features__title {
    font-size: 32px;
    line-height: 37px;
  }
}
.features__items {
  margin-top: 32px;
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.features__item {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  text-align: center;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .features__item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 400px) {
  .features__item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.features__img {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.features__name {
  padding-top: 25px;
  font-weight: 900;
  font-size: 26px;
  line-height: 25px;
  letter-spacing: 0.5px;
}
@media (max-width: 992px) {
  .features__name {
    font-size: 20px;
  }
}

.finding {
  padding-bottom: 130px;
}
@media (max-width: 576px) {
  .finding {
    padding-bottom: 80px;
  }
}
.finding__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media (max-width: 576px) {
  .finding__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.finding__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (max-width: 1200px) {
  .finding__left {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
  }
}
@media (max-width: 576px) {
  .finding__left {
    margin-bottom: 30px;
  }
}
.finding__title {
  font-size: 48px;
  max-width: 445px;
}
@media (max-width: 1200px) {
  .finding__title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media (max-width: 992px) {
  .finding__title {
    font-size: 32px;
    line-height: 37px;
  }
}
.finding__list > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.finding__list > ul > li {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  padding-left: 35px;
  position: relative;
  margin-bottom: 12px;
}
@media (max-width: 576px) {
  .finding__list > ul > li {
    padding-left: 25px;
  }
}
.finding__list > ul > li:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  background-color: var(--colorGreen);
  left: 0;
  top: 7px;
  border-radius: 50%;
  -webkit-box-shadow: 4px 4px 8px 2px rgba(189, 189, 189, 0.25);
  box-shadow: 4px 4px 8px 2px rgba(189, 189, 189, 0.25);
}
.finding__right {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  background: #422670;
  -webkit-box-shadow: 4px 4px 8px 2px rgba(189, 189, 189, 0.25);
  box-shadow: 4px 4px 8px 2px rgba(189, 189, 189, 0.25);
  border-radius: 6px;
  color: var(--colorWhite);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 40px 30px;
  height: auto;
}
@media (max-width: 1200px) {
  .finding__right {
    -ms-flex-preferred-size: 55%;
    flex-basis: 55%;
  }
}
@media (max-width: 1100px) {
  .finding__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 0;
  }
}
.finding__right span {
  font-family: "Gotham";
  font-style: normal;
  font-weight: 900;
  font-size: 26px;
  line-height: 25px;
  letter-spacing: 0.5px;
  color: var(--colorGreen);
}
.finding__right span:last-child {
  display: inline-block;
  -webkit-transform: rotate(180deg) translateY(5px);
  -ms-transform: rotate(180deg) translateY(5px);
  transform: rotate(180deg) translateY(5px);
}
.finding__text {
  padding-top: 20px;
  max-width: 350px;
  line-height: 26px;
}
@media (max-width: 1100px) {
  .finding__text {
    margin: 0;
    max-width: 100%;
    padding-top: 0;
  }
}

.ready-land {
  padding-top: 75px;
  padding-bottom: 55px;
}
@media (max-width: 576px) {
  .ready-land {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.ready-land .ready-light__wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}
.ready-land .ready-light__btn {
  margin-top: 19px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ready-land .ready-light__btn:hover {
  color: var(--colorWhite);
}

.land-form {
  padding-top: 80px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .land-form {
    padding-bottom: 80px;
  }
}
@media (max-width: 576px) {
  .land-form {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.land-form__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .land-form__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.land-form__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  padding-right: 80px;
}
@media (max-width: 1200px) {
  .land-form__left {
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .land-form__left {
    padding-right: 0px;
  }
}
.land-form__suptitle {
  font-size: 15px;
  line-height: 24px;
}
@media (max-width: 576px) {
  .land-form__suptitle {
    text-align: center;
  }
}
.land-form__title {
  font-size: 48px;
  margin-top: 8px;
}
@media (max-width: 1200px) {
  .land-form__title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media (max-width: 576px) {
  .land-form__title {
    text-align: center;
    font-size: 32px;
    line-height: 37px;
  }
}
.land-form__right {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  padding-left: 80px;
}
@media (max-width: 1200px) {
  .land-form__right {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .land-form__right {
    padding-left: 0px;
  }
}
.land-form form input {
  width: 100% !important;
}
.land-form form input[type=text]:nth-of-type(3) {
  font-size: 16px;
  font-weight: 400;
}
.land-form form input[type=text]:nth-of-type(3)::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 24px;
  color: #CBCBCB;
  font-weight: 400;
}
.land-form form input[type=text]:nth-of-type(3)::-moz-placeholder {
  font-size: 16px;
  line-height: 24px;
  color: #CBCBCB;
  font-weight: 400;
}
.land-form form input[type=text]:nth-of-type(3):-ms-input-placeholder {
  font-size: 16px;
  line-height: 24px;
  color: #CBCBCB;
  font-weight: 400;
}
.land-form form input[type=text]:nth-of-type(3)::-ms-input-placeholder {
  font-size: 16px;
  line-height: 24px;
  color: #CBCBCB;
  font-weight: 400;
}
.land-form form input[type=text]:nth-of-type(3)::placeholder {
  font-size: 16px;
  line-height: 24px;
  color: #CBCBCB;
  font-weight: 400;
}
.land-form .feed-form__btn {
  margin-right: auto;
  margin-left: auto;
  display: block;
}

.features-est .features__item {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
}
@media (max-width: 992px) {
  .features-est .features__item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 576px) {
  .features-est .features__item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

.finding-est .finding__wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1270px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .nav-menu > ul {
    margin-left: 10px;
  }
  .nav-menu > ul > li {
    margin-left: 0;
  }
}
@media (max-width: 1200px) {
  .promo__descr {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
  .promo__img {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
  .promo__text {
    margin-top: 20px;
    font-size: 15px;
  }
  .promo__btn:first-child {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1100px) {
  .header .nav-menu > ul {
    position: absolute;
    left: 50%;
    top: calc(100% + 15px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    margin: 0 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header .nav-menu > ul li {
    margin-right: 15px;
    margin-left: 15px;
  }
  .header .nav-menu > ul li:first-child a {
    padding-left: 4px;
  }
}
@media (max-width: 1200px) {
  .trusting .right-trusting__content {
    font-size: 15px;
  }
  .trusting__left {
    height: 850px;
  }
  .trusting__right {
    height: 850px;
  }

  .quality__item {
    width: 30%;
    padding: 15px 10px;
  }
  .quality__name {
    font-size: 45px;
    line-height: 52px;
  }
  .quality .content-quality__left {
    margin-right: 50px;
  }

  .video__block {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    width: 500px;
    height: auto;
  }
  .video__block img {
    border-radius: 15px;
    width: 100%;
    height: auto !important;
  }
  .video__descr {
    padding-left: 60px;
  }

  .ready-light__title {
    font-size: 40px;
    line-height: 48px;
  }

  .map {
    padding-top: 90px;
    padding-bottom: 70px;
  }
  .map__right {
    padding-left: 30px;
  }
  .map__title {
    font-size: 35px;
    line-height: 42px;
  }
  .map__items {
    grid-column-gap: 15px;
  }

  .testimonials__title {
    font-size: 35px;
    line-height: 42px;
  }
  .testimonials__item span {
    width: 30px;
    height: 30px;
    padding: 5px 8px;
  }
  .testimonials__info {
    margin-top: 70px;
  }
  .testimonials__block img {
    height: auto;
  }

  .footer__title {
    font-size: 42px;
  }
  .footer__title-sm {
    font-size: 30px;
    line-height: 32px;
    margin-top: 69px;
  }
  .footer__contact address {
    margin-top: -10px;
  }
  .footer__social-block {
    margin-top: -66px;
  }
}
@media (max-width: 992px) {
  .header {
    background-color: var(--colorMain);
    position: relative;
  }
  .header.backgroundWhite {
    border: 0;
  }
  .header__wrap {
    position: static;
  }
  .header .burger__wrap {
    display: block;
    height: 38px;
    width: 38px;
    right: 20px;
  }
  .header__btn {
    margin-right: 60px;
  }
  .header__login {
    font-size: 14px;
  }
  .header .burger.open:after {
    left: 9px;
  }
  .header .burger.open:before {
    left: 9px;
  }
  .header .nav-menu > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: var(--colorMain);
    top: 0;
    right: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    -webkit-transform: translateY(-110%);
    -ms-transform: translateY(-110%);
    transform: translateY(-110%);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: auto;
  }
  .header .nav-menu > ul li {
    text-align: center;
    margin-bottom: 22px;
  }
  .header .nav-menu > ul li:last-child {
    margin-bottom: 0;
  }
  .header .nav-menu > ul li a {
    font-size: 0px;
    line-height: 24px;
    letter-spacing: 0.03em;
    color: var(--colorWhite);
  }
  .header .nav-menu > ul li a:hover {
    background-color: transparent;
    color: var(--colorGreen);
    font-weight: 700;
  }
  .header .nav-menu > ul.transformation li a {
    font-size: 26px;
  }
  .header .nav-menu > ul.transformation {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
  .header__logo .logo {
    display: none;
  }
  .header__logo .logo-white {
    display: block;
    position: relative;
    z-index: 1;
  }
  .header__login {
    position: relative;
    z-index: 1;
    color: var(--colorWhite);
  }
  .header__login a {
    color: var(--colorWhite);
  }
  .header__lang {
    position: relative;
    z-index: 1;
    color: var(--colorWhite);
  }
  .header__lang:hover {
    color: var(--colorMain);
  }
  .header__btn {
    position: relative;
    z-index: 1;
    color: var(--colorWhite);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .header__btn:hover {
    color: var(--colorMain);
  }

  .trusting .right-trusting {
    padding-top: 30px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .trusting__left {
    height: 730px;
  }
  .trusting__right {
    height: 730px;
  }

  .calculator {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .calculator .left-calculator {
    padding-right: 50px;
  }
  .calculator .left-calculator label {
    font-size: 22px;
  }
  .calculator__left {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
  }
  .calculator__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 60%;
    flex: 0 1 60%;
  }

  .quality__name {
    font-size: 33px;
    line-height: 44px;
  }
  .quality .content-quality {
    font-size: 15px;
  }
  .quality .content-quality__left {
    margin-right: 25px;
  }
  .quality .content-quality__right blockquote {
    padding-left: 80px;
    background-size: 50px 50px;
  }
  .quality .content-quality__name {
    padding-left: 80px;
  }

  .video {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .video__descr {
    padding-left: 40px;
  }

  .ready-light__title {
    font-size: 35px;
    line-height: 40px;
  }
  .ready-light__right {
    padding-left: 80px;
  }
  .ready-light__btns button:nth-of-type(1) {
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .map {
    padding-top: 60px;
  }
  .map__title {
    font-size: 32px;
    line-height: 37px;
  }
  .map__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-row-gap: 20px;
  }
  .map__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .map__item:nth-child(4) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .map__item:nth-child(6) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .testimonials {
    padding-top: 0;
  }
  .testimonials .container {
    padding-bottom: 60px;
  }
  .testimonials__info {
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .testimonials__block {
    height: auto;
  }
  .testimonials__descr {
    max-width: 100%;
  }
  .testimonials__list {
    margin-top: 25px;
  }
  .testimonials__list p {
    margin-bottom: 25px;
  }

  .ready__btn {
    margin-left: 0;
    display: block;
    margin-bottom: 20px;
  }
  .ready__btn:last-child {
    margin-bottom: 0;
  }

  .footer__wrap {
    display: block;
  }
  .footer__title-sm {
    margin-top: 0;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .footer__contact {
    float: left;
    height: 100%;
    display: block;
    margin-right: 100px;
  }
  .footer__contact address {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .footer__social-block {
    margin-top: 0;
    margin-bottom: 23px;
  }
  .footer__social {
    display: block;
    height: 100%;
  }

  .trusting__right {
    padding-bottom: 80px;
    text-align: center;
  }
  .trusting__right:before {
    content: "Process with ViceoCV";
    font-family: "Gotham";
    font-size: 32px;
    line-height: 37px;
    text-align: center;
    letter-spacing: 0.5px;
    color: var(--colorWhite);
    font-weight: 700;
    text-align: center;
    margin: 0 auto;
  }
  .trusting__right .right-trusting__img {
    position: relative;
  }
  .trusting__right .right-trusting__img img {
    position: absolute;
    left: -20px;
  }
  .trusting__right .right-trusting__img img:first-child {
    display: none;
  }
  .trusting__right .right-trusting__img img:last-child {
    display: block;
  }
  .trusting__left {
    text-align: center;
    height: 500px !important;
    padding-bottom: 60px;
  }
  .trusting__left .left-trusting__title {
    margin: 0 auto 15px auto;
  }
  .trusting__left .left-trusting__img {
    position: relative;
  }
  .trusting__left .left-trusting__img img {
    position: absolute;
    right: -20px;
    top: 18px;
  }
  .trusting__left .left-trusting__img img:first-child {
    display: none;
  }
  .trusting__left .left-trusting__img img:last-child {
    display: block;
  }
}
@media (max-width: 768px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .right-trusting__btn {
    display: block;
    margin-right: auto;
    margin-left: auto;
    max-width: 240px;
  }

  .promo, .talent {
    padding-top: 40px;
  }
  .promo .container, .talent .container {
    padding-bottom: 60px;
  }
  .promo__img, .talent__img {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .promo__img img, .talent__img img {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .promo__wrap, .talent__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .calculator {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .calculator__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 25px;
  }
  .calculator .left-calculator {
    text-align: center;
    padding-right: 0;
  }
  .calculator .left-calculator #value {
    margin-top: 20px;
  }
  .calculator .right-calculator {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .calculator .right-calculator span {
    font-size: 43px;
    line-height: 48px;
  }
  .calculator .right-calculator__btn {
    display: block;
  }
  .calculator .right-calculator__btn:nth-of-type(1) {
    margin-top: 20px;
    margin-bottom: 18px;
  }
  .calculator__right {
    margin-top: 35px;
  }

  .quality {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .quality__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .quality__item {
    width: 300px;
    margin-bottom: 30px;
    text-align: center;
  }
  .quality .content-quality {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 15px;
  }
  .quality .content-quality__left {
    margin-bottom: 30px;
    margin-right: 0;
  }

  .video__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .video__block {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
  .video__descr {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    padding-left: 0;
  }
  .video .descr-video__supname {
    margin-top: 20px;
  }

  .ready-light__right {
    background-size: 50px 50px;
    padding-left: 60px;
  }
  .ready-light__right blockquote {
    font-size: 15px;
    line-height: 19px;
  }
  .ready-light__name {
    font-size: 15px;
  }
  .ready-light__text {
    font-size: 15px;
  }

  .map__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .map__title {
    font-size: 32px;
    line-height: 37px;
  }
  .map__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 20px;
  }
  .map__left {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .map__item {
    display: block;
  }
  .map__right {
    padding-left: 0;
  }

  .testimonials__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .testimonials__item {
    margin-bottom: 25px;
  }
  .testimonials__item:last-child {
    margin-bottom: 0;
  }

  .ready {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ready__wrap {
    -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;
  }
  .ready__left {
    margin-right: 0;
    text-align: center;
  }
  .ready__btns {
    margin-top: 25px;
  }
  .ready__btns button:nth-of-type(2) {
    margin: 0 auto;
  }

  .footer {
    padding-top: 70px;
    padding-bottom: 130px;
  }
  .footer__title {
    font-size: 32px;
    line-height: 44px;
  }
  .footer__text {
    margin-top: 25px;
  }
  .footer__btn {
    margin-top: 25px;
  }
  .footer__title-sm {
    font-size: 27px;
  }
}
@media (max-width: 576px) {
  .header .nav-menu > ul {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-top: 70px;
  }
  .header .nav-menu > ul > li {
    margin-bottom: 13px;
  }
  .header .nav-menu > ul > li a {
    font-size: 22px;
  }
  .header__lang {
    display: none;
  }
  .header__right {
    position: fixed;
    bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(100%);
    -ms-transform: translateX(-50%) translateY(100%);
    transform: translateX(-50%) translateY(100%);
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: var(--colorPurple);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .header__right.active {
    -webkit-transform: translateX(-50%) translateY(0%);
    -ms-transform: translateX(-50%) translateY(0%);
    transform: translateX(-50%) translateY(0%);
  }
  .header__login {
    margin: 0 0 27px 0;
    -ms-grid-column-align: center;
    justify-self: center;
  }
  .header__btn {
    margin: 0;
  }

  .promo__suptitle {
    margin-top: 20px;
  }
  .promo__descr {
    text-align: center;
  }
  .promo__text {
    text-align: left;
  }
  .promo__btn:first-child {
    margin-right: 0;
  }

  .calculator .right-calculator {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .calculator .right-calculator__chart {
    display: none;
  }
  .calculator .right-calculator__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .calculator .right-calculator__info span {
    font-size: 32px;
    line-height: 37px;
  }
  .calculator .right-calculator__btn:nth-of-type(1) {
    margin: 32px auto 24px auto;
  }
  .calculator .right-calculator__btn:nth-of-type(2) {
    margin: 0 auto;
  }

  .quality {
    padding-bottom: 40px;
  }
  .quality__name {
    font-size: 32px;
    line-height: 37px;
  }
  .quality__item {
    width: 100%;
  }
  .quality .content-quality__right {
    display: none;
  }

  .video {
    padding-bottom: 40px;
  }
  .video .descr-video__supname {
    text-align: center;
  }
  .video .descr-video__title {
    text-align: center;
    font-size: 32px;
    line-height: 37px;
  }
  .video__block {
    width: 100%;
    height: auto;
  }
  .video__block img {
    height: auto !important;
  }

  .ready-light__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .ready-light__suptitle {
    text-align: center;
  }
  .ready-light__title {
    text-align: center;
    font-size: 32px;
    line-height: 37px;
  }
  .ready-light__right {
    padding-left: 0px;
    padding-top: 80px;
    background-image: url("../img/avatar.png");
    background-size: 65px 65px;
    background-position: center top;
    background-repeat: no-repeat;
    margin-top: 20px;
  }
  .ready-light__name {
    margin-top: 25px;
  }
  .ready-light__btns {
    margin-top: 30px;
    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;
  }
  .ready-light__btns button:nth-of-type(1) {
    width: 140px !important;
  }
  .ready-light__btns button:nth-of-type(2) {
    width: 160px !important;
  }

  .map {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .map__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 25px;
  }
  .map__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .map__item:nth-child(2) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .map__item:nth-child(4) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .map__item:nth-child(6) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .map__item img {
    width: 80%;
  }
  .map__left {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .map__btn {
    margin-top: 30px;
  }
  .map__right {
    text-align: center;
  }

  .testimonials {
    padding-bottom: 0;
  }
  .testimonials__wrap {
    margin-top: 35px;
  }
  .testimonials__title {
    font-size: 32px;
    line-height: 37px;
  }
  .testimonials__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .testimonials__item span {
    width: 40px;
    height: 40px;
    padding: 11px 13px;
    margin: 0px auto 15px auto;
  }
  .testimonials__list p {
    padding-left: 0px;
    padding-top: 60px;
    line-height: 25px;
    background-size: 40px 40px;
    background-position: center 0px;
    text-align: center;
  }

  .ready__title {
    font-size: 32px;
    line-height: 37px;
  }

  .footer {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .footer__info {
    text-align: center;
  }
  .footer__contact {
    margin-right: 0;
    float: none;
  }
}
@media (max-height: 476px) {
  .header .nav-menu > ul {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-top: 70px;
  }
  .header .nav-menu > ul > li {
    margin-bottom: 15px;
  }
  .header .nav-menu > ul > li a {
    font-size: 18px;
  }

  .header .nav-menu > ul.transformation li a {
    font-size: 18px;
    padding: 2.5px 0;
  }
}
/*# sourceMappingURL=main.css.map */