body {
  --font-color: #333333;
  --main-color-hover: #d19c28;
  --main-color: #eabd48;
  --gap-width: 24px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--font-color);
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
  color: var(--font-color);
}
a:hover, a:active, a:focus {
  color: var(--font-color);
  opacity: 0.75;
}

p,
ul,
ol {
  margin-bottom: 15px;
}
p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

h1 {
  font-size: 36px;
  font-weight: 700;
}

h2 {
  font-size: 36px;
  font-weight: 700;
}

h3 {
  font-size: 34px;
  font-weight: 700;
}

h4 {
  font-size: 30px;
  font-weight: 700;
}

h5 {
  font-size: 28px;
  font-weight: 700;
}

h6 {
  font-size: 26px;
  font-weight: 700;
}

section {
  margin-bottom: 50px;
}

.wpcf7-spinner {
  display: none !important;
}

.slider {
  --indicator-color: var(--main-color);
  --control-color: var(--main-color);
}
.slider__container {
  margin: -12px;
}
.slider__item {
  padding: 12px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 var(--slider-width);
     -moz-box-flex: 0;
      -ms-flex: 0 0 var(--slider-width);
          flex: 0 0 var(--slider-width);
  max-width: var(--slider-width);
}
.slider__control {
  background: var(--control-color);
  opacity: 0.5;
  height: 40px;
}
.slider__control:focus, .slider__control:hover, .slider__control:active {
  background: var(--control-color);
  opacity: 0.8;
}
.slider__indicators {
  position: relative;
  margin-top: 20px;
}
.slider__indicators li {
  width: 15px;
  height: 15px;
  background: var(--indicator-color);
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
  border: none;
}
.slider__indicators li.active {
  background: var(--indicator-color);
  opacity: 0.8;
}

.btn {
  display: block;
}
.btn__main {
  font-weight: 700;
  background: var(--main-color);
  text-transform: uppercase;
  color: #ffffff;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  border: none;
}
.btn__main:hover, .btn__main:active, .btn__main:focus {
  color: #ffffff;
  background: var(--main-color-hover);
}
.btn__icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn__icon img {
  margin-right: 8px;
  height: 22px;
}

.withBg {
  padding: 50px 0;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
  color: #ffffff;
}
.withBg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  width: 100%;
  height: 100%;
}
.withBg .container {
  position: relative;
}

.section__title {
  text-align: center;
  margin-bottom: 30px;
}
.section__title h1,
.section__title h2 {
  text-transform: uppercase;
}
.section__title h1 b,
.section__title h2 b {
  display: block;
  font-weight: 400;
  text-align: center;
}
.section__title p {
  font-size: 20px;
  line-height: 32px;
}

.imgBg {
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
  height: 0;
  padding-top: 100%;
  width: 100%;
  display: block;
}

.text > * {
  margin-bottom: 15px;
}
.text > *:last-child {
  margin-bottom: 0;
}
.text ol li,
.text ul li {
  margin-bottom: 5px;
}
.text ol li:last-child,
.text ul li:last-child {
  margin-bottom: 0;
}
.text .line {
  width: 25%;
  height: 3px;
  background-color: #ffffff;
  margin-bottom: 15px;
}

.youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.row {
  row-gap: var(--gap-width);
}

.form__title {
  font-weight: 600;
  font-size: 26px;
}
.form__title br {
  display: block !important;
}
.form br {
  display: none;
}
.form p {
  margin: 0;
}
.form .form-control {
  padding: 12px;
  background: transparent;
  color: var(--font-color);
  border: none;
  border-bottom: 1px solid #ffffff;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  font-size: 16px;
  font-weight: 500;
}
.form .form-control::-webkit-input-placeholder {
  color: var(--font-color);
}
.form .form-control::-moz-placeholder {
  color: var(--font-color);
}
.form .form-control::-moz-placeholder {
  color: var(--font-color);
}
.form .form-control::-ms-input-placeholder {
  color: var(--font-color);
}
.form .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}
.form .wpcf7-response-output {
  margin: 2em 0 0 0;
}
.form .wpcf7-spinner {
  display: none;
}
.form .btn {
  padding: -webkit-calc(var(--gap-width) / 2) var(--gap-width);
  padding: -moz-calc(var(--gap-width) / 2) var(--gap-width);
  padding: calc(var(--gap-width) / 2) var(--gap-width);
  font-weight: 600;
  text-transform: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 22px;
}
.form .wpcf7-acceptance {
  font-size: 12px;
}
.form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.form .wpcf7-acceptance label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.form .wpcf7-acceptance input {
  margin-right: 5px;
}
.form .wpcf7-acceptance span {
  display: block;
}

.modal {
  background-color: rgba(0, 0, 0, 0.75);
}

.logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}
.logo img {
  width: 100px;
  margin-right: 10px;
  height: auto;
}
.logo__text {
  color: var(--font-color);
  width: 170px;
}
.logo__text b {
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.header {
  padding: 10px 0;
}
.header .btn {
  padding: 5px;
  width: 233px;
  margin: 0 auto;
}
.header__text {
  text-align: center;
}
.header__phone {
  display: block;
  font-size: 22px;
  line-height: 30px;
  text-decoration: underline;
  padding-left: 35px;
  position: relative;
  margin: 0 auto 10px auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header__phone:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: var(--main-color);
  -webkit-mask-image: url(../img/phone__header.svg);
          mask-image: url(../img/phone__header.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
}
.header p {
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  margin-bottom: 10px;
}
.header__policy {
  font-size: 14px;
  line-height: 15px;
  text-align: center;
  opacity: 0.75;
}

.nav + .banner {
  margin-top: 50px;
}
.nav + .banner.withBg {
  margin-top: 0;
}
.nav + .banner.withBg .banner__text li div {
  font-weight: 500;
}
.nav + .banner.withBg .form .wpcf7-acceptance {
  color: black;
}

.banner {
  --font-color: var(--main-color);
  --form-color: var(--main-color);
  --form-color-hover: var(--main-color);
}
.banner .section__title .banner__title h1 {
  margin-bottom: 0;
  display: inline;
}
.banner .section__title .banner__title div {
  display: inline;
  font-size: 36px;
  font-weight: 700;
}
.banner .section__title p {
  font-size: 28px;
  line-height: 40px;
  text-transform: uppercase;
  font-weight: 700;
}
.banner .section__title span {
  color: var(--font-color);
}
.banner__text {
  margin: 0;
  padding: 0;
}
.banner__text li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: -webkit-calc(var(--gap-width) / 4 * 3);
  margin-bottom: -moz-calc(var(--gap-width) / 4 * 3);
  margin-bottom: calc(var(--gap-width) / 4 * 3);
}
.banner__text li:last-child {
  margin-bottom: 0;
}
.banner__text li div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 20px;
}
.banner__text li img {
  width: 40px;
  margin-right: 12px;
}
.banner__text span {
  color: var(--font-color);
}
.banner__form {
  -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
     -moz-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  background: #ffffff;
}
.banner__form .form__title {
  padding: var(--gap-width);
  background: var(--form-color);
  -webkit-border-radius: 5px 5px 0 0;
     -moz-border-radius: 5px 5px 0 0;
          border-radius: 5px 5px 0 0;
  border-bottom: 5px solid var(--form-color-hover);
  color: #ffffff;
  text-align: center;
}
.banner__form .form__bottom {
  padding: var(--gap-width);
}
.banner__form .form .form-control {
  border-bottom-color: var(--form-color);
}
.banner__form .form .btn {
  width: 100%;
}

.quiz {
  --progress-color: var(--main-color);
}
.quiz .quizBg {
  background: #EFF1EE;
  color: var(--font-color);
}
.quiz .quizBg:before {
  display: none;
}
.quiz .progress {
  --bs-progress-height: 25px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #ffffff;
}
.quiz .progress-bar {
  background-color: var(--progress-color);
  width: 10%;
}
.quiz__block {
  display: none;
}
.quiz__block[data-quiz="1"] {
  display: block;
}
.quiz__block:last-child form {
  margin: 0;
  padding: 0;
}
.quiz__block:last-child form span {
  display: block;
}
.quiz__block:last-child form br {
  display: none;
}
.quiz__block:last-child form p {
  margin-bottom: 0;
}
.quiz__block:last-child .quiz__block__title {
  text-align: center;
}
.quiz__block:last-child .quiz__block__question__input input {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.quiz__block:last-child .quiz__block__btn {
  margin-top: var(--gap-width);
}
.quiz__block:last-child .quiz__block__btn .btn {
  max-width: 100%;
  width: 100%;
  text-align: center;
}
.quiz__block__title {
  font-size: 20px;
  margin-bottom: var(--gap-width);
  font-weight: 700;
}
.quiz__block__question {
  font-size: 14px;
  line-height: 20px;
}
.quiz__block__question__radio {
  margin-bottom: 7px;
}
.quiz__block__question__radio label {
  cursor: pointer;
  width: 100%;
  display: block;
}
.quiz__block__question__radio label span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.quiz__block__question__radio label span:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
  border: 2px solid rgba(0, 0, 0, 0.25);
  position: relative;
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  -moz-transition: 300ms all;
  transition: 300ms all;
  margin-right: 6px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.quiz__block__question__radio label span:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
}
.quiz__block__question__radio label:hover span:before {
  border-color: var(--main-color);
}
.quiz__block__question__radio label input {
  display: none;
}
.quiz__block__question__radio label input:checked + span:before {
  background-color: var(--main-color);
}
.quiz__block__question__radio label input:checked + span:after {
  background: #ffffff;
}
.quiz__block__question__input {
  margin-bottom: var(--gap-width);
}
.quiz__block__question__input input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 8px;
  outline: none;
}
.quiz__block__question__input input:hover, .quiz__block__question__input input:focus {
  border-color: var(--main-color);
}
.quiz__block .btn__next {
  display: none;
  max-width: 320px;
  width: 100%;
}

.services__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
  -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
     -moz-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
  padding: var(--gap-width);
  text-align: center;
  font-weight: 500;
  height: 100%;
}

.contacts__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.contacts__block__img svg {
  width: 60px;
  height: auto;
}
.contacts__block b {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 25px;
}
.contacts__block span {
  display: block;
  font-size: 16px;
  line-height: 20px;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 200;
}
.popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 13px;
  height: 13px;
  cursor: pointer;
}
.popup__close:hover {
  opacity: 0.7;
}
.popup__close:before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
     -moz-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
       -o-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  background: var(--font-color);
}
.popup__close:after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
     -moz-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
       -o-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  background: var(--font-color);
}
.popup__table p {
  text-align: center;
  text-align: center;
  padding: 15px;
  border-bottom: 1px solid rgb(230, 230, 230);
}
.popup__table table {
  margin: 15px;
  width: -webkit-calc(100% - 30px);
  width: -moz-calc(100% - 30px);
  width: calc(100% - 30px);
}
.popup__block {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-border-radius: 20px;
     -moz-border-radius: 20px;
          border-radius: 20px;
  background: #ffffff;
  max-width: 400px;
  width: 95%;
}
.popup__block > p {
  text-align: center;
  padding: 15px;
  border-bottom: 1px solid rgb(230, 230, 230);
  margin-bottom: 0;
}
.popup__block .screen-reader-response {
  display: none;
}
.popup__block form {
  padding: 15px;
  margin: 0;
}
.popup__block form span {
  display: block;
}
.popup__block form span br {
  display: none;
}
.popup__block form p {
  margin-bottom: 0;
}
.popup__block form .btn__main {
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
.popup__block form .form__policy {
  font-size: 12px;
  line-height: 17px;
  text-align: center;
}
.popup__block form .form__policy a {
  color: var(--font-color);
  border-bottom: 1px dashed var(--font-color);
}

.price__table table {
  text-align: center;
  margin: 0;
}
.price__table table thead tr {
  background-color: var(--main-color);
  color: white;
  font-weight: 700;
}
.price__table table thead tr th {
  padding: 15px 10px;
  vertical-align: middle;
}
.price__table table tbody {
  border-top: 0 !important;
}
.price__table table tbody tr {
  background-color: #ffffff;
}
.price__table table tbody tr:nth-child(2n) {
  background-color: #F2F2F2;
}
.price__table table tbody tr td {
  padding: 10px;
  vertical-align: middle;
}

.map {
  height: 240px;
}

.faq__block {
  background: #EFEFEF;
  margin-bottom: 10px;
}
.faq__block:last-child {
  margin-bottom: 0;
}
.faq__block__title {
  padding: 15px 25px;
  cursor: pointer;
  position: relative;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
.faq__block__title:after {
  content: "";
  display: block;
  border: solid black;
  border-width: 0 3px 3px 0;
  padding: 3px;
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.faq__block__title.active:after {
  -webkit-transform: rotate(-135deg);
     -moz-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
       -o-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.faq__block__text {
  display: none;
  border-top: 1px solid white;
  padding: 10px 25px;
}
.faq__block__text__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 15px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.faq__block__text__links a {
  display: block;
  color: #0d6efd;
  text-decoration: underline;
}
.faq__block__text__links a:hover, .faq__block__text__links a:active, .faq__block__text__links a:fosuc {
  opacity: 0.8;
  text-decoration: none;
}

.works {
  --slider-width: 100%;
}
.works__block {
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
  height: 0;
  padding-top: 50%;
}

.documents {
  --slider-width: 33.33333333%;
}
.documents__block {
  display: block;
}

.team {
  --slider-width: 25%;
  --rating-color: var(--main-color);
  --border-color: var(--main-color);
}
.team__block {
  border: 2px solid var(--border-color);
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
     -moz-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
}
.team__block .lazyload {
  height: 0;
  padding-top: 75%;
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-border-radius: 10px 10px 0 0;
     -moz-border-radius: 10px 10px 0 0;
          border-radius: 10px 10px 0 0;
}
.team__block__info {
  padding: 12px 24px;
}
.team__block__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.team__block__rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.team__block__rating:before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--rating-color);
  -webkit-mask-image: url(../img/rating.svg);
          mask-image: url(../img/rating.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  margin-right: 12px;
}

.sales__block {
  padding: 24px;
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
  -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
     -moz-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--main-color);
}
.sales__block .lazyload {
  height: 0;
  padding-top: 75%;
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
  background-position: center center;
  -webkit-background-size: contain;
     -moz-background-size: contain;
       -o-background-size: contain;
          background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 12px;
}
.sales__block__title {
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
}
.sales__block .text {
  margin: 12px 0;
}

.reviews {
  --slider-width: 50%;
}
.reviews__block {
  padding: var(--gap-width);
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
  -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
     -moz-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
  height: 100%;
}

.steps__block {
  padding: var(--gap-width);
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
  -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
     -moz-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  overflow: hidden;
}
.steps__block__num {
  margin-bottom: var(--gap-width);
  font-size: 100px;
  line-height: 0.8;
  font-weight: 700;
}
.steps__block__title {
  font-weight: 500;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 3px solid var(--main-color);
}

.trucks {
  --slider-width: 33.33333333%;
  --price-color: var(--main-color);
}
.trucks__block {
  padding: var(--gap-width);
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
  -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
     -moz-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
}
.trucks__block__img {
  position: relative;
  height: 0;
  width: 100%;
  padding-top: 60%;
  margin-bottom: -webkit-calc(var(--gap-width) / 2);
  margin-bottom: -moz-calc(var(--gap-width) / 2);
  margin-bottom: calc(var(--gap-width) / 2);
}
.trucks__block__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.trucks__block__title {
  font-weight: 700;
  margin-bottom: -webkit-calc(var(--gap-width) / 4);
  margin-bottom: -moz-calc(var(--gap-width) / 4);
  margin-bottom: calc(var(--gap-width) / 4);
}
.trucks__block .text {
  margin-bottom: -webkit-calc(var(--gap-width) / 4);
  margin-bottom: -moz-calc(var(--gap-width) / 4);
  margin-bottom: calc(var(--gap-width) / 4);
}
.trucks__block__price {
  color: var(--price-color);
}

.breadcrumbs {
  padding: 30px 0;
}

.clients {
  --slider-width: 33.33333333%;
}
.clients__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.clients__block img {
  margin: 0 auto;
  display: block;
}

.transportation__block {
  display: block;
  color: var(--font-color);
  text-decoration: none;
}
.transportation__block__title {
  font-weight: 600;
  margin-top: 12px;
  font-size: 18px;
}

.cars__block__title {
  display: block;
  font-weight: 600;
  margin: 12px 0;
  font-size: 18px;
}
.cars__block__price {
  font-weight: 600;
  font-size: 18px;
}
.cars__block__text {
  margin-bottom: 12px;
}
.cars__block__text div {
  margin-bottom: 6px;
}
.cars__block__text div:last-child {
  margin-bottom: 0;
}

.footer {
  --background-color: #2F4858;
  background: var(--background-color);
  color: #ffffff;
  padding: 30px 0;
}
.footer p {
  text-align: center;
}
.footer .logo__text {
  color: #ffffff;
}
.footer ul {
  display: block;
  padding: 0;
  margin: 0;
}
.footer ul li {
  display: block;
  margin-bottom: 6px;
}
.footer ul li a {
  color: #ffffff;
}
.footer ul li:last-child {
  margin-bottom: 0;
}
.footer .order-lg-4 a {
  display: block;
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
}
.footer .order-lg-4 a:first-child {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
}
.footer .order-lg-4 a:last-child {
  margin-bottom: 0;
  margin-top: 12px;
}

@media (min-width: 1400px) {
  section {
    margin-bottom: 70px;
  }
  .section__title {
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .header p {
    text-align: right;
  }
  .header .btn {
    margin-right: 0;
  }
  .nav {
    --background-color: var(--main-color);
    --background-color-hover: var(--main-color-hover);
    padding: 10px;
    background: var(--background-color);
    border-top: 2px solid var(--background-color-hover);
    border-bottom: 2px solid var(--background-color-hover);
    z-index: 9;
  }
  .nav__menu > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__menu > ul > li > a {
    padding: 10px 0;
  }
  .nav__menu > ul > li.menu-item-has-children {
    position: relative;
  }
  .nav__menu > ul > li.menu-item-has-children > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__menu > ul > li.menu-item-has-children > a:after {
    content: "";
    margin-left: 6px;
    width: 16px;
    height: 16px;
    background-image: url(../img/arrow__menu.svg);
    -webkit-background-size: contain;
       -moz-background-size: contain;
         -o-background-size: contain;
            background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(307deg) brightness(104%) contrast(101%);
            filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(307deg) brightness(104%) contrast(101%);
  }
  .nav__menu > ul > li.menu-item-has-children:hover > ul {
    width: 200px;
    z-index: 1;
    display: block;
    position: absolute;
    top: 100%;
    background: #ffffff;
    border: 2px solid var(--background-color-hover);
    padding: 0;
    margin: 0;
  }
  .nav__menu > ul > li.menu-item-has-children:hover > ul li {
    display: block;
    padding: 5px 12px;
  }
  .nav__menu > ul > li.menu-item-has-children:hover > ul li.menu-item-has-children {
    position: relative;
  }
  .nav__menu > ul > li.menu-item-has-children:hover > ul li.menu-item-has-children > a {
    padding-right: 22px;
    position: relative;
  }
  .nav__menu > ul > li.menu-item-has-children:hover > ul li.menu-item-has-children > a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    background-image: url(../img/arrow__menu.svg);
    -webkit-background-size: contain;
       -moz-background-size: contain;
         -o-background-size: contain;
            background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: rotate(-90deg) translateX(50%);
       -moz-transform: rotate(-90deg) translateX(50%);
        -ms-transform: rotate(-90deg) translateX(50%);
         -o-transform: rotate(-90deg) translateX(50%);
            transform: rotate(-90deg) translateX(50%);
  }
  .nav__menu > ul > li.menu-item-has-children:hover > ul li.menu-item-has-children:hover > ul {
    position: absolute;
    top: -2px;
    left: 100%;
    display: block;
    width: 200px;
    background: #ffffff;
    border: 2px solid var(--background-color-hover);
    padding: 0;
    margin: 0;
  }
  .nav__menu > ul > li.menu-item-has-children:hover > ul li:last-child {
    margin-bottom: 0;
  }
  .nav__menu > ul > li.menu-item-has-children:hover > ul li a {
    color: var(--font-color);
    font-size: 16px;
    font-weight: 400;
    display: block;
  }
  .nav__menu > ul > li.menu-item-has-children:hover > ul li a:hover, .nav__menu > ul > li.menu-item-has-children:hover > ul li a:active, .nav__menu > ul > li.menu-item-has-children:hover > ul li a:focus {
    color: var(--background-color);
  }
  .nav__menu > ul li {
    display: block;
  }
  .nav__menu > ul li a {
    color: #ffffff;
    display: block;
    font-size: 18px;
    font-weight: 500;
  }
  .nav__menu > ul li ul {
    display: none;
  }
}
@media (max-width: 1199px) {
  .header .logo {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 26px;
  }
  h5 {
    font-size: 24px;
  }
  h6 {
    font-size: 22px;
  }
  section {
    margin-bottom: 30px;
  }
  .nav + .banner {
    margin-top: 30px;
  }
  .withBg {
    padding: 40px 0;
  }
  .header .btn__menu {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 50px;
    height: 50px;
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
    background: var(--main-color);
    margin-right: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
       -moz-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header .btn__menu span {
    display: block;
    background: #ffffff;
    height: 3px;
    width: 75%;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
  }
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 200;
  }
  .nav__menu {
    width: 320px;
    background: #ffffff;
    height: 100vh;
    position: absolute;
    left: 0;
    font-size: 16px;
    padding: 12px;
    overflow: auto;
  }
  .nav__menu .btn-close {
    margin-left: auto;
    font-size: 20px;
  }
  .nav__menu ul {
    padding: 0;
    margin: 0;
  }
  .nav__menu ul li {
    display: block;
  }
  .nav__menu ul li a {
    display: block;
    padding: 8px 0;
  }
  .nav__menu ul li.menu-item-has-children > a {
    padding-right: 22px;
    position: relative;
  }
  .nav__menu ul li.menu-item-has-children > a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
    background-image: url(../img/arrow__menu.svg);
    -webkit-background-size: contain;
       -moz-background-size: contain;
         -o-background-size: contain;
            background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .nav__menu ul li.menu-item-has-children > a.active + ul {
    display: block;
  }
  .nav__menu ul li ul {
    padding-left: 12px;
    display: none;
  }
  .nav__menu ul li ul li a {
    padding: 4px;
  }
  .form__title {
    font-size: 24px;
  }
  .form .btn {
    font-size: 20px;
  }
  .banner .section__title .banner__title div {
    font-size: 32px;
  }
  .banner .section__title p {
    font-size: 26px;
    line-height: 30px;
  }
  .quiz__block__title {
    margin-bottom: 20px;
  }
  .quiz__block__btn {
    margin-top: 20px;
  }
  .quiz__block__right {
    padding: 15px;
  }
  .faq__block__title {
    padding: 15px 20px;
  }
  .faq__block__text {
    padding: 10px 20px;
  }
  .footer .logo {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .team {
    --slider-width: 33.33333333%;
  }
  .documents {
    --slider-width: 33.33333333%;
  }
  .trucks {
    --slider-width: 50%;
  }
  .breadcrumbs {
    padding: 25px 0;
  }
  .steps__block__num {
    font-size: 80px;
  }
  .footer .logo {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 22px;
  }
  h6 {
    font-size: 20px;
  }
  section {
    margin-bottom: 25px;
  }
  .section__title p {
    font-size: 18px;
    line-height: 26px;
  }
  .withBg {
    padding: 30px 0;
  }
  .banner .section__title .banner__title div {
    font-size: 30px;
  }
  .banner .section__title p {
    font-size: 24px;
    line-height: 28px;
  }
  .banner__text li div {
    font-size: 18px;
  }
  .quiz__block__title {
    margin-bottom: 15px;
  }
  .quiz__block__btn {
    margin-top: 15px;
  }
  .quiz .progress {
    --bs-progress-height: 20px;
  }
  .quiz .progress-bar:before {
    font-size: 14px;
  }
  .form__title {
    font-size: 22px;
  }
  .form__title br {
    display: none !important;
  }
  .form .btn {
    font-size: 18px;
  }
  .price__table {
    overflow-x: auto;
  }
  .price__table table {
    width: 700px;
  }
  .price__table table tr td:first-child {
    width: 200px;
  }
  .documents {
    --slider-width: 50%;
  }
  .faq__block__title {
    padding: 10px 15px;
    font-size: 18px;
    line-height: 24px;
  }
  .faq__block__text {
    padding: 10px 15px;
  }
  .team {
    --slider-width: 50%;
  }
  .reviews {
    --slider-width: 100%;
  }
  .contacts__block__img svg {
    width: 50px;
  }
  .contacts__block b {
    font-size: 18px;
    line-height: 23px;
  }
  .steps__block__num {
    font-size: 60px;
  }
  .trucks {
    --slider-width: 100%;
  }
}
@media (max-width: 575px) {
  body {
    --gap-width: 12px;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 18px;
  }
  h1,
  h2 {
    font-size: 24px;
    line-height: 28px;
  }
  section {
    margin-bottom: 20px;
  }
  .nav + .banner {
    margin-top: 20px;
  }
  .withBg {
    padding: 25px 0;
  }
  .section__title {
    margin-bottom: 20px;
  }
  .header .btn__menu {
    left: 12px;
  }
  .header .logo img {
    width: 80px;
    margin-right: 15px;
  }
  .banner .section__title .banner__title div {
    font-size: 24px;
    line-height: 28px;
  }
  .banner .section__title p {
    font-size: 22px;
    line-height: 26px;
  }
  .banner__text li div {
    font-size: 16px;
  }
  .quiz__block__right {
    padding: 10px;
  }
  .quiz__block__question__radio__img {
    width: -webkit-calc(50% - 12px);
    width: -moz-calc(50% - 12px);
    width: calc(50% - 12px);
  }
  .form__title {
    font-size: 20px;
  }
  .form .btn {
    font-size: 16px;
  }
  .faq__block__title {
    font-size: 16px;
    line-height: 22px;
  }
  .team__block__info {
    padding: 12px;
  }
  .team .col-auto {
    width: 50%;
  }
  .transportation .col-auto {
    width: 50%;
  }
  .sales__block {
    padding: 12px;
  }
  .sales__block__title {
    font-size: 18px;
    line-height: 22px;
  }
  .breadcrumbs {
    padding: 20px 0;
  }
  .steps__block__num {
    font-size: 40px;
  }
  .footer {
    padding: 20px 0;
  }
}
@media (max-width: 380px) {
  .header .btn__menu {
    left: 12px;
    top: 14px;
    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
         -o-transform: none;
            transform: none;
  }
  .header .logo {
    display: block;
  }
  .header .logo img {
    display: block;
    margin: 0 auto;
  }
  .header .logo__text {
    text-align: center;
    width: 100%;
  }
  .header .logo__text br {
    display: none;
  }
  .header .logo__text b {
    margin-bottom: 0;
  }
  .team {
    --slider-width: 100%;
  }
  .team .col-auto {
    width: 100%;
  }
  .transportation .col-auto {
    width: 100%;
  }
  .clients {
    --slider-width: 100%;
  }
  .documents {
    --slider-width: 100%;
  }
}