@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
@font-face {
  font-family: "Sports World";
  src: url("../fonts/SportsWorld.eot");
  src: url("../fonts/SportsWorld.eot?#iefix") format("embedded-opentype"),
    url("../fonts/SportsWorld.woff") format("woff"),
    url("../fonts/SportsWorld.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  padding: 1;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  scroll-behavior: smooth;
}
.wrapper {
  position: relative;
  overflow: hidden;
}
.wrapper::before {
  content: "";
  width: 100vw;
  height: 100vh;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  z-index: 2;
  pointer-events: none;
}
.wrapper--blur::before {
  background-color: rgba(255, 255, 255, 0.5);
  pointer-events: all;
}
.btn {
  display: inline-block;
  text-decoration: none;
}
.btn:hover {
  cursor: pointer;
  color: inherit;
}
.btn:active,
.btn:focus {
  outline: none;
  border: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
img {
  vertical-align: unset !important;
}
.menu-button {
  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;
  height: 58px;
  width: 58px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 105;
}
.menu-button span {
  width: 100%;
  height: 3px;
  background: #000000;
  border-radius: 1px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.menu-button::before {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: #000000;
  border-radius: 1px;
  position: absolute;
  top: 14px;
  left: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.menu-button::after {
  content: "";
  display: block;
  height: 3px;
  width: 65%;
  background: #000000;
  border-radius: 1px;
  position: absolute;
  bottom: 14px;
  right: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.menu-button:hover {
  cursor: pointer;
}
.menu-button-dark span {
  background: #333333;
}
.menu-button-dark::before {
  background: #333333;
}
.menu-button-dark::after {
  background: #333333;
}
.menu-button--active span {
  background: #ffffff;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.menu-button--active::before {
  height: 4px;
  border-radius: 2px;
  background: #ffffff;
  top: calc(50% - 2px);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-button--active::after {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #ffffff;
  bottom: calc(50% - 2px);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header {
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background: #228b22;
  position: fixed;
  top: 0;
  left: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  overflow-y: auto;
  z-index: 100;
}
.header--active {
  -webkit-transform: translateX(-600px);
  transform: translateX(-600px);
}
.header-logo {
  display: block;
  width: 100%;
  padding: 20px 0 0 30px;
}
.header-logo img {
  height: 140px;
  max-width: 100%;
}
.header-nav {
  padding-left: 30px;
}
.nav__item {
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: 300;
}
.nav__item a {
  color: #ffffff;
  text-decoration: none;
}
.nav__item--active {
  padding-left: 35px;
  font-size: 26px;
  font-weight: 500;
  position: relative;
}
.nav__item--active::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 5px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.header-working-hours {
  width: 100%;
  padding: 40px 0 40px 30px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 22px;
  font-weight: 300;
  color: #ffffff;
}
.header-working-hours--accent-text {
  display: inline-block;
  margin-top: 10px;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.item-card {
  text-align: center;
}
.item__img {
  min-height: 180px;
  display: inline-block;
  position: relative;
}
.item__img img {
  height: 180px;
  max-width: 100%;
}
.item__img .trunc {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.item__img.img-small {
  height: 150px;
}
.item__img.img-small img {
  height: 150px;
}
.item__img.img-medium {
  height: 180px;
}
.item__img.img-medium img {
  height: 180px;
}
.item__img.img-big {
  height: 220px;
}
.item__img.img-big img {
  height: 220px;
}
.item__img-width,
.item__img-height {
  font-size: 18px;
  color: #012300;
}
.item__img-width {
  position: absolute;
  top: -36px;
  left: 26%;
}
.item__img-width::after {
  content: url("../img/icons/item-arrow.png");
  position: absolute;
  top: calc(50% - 3px);
  left: 35px;
  line-height: 0;
}
.item__img-width::before {
  content: url("../img/icons/item-arrow.png");
  position: absolute;
  top: calc(50% - 2px);
  left: -42px;
  line-height: 0;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.item__img-height {
  position: absolute;
  top: 23%;
  left: -35px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.item__img-height::after {
  content: url("../img/icons/item-arrow.png");
  position: absolute;
  top: calc(50% - 3px);
  left: 42px;
  line-height: 0;
}
.item__img-height::before {
  content: url("../img/icons/item-arrow.png");
  position: absolute;
  top: calc(50% - 2px);
  left: -34px;
  line-height: 0;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.item__name {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 24px;
  font-family: "Open Sans";
  color: #000000;
}
.item__btns {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}
.item__btns .btn-calc,
.calculator-sum-block__btn .btn-calc {
  padding: 10px 30px;
  margin-bottom: 5px;
  border: none;
  border-radius: 5px;
  background: #228b22;
  font: inherit;
  letter-spacing: 1px;
  color: #ffffff;
}
.item__btns .btn-about {
  padding: 20px 20px 20px 60px;
  border: none;
  background: none;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  font: inherit;
  font-size: 18px;
  text-align: left;
  color: #012300;
  position: relative;
}
.item__btns .btn-about::before {
  content: url(../img/icons/circle-dark.png);
  position: absolute;
  top: calc(50% - 16px);
  left: 10px;
}
.item__btns .btn-about::after {
  content: url(../img/icons/arrow-dark.png);
  position: absolute;
  top: calc(50% - 16px);
  left: 3px;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.item__btns .btn-about:hover::after {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}
.item__checkbox {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border-radius: 5px;
  border: 2px solid #012300;
  position: relative;
}
.item__checkbox--active::before {
  content: "";
  position: absolute;
  top: 17px;
  left: -8px;
  width: 51px;
  height: 2px;
  background-color: #012300;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 2;
}
.item__checkbox--active::after {
  content: "";
  position: absolute;
  top: 17px;
  left: -8px;
  width: 51px;
  height: 2px;
  background-color: #012300;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: 2;
}
.block-title {
  margin-bottom: 50px;
  font-family: "Sports World", sans-serif;
  font-size: 42px;
  color: #012300;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.3;
}
.steps-title {
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.steps-title h1 {
  font-size: 29px;
}
.steps-title p {
  font-size: 22px;
  padding-top: 36px;
  text-align: center;
}
.step-title {
  padding: 40px 0;
  margin-bottom: 20px;
  font-family: "Sports World", sans-serif;
  font-size: 36px;
  color: #616161;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
  position: relative;
}
.step-title::before {
  content: "";
  position: absolute;
  top: calc(50% - 200px);
  left: 0;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
  height: 400px;
  width: 500px;
  background-repeat: no-repeat;
  background-size: contain;
}
.step-title::after {
  content: "";
  position: absolute;
  top: calc(50% - 220px);
  -webkit-transform: scale(-1);
  transform: scale(-1);
  right: 0;
  height: 400px;
  width: 500px;
  background-image: url("../img/img/leaves.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.step-title-accent {
  text-decoration: underline;
}
.first-screen {
  background-image: url("../img/img/header-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: #000000;
}
.first-screen-container {
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
}
.first-screen-head {
  width: 100%;
  padding-top: 56px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.fsh__logo img {
  max-width: 85%;
  width: 85px;
}
.fsb__header-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
.fsh__info {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
}
.fsh__info p {
  margin: 0;
}
.fsh__info--big-text {
  font-weight: 500;
}
.first-screen-body {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 85%;
  flex: 1 1 85%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.fsb__title {
  font-family: "Sports World", sans-serif;
  font-size: 52px;
}
.fsb__subtitle {
  margin-top: 30px;
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  text-align: center;
}
.fsb__subtitle--accent-text {
  font-weight: 700;
}
.fsb__subtitle--big-text {
  font-weight: 700;
  text-transform: uppercase;
}
.fsb__buttons {
  margin: 80px 0 45px;
}
.fsb__buttons-calculate {
  padding: 15px;
  margin-right: 20px;
  border: 2px solid #ffffff;
  border-radius: 5px;
  background: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: inherit;
  font-family: inherit;
}
.fsb__buttons-calculate:active,
.fsb__buttons-calculate:focus {
  border: 2px solid #ffffff;
}
.fsb__buttons-about {
  padding: 20px 20px 20px 60px;
  border: none;
  background: none;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  font-size: 16px;
  color: inherit;
  font-family: inherit;
  position: relative;
}
.fsb__buttons-about::before {
  content: url(../img/icons/circle.png);
  position: absolute;
  top: calc(50% - 13px);
  left: 20px;
}
.fsb__buttons-about::after {
  content: url(../img/icons/arrow.png);
  position: absolute;
  top: calc(50% - 10px);
  left: 13px;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.fsb__buttons-about:hover {
  background: #228b22;
}
.fsb__buttons-about:hover::after {
  -webkit-transform: translateX(22px);
  transform: translateX(22px);
}
.first-step-regions {
  margin-bottom: 70px;
}
.first-step-regions__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
}
.rg-box {
  height: 316px;
  width: 310px;
  margin: 0 0 30px 0;
  display: inline-block;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.rg-box::before {
  content: "";
  position: absolute;
  top: -50px;
  left: calc(50% - 77px);
  width: 154px;
  height: 50px;
  border-radius: 50%;
  background-color: #012300;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.rg-box:hover {
  cursor: pointer;
  color: #ffffff;
}
.rg-box:hover::before {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}
.rg-box__text {
  color: black;
  border: 2px solid black;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.rg-box__text img {
  height: 100px;
}
.rg-box__text-title {
  font-weight: 500;
  font-size: 16px;
}

.rg-box__text-price {
  padding-top: 10px;
  font-weight: 300;
  font-size: 14px;
  text-align: center;
}
.rg-box-cao {
  background-image: url("../img/img/rg-cao.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.rg-box-yvao {
  background-image: url("../img/img/rg-yvao.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.rg-box-svao {
  background-image: url("../img/img/rg-svao.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.rg-box-zao {
  background-image: url("../img/img/rg-zao.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.rg-box-sao {
  background-image: url("../img/img/rg-sao.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.rg-box-vao {
  background-repeat: no-repeat;
  background-size: cover;
}
.rg-box-szao {
  background-repeat: no-repeat;
  background-size: cover;
}
.rg-box-yzao {
  background-repeat: no-repeat;
  background-size: cover;
}
.rg-box-caoo {
  background-repeat: no-repeat;
  background-size: cover;
}
.rg-box-yvaoo {
  background-repeat: no-repeat;
  background-size: cover;
}
.rg-box-svaoo {
  background-repeat: no-repeat;
  background-size: cover;
}
.rg-box-zaoo {
  background-repeat: no-repeat;
  background-size: cover;
}
.rg-box-saoo {
  background-repeat: no-repeat;
  background-size: cover;
}
.rg-box-vaoo {
  background-repeat: no-repeat;
  background-size: cover;
}
.rg-box-szaoo {
  background-repeat: no-repeat;
  background-size: cover;
}
.rg-box-yzaoo {
  background-repeat: no-repeat;
  background-size: cover;
}
.first-step-advantages {
  margin-bottom: 35px;
}
.first-step-advantages__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -ms-flex-item-align: start;
  align-self: flex-start;
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
}
.advantages-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 35%;
  flex: 0 1 35%;
  margin-bottom: 65px;
}
.advantages-block__title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
}
.advantages-block__subtitle {
  font-size: 16px;
  font-weight: 300;
}
.advantages-block__icon {
  height: 90px;
}
.first-step-services__content {
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
}
.first-step-services__subtitle {
  margin-bottom: 90px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  color: #012300;
}
.services-swiper-container {
  padding: 50px 0 50px 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.services-swiper-container .swiper-wrapper {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.services-swiper-container .swiper-button-prev,
.services-swiper-container .swiper-button-next {
  display: none;
}
.second-step__content {
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto 50px auto;
}
.second-step-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 50px;
}
.second-step-block:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse nowrap;
  flex-flow: row-reverse nowrap;
}
.second-step-block:nth-child(2n) > .second-step-block__img {
  text-align: left;
}
.second-step-block__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  padding-right: 8%;
}
.second-step-block__img {
  height: 330px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  text-align: right;
}
.second-step-block__img img {
  height: 330px;
  max-width: 100%;
}
.second-step-block__text-title {
  margin-bottom: 15px;
  font-size: 28px;
  font-family: "Sports World", sans-serif;
  letter-spacing: 2px;
  line-height: 1.2;
  color: #012300;
}
.second-step-block__text-subtitle {
  color: #001500;
}
.third-step-calculator__content {
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto 100px;
}
.third-step-calculator__content .services-swiper-container {
  padding: 50px 0 80px 0;
}
.third-step-calculator__content .item-card:hover {
  cursor: pointer;
}
.calculator-title {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #012300;
  letter-spacing: 2px;
}
.calculator-sum-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px;
  border: 2px solid #012300;
  border-radius: 5px;
}
.calculator-sum-block__sum,
.calculator-sum-block__info,
.calculator-sum-block__btn {
  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;
  font-family: "Open Sans", sans-serif;
}
.calculator-sum-block__sum {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 700;
  color: #012300;
}
.calculator-sum-block__info {
  -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;
  font-size: 22px;
  color: #000000;
}
.sum-accent {
  margin-left: 10px;
  color: #840000;
}
.calculator-sum-block__btn .btn-calc {
  padding: 15px 60px;
  text-transform: uppercase;
}
.third-step-about__content {
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto 130px;
}
.third-step-about__title {
  margin-bottom: 80px;
}
.third-step-about__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 100px;
}
.third-step-about__card:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse nowrap;
  flex-flow: row-reverse nowrap;
}
.third-step-about__card:nth-child(2) > .about-card__img {
  padding: 0 40px 0 0;
}
.third-step-about__card:nth-child(2) > .about-card__img img {
  -webkit-box-shadow: 0px 4px 25px 10px rgba(1, 35, 0, 0.15);
  box-shadow: 0px 4px 25px 10px rgba(1, 35, 0, 0.15);
}
.third-step-about__card:nth-child(2) > .about-card__text {
  left: 200px;
}
.about-card__img {
  height: 400px;
  padding-left: 40px;
}
.about-card__img img {
  max-width: 100%;
  -webkit-box-shadow: 0px 4px 25px 5px rgba(1, 35, 0, 0.15);
  box-shadow: 0px 4px 25px 5px rgba(1, 35, 0, 0.15);
  border-radius: 5px;
}
.about-card__text {
  width: calc(50% + 200px);
  padding: 15px 15px;
  margin-left: -200px;
  background-color: #ffffff;
  border-radius: 5px;
  position: relative;
  top: 0;
  left: 0;
}
.about-card__text p {
  font-size: 18px;
  color: #012300;
}
.third-step-reviews__content {
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto 80px;
}
.review {
  padding: 60px 30px 30px 80px;
  background-color: #eeeeee;
  font-size: 18px;
  color: #012300;
  border-radius: 5px;
}
.review__text {
  margin-bottom: 50px;
  position: relative;
}
.review__text::before {
  content: "“";
  position: absolute;
  top: -25px;
  left: -50px;
  font-size: 100px;
  color: rgba(1, 35, 0, 0.5);
  line-height: 1;
}
.review__rating {
  position: relative;
}
.review__rating.one-stars::before {
  content: url("../img/icons/one-star.png");
  position: relative;
  top: 0;
  left: 0;
}
.review__rating.two-stars::before {
  content: url("../img/icons/two-stars.png");
  position: relative;
  top: 0;
  left: 0;
}
.review__rating.three-stars::before {
  content: url("../img/icons/three-stars.png");
  position: relative;
  top: 0;
  left: 0;
}
.review__rating.four-stars::before {
  content: url("../img/icons/four-stars.png");
  position: relative;
  top: 0;
  left: 0;
}
.review__rating.five-stars::before {
  content: url("../img/icons/five-stars.png");
  position: relative;
  top: 0;
  left: 0;
}
.review-swiper-container {
  width: 85%;
  margin: 0 auto;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.review-btn-next {
  width: 90px;
  height: 24px;
  position: absolute;
  bottom: 0;
  left: calc(50% + 10px);
  background-image: url("../img/icons/reviews-slider-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 15;
  cursor: pointer;
}
.review-btn-prev {
  width: 90px;
  height: 24px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 100px);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  background-image: url("../img/icons/reviews-slider-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 15;
  cursor: pointer;
}
.contact {
  padding: 100px 0;
  background-image: url("../img/img/footer-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.contact__content {
  padding: 50px 0 75px;
  background: rgba(252, 252, 252, 0.5);
}
.contact-title {
  margin: 0;
  line-height: 2.2;
}
.contact-subtitle {
  margin-bottom: 40px;
  text-align: center;
  color: #012300;
  font-size: 36px;
  line-height: 2.2;
}
.contact-subtitle--big-text {
  font-weight: 700;
  text-transform: uppercase;
}
.contact-subtitle--accent-text {
  font-weight: 700;
}
.contact-form {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.contact-form input {
  display: block;
  width: 355px;
  padding: 20px 15px;
  margin: 0 auto 20px;
  border: 2px solid rgba(1, 35, 0, 0.6);
  border-radius: 5px;
  color: #012300;
  background: none;
  font: inherit;
}
.contact-form input:focus,
.contact-form input:active {
  outline: none;
  border: 2px solid rgba(1, 35, 0, 0.6);
}
input::-webkit-input-placeholder {
  color: rgba(1, 35, 0, 0.8);
  opacity: 1;
}
input:-ms-input-placeholder {
  color: rgba(1, 35, 0, 0.8);
  opacity: 1;
}
input::-ms-input-placeholder {
  color: rgba(1, 35, 0, 0.8);
  opacity: 1;
}
input::placeholder {
  color: rgba(1, 35, 0, 0.8);
  opacity: 1;
}
input::-webkit-input-placeholder {
  color: rgba(1, 35, 0, 0.8);
  opacity: 1;
}
input:-ms-input-placeholder {
  color: rgba(1, 35, 0, 0.8);
  opacity: 1;
}
input::-ms-input-placeholder {
  color: rgba(1, 35, 0, 0.8);
  opacity: 1;
}
input::-moz-placeholder {
  color: rgba(1, 35, 0, 0.8);
}
.contact-form button {
  width: 355px;
  padding: 20px 15px;
  margin: 0 auto 20px;
  color: #ffffff;
  font: inherit;
  font-size: 18px;
  background: #228b22;
  border: none;
  border-radius: 5px;
}
.contact-form button:hover {
  color: #ffffff;
}
.contact-form p {
  font-size: 12px;
  color: #000000;
}
.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 30px 0 50px;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}
.footer__nav-item {
  margin: 0 30px 15px;
  font-size: 26px;
  font-weight: 300;
  color: #012300;
  text-decoration: none;
}
.footer__text {
  text-decoration: none;
  margin: 0;
  font-size: 26px;
}
.swiper-pagination-bullet-active {
  background: #228b22 !important;
}
.swiper-pagination {
  display: none;
}
.contact-form--hidden {
  display: none;
}
.form-success {
  display: none;
  font-size: 32px;
  color: #012300;
  line-height: 1;
  text-align: center;
}
.form-success--accent {
  font-size: 38px;
  font-weight: 700;
}
.form-success--show {
  display: block;
}
.contact-form > .form-error {
  font-size: 16px;
  color: #df2b2b;
}
.modal-header {
  border: none;
}
.modal .title {
  color: #2d2e2e;
  font-family: inherit;
  font-size: 33px;
  font-weight: 400;
  line-height: 31px;
  text-align: center;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
  margin-bottom: 42px;
}
.modal .close {
  opacity: 1;
}
.tabs {
  margin-bottom: 56px;
  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;
}
.tabs .tab {
  margin-left: 12px;
  margin-right: 12px;
  color: #636363;
  font-family: inherit;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 23px;
  text-align: center;
}
.tabs .tab:hover {
  cursor: pointer;
}
.tabs .tab.current {
  text-decoration: underline;
}
.tab-content .tab {
  display: none;
}
.tab-content .tab.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tab-content ul.list-wrapper {
  padding-left: 0;
  margin: 0;
  margin-bottom: 50px;
  min-width: 25%;
}
.tab-content ul.list-wrapper li {
  list-style: none;
}
.tab-content .list-areas.alph.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tab-content .tab.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tab-content .tab.current a {
  display: block;
  min-width: 21%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 21%;
  white-space: nowrap;
  color: #3191c3;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 23px;
  text-align: left;
}
.tab-content .tab.current a:hover {
  text-decoration: underline;
}
.tab-content .tab.current a:nth-of-type(5n) {
  min-width: 36%;
  max-width: 36%;
}
.button-to-top {
  width: 70px;
  height: 70px;
  border: none;
  border-radius: 5px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #228b22;
  opacity: 0;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  z-index: 5;
}
.button-to-top::before {
  content: "";
  position: absolute;
  top: calc(50% - 23px);
  left: calc(50% - 8px);
  width: 16px;
  height: 46px;
  background-image: url("../img/icons/arrow-to-top.png");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.button-to-top--show {
  opacity: 1;
}
@media (max-width: 1320px) {
  .first-screen-container,
  .first-step-regions__content {
    max-width: 980px;
  }
  .first-step-regions__content {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .fsb__title {
    font-size: 48px;
  }
  .rg-box {
    width: 300px;
  }
}
@media (max-width: 1200px) {
  .step-title::after {
    top: calc(50% - 170px);
    height: 300px;
    width: 400px;
  }
  .step-title::before {
    top: calc(50% - 140px);
    height: 300px;
    width: 400px;
  }
  .second-step-block__text {
    padding: 0;
    margin-right: 30px;
  }
  .second-step-block:nth-child(2n) > .second-step-block__text {
    margin: 0 0 0 30px;
  }
  .modal-dialog {
    max-width: 85% !important;
  }
}
@media (max-width: 1124px) {
  .advantages-block {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
  }
  .review-swiper-container {
    width: 100%;
  }
  .calculator-sum-block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .calculator-sum-block__sum {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
  }
  .calculator-sum-block__info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 60%;
    flex: 1 1 60%;
  }
  .calculator-sum-block__btn {
    margin-top: 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 70%;
    flex: 1 1 70%;
  }
  .calculator-sum-block__btn .btn-calc {
    width: 45%;
    text-align: center;
  }
  .about-card__text {
    padding: 35px 25px;
  }
}
@media (max-width: 990px) {
  .modal-dialog {
    max-width: 85% !important;
  }
  .tab-content .tab.current a {
    font-size: 16px;
  }
}
@media (max-width: 980px) {
  .fsh__info {
    margin-right: 30px;
  }
  .fsb__title {
    margin-top: 30px;
    font-size: 36px;
  }
  .fsb__header-title {
    font-size: 20px;
  }
  .fsb__subtitle {
    font-size: 24px;
  }
  .step-title::after {
    top: calc(50% - 170px);
    height: 300px;
    width: 400px;
  }
  .step-title::before {
    top: calc(50% - 140px);
    height: 300px;
    width: 400px;
  }
  .rg-box {
    width: 340px;
  }
  .first-step-advantages__content {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .advantages-block {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 45%;
    flex: 0 1 45%;
  }
  .second-step-block__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
  }
  .second-step-block__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 60%;
    flex: 1 1 60%;
  }
  .second-step-block {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .contact-subtitle {
    font-size: 32px;
    line-height: 1.8;
  }
  .first-step-services__subtitle {
    margin-bottom: 50px;
  }
}
@media (max-width: 920px) {
  .step-title::after {
    right: -10%;
  }
  .step-title::before {
    left: -10%;
  }
  .step-title {
    font-size: 32px;
  }
  .third-step-about__card {
    padding: 40px 20px;
    margin-bottom: 40px;
    background-image: url("../img/img/about-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .third-step-about__card:nth-child(2) {
    padding: 40px 20px;
    background-image: url("../img/img/about-2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .third-step-about__card:nth-child(3) {
    padding: 40px 20px;
    background-image: url("../img/img/about-3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .about-card__text,
  .third-step-about__card:nth-child(2) > .about-card__text {
    position: static;
    margin-left: 0;
  }
  .about-card__img {
    display: none;
  }
  .third-step-about__title {
    margin-bottom: 50px;
  }
}
@media (max-width: 840px) {
  .block-title {
    font-size: 38px;
    padding: 0 20px;
  }
  .contact-subtitle {
    font-size: 26px;
  }
  .first-step-services__subtitle {
    margin-bottom: 30px;
    font-size: 20px;
  }
  .first-step-services__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .menu-button {
    top: 16px;
    height: 49px;
    width: 45px;
  }
  .fsh__info {
    margin-right: 55px;
  }
  .first-screen-head {
    padding-top: 20px;
  }
  .fsh__info {
    font-size: 11px;
  }
  .fsb__header-title {
    font-size: 18px;
  }
  .fsb__title {
    padding: 0 21%;
    text-align: center;
    font-size: 30px;
  }
  .fsb__subtitle {
    margin-top: 20px;
    font-size: 20px;
  }
  .fsb__buttons {
    width: 80%;
    margin: 50px 0 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .fsb__buttons-calculate {
    margin: 0 0 20px 0;
  }
  .rg-box {
    width: 300px;
  }
  .first-step-advantages__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .advantages-block {
    padding: 0 10%;
  }
  .second-step-block__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 30%;
    flex: 0 1 30%;
  }
  .second-step-block__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 70%;
    flex: 1 1 70%;
  }
  .second-step-block,
  .second-step-block:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .second-step-block__img img {
    height: 200px;
    margin-top: 30px;
  }
  .second-step-block:nth-child(2n) > .second-step-block__text,
  .second-step-block__text {
    margin: 0;
  }
  .contact {
    padding: 60px 0;
  }
  .contact__content {
    padding: 30px 0 35px;
  }
  .swiper-pagination {
    display: block;
  }
  .calculator-sum-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .calculator-sum-block__info {
    margin-top: 30px;
  }
  .calculator-sum-block__btn .btn-calc {
    width: 100%;
  }
  .services-swiper-container {
    padding: 40px 0 30px 0;
  }
  .third-step-calculator__content .services-swiper-container {
    padding: 40px 0 40px 0;
  }
  .calculator-title {
    margin-top: 50px;
  }
  .modal .title {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .tab-content ul.list-wrapper {
    min-width: 100%;
    margin-bottom: 25px;
  }
  .tab-content #tab1 a {
    min-width: 100%;
    max-width: 100%;
    white-space: initial;
  }
  .tab-content #tab1 a:nth-of-type(5n) {
    min-width: 100%;
    max-width: 100%;
    white-space: initial;
  }
  .tabs {
    display: block;
  }
  .tabs .tab {
    margin-bottom: 10px;
  }
  .tab-content .tab.current a {
    font-size: 18px;
  }
}
@media (max-width: 680px) {
  .step-title::after {
    right: -25%;
  }
  .step-title::before {
    left: -25%;
  }
  .first-step-regions__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .rg-box {
    width: 90%;
    height: 230px;
  }
  .second-step-block__text-title {
    font-size: 26px;
  }
  .about-card__text {
    padding: 30px 20px;
  }
  .first-step-services__subtitle {
    padding: 0 20px;
    margin-bottom: 0px;
    font-size: 18px;
    white-space: normal;
  }
  .form-success {
    font-size: 26px;
    line-height: 0.8;
  }
  .form-success--accent {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  .header--active {
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
  }
  .fsb__title {
    padding: 0 15%;
  }
  .fsb__header-title {
    font-size: 14px;
  }
  .fsh__logo img {
    max-width: 85%;
    width: 50px;
  }
  .contact-subtitle {
    font-size: 22px;
    line-height: 1.5;
  }
  .contact-title {
    line-height: 1.5;
  }
  .button-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .button-to-top::before {
    height: 28px;
    width: 12px;
    top: calc(50% - 14px);
    left: calc(50% - 6px);
  }
}
@media (max-width: 520px) {
  .fsh__logo,
  .fsh__empty {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 70px;
    flex: 1 0 70px;
  }
  .menu-button {
    width: 50px;
    height: 50px;
    top: 20px;
    right: 20px;
  }
  .fsh__info {
    font-size: 10px;
  }
  .fsb__header-title {
    font-size: 16px;
  }
  .fsb__title {
    padding: 0 30px;
    margin-top: 30px;
    text-align: center;
  }
  .fsb__subtitle {
    font-size: 18px;
  }
  .step-title::after {
    right: -45%;
  }
  .step-title::before {
    left: -45%;
  }
  .step-title {
    font-size: 28px;
  }
  .about-card__text p {
    font-size: 16px;
  }
  .third-step-about__card {
    padding: 20px 10px;
  }
  .third-step-about__card:nth-child(2) {
    padding: 20px 10px;
  }
  .third-step-about__card:nth-child(3) {
    padding: 20px 10px;
  }
  .contact-subtitle {
    font-size: 18px;
  }
  .calculator-sum-block {
    padding: 20px;
  }
  .calculator-sum-block__info {
    margin-top: 10px;
    font-size: 18px;
  }
  .calculator-sum-block__btn {
    margin-top: 20px;
  }
  .review {
    padding: 60px 30px 30px 60px;
  }
  .form-success {
    font-size: 18px;
  }
  .form-success--accent {
    font-size: 38px;
  }
}
@media (max-width: 480px) {
  .fsb__subtitle {
    white-space: normal;
  }
}
@media (max-width: 440px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .calculator-title {
    margin-top: 20px;
  }
}
@media (max-width: 420px) {
  .nav__item {
    font-size: 24px;
  }
  .nav__item--active {
    font-size: 24px;
  }
  .header-nav,
  .header-working-hours {
    padding-left: 15px;
  }
  .fsb__title {
    font-size: 26px;
    padding: 0 10px;
    margin-top: 30px;
    text-align: center;
  }
  .fsb__subtitle {
    font-size: 16px;
  }
  .fsb__buttons {
    width: 100%;
  }
  .step-title::after,
  .step-title::before {
    display: none;
  }
  .block-title {
    font-size: 28px;
    padding: 0 20px;
  }
  .rg-box {
    width: 100%;
  }
  .advantages-block {
    padding: 0;
  }
  .second-step-block__text-title {
    font-size: 24px;
  }
  .second-step-block__img img {
    height: 150px;
  }
  .contact-form input,
  .contact-form button {
    width: 100%;
  }
  .contact-form input {
    padding: 10px;
  }
  .contact-form {
    padding: 20px;
  }
  .contact-subtitle {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .calculator-sum-block {
    padding: 10px;
  }
  .calculator-sum-block__sum {
    font-size: 28px;
  }
  .calculator-sum-block__info {
    font-size: 16px;
  }
  .first-step-services__subtitle {
    font-size: 16px;
  }
}
