@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
  border-radius: 0;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

a {
  color: inherit;
}

input[type=number] {
  -moz-appearance: textfield;
}

html {
  scroll-padding-top: 113.5px;
  scroll-behavior: smooth;
}
@media (max-width: 1259px) {
  html {
    scroll-padding-top: 99px;
  }
}
@media (max-width: 1060px) {
  html {
    scroll-padding-top: 92px;
  }
}
@media (max-width: 1023px) {
  html {
    scroll-padding-top: 82px;
  }
}
@media (max-width: 500px) {
  html {
    scroll-padding-top: 78px;
  }
}

body {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: #000000;
  background-color: #FFFFFF;
}
body.popuplock {
  overflow: hidden;
}
@media (max-width: 1023px) {
  body.lock {
    overflow: hidden;
  }
}

.wrapper {
  overflow: clip;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}

[class*=__container] {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 1023px) {
  [class*=__container] {
    padding: 0 20px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1049;
  padding: 20px 0;
  color: #FFFFFF;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1023px) {
  .header {
    padding: 15px 0;
  }
  .header:after {
    content: "";
    position: absolute;
    left: -100%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #1A202A;
    z-index: 7;
    border-bottom: 1px solid #F5F5F5;
  }
  body.lock .header:after {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    left: 0;
  }
}
.header.show {
  background-color: #1A202A;
}
.header__container {
  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;
  gap: 15px;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.225;
  position: relative;
  z-index: 8;
}
.header__logo small {
  font-size: 0.5em;
  font-weight: 400;
}
@media (max-width: 1259px) {
  .header__logo {
    font-size: 32px;
  }
}
@media (max-width: 1060px) {
  .header__logo {
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  .header__logo {
    font-size: 26px;
  }
}
.header__burger {
  display: none;
}
@media (max-width: 1023px) {
  .header__burger {
    display: block;
    width: 30px;
    height: 20px;
    z-index: 8;
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
  }
  .header__burger:after, .header__burger:before, .header__burger span {
    content: "";
    position: absolute;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #FFFFFF;
    height: 2px;
    width: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
    border-radius: 8px;
  }
  .header__burger:after {
    bottom: 0;
  }
  .header__burger:before {
    top: 0;
  }
  .header__burger span {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .header__burger.active:after {
    bottom: 9px;
    -webkit-transform: translate(-50%, 0%) rotate(-45deg);
            transform: translate(-50%, 0%) rotate(-45deg);
  }
  .header__burger.active:before {
    top: 9px;
    -webkit-transform: translate(-50%, 0%) rotate(45deg);
            transform: translate(-50%, 0%) rotate(45deg);
  }
  .header__burger.active span {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
}
@media (max-width: 1259px) {
  .menu {
    gap: 25px;
  }
}
@media (max-width: 1023px) {
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    z-index: 6;
    background-color: #1A202A;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 35px;
    padding: 105px 20px 60px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .menu.open {
    left: 0;
  }
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media (max-width: 1259px) {
  .menu__list {
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
  }
}
.menu__link {
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
@media (any-hover: hover) {
  .menu__link:hover {
    color: #E85050;
  }
}
@media (max-width: 1259px) {
  .menu__link {
    font-size: 18px;
  }
}
.menu__call {
  color: #FFFFFF;
  padding: 22px;
  text-align: center;
  background-color: #DD1515;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2272727273;
  -ms-flex-item-align: center;
      align-self: center;
  border-radius: 10px;
}
@media (max-width: 1259px) {
  .menu__call {
    padding: 14px 18px;
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .menu__call {
    width: 100%;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}
@media (any-hover: hover) {
  .menu__call {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .menu__call:hover {
    background-color: #ff3030;
  }
}

.title {
  text-align: center;
  margin: 0 auto;
  font-size: 38px;
  word-break: break-word;
  font-weight: 700;
  line-height: 1.2105263158;
  color: #000000;
}
.title.white {
  color: #FFFFFF;
}
.title:after {
  content: "";
  height: 5px;
  background-color: #DD1515;
  width: 100%;
  display: block;
  margin-top: 2px;
}
@media (max-width: 1023px) {
  .title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .title {
    font-size: 26px;
  }
  .title:after {
    height: 4px;
  }
}

.button {
  padding: 24px 42px;
  text-align: center;
  background-color: #DD1515;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2272727273;
  -ms-flex-item-align: center;
      align-self: center;
  border-radius: 10px;
  color: #FFFFFF;
}
@media (max-width: 1023px) {
  .button {
    padding: 20px 40px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .button {
    width: 100%;
    font-size: 18px;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    padding: 20px;
  }
}
@media (any-hover: hover) {
  .button {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .button:hover {
    background-color: #ff3030;
  }
}

.main {
  position: relative;
  color: #FFFFFF;
  padding-top: 187px;
  padding-bottom: 110px;
}
@media (max-width: 1259px) {
  .main {
    padding-top: 150px;
    padding-bottom: 80px;
  }
}
@media (max-width: 1023px) {
  .main {
    padding-top: 110px;
    padding-bottom: 60px;
  }
}
.main__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.main__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main__bg:after {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #1A202A;
  opacity: 0.9;
}
.main__container {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.main__title {
  text-align: center;
  font-size: 38px;
  text-wrap: balance;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.2105263158;
}
@media (max-width: 1023px) {
  .main__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .main__title {
    font-size: 26px;
  }
}
.main__body {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1023px) {
  .main__body {
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.main__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (max-width: 1023px) {
  .main__list {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .main__list {
    gap: 25px;
  }
}
.main__list li {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2333333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.main__list li img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35px;
          flex: 0 0 35px;
  width: 35px;
}
@media (max-width: 1023px) {
  .main__list li {
    font-size: 26px;
  }
  .main__list li img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
    width: 30px;
  }
}
@media (max-width: 768px) {
  .main__list li {
    font-size: 22px;
  }
  .main__list li img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 26px;
            flex: 0 0 26px;
    width: 26px;
  }
}

.form {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 550px;
  border-radius: 10px;
  background-color: #F0F0F0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 24px;
}
@media (max-width: 1023px) {
  .form {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}
.form__title {
  word-break: break-word;
  font-size: 30px;
  text-align: center;
  text-wrap: balance;
  font-weight: 700;
  color: #000000;
  max-width: 400px;
  line-height: 1.2333333333;
  margin-bottom: 8px;
}
@media (max-width: 1023px) {
  .form__title {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .form__title {
    font-size: 22px;
  }
}
.form input {
  max-width: 400px;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 18px 14px;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  width: 100%;
  min-width: 0;
}
.form input::-webkit-input-placeholder {
  color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.form input::-moz-placeholder {
  color: #000000;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.form input:-ms-input-placeholder {
  color: #000000;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.form input::-ms-input-placeholder {
  color: #000000;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.form input::placeholder {
  color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.form input:focus::-webkit-input-placeholder {
  opacity: 0;
}
.form input:focus::-moz-placeholder {
  opacity: 0;
}
.form input:focus:-ms-input-placeholder {
  opacity: 0;
}
.form input:focus::-ms-input-placeholder {
  opacity: 0;
}
.form input:focus::placeholder {
  opacity: 0;
}
.form .button {
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
  margin-top: 20px;
}
@media (max-width: 1259px) {
  .form .button {
    margin-top: 10px;
  }
}

.faq {
  background-color: #1A202A;
  padding: 50px 0 120px;
}
@media (max-width: 1023px) {
  .faq {
    padding: 50px 0 60px;
  }
}
@media (max-width: 768px) {
  .faq {
    padding: 40px 0;
  }
}
.faq__container {
  max-width: 1060px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 65px;
}
@media (max-width: 1023px) {
  .faq__container {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .faq__container {
    gap: 35px;
  }
}
.faq__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.faq__item {
  background-color: #FFFFFF;
  border-radius: 10px;
}
.faq__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding: 4px;
  padding-left: 25px;
  font-size: 20px;
  font-weight: 700;
}
.faq__top span {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #DD1515;
  border-radius: 10px;
  height: 50px;
  width: 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  color: #FFFFFF;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.225;
}
.faq__top.active span {
  background-color: rgba(221, 21, 21, 0.5);
}
@media (any-hover: hover) {
  .faq__top:hover span {
    background-color: #ff3030;
  }
}
@media (max-width: 1023px) {
  .faq__top {
    font-size: 18px;
    padding-left: 16px;
  }
  .faq__top span {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
    width: 40px;
    height: 40px;
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .faq__top {
    font-size: 16px;
    padding-left: 12px;
  }
  .faq__top span {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35px;
            flex: 0 0 35px;
    width: 35px;
    height: 35px;
    font-size: 24px;
  }
}
.faq__text {
  margin-top: 0;
  max-width: 920px;
  font-size: 20px;
  font-weight: 400;
  padding-left: 25px;
  padding-right: 4px;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.faq__text.active {
  margin-top: 10px;
  margin-bottom: 30px;
}
@media (max-width: 1023px) {
  .faq__text {
    padding-left: 16px;
    font-size: 18px;
  }
  .faq__text.active {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .faq__text {
    padding-left: 12px;
    font-size: 16px;
  }
  .faq__text.active {
    margin-bottom: 10px;
  }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1050;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 0;
  background-color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 1023px) {
  .popup {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .popup {
    padding: 20px 0;
  }
}
.popup.open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.popup > .popup__close {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 0;
}
.popup__x {
  width: 20px;
  cursor: pointer;
  position: absolute;
  z-index: 1;
  right: 15px;
  top: 15px;
}
.popup__x svg {
  width: 100%;
}
@media (max-width: 500px) {
  .popup__x {
    width: 15px;
    right: 12px;
    top: 12px;
  }
}
.popup__content {
  position: relative;
  z-index: 1;
  background-color: #fff;
  max-width: 550px;
  width: calc(100vw - 60px);
  border-radius: 10px;
}
@media (max-width: 1023px) {
  .popup__content {
    width: calc(100vw - 40px);
  }
}

.services {
  padding: 80px 0;
}
@media (max-width: 1023px) {
  .services {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .services {
    padding: 40px 0;
  }
}
.services__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 76px;
}
@media (max-width: 1023px) {
  .services__container {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .services__container {
    gap: 35px;
  }
}
.services__cards {
  display: grid;
  gap: 24px;
  row-gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
@media (max-width: 1023px) {
  .services__cards {
    row-gap: 0;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .services__cards {
    grid-template-columns: 1fr;
  }
}
.services__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-radius: 10px;
  background-color: #F5F5F5;
  padding: 10px;
  padding-bottom: 25px;
}
.services__card a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.services__card a:hover {
  color: #E85050;
}
.services__card p, .services__card a {
  margin-top: auto;
  margin-bottom: 2px;
  text-align: center;
  text-wrap: balance;
  font-size: 22px;
  font-weight: 700;
  color: #000;
}
@media (max-width: 1023px) {
  .services__card p, .services__card a {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .services__card p, .services__card a {
    font-size: 22px;
  }
}
.services__card span {
  text-wrap: balance;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  color: #000;
}
@media (max-width: 1023px) {
  .services__card span {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .services__card span {
    font-size: 16px;
  }
}
.services__card .button {
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  margin-top: 16px;
  max-width: 231px;
}
@media (max-width: 768px) {
  .services__card .button {
    max-width: 100%;
  }
}
@media (max-width: 1023px) {
  .services__card {
    padding-bottom: 10px;
  }
}
.services__ico {
  max-width: 200px;
  max-height: 200px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1023px) {
  .services__ico {
    max-width: 150px;
    max-height: 150px;
  }
}
@media (max-width: 768px) {
  .services__ico {
    max-width: 100px;
    max-height: 100px;
  }
}
.services__ico img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.gray {
  background-color: #F5F5F5;
}

.dark {
  background-color: #1A202A;
  color: #FFFFFF;
}

.seo {
  padding: 40px 0 80px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2222222222;
}
.seo ul li {
  list-style: disc;
}
.seo ul, .seo ol {
  padding-left: 1.2em;
}
.seo h1 {
  font-size: 2.7777777778em;
}
.seo h2 {
  font-size: 2.5em;
}
.seo h3 {
  font-size: 2.2222222222em;
}
.seo h4 {
  font-size: 1.9444444444em;
}
.seo h5 {
  font-size: 1.6666666667em;
}
.seo h6 {
  font-size: 1.3888888889em;
}
.seo h1, .seo h2, .seo h3, .seo h4, .seo h5, .seo h6 {
  font-weight: 700;
  color: #1A202A;
  word-break: break-word;
  line-height: 1.22;
}
.seo table {
  overflow-x: auto;
  width: 100%;
  border-collapse: collapse;
}
.seo table td, .seo table th {
  text-align: left;
  padding: 0.5em 0.8333333333em;
  border: 1px solid #000000;
}
@media (max-width: 1023px) {
  .seo {
    padding-bottom: 60px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .seo {
    padding-bottom: 40px;
    font-size: 14px;
  }
}
.seo__container {
  max-width: 1140px;
}

.footer {
  background-color: #1A202A;
  color: #FFFFFF;
  padding: 40px 0 18px;
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0 16px;
  }
}
.footer__container {
  max-width: 1225px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 110px;
}
@media (max-width: 1023px) {
  .footer__container {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .footer__container {
    gap: 30px;
  }
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
}
@media (max-width: 1023px) {
  .footer__top {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer__top {
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 23px;
}
@media (max-width: 1023px) {
  .footer__left {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer__left {
    gap: 15px;
  }
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.225;
}
.footer__logo small {
  font-size: 0.5em;
  font-weight: 400;
}
@media (max-width: 1259px) {
  .footer__logo {
    font-size: 32px;
  }
}
@media (max-width: 1060px) {
  .footer__logo {
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  .footer__logo {
    font-size: 26px;
  }
}
.footer__call {
  color: #FFFFFF;
  padding: 22px;
  text-align: center;
  background-color: #DD1515;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2272727273;
  border-radius: 10px;
}
@media (max-width: 1259px) {
  .footer__call {
    padding: 14px 18px;
    font-size: 18px;
  }
}
@media (any-hover: hover) {
  .footer__call {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .footer__call:hover {
    background-color: #ff3030;
  }
}
.footer__lists {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 628px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
}
@media (max-width: 600px) {
  .footer__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.footer__lists ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
.footer__lists ul a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__lists ul a:hover {
  color: #E85050;
}
@media (max-width: 1023px) {
  .footer__lists {
    gap: 40px;
  }
  .footer__lists ul {
    font-size: 18px;
    gap: 15px;
  }
}
@media (max-width: 1023px) {
  .footer__lists {
    gap: 30px;
  }
  .footer__lists ul {
    font-size: 16px;
    gap: 12px;
  }
}
.footer__bottom {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2222222222;
}
@media (max-width: 1023px) {
  .footer__bottom {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .footer__bottom {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .footer__bottom {
    text-align: center;
    font-size: 12px;
  }
}

.about {
  padding: 40px 0 60px;
}
@media (max-width: 768px) {
  .about {
    padding-bottom: 40px;
  }
}
.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media (max-width: 1023px) {
  .about__container {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .about__container {
    gap: 35px;
  }
}
.about__items {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}
.about__item img {
  width: 180px;
}
.about__item p {
  max-width: 190px;
}
@media (max-width: 1023px) {
  .about__item {
    gap: 16px;
    font-size: 18px;
  }
  .about__item img {
    width: 150px;
  }
}
@media (max-width: 1023px) {
  .about__item {
    gap: 14px;
    font-size: 16px;
  }
  .about__item img {
    width: 120px;
  }
}

.scheme {
  padding: 45px 0 80px;
}
@media (max-width: 1023px) {
  .scheme {
    padding: 40px 0 60px;
  }
}
@media (max-width: 768px) {
  .scheme {
    padding: 40px 0;
  }
}
.scheme__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
@media (max-width: 1023px) {
  .scheme__container {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .scheme__container {
    gap: 35px;
  }
}
.scheme__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}
@media (max-width: 500px) {
  .scheme__items {
    grid-template-columns: 1fr;
  }
}
.scheme__item {
  background-color: #FFFFFF;
  padding: 25px 23px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
.scheme__item p {
  font-size: 30px;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 1023px) {
  .scheme__item {
    padding: 20px;
    gap: 16px;
    font-size: 18px;
  }
  .scheme__item p {
    font-size: 26px;
  }
}
@media (max-width: 1023px) {
  .scheme__item {
    padding: 18px;
    gap: 14px;
    font-size: 16px;
  }
  .scheme__item p {
    font-size: 22px;
  }
}
.scheme__count {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  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;
  color: #FFFFFF;
  font-size: 40px;
  font-weight: 700;
  background-color: #DD1515;
}
@media (max-width: 1023px) {
  .scheme__count {
    font-size: 32px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .scheme__count {
    font-size: 24px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35px;
            flex: 0 0 35px;
    width: 35px;
    height: 35px;
  }
}

.costs {
  padding: 60px 0 100px;
}
@media (max-width: 1023px) {
  .costs {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .costs {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.costs__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
@media (max-width: 1023px) {
  .costs__container {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .costs__container {
    gap: 35px;
  }
}
.costs__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 820px) {
  .costs__body {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
@media (max-width: 600px) {
  .costs__body {
    gap: 20px;
  }
}
.costs__content {
  border-radius: 10px;
  border: 5px solid #FFA000;
  padding: 22px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (max-width: 1023px) {
  .costs__content {
    border-width: 3px;
    padding: 20px;
    gap: 15px;
  }
}
@media (max-width: 1023px) {
  .costs__content {
    border-width: 2px;
    padding: 15px;
  }
}
.costs__name {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .costs__name {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .costs__name {
    font-size: 16px;
  }
}
.costs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.costs__row {
  padding: 15px;
  border-radius: 10px;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  row-gap: 8px;
  font-size: 20px;
  font-weight: 400;
}
.costs__row:nth-child(odd) {
  background-color: rgba(255, 160, 0, 0.5);
}
@media (max-width: 1023px) {
  .costs__row {
    font-size: 18px;
    padding: 12px;
  }
}
@media (max-width: 768px) {
  .costs__row {
    font-size: 16px;
    padding: 10px;
    row-gap: 6px;
  }
  .costs__row span:last-child {
    font-weight: 700;
  }
}

.portfolio {
  padding: 45px 0 55px;
}
@media (max-width: 768px) {
  .portfolio {
    padding: 40px 0;
  }
}
.portfolio__gallery {
  position: relative;
  padding: 0 80px;
}
@media (max-width: 1160px) {
  .portfolio__gallery {
    padding: 0;
  }
}
.portfolio__slider {
  max-width: 100%;
}
.portfolio__slider .swiper-slide {
  height: auto;
  cursor: pointer;
  max-height: 500px;
}
.portfolio__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  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;
  color: #FFFFFF;
  font-size: 50px;
  font-weight: 700;
  background-color: #DD1515;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .portfolio__arrow:hover {
    background-color: #ff3030;
  }
}
@media (max-width: 1023px) {
  .portfolio__arrow {
    font-size: 40px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .portfolio__arrow {
    font-size: 32px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35px;
            flex: 0 0 35px;
    width: 35px;
    height: 35px;
  }
}
.portfolio__prev {
  left: 0;
}
@media (max-width: 1160px) {
  .portfolio__prev {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.portfolio__next {
  right: 0;
}
@media (max-width: 1160px) {
  .portfolio__next {
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
}
.portfolio__container {
  max-width: 1220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
.portfolio__container > .button {
  margin-top: 15px;
}
@media (max-width: 1023px) {
  .portfolio__container {
    gap: 50px;
  }
  .portfolio__container > .button {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .portfolio__container {
    gap: 40px;
  }
}

.fancybox__container {
  max-width: 100%;
}

.fancybox__backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}