@charset "UTF-8";
@import url("https://fonts.cdnfonts.com/css/futura-pt");

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  font-family: "Futura PT", sans-serif;
  outline: none !important;
  text-decoration: none !important;
  list-style: none;
  color: #3d3838;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

button {
  cursor: pointer !important;
}

.iti {
  width: 100%;
}

.container {
  max-width: 1400px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.header-container {
  height: 100%;
  width: 100%;
}

.burger-wrapper {
  position: fixed;
  right: 5%;
  z-index: 9;
}

.consulting-popup {
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 11;
  top: 0;
  left: 0;
}

.consulting-popup.active-consultation {
  display: block;
}

.consulting-popup__wrapper {
  position: relative;
  border: 1px solid black;
  height: 100%;
  width: 100%;
  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;
}

.consulting-popup__block {
  border: 1px solid white;
  width: 500px;
  height: 600px;
  background-color: #fff;
}

.consulting-popup__block form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 24px;
  background-color: #fff;
  border-radius: 6px;
  height: 100%;
}

.consulting-popup__block form .form-title {
  color: #000;
  text-align: center;
  line-height: 1.2;
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 500;
}

.consulting-popup__block form .form-subtitle {
  text-align: center;
  font-size: 14px;
}

.consulting-popup__block form input {
  outline: none;
  border: 1px solid rgba(97, 85, 85, 0.753);
  border-radius: 6px;
  padding: 15px 15px 15px 25px;
  margin: 10px 0;
  font-size: 16px;
}

.consulting-popup__block form .button-input {
  border-radius: 8px;
  background-color: #ff5e1f;
  border: 2px solid #ff5e1f;
  padding: 20px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.consulting-popup__block form .button-input:hover {
  background-color: #fff;
  color: #0D167A;
}



.consulting-popup__block form span {
  font-size: 15px;
  text-align: center;
  line-height: 1.55;
}

.consulting-popup__block form span {
  font-size: 14px;
}

.closePopup {
  cursor: pointer;
  right: 0;
  top: 18px;
  position: absolute;
  width: 30px;
  height: 30px;
  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;
}

.closePopup span {
  position: absolute;
  display: block;
  height: 3px;
  background-color: #000;
  border-radius: 8px;
  width: 100%;
}

.closePopup span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.closePopup span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.popup-helper {
  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: fixed;
  z-index: 3;
  bottom: 5%;
  right: 5%;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  cursor: pointer;
  background-color: #FF6600;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.popup-helper img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

.popup-helper.active-helper .close-wrapper {
  opacity: 1;
}

.popup-helper.active-helper .close-wrapper .close-helper {
  -webkit-transform: scale(100%);
  transform: scale(100%);
}

.close-wrapper {
  position: absolute;
  opacity: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.close-helper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  -webkit-transform: scale(60%);
  transform: scale(60%);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.close-helper div {
  border-radius: 5px;
  position: absolute;
  height: 3px;
  width: 60%;
  background-color: #000;
}

.close-helper div:nth-child(1) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.close-helper div:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.popup {
  display: none;
  position: fixed;
  right: 5%;
  bottom: 15%;
  height: auto;
  width: 403px;
  border-radius: 6px;
  z-index: 4;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.popup.active-popup {
  display: block;
}

.popup form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 15px;
  background-color: #fff;
  border-radius: 6px;
  height: 100%;
}

.popup form .popup-title {
  color: #000;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  font-size: 28px;
}

.popup form input {
  border: 1px solid rgba(97, 85, 85, 0.753);
  padding: 15px 15px 15px 25px;
  margin: 10px 0;
  font-size: 16px;
}

.popup form .button-input {
  border: none;
  background-color: #ffaa06;
  padding: 20px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.popup form span {
  font-size: 12px;
  text-align: center;
  line-height: 1.55;
}

.burger-list {
  position: fixed;
  right: 0;
  height: 100%;
  overflow: scroll;
  width: 50%;
  background-color: #0A05EB;
  -webkit-transform: translateX(150%);
  transform: translateX(150%);
  z-index: 8;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.burger-list.active-burger {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.burger-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style: none;
  height: 500px;
  padding: 70px 40px;
  width: 100%;
}

.burger-list ul li {
  width: 100%;
  text-align: left;
  padding: 15px 0;
}

.burger-list ul li a {
  padding: 15px 0;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.burger-menu {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #0A05EB;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
}

.burger-menu div {
  position: absolute;
  height: 3px;
  width: 65%;
  border-radius: 8px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.burger-menu div:nth-child(1) {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.burger-menu div:nth-child(3) {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.burger-menu.active-burger div:nth-child(1) {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.burger-menu.active-burger div:nth-child(2) {
  width: 0%;
}

.burger-menu.active-burger div:nth-child(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.social-wrapper {
  height: 100px;
  position: relative;
}

.social-burger {
  position: absolute;
  bottom: 0;
  height: 30px;
  width: 100%;
  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;
}

.social-burger a {
  margin: 0 5px;
}

.social-burger a svg {
  height: 30px;
  width: 30px;
}

header {
  width: 100%;
  height: 100px;
  background-color: #fff;
}

.header-inner {
  max-width: 1830px;
  margin: 0 auto;
  padding: 0 15px;
  height: 100%;
  width: 100%;
  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;
}

.logo-link img {
  width: 200px;
}

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

.header-nav li {
  margin: 0 15px;
}

.header-nav li a {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
}

.header-nav li a strong {
  color: #ffa600;
}

.hero {
  width: 100%;
  background-image: url("img/hero-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 45px 0;
}

.hero-inner {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.hero-title {
  font-size: 52px;
  color: #3d3838;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 5px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.hero-info {
  height: 100%;
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero-subtitle {
  color: #3d3838;
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
}

.m0 {
  margin: 0;
  margin-top: -15px;
  max-width: 100%;
  width: 100%;
}

.m40 {
  margin: 40px 0;
}

.chargeback-top {
  display: flex;
  gap: 15px;
  max-width: 100%;
  width: 100%;
  margin-bottom: 35px;
}

.chargeback-top img {
  width: 125px;
  height: 23px;
}

.chargeback-top p {
  color: #0a05eb;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  position: relative;
  bottom: 5px;
}

.hero-subtitle:nth-of-type(2) {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.hero-description {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.hero-block {
  -webkit-box-shadow: 0px 4px 30px 0px rgba(189, 189, 189, 0.5);
  box-shadow: 0px 4px 30px 0px rgba(189, 189, 189, 0.5);
  padding: 30px;
  width: 36%;
  /* height: 620px; */
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hero-bottom {
  margin-top: 40px;
  display: flex;
  max-width: 100%;
  width: 100%;
}

.hero-bottom img {
  max-width: 260px;
  width: 100%;
  object-fit: cover;
}

.hero-bottom p {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 300;
  max-width: 290px;
}

.consult-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.consult-form input {
  font-size: 16px;
  font-weight: 400;
  background-color: #f0f0f0;
  border: none;
  padding: 20px 20px 20px 30px;
  margin: 10px 0;
  width: 100%;
}

.consult-form span {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin-bottom: 20px;
  text-align: center;
}

.consult-form span a {
  display: inline-block;
}

.consult-form span a,
.consulting-popup__block span a {
  color: rgb(10, 5, 235);
}



.popup span a {
  color: rgb(10, 5, 235);
}

.form-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
  text-align: center;
}

.form-title strong {
  color: rgb(10, 5, 235);
}

.form-btn {
  margin-top: 10px;
  width: 100%;
  background-color: #0a05eb;
  border-radius: 5px;
  font-weight: 600;
  font-size: 19px;
  padding: 20px;
  color: #fff;
  border: none;
}

.about {
  height: 1640px;
  width: 100%;
}

.about-inner {
  height: 100%;
  width: 100%;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-benefits {
  width: 100%;
  height: 30%;
  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;
}

.about-benefits__item {
  width: 400px;
  height: 415px;
  position: relative;
  margin: 0 15px;
}

.about-benefits__item img {
  width: 400px;
  height: 415px;
}

.about-benefits__img {
  height: 55%;
}

.about-benefits__info {
  position: absolute;
  padding-right: 100px;
  bottom: 70px;
  left: 45px;
}

.about-benefits__suptitle {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.55;
  color: #000;
}

.about-benefits__title {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  line-height: 1.55;
}

.about-benefits__description {
  font-size: 16px;
  font-weight: 300;
}

.about-benefits__link {
  color: rgb(10, 5, 235);
  -webkit-text-decoration: solid;
  text-decoration: solid;
  position: absolute;
  bottom: -30px;
  font-size: 18px;
  font-weight: 500;
  background-color: transparent;
  border: none;
}

.about-block {
  margin-top: 30px;
  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;
  height: 40%;
}

.about-info {
  width: 35%;
}

.about-title {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 600;
  color: #3d3838;
  margin-bottom: 10px;
}

.about-subtitle {
  font-size: 28px;
  color: #3d3838;
  font-weight: 700;
  line-height: 1.2;
  margin: 25px 0;
}

.about-description {
  font-size: 21px;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
}

.about-img {
  width: 40%;
}

.about-img img {
  -o-object-fit: contain;
  object-fit: contain;
}

.about-row {
  margin-top: 40px;
  height: 30%;
  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;
}

.about-row__item {
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: 200px;
  margin: 0 15px;
}

.about-row__item img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 116px;
  width: 220px;
  margin-bottom: 10px;
}

.about-row__title {
  font-size: 22px;
  color: #3d3838;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.about-row__description {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  line-height: 1.2;
}

.calculator {
  height: 700px;
  background-image: url("img/calculator-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.calculator::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(11%, rgba(0, 0, 0, 0.8575805322)), color-stop(100%, rgba(0, 0, 0, 0.4962359944)), to(rgba(255, 233, 233, 0.356179972)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8575805322) 11%, rgba(0, 0, 0, 0.4962359944) 100%, rgba(255, 233, 233, 0.356179972) 100%);
}

.calculator-inner {
  height: 100%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.calculator-suptitle {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  color: #dbdbdb;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.calculator-title {
  font-weight: 700;
  font-size: 35px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 30px;
}

.calculator-wrapper {
  height: auto;
  width: 100%;
  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;
}

.calculator-block {
  width: 50%;
}

.calculator-block span {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 5px;
}

.calculator-item {
  margin: 20px 0;
}

.calculator-item input[type=text] {
  font-size: 17px;
  border-radius: 5px;
  font-weight: 400;
  padding: 20px;
  color: #0d0c0c;
  border: none;
  width: 100%;
}

.calculator-item input[type=range] {
  width: 85%;
  -webkit-appearance: none;
}

.calculator-item input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background-color: #ffa600;
  height: 20px;
  width: 20px;
  margin-top: -10px;
  border-radius: 50%;
  cursor: pointer;
}

.calculator-item input[type=range]::-ms-track {
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
  border-radius: 8px;
  height: 3px;
  width: 100%;
  background-color: #fff;
  cursor: pointer;
  border-radius: 8px;
}

.calculator-item input[type=range]::-moz-range-thumb {
  background-color: #ffa600;
  height: 30px;
  width: 30px;
  margin-top: -14px;
  border-radius: 50%;
  cursor: pointer;
}

.calculator-item input[type=range]::-ms-thumb {
  background-color: #ffa600;
  height: 30px;
  width: 30px;
  margin-top: -8px;
  border-radius: 50%;
  cursor: pointer;
}

.calculator-item input[type=range]::-webkit-slider-runnable-track {
  height: 3px;
  width: 100%;
  background-color: #fff;
  cursor: pointer;
  border-radius: 8px;
}

.calculator-item input[type=range]::-moz-range-track {
  height: 3px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 8px;
}

.calculator-item__title {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.calculator-info {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 40%;
}

.calculator-info__block {
  padding: 10px;
  border-radius: 3px;
  background-color: #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

.calculator-info__block img {
  width: 50px;
  height: 45px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 10px;
}

.calculator-info__block p {
  font-size: 18px;
  font-weight: 300;
  color: #000;
  line-height: 1.35;
}

.yellow-btn {
  width: 100%;
  padding: 20px;
  color: #fff;
  background-color: #ffa600;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.yellow-btn:hover {
  background-color: #0a05eb;
}

.services {
  height: 1000px;
  width: 100%;
}

.services-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.services-suptitle {
  font-size: 19px;
  line-height: 1.5;
  font-weight: 400;
  color: #808080;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.services-title {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.55;
  color: #000;
  margin-bottom: 30px;
}

.services-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.services-item {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  margin: 0 15px;
  width: 33.333%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
}

.services-item span {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.5;
  line-height: 1.55;
  margin-bottom: 10px;
  text-align: center;
}

.hot-line {
  text-align: center;
  color: #000;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 5px;
  text-align: center;
}

.services-name {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.55;
  color: #0a05eb;
  text-align: center;
  margin-bottom: 10px;
}

.services-description {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.45;
}

.services-btn {
  font-size: 19px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  background-color: #0a05eb;
  border: none;
  padding: 20px;
  border-radius: 5px;
  color: #fff;
  margin-top: 20px;
}

.benefits {
  height: 1600px;
  width: 100%;
  background-color: #f5f5f5;
}

.benefits-inner {
  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;
  height: 100%;
}

.benefits-inner table {
  width: 70%;
  border-radius: 6px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
}

.benefits-inner table .tr-header td:nth-child(1) {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.3;
  color: #000;
}

.benefits-inner table .tr-header td:nth-child(2) {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
}

.benefits-inner table .tr-header td:nth-child(2) strong {
  color: #0a05eb;
}

.benefits-inner table .tr-header td:nth-child(3) {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.3;
  color: #707070;
}

.benefits-inner table td {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.benefits-inner table td:nth-child(1) {
  width: 50%;
  font-size: 16px;
  color: rgb(112, 112, 112);
  font-weight: 300;
}

.benefits-inner table td:nth-child(2) {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  width: 25%;
  text-align: center;
}

.benefits-inner table td:nth-child(3) {
  width: 25%;
  text-align: center;
}

.consulting {
  height: 750px;
  background-image: url("img/calculator-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.consulting::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(11%, rgba(255, 255, 255, 0.8575805322)), color-stop(100%, rgba(255, 255, 255, 0.7735469188)), to(rgba(0, 0, 0, 0.4962359944)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8575805322) 11%, rgba(255, 255, 255, 0.7735469188) 100%, rgba(0, 0, 0, 0.4962359944) 100%);
}

.consulting-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  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;
}

.consulting-info {
  width: 50%;
}

.consulting-suptitle {
  font-size: 18px;
  color: #000;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
  font-weight: 600;
}

.consulting-title {
  font-size: 40px;
  color: #3d3838;
  font-weight: 600;
  line-height: 1.17;
  margin-bottom: 10px;
}

.consulting-text {
  font-size: 20px;
  font-weight: 300;
  color: #3d3838;
  letter-spacing: 0.5px;
}

.consulting-text strong {
  color: #0a05eb;
}

.consulting-text strong:nth-of-type(1) {
  font-size: 24px;
}

.consulting-block {
  width: 36%;
  background-color: #fff;
  padding: 30px;
}

.meet-team {
  height: 550px;
  width: 100%;
  background-image: url("img/team-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.mt-inner {
  height: 100%;
  position: relative;
}

.mt-inner img {
  position: absolute;
  bottom: -10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.mt-btn {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
  border-radius: 5px;
  border: none;
  color: #fff;
  background-color: #0a05eb;
  -webkit-box-shadow: 0px 8px 20px 20px rgba(61, 56, 56, 0.3);
  box-shadow: 0px 8px 20px 20px rgba(61, 56, 56, 0.3);
  padding: 20px;
  width: 450px;
  text-align: center;
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.mt-btn:hover {
  background-color: #FFA600;
}

footer {
  height: 340px;
  width: 100%;
  background-color: #050240;
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 200px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer-column__title {
  font-size: 18px;
  color: #f5f5f5;
  margin-bottom: 15px;
  letter-spacing: 1px;
  line-height: 1.35;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-link {
  font-size: 16px;
  color: #f5f5f5;
  line-height: 1.55;
  font-weight: 300;
  margin: 10px 0;
}

.socials-row {
  margin-top: 15px;
}

@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .about-benefits {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .container {
    max-width: 980px;
    padding: 0 15px;
  }

  .hero-info {
    width: 60%;
  }

  .hero-block {
    width: 40%;
  }

  header {
    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;
  }

  .logo-link img {
    width: 180px;
  }

  .header-inner {
    -webkit-box-shadow: none;
    box-shadow: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header-nav li {
    margin: 0 10px;
  }

  .header-nav li a {
    font-size: 12px;
  }

  .about {
    height: 2900px;
  }

  .about-block {
    height: 25%;
  }

  .about-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .about-row__item {
    width: 25%;
  }

  .about-img {
    width: 50%;
  }
}

@media (max-width: 980px) {

  .consult-form span {
    margin-top: 5px;
    font-size: 12px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
  }

  .popup {
    height: 100%;
    width: 100%;
    right: 0;
    bottom: 0;
    z-index: 10;
    border-radius: 0;
  }

  .popup form {
    border-radius: 0;
  }

  .popup-helper {
    z-index: 11;
    height: 60px;
    width: 60px;
    right: 3%;
    bottom: 1%;
  }

  .burger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .about-inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header-inner nav {
    display: none;
  }

  .hero-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
  }

  .hero-subtitle:nth-of-type(2) {
    margin-left: auto;
    margin-right:  auto;
}

.chargeback-top {
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.chargeback-top p {
position: static;
}



  .hero-title {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .hero-info {
    width: 60%;
    text-align: center;
  }

  .hero-block {
    width: 60%;
  }

  .hero {
    height: 1200px;
  }

  .hero-bottom {
    display: none;
  }

  .about-benefits {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 50%;
  }

  .about-benefits__item {
    margin: 20px 0;
  }

  .about {
    height: 3400px;
  }

  .about-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 30%;
  }

  .about-info {
    width: 60%;
  }

  .about-row__item {
    width: 34%;
  }

  .calculator-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .calculator {
    height: 900px;
  }

  .calculator-block {
    margin-bottom: 20px;
  }

  .calculator-info {
    height: 40%;
  }

  .services-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .services {
    height: 2000px;
  }

  .services-item {
    margin: 10px 0;
    width: 50%;
  }

  .services-name {
    font-size: 34px;
  }

  .benefits {
    display: none;
  }

  .consulting-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .consulting-block {
    margin-top: 20px;
    width: 55%;
  }

  footer {
    height: 500px;
  }

  .footer-inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer-column {
    margin: 10px 0;
  }

  .footer-column:nth-child(1) {
    width: 100%;
  }

  .calculator-title {
    font-size: 29px;
  }

  .services-title {
    font-size: 29px;
  }

  .consulting {
    height: 1300px;
  }
}

@media (max-width: 800px) {
  .about-benefits__suptitle {
    font-size: 15px;
  }

  .about-benefits__description {
    font-size: 14px;
  }

  .about-benefits__link {
    font-size: 15px;
  }

  .about-benefits__info {
    padding-right: 15px;
  }
}

@media (max-width: 770px) {
  .about-row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .about-row__item {
    width: 50%;
  }

  .about {
    height: 4200px;
  }

  .about-benefits {
    height: 30%;
  }

  .about-block {
    height: 23%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .about-row {
    margin-top: 0;
  }

  .calculator-info {
    width: 70%;
  }

  .services {
    height: 1800px;
  }

  .consulting-info {
    width: 80%;
  }

  .consulting-block {
    width: 80%;
  }

  .services-item {
    width: 80%;
  }

  .calculator-block {
    width: 80%;
  }

  .calculator-info {
    width: 80%;
  }

  .about-row__item {
    width: 80%;
    text-align: center;
  }

  .about-title {
    font-size: 28px;
  }

  .about-subtitle {
    font-size: 18px;
  }

  .about-description {
    font-size: 15px;
  }

  .about {
    height: 3900px;
  }

  .about-block {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .about-benefits {
    height: 40%;
  }

  .about-info {
    width: 80%;
  }

  .about-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 80%;
  }

  .about-img img {
    width: 300px;
  }

  .hero-info {
    text-align: center;
    width: 80%;
  }

  .hero-block {
    width: 80%;
  }

  .consulting-title {
    font-size: 32px;
  }
}

@media (max-width: 650px) {
  .services {
    height: 2000px;
  }

  .about {
    height: 3700px;
  }

  .about-benefits__title {
    font-size: 22px;
  }

  .about-benefits {
    height: 37%;
  }

  .hero-title {
    font-size: 41px;
  }

  .hero-subtitle {
    font-size: 28px;
  }
}

@media (max-width: 500px) {
  .hero-info {
    width: 95%;
  }

  .about-block {
    width: 95%;
  }

  .about-img {
    width: 95%;
  }

  .about-row__item {
    width: 95%;
  }

  .calculator-info {
    width: 95%;
  }

  .calculator-block {
    width: 95%;
  }

  .services-item {
    width: 95%;
  }

  .consulting-info {
    width: 95%;
  }

  .consulting-block {
    width: 95%;
  }

  .hero-block {
    width: 95%;
  }

  .footer-link {
    margin: 0;
  }

  .g-recaptcha iframe {
    max-width: 320px;
    width: 100%;
  }

  .g-recaptcha>div {
    max-width: 100% !important;
    width: 100% !important;
  }

  .rc-anchor-light.rc-anchor-normal {
    max-width: 74%;
    width: 100%;
  }

  #rc-anchor-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
  }

  .consulting-block {
    padding: 33px;
  }
}

@media (max-width: 452px) {
  .services {
    height: 2200px;
  }

  footer {
    height: 700px;
  }

  .mt-btn {
    width: 300px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 23px;
  }

  .about-benefits__item {
    max-width: 100%;
    width: 100%;
  }

  .about-benefits__item img {
    max-width: 100%;
    width: 100%;
    height: 389px;

  }

  .about-benefits__info {
    bottom: 90px;
  }

  .about-benefits__link {
    padding-bottom: 8px;
  }
}

@media (max-width: 385px) {
  .services {
    height: 2350px;
  }
}

@media (max-width: 377px) {
  .about-benefits__item img {
    height: 420px;
  }
}

@media (max-width: 353px) {
  .about-benefits__item img {
    height: 435px;
  }

  .about-benefits__info {

    left: 30px;
  }
}

.about-hero {
  height: 600px;
  background-image: url("img/about-page/about-bg.png");
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 45%;
}

.about-hero__title {
  font-size: 49px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
}

.about-hero__description {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 10px;
}

.about-slider {
  height: 240px;
}

.swiper {
  height: 100%;
  width: 100%;
}

.swiper .swiper-wrapper {
  height: 100%;
  width: 100%;
}

.swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 500%;
}

.swiper .swiper-wrapper .swiper-slide img {
  width: 160px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 20px;
}

.trusting {
  background-color: #f5f5f5;
  width: 100%;
  height: 800px;
}

.trusting-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.section-title {
  font-size: 35px;
  line-height: 1.55;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.section-suptitle {
  font-size: 19px;
  line-height: 1.5;
  font-weight: 400;
  color: #808080;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.trusting-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin-top: 25px;
}

.trusting-item {
  width: 315px;
  height: 530px;
  position: relative;
}

.trusting-item img {
  width: 315px;
  height: 530px;
}

.trusting-info {
  padding: 37px;
  position: absolute;
  bottom: 30%;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-grid-column-align: start;
  justify-self: start;
}

.trusting-title {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.trusting-description {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.3;
  color: #000;
}

.numbers {
  height: 500px;
  width: 100%;
  background-color: #f5f5f5;
}

.section-description {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  width: 50%;
}

.numbers-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.numbers-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 10px;
}

.numbers-img {
  height: 120px;
  position: relative;
}

.numbers-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.numbers-item {
  width: 25%;
  margin: 0 15px;
}

.img-text {
  position: absolute;
  top: 50%;
  left: 35%;
  -webkit-transform: translate(-50%, -45%);
  transform: translate(-50%, -45%);
  font-size: 29px;
  color: #3d3838;
  font-weight: 600;
}

.numbers-description {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 300;
  color: #000;
}

.team {
  height: 1500px;
  background-color: #f5f5f5;
}

.team-inner {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.team-row {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 40px;
}

.team-item {
  width: 360px;
  height: 500px;
  background-color: #fff;
  margin: 15px;
}

.team-item:nth-child(1) .team-img {
  background-image: url(img/about-page/t1.webp);
}

.team-item:nth-child(2) .team-img {
  background-image: url(img/about-page/t2.webp);
}

.team-item:nth-child(3) .team-img {
  background-image: url(img/about-page/t3.webp);
}

.team-item:nth-child(4) .team-img {
  background-image: url(img/about-page/t4.webp);
}

.team-item:nth-child(5) .team-img {
  background-image: url(img/about-page/t5.webp);
}

.team-item:nth-child(6) .team-img {
  background-image: url(img/about-page/t6.webp);
}

.team-info {
  padding: 15px;
}

.team-name {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  line-height: 1.35;
  margin-bottom: 5px;
}

.team-description {
  font-size: 18px;
  color: #7a7a7a;
  line-height: 1.35;
  font-weight: 300;
}

.team-img {
  width: 360px;
  height: 360px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -o-object-fit: contain;
  object-fit: contain;
  background-image: none;
}

.blue-btn {
  background-color: #0a05eb;
  font-size: 18px;
  border: none;
  color: #fff;
  font-weight: 600;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding: 20px 40px;
  border-radius: 8px;
}

@media (max-width: 1200px) {
  .trusting {
    height: 1300px;
  }

  .trusting-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .trusting-item {
    width: 35%;
    margin: 15px;
  }

  .team {
    height: 2000px;
  }

  .numbers-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .numbers-item {
    width: 35%;
  }

  .numbers {
    height: 800px;
  }
}

@media (max-width: 980px) {
  .about-hero__title {
    font-size: 44px;
  }

  .about-hero__description {
    font-size: 16px;
  }
}

@media (max-width: 815px) {
  .team-row {
    -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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .team {
    height: 3600px;
  }

  .trusting-row {
    -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;
  }

  .trusting {
    height: 2450px;
  }

  .trusting-item {
    width: 284px;
  }

  .trusting-item img {
    width: 276px;
  }

  .burger-list ul li a {
    font-size: 11px;
  }

  .numbers {
    height: 1200px;
  }

  .numbers-item {
    width: 65%;
  }

  .numbers-row {
    -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;
  }
}

@media (max-width: 700px) {
  .swiper .swiper-wrapper .swiper-slide {
    -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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .swiper .swiper-wrapper .swiper-slide img {
    height: 100px;
    margin: 10px;
  }

  .team-item {
    margin: 15px 0;
  }

  .about-hero__inner {
    width: 80%;
  }

  .about-hero__title {
    font-size: 38px;
  }
}

@media (max-width: 650px) {
  .section-suptitle {
    font-size: 14px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 16px;
  }
}

@media (max-width: 470px) {
  .trusting-description {
    font-size: 14px;
  }

  .team-item {
    width: 300px;
  }

  .team-img {
    width: 300px;
  }

  .img-text {
    font-size: 24px;
  }
}

.services-hero {
  height: 500px;
  width: 100%;
  background-image: url(img/services/services-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.services-hero::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.507);
}

.services-hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.services-hero__info {
  width: 40%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.services-hero__title {
  font-weight: 700;
  font-size: 49px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.services-hero__description {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 400;
  color: #fff;
}

.services-btns {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tariffs {
  position: relative;
  z-index: 2;
  margin-left: 20px;
  font-size: 21px;
  color: #8abdff;
  font-weight: 400;
  -webkit-text-decoration: dashed !important;
  text-decoration: dashed !important;
  padding: 20px 40px;
}

.services-img {
  height: 100%;
  width: 60%;
  position: relative;
}

.services-img img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.services-about {
  height: 700px;
}

.services-about__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.services-about__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.services-item__top {
  width: 230px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  align-items: center;
  position: relative;
}

.services-item__top img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.item-num {
  position: absolute;
  top: 40%;
  left: 20%;
  font-size: 41px;
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
}

.services-about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.services-about__item {
  width: 20%;
  margin: 15px;
}

.services-about__description {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 300;
  color: #000;
  line-height: 1.2;
}

@media (max-width: 1400px) {
  .services-about__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .services-about {
    height: 1000px;
  }

  .services-about__item {
    width: 25%;
  }
}

@media (max-width: 1200px) {
  .services-about {
    height: 1200px;
  }

  .services-hero__title {
    font-size: 36px;
  }

  .services-hero__description {
    font-size: 14px;
  }

  .services-hero__info .blue-btn {
    font-size: 12px;
    padding: 15px 30px;
  }

  .tariffs {
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .services-hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .services-img {
    width: 100%;
  }

  .services-img img {
    height: 220px;
    -o-object-fit: contain;
    object-fit: contain;
    right: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .services-hero {
    height: 500px;
  }

  .services-hero__info {
    width: 85%;
    text-align: center;
  }

  .services-btns {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .services-about {
    height: 1750px;
  }

  .services-about__item {
    width: 95%;
  }
}

@media (max-width: 600px) {
  .services-about__description {
    font-size: 14px;
    width: 100%;
  }

  .services-about {
    height: 1550px;
  }

  .services-about__top {
    -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;
  }

  .services-about__top .section-description {
    width: 95%;
  }

  .services-about__top img {
    margin-top: 20px;
    width: 50%;
  }

  .services-img {
    height: 50%;
  }

  .services-hero__title {
    font-size: 32px;
  }

  .services-hero__description {
    font-size: 12px;
  }

  .services-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 475px) {
  .services-about {
    height: 1865px;
  }
}

.reviews {
  height: 1750px;
  width: 100%;
  background-color: #f5f5f5;
}

.reviews-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.reviews-row {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
}

.reviews-item {
  text-align: center;
  width: 30%;
  background-color: #fff;
}

.reviews-item iframe {
  width: 100%;
}

.reviews-info {
  padding: 15px;
}

.reviews-name {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 3px;
}

.reviews-state {
  font-size: 16px;
  font-weight: 400;
  color: #737373;
  margin-bottom: 15px;
}

.reviews-state strong {
  color: rgb(255, 102, 0);
}

.reviews-description {
  color: #000000;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  margin: 20px 0;
}

.reviews-thumbs {
  padding: 45px 0;
  background-color: #f5f5f5;
}

.reviews__thumbs-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;

}
.reviews__thumbs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.reviews__thumbs img {
  width: 275px;
  height: 275px;
  object-fit: cover;
  cursor: pointer;
}

.cases {
  height: 835px;
  background-image: url("img/calculator-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.cases::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 12, 77, 0.5)), to(rgba(5, 2, 87, 0.4)));
  background-image: linear-gradient(to bottom, rgba(15, 12, 77, 0.5), rgba(5, 2, 87, 0.4));
}

.cases-inner {
  height: 100%;
  width: 100%;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cases-inner .section-title,
.cases-inner .section-suptitle {
  color: #fff;
}

.cases-block {
  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;
}

.swiperreviews {
  width: 517px;
  position: relative;
  overflow: hidden;
}

.swiperreviews .swiper-wrapper {
  width: 50%;
}

.swiperreviews .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 517px;
  height: 580px;
}

.negative {
  height: 1350px;
  width: 100%;
  background-color: #fff;
}

.negative-inner {
  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;
  height: 100%;
  width: 100%;
}

.negative-block {
  width: 100%;
  min-height: 80%;
  padding: 50px;
  background-color: #f5f5f5;
}

.negative-title {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.17;
  color: #000;
  margin-bottom: 30px;
}

.negative-description {
  font-weight: 300;
  line-height: 1.55;
  font-size: 18px;
  color: #000;
}

.negative-description strong {
  color: #0a05eb;
  font-weight: 600;
}

.negative-subtitle {
  font-size: 18px;
  color: #000;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .cases-img img {
    width: 366px;
    height: 420px;
  }

  .negative-block {
    min-height: 1550px;
  }
}

@media (max-width: 980px) {
  .reviews-row {
    -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;
  }

  .reviews-item {
    width: 70%;
  }

  .reviews {
    height: 4650px;
  }

  .cases-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cases {
    height: 1250px;
  }

  .negative {
    height: 1650px;
  }

  .reviews .section-description {
    width: 100%;
  }
}

@media (max-width: 800px) {
  .negative {
    height: 1850px;
  }
}

@media (max-width: 700px) {
  .negative {
    height: 2200px;
  }

  .negative-block {
    width: 100%;
  }
}

@media (max-width: 585px) {
  .negative {
    height: 2000px;
  }

  .swiperreviews {
    width: 340px;
    height: 410px;
  }

  .swiperreviews .swiper-wrapper .swiper-slide img {
    width: 340px;
    height: 410px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .cases-img img {
    width: 310px;
    height: 350px;
  }

  .cases {
    height: 950px;
  }

  .negative-block {
    padding: 15px;
    height: 100%;
  }
}

@media (max-width: 530px) {
  .negative {
    height: auto;
  }
}

@media (max-width: 500px) {
  .reviews-item {
    width: 95%;
  }
}

.blog {
  height: 1900px;
  width: 100%;
  background-color: #f5f5f5;
}

.blog .container {
  max-width: 1200px;
}

.blog-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.blog-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-item {
  width: 386px;
  height: 401px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 30px;
  position: relative;
}

.more {
  font-size: 20px;
  font-weight: 500;
  color: #0a05eb;
  font-weight: 500;
  line-height: 1.55;
  position: absolute;
  bottom: 20px;
}

.blog-item__img {
  height: 30%;
  width: 100%;
}

.blog-item__info {
  padding: 20px;
  position: absolute;
  bottom: 12%;
  left: 5%;
  height: 150px;
}

.blog-item__name {
  font-size: 20px;
  color: #3d3838;
  line-height: 1.55;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .blog {
    height: 2150px;
  }
}

@media (max-width: 805px) {
  .blog {
    height: 4150px;
  }
}

@media (max-width: 450px) {
  .blog-row {
    -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;
  }
}

@media (max-width: 400px) {
  .blog-item {
    width: 299px;
  }
}

.guarantee-hero {
  height: 500px;
  width: 100%;
  background-image: url(img/services/services-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.guarantee-hero::before {
  display: block;
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(208, 208, 219, 0.6)), to(rgba(204, 204, 212, 0.6)));
  background-image: linear-gradient(to bottom, rgba(208, 208, 219, 0.6), rgba(204, 204, 212, 0.6));
}

.guarantee-hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.guarantee-info {
  width: 50%;
}

.guarantee-img {
  width: 710px;
  height: 500px;
}

.guarantee-img img {
  width: 710px;
  height: 500px;
}

.guarantee-title {
  font-size: 49px;
  font-weight: 700;
  line-height: 1.1;
  color: #1f1f1f;
  margin-bottom: 30px;
}

.guarantee-subtitle {
  font-size: 21px;
  font-weight: 400;
  color: #1f1f1f;
  line-height: 1.3;
  margin-bottom: 50px;
}

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

.guarantee-partners span {
  font-weight: 700;
  line-height: 1.2;
  font-size: 18px;
}

.guarantee-partners img {
  margin: 0 10px;
}

.guarantee-block {
  height: 550px;
  width: 100%;
  background-color: #fff;
}

.guarantee-block__inner {
  width: 100%;
  height: 100%;
  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;
}

.guarantee-row {
  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;
}

.guarantee-item {
  width: 379px;
  height: 472px;
  position: relative;
}

.guarantee-item img {
  width: 379px;
  height: 472px;
}

.guarantee-item__info {
  padding: 30px;
  position: absolute;
  bottom: 15%;
  height: 200px;
}

.guarantee-item__title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: 1.5;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.guarantee-item__subtitle {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: #000;
}

.result {
  height: 805px;
  width: 100%;
  background-image: url(img/calculator-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.result::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 12, 77, 0.5)), to(rgba(5, 2, 87, 0.4)));
  background-image: linear-gradient(to bottom, rgba(15, 12, 77, 0.5), rgba(5, 2, 87, 0.4));
}

.result-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.result-title {
  font-size: 42px;
  line-height: 1.23;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
}

.result-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.result-item {
  width: 33%;
  margin: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.result-item__title {
  font-size: 52px;
  margin-bottom: 20px;
  line-height: 1.17;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.result-line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.562);
}

.result-item__description {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.55;
  color: #fff;
}

@media (max-width: 1200px) {
  .guarantee-img {
    position: relative;
  }

  .guarantee-img img {
    width: 561px;
    height: 340px;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    bottom: 0;
  }

  .guarantee-item__subtitle {
    font-size: 16px;
  }

  .guarantee-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .guarantee-block {
    height: 1050px;
  }
}

@media (max-width: 980px) {
  .guarantee-hero__inner {
    -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;
  }

  .section-description {
    width: 95%;
  }

  .guarantee-info {
    width: 80%;
  }

  .guarantee-hero {
    padding-top: 40px;
    height: 850px;
  }

  .guarantee-img {
    height: 100%;
    width: 100%;
  }

  .guarantee-img img {
    width: 100%;
    height: 87%;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .guarantee-block {
    height: 1600px;
  }

  .guarantee-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .result-row {
    -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;
  }
}

@media (max-width: 650px) {
  .guarantee-title {
    font-size: 34px;
  }

  .guarantee-subtitle {
    font-size: 18px;
  }

  .guarantee-partners {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .guarantee-partners img {
    margin: 10px;
  }

  .result-item__title {
    font-size: 44px;
  }

  .result-item__description {
    font-size: 14px;
  }

  .result-title {
    font-size: 32px;
  }

  .guarantee-info {
    width: 95%;
  }
}

@media (max-width: 500px) {
  .result-title {
    font-size: 28px;
  }

  .result-item {
    width: 70%;
  }

  .result-item__title {
    font-size: 28px;
  }

  .result {
    height: 650px;
  }
}

@media (max-width: 400px) {
  .guarantee-item {
    width: 300px;
    height: 450px;
  }

  .guarantee-item img {
    width: 300px;
    height: 450px;
  }
}

.security {
  height: 660px;
  background-image: url("img/security/security-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.security-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 50%;
  height: 100%;
}

.security-title {
  font-weight: 700;
  font-size: 37px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 20px;
}

.security-subtitle {
  font-size: 19px;
  font-weight: 400;
  color: #000;
  line-height: 1.55;
  margin-bottom: 20px;
}

.security-description {
  font-size: 19px;
  font-weight: 600;
  color: #000;
  line-height: 1.55;
}

.contacts {
  height: 567px;
  width: 100%;
  background-image: url(img/contacts-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.contacts-inner {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.contacts-inner .about-benefits {
  height: 100%;
}

.contacts-title {
  font-size: 49px;
  line-height: 1.1;
  font-weight: 700;
  color: #3d3838;
  margin-bottom: 25px;
}

.contacts-subtitle {
  font-size: 21px;
  line-height: 1.5;
  font-weight: 400;
  color: #3d3838;
}

.contacts-benefits {
  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;
  height: 550px;
}

.contacts-benefits__inner {
  height: 100%;
  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;
}

.contacts-btn {
  margin-top: 25px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 20px 40px;
  font-size: 18px;
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  background-color: #0A05EB;
  -webkit-box-shadow: 0px 8px 30px 0px rgba(28, 28, 28, 0.3);
  box-shadow: 0px 8px 30px 0px rgba(28, 28, 28, 0.3);
}

.contacts-benefits-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contacts-benefits-row .about-benefits__item {
  margin: 0;
}

@media (max-width: 1200px) {
  .contacts-benefits {
    height: 900px;
  }
}

@media (max-width: 830px) {
  .contacts-benefits {
    height: 1400px;
  }
}

.blogs-hero {
  height: 550px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

.blog1 {
  background-image: url(img/blogs/blog1.png);
}

.blogs-hero__inner {
  height: 100%;
  width: 100%;
  position: relative;
}

.blogs-hero__inner::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/blogs/1.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.blogs-wrapper {
  position: relative;
  z-index: 1;
  padding: 0 15px;
  height: 100%;
  width: 100%;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50%;
}

.blogs-date {
  font-size: 17px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.blogs-title {
  font-size: 41px;
  font-weight: 500;
  color: #000;
  line-height: 1.55;
  margin-bottom: 20px;
}

.blogs-description {
  font-size: 20px;
  font-weight: 300;
  color: #000;
}

.blogs-text {
  padding: 40px 0;
}

.blogs-text__inner {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blogs-text__info {
  width: 70%;
}

.blogs-text__info p {
  color: #000;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
}

.blogs-text__info p strong {
  color: #000;
}

.blogs-text__title {
  font-size: 34px;
  font-weight: 700;
  color: #000;
  line-height: 1.35;
}

.blogs-consult {
  width: 330px;
  height: 550px;
  background-color: #f5f5f5;
}

.blog-form {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  width: 100%;
}

.blog-form input {
  font-size: 17px;
  border-radius: 5px;
  color: #000;
  background-color: #fff;
  border: 1px solid #787878;
  font-weight: 400;
  padding: 15px 30px;
  margin: 10px 0;
}

.blog-form h2 {
  font-size: 26px;
  margin-bottom: 5px;
  text-align: center;
  color: #000;
}

.blog-form p {
  font-size: 18px;
  font-weight: 300;
  color: #000;
  margin-bottom: 5px;
  text-align: center;
}

.g-recaptcha {
  margin-top: 5px;
}

.more-blogs {
  background-color: #f5f5f5;
}

@media (max-width: 1200px) {
  .blogs-text__inner {
    -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;
  }

  .blogs-consult {
    margin-top: 20px;
  }
}

@media (max-width: 900px) {
  .blogs-wrapper {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .blogs-text__info {
    width: 95%;
  }

  .blogs-hero {
    height: 700px;
  }
}

.blog2 {
  background-image: url("img/blogs/blog2.png");
}

.blog3 {
  background-image: url(img/blogs/blog3.png);
}

.blog4 {
  background-image: url(img/blogs/blog4.png);
}

.blog5 {
  background-image: url("img/blogs/blog5.png");
}

.blog6 {
  background-image: url(img/blogs/blog6.png);
}

.blog7 {
  background-image: url("img/blogs/blog7.png");
}

.blog8 {
  background-image: url(img/blogs/blog8.png);
}

.blog9 {
  background-image: url(img/blogs/blog9.png);
}

.blog10 {
  background-image: url(img/blogs/blog10.png);
}

.overlay-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  z-index: 11;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.overlay-modal.active-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal {
  background-color: #fff;
  height: 700px;
  width: 900px;
  position: relative;
  -webkit-box-shadow: 0px 0px 15px #000;
  box-shadow: 0px 0px 15px #000;
}

.modal-top {
  background-color: #f5f5f5;
}

.modal-wrapper {
  position: relative;
  height: 90%;
  width: 100%;
  border-top: 5px solid rgb(255, 94, 31);
}

.modal-title {
  padding: 35px 0 35px 35px;
  font-size: 22px;
  font-weight: 300;
  color: #000;
}

.interview-title {
  font-size: 26px;
  margin-bottom: 30px;
  font-weight: 400;
}

.next-question {
  position: absolute;
  bottom: 10%;
  right: 10%;
  border-radius: 30px;
  font-weight: 600;
  padding: 15px 30px;
  background-color: #0A05EB;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
}

.next-question:disabled {
  color: #000;
}

.next-question::after {
  content: "→";
  display: block;
  font-size: 18px;
  line-height: 1.3;
  margin-left: 10px;
  color: #fff;
}

.prev-question {
  position: absolute;
  bottom: 10%;
  left: 10%;
  border-radius: 30px;
  font-weight: 600;
  padding: 15px 30px;
  background-color: #0A05EB;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
}

.prev-question::before {
  content: "→";
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  line-height: 1.3;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  margin-right: 10px;
  color: #fff;
}

.interviews {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  padding: 35px;
  width: 100%;
  height: 100%;
}

.interviews.active-question {
  display: block;
}

.interviews span {
  font-size: 14px;
  font-weight: 300;
  color: #000;
  line-height: 1.55;
}

.interviews form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.interviews form .form-btn {
  width: auto;
}

.interviews form input {
  padding: 15px 25px 15px 35px;
  font-size: 16px;
  color: #000;
  outline: none;
  border-radius: 6px;
  border: 1px solid gray;
  margin-bottom: 15px;
}

.interviews form button {
  position: absolute;
  bottom: 10%;
  right: 10%;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  font-size: 16px;
  padding: 15px 30px;
  background-color: #0A05EB;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
}

.interview-block {
  padding: 10px;
  width: 100%;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.radio-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 20px;
  height: 100%;
}

.radio-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.radio-item input[type=radio] {
  display: none;
}

.radio-item label {
  display: block;
  cursor: pointer;
  position: relative;
  padding-left: 40px;
  margin-right: 0;
  line-height: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio-item label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  z-index: 1;
  background-color: #fff;
  bottom: 1px;
  border: 2px solid #000;
  border-radius: 50%;
}

/* Checked */
.radio-item input[type=radio]:checked+label:before {
  background-color: #000;
}

/* Hover */
.radio-item label:hover:before {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

/* Disabled */
.radio-item input[type=radio]:disabled+label:before {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.textarea-block input {
  width: 100%;
  padding: 15px;
  border: none;
  border-bottom: 2px solid #b3b3b3;
  font-size: 16px;
}

.description-block {
  font-weight: 700;
  font-size: 18px;
  color: #000;
}

#demo {
  height: 20px;
  font-size: 22px;
  font-weight: 700;
  color: rgb(255, 94, 31);
  text-align: center;
  margin-top: 20px;
}

.interview-item {
  margin: 0 10px;
  height: 150px;
  width: 200px;
}

.interview-item img {
  height: 100%;
  width: 100%;
}

.interview-item span {
  display: block;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 300;
  color: #000;
  margin-top: 5px;
}

@media (max-width: 500px) {

  .prev-question,
  .next-question {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 20px;
  }

  .interviews form .form-btn {
    font-size: 14px;
    padding: 15px 20px;
  }
}

@media (max-width: 1200px) {
  .security {
    height: 800px;
  }
}

@media (max-width: 980px) {
  .security-inner {
    width: 95%;
  }
}

@media (max-width: 500px) {
  .security-description {
    font-size: 16px;
  }

  .security-title {
    font-size: 32px;
  }
}