* {
  outline: transparent;
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}

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

button,
input,
textarea {
  font: inherit inherit;
  border: none;
  background: inherit;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

ol,
ul {
  list-style: none;
}

._imgFit {
  position: relative;
}

._imgFit img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: var(--fitType);
  object-fit: var(--fitType);
}

body ::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: .5rem;
  background: #f2f2f2;
}

body ::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  width: .4rem;
  border: .1rem solid #f2f2f2;
  background: #a8a8a8;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url(../fonts/Inter-Bold.woff2) format("woff2"),url(../fonts/Inter-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url(../fonts/Inter-Regular.woff2) format("woff2"),url(../fonts/Inter-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Mulish;
  font-display: swap;
  src: url(../fonts/Mulish-Bold.woff2) format("woff2"),url(../fonts/Mulish-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Mulish;
  font-display: swap;
  src: url(../fonts/Mulish-Regular.woff2) format("woff2"),url(../fonts/Mulish-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Racama;
  font-display: swap;
  src: url(../fonts/Racama-Regular.woff2) format("woff2"),url(../fonts/Racama-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Mulish;
  font-display: swap;
  src: url(../fonts/Mulish-SemiBold.woff2) format("woff2"),url(../fonts/Mulish-SemiBold.woff) format("woff");
  font-weight: 600;
  font-style: normal;
}

body,
html {
  height: 100%;
  min-width: 320px;
}

html {
  scroll-behavior: smooth;
  scroll-padding: var(--scroll-padding,50px);
  background: #fff;
}

body {
  font: normal 400 1rem/1 Mulish,sans-serif;
  position: relative;
  color: #000;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body._lock,
body.lock {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

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

.wrapper > main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper * {
  min-width: 0;
}

[class*=__container] {
  max-width: 75rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 .625rem;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: visibility .8s;
  transition: visibility .8s;
  visibility: hidden;
}

.popup::before {
  background: rgba(0,0,0,.9);
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .8s;
  transition: opacity .8s;
}

.popup.show {
  visibility: visible;
  overflow: auto;
}

.popup.show::before {
  opacity: 1;
}

.popup.show .popup__body {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.popup._active {
  overflow: auto;
  visibility: visible;
}

.popup._active::before {
  opacity: 1;
}

.popup._active .popup__body {
  -webkit-transition: .3s .2s;
  transition: .3s .2s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.popup__content {
  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;
  min-height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
}

.popup__body {
  background: #fff;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .3s;
  transition: .3s;
  padding: 50px;
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
}

@media (max-width:520px) {
  .popup__body {
    padding: 45px 20px;
  }
}

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

.popup__body ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #000;
  padding: 16px 0;
}

.popup__body ul li:nth-last-of-type(1) {
  border-bottom: 1px solid #000;
}

.popup__body ul li p {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
}

@media (max-width:768px) {
  .popup__body ul li p {
    font-size: 15px;
  }
}

.popup__body ul li span {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  text-align: right;
}

.popup__close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 30;
  background: url(../images/close.png) center/cover no-repeat;
}

.popup__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.popup__inner p {
  font-weight: 500;
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
}

.popup__text h3 {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 15px;
}

@media (max-width:1024px) {
  .popup__text h3 {
    font-size: 20px;
  }
}

.popup__text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -.03em;
  text-align: justify;
  color: #000;
}

@media (max-width:1024px) {
  .popup__text p {
    font-size: 15px;
  }
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 8px 0;
}

@media (max-width:992px) {
  .header__content {
    padding-right: 80px;
  }
}

@media (max-width:520px) {
  .header__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
    padding-right: 0;
  }

  .header__logo {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}

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

.header__menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.header__menu nav ul li a {
  font: 400 16px var(--font-family);
  text-decoration-line: underline;
  text-underline-offset: 5px;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color .4s;
  transition: text-decoration-color .4s;
}

.header__menu nav ul li span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6129a4;
}

.header__links {
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.header__phone span {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-decoration-line: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color .4s;
  transition: text-decoration-color .4s;
}

.header__wapp span {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-align: right;
  -webkit-transition: text-decoration-color .4s;
  transition: text-decoration-color .4s;
}

.icon-menu {
  display: none;
}

@media (max-width:768px) and (max-width:330px) {
  .icon-menu {
    right: 10px;
  }
}

@media (max-width:768px) {
  .popup__body ul li span {
    font-size: 15px;
  }

  .icon-menu {
    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;
    position: absolute;
    top: 33px;
    right: 10px;
    width: 35px;
    height: 30px;
    cursor: pointer;
    border-radius: 4px;
    background: 0 0;
    padding: 3px;
    z-index: 11;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .icon-menu span {
    position: absolute;
    top: calc(50% - 2px);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 83%;
    height: 3px;
    border-radius: 8px;
    overflow: hidden;
    background: #2a77e9;
    -webkit-transition: .3s;
    transition: .3s;
  }

  .icon-menu span:first-child {
    top: 5px;
  }

  .icon-menu span:nth-of-type(2) {
    width: 50%;
  }

  .icon-menu span:last-child {
    top: auto;
    bottom: 6px;
  }

  .icon-menu._active span {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }

  .icon-menu._active span:first-child {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: calc(50% - 2px);
  }

  .icon-menu._active span:last-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }

  .menu nav {
    position: fixed;
    top: 67px;
    left: 0;
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fff;
    padding: 50px 10px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: .5s;
    transition: .5s;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
  }

  .menu nav._active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .menu nav:before {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    background: #6f2232;
    z-index: 2;
  }
}

@media (max-width:768px) and (max-width:520px) {
  .menu nav {
    top: 129px;
  }
}

@media (max-width:768px) and (max-width:667px) {
  .menu nav {
    width: 40%;
  }
}

@media (max-width:768px) {
  .menu ul {
    width: 100%;
    -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;
  }
}

@media (max-width:768px) and (min-width:768px) {
  .menu ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (max-width:768px) {
  .menu ul.menu-three .menu__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    font-family: "Roboto Flex",sans-serif;
  }

  .menu li_mobile {
    display: block;
  }
}

.footer {
  background: #7b3ead;
}

.footer__content {
  padding: 44px 0;
}

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

@media (max-width:520px) {
  .footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
}

.footer__body nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

@media (max-width:520px) {
  .footer__body nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}

.footer__body nav ul a {
  font-weight: 400;
  font-size: 16px;
  text-decoration-line: underline;
  text-underline-offset: 5px;
  text-decoration-color: transparent;
  color: #fff;
  -webkit-transition: text-decoration-color .4s;
  transition: text-decoration-color .4s;
}

.footer__body nav ul span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.footer__body a:not(.footer__phone) span {
  font: 500 34px RobotoCondensed,sans-serif;
  letter-spacing: -.03em;
  color: #fff;
}

.footer__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
}

.footer__phone span {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-decoration-line: underline;
  text-underline-offset: 5px;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color .4s;
  transition: text-decoration-color .4s;
}

.footer__phone-icon svg path {
  fill: #fff;
}

.intro__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 48px 0 80px;
}

.intro__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 40px;
}

.intro__header-left {
  width: 80%;
}

.intro__header-left h1 {
  font: 400 56px/100% Racama,sans-serif;
  letter-spacing: -.02em;
  text-transform: uppercase;
  text-wrap: balance;
}

@media (max-width:768px) {
  .intro__content {
    padding: 50px 0;
  }

  .intro__header-left {
    width: 65%;
  }

  .intro__header-left h1 {
    font-size: 45px;
  }
}

@media (max-width:520px) {
  .intro__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
  }

  .intro__header-left {
    width: 100%;
  }

  .intro__header-left h1 {
    font-size: 26px;
  }
}

.intro__header-right {
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.intro__header-right address {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  font-style: normal;
  line-height: 150%;
  text-align: right;
}

.intro__header-right a {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-align: right;
  -webkit-transition: text-decoration-color .4s;
  transition: text-decoration-color .4s;
}

.intro__picture img {
  display: block;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

@media (max-width:768px) {
  .intro__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}

.intro__inner-left {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 80px 24px 0 0;
}

@media (max-width:768px) {
  .intro__inner-left {
    width: 100%;
  }
}

.intro__inner-left h3 {
  font: 400 36px/122% Racama,sans-serif;
  margin-bottom: 24px;
}

@media (max-width:520px) {
  .intro__inner-left {
    padding: 50px 0 0;
  }

  .intro__inner-left h3 {
    font-size: 24px;
  }
}

.intro__inner-left 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: 12px;
}

.intro__inner-left ul li p {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
}

.intro__inner-right {
  position: relative;
  width: 65%;
  padding: 80px 50px 32px;
}

.intro__inner-right:before {
  background: linear-gradient(90deg,#292929,#292929 41.6666666667%,#302f2f 41.6666666667%,#302f2f 50%,#292929 50%,#292929 91.6666666667%,#302f2f 91.6666666667%,#302f2f) repeat 0 0/12px 12px;
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}

.intro__inner-right p {
  font: 400 24px/117% Racama,sans-serif;
  position: relative;
  color: #fff;
  margin-bottom: 32px;
}

.intro__inner-right form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 87px;
}

.intro__inner-right form label {
  position: relative;
}

@media (max-width:520px) {
  .intro__inner-right {
    padding: 50px 10px;
  }

  .intro__inner-right form {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .intro__inner-right form label {
    width: 100%;
  }
}

.intro__inner-right form label .just-validate-error-label {
  position: absolute;
  bottom: -15px;
  font-size: 12px;
  font-weight: 700;
  color: red!important;
}

.intro__inner-right form input {
  font: 400 24px/133% Racama,sans-serif;
  border: 1px solid #fff;
  padding: 12px 24px;
  width: 325px;
  height: 56px;
  color: #fff;
}

@media (max-width:520px) {
  .intro__inner-right form input {
    width: 100%;
  }
}

.intro__inner-right form input::-webkit-input-placeholder {
  font: inherit inherit;
  color: inherit;
}

.intro__inner-right form input::-moz-placeholder {
  font: inherit inherit;
  color: inherit;
}

.intro__inner-right form input:-ms-input-placeholder {
  font: inherit inherit;
  color: inherit;
}

.intro__inner-right form input::-ms-input-placeholder {
  font: inherit inherit;
  color: inherit;
}

.intro__inner-right form input::placeholder {
  font: inherit inherit;
  color: inherit;
}

.intro__inner-right form button {
  padding: 16px 64px;
  width: 224px;
  height: 56px;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: .02em;
  text-align: center;
  background: #fff;
}

.intro__inner-right small {
  position: relative;
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #fff;
  opacity: .7;
}

.intro__inner-right small a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  -webkit-transition: text-decoration-color .4s;
  transition: text-decoration-color .4s;
}

.services__content {
  padding: 80px 0;
}

.services__content ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.services__content ul li {
  height: 200px;
}

@media (max-width:768px) {
  .intro__inner-right {
    width: 100%;
  }

  .services__content {
    padding: 50px 0;
  }

  .services__content ul li {
    height: 170px;
  }
}

.services__content ul li a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 0;
  background: #f6f6f6;
  padding: 16px;
  -webkit-transition: .4s;
  transition: .4s;
}

.services__content ul li h2 {
  font: 400 36px/122% Racama,sans-serif;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

@media (max-width:520px) {
  .services__content ul {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
  }

  .services__content ul li h2 {
    font-size: 24px;
  }
}

.services__content ul li p {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
}

.services__content ul li.one {
  display: block;
  background: inherit;
}

.services__content ul li.five {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 2;
  grid-column-end: 4;
}

.services__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.services__header span {
  font: 400 12px/167% Racama,sans-serif;
}

.services__header svg {
  -webkit-transition: .4s;
  transition: .4s;
}

.services__body h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
}

.popular__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 80px 0;
}

.popular__left {
  width: 35%;
}

@media (max-width:520px) {
  .services__content ul li p {
    font-size: 14px;
  }

  .services__content ul li.five {
    -ms-grid-column: unset;
    grid-column-start: unset;
    grid-column-end: unset;
  }

  .services__body h3 {
    font-size: 16px;
  }

  .popular__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .popular__left {
    width: 100%;
  }
}

.popular__left h2 {
  font: 400 36px/122% Racama,sans-serif;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

.popular__left p {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  margin-bottom: 76px;
}

.popular__left a {
  width: 217px;
  height: 56px;
  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-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: .02em;
  text-align: center;
  color: #fff;
  background: #000;
  padding: 16px 64px;
}

.popular__right {
  width: 65%;
}

@media (max-width:520px) {
  .popular__left p {
    margin-bottom: 50px;
  }

  .popular__left p br {
    display: none;
  }

  .popular__left a {
    margin-inline: auto;
  }

  .popular__right {
    width: 100%;
  }
}

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

.popular__right ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #000;
  padding: 16px 0;
}

.popular__right ul li:nth-last-of-type(1) {
  border-bottom: 1px solid #000;
}

.popular__right ul li p {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
}

@media (max-width:768px) {
  .popular__content {
    padding: 50px 0;
  }

  .popular__right ul li p {
    font-size: 15px;
  }
}

.popular__right ul li span {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  text-align: right;
}

.form {
  background: repeating-linear-gradient(90deg,#151515 0,rgba(21,21,21,.9) 80px);
  margin: 80px 0;
}

.form__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 120px 0;
}

.form__left {
  width: 50%;
}

@media (max-width:768px) {
  .popular__right ul li span {
    font-size: 15px;
  }

  .form {
    margin: 50px 0;
  }

  .form__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    padding: 60px 0;
  }

  .form__left {
    width: 100%;
  }
}

.form__left h2 {
  font: 400 48px/117% Racama,sans-serif;
  letter-spacing: -.02em;
  color: #fff;
}

.form__right {
  width: 50%;
}

.form__right form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

.form__right form label {
  position: relative;
}

@media (max-width:520px) {
  .form__left h2 {
    font-size: 30px;
  }

  .form__right form {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .form__right form label {
    width: 100%;
  }
}

.form__right form label .just-validate-error-label {
  position: absolute;
  bottom: -15px;
  font-size: 12px;
  font-weight: 700;
  color: red!important;
}

.form__right form input {
  font: 400 24px/133% Racama,sans-serif;
  border: 1px solid #fff;
  padding: 12px 24px;
  width: 325px;
  height: 56px;
  color: #fff;
}

@media (max-width:520px) {
  .form__right form input {
    width: 100%;
  }
}

.form__right form input::-webkit-input-placeholder {
  font: inherit inherit;
  color: inherit;
}

.form__right form input::-moz-placeholder {
  font: inherit inherit;
  color: inherit;
}

.form__right form input:-ms-input-placeholder {
  font: inherit inherit;
  color: inherit;
}

.form__right form input::-ms-input-placeholder {
  font: inherit inherit;
  color: inherit;
}

.form__right form input::placeholder {
  font: inherit inherit;
  color: inherit;
}

.form__right form button {
  padding: 16px 64px;
  width: 224px;
  height: 56px;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: .02em;
  text-align: center;
  background: #fff;
}

.form__right small {
  position: relative;
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #fff;
  opacity: .7;
}

.form__right small a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  -webkit-transition: text-decoration-color .4s;
  transition: text-decoration-color .4s;
}

.getting__content {
  padding: 80px 0;
}

.getting__content ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3,1fr);
  gap: 40px 24px;
}

.getting__content ul li h2 {
  font: 400 36px/122% Racama,sans-serif;
  letter-spacing: -.02em;
  margin-bottom: 40px;
}

.getting__content ul li p {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
}

.getting__content ul li img {
  display: block;
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.getting__content ul li._two {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 2;
  grid-column-end: 4;
}

@media (max-width:520px) {
  .getting__content ul {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }

  .getting__content ul li {
    width: 100%;
  }

  .getting__content ul li._two {
    -ms-grid-column: unset;
    grid-column-start: unset;
    grid-column-end: unset;
  }
}

.getting__content ul li._five p {
  margin-bottom: 64px;
}

.getting__content ul li._five > a {
  width: 253px;
  height: 40px;
  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-weight: 700;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: .02em;
  text-align: center;
  border: 1px solid #000;
  padding: 12px 32px;
}

@media (max-width:768px) {
  .form__right {
    width: 100%;
  }

  .getting__content {
    padding: 50px 0;
  }

  .getting__content ul {
    gap: 20px;
  }

  .getting__content ul li img {
    height: 100%;
  }

  .getting__content ul li._five > a {
    width: 100%;
  }
}

.getting__content ul li ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.getting__content ul li ul li img {
  display: block;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.getting__content ul li._five p,
.getting__content ul li._four p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

.team__content {
  padding: 80px 0;
}

.team__header {
  margin-bottom: 40px;
}

.team__header h2 {
  font: 400 36px/122% Racama,sans-serif;
  letter-spacing: -.02em;
}

.team__body ul li {
  width: 282px;
}

.team__body ul li h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  margin-bottom: 16px;
}

@media (max-width:768px) {
  .team__content {
    padding: 50px 0;
  }

  .team__body ul li h3 {
    font-size: 22px;
  }
}

.team__body ul li p {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-wrap: balance;
  opacity: .5;
}

.team__picture {
  width: 100%;
  height: 282px;
  margin-bottom: 8px;
}

.team__picture img {
  display: block;
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.questions__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 80px 0;
}

.questions__left {
  width: 35%;
}

@media (max-width:520px) {
  .questions__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
  }

  .questions__left {
    width: 100%;
  }

  .questions__left a {
    margin-inline: auto;
  }
}

.questions__left h2 {
  font: 400 36px/122% Racama,sans-serif;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

.questions__left p {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  margin-bottom: 40px;
}

.questions__left a {
  width: 247px;
  height: 56px;
  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-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: .02em;
  text-align: center;
  color: #fff;
  background: #000;
  padding: 16px 64px;
}

@media (max-width:768px) {
  .team__body ul li p {
    font-size: 12px;
  }

  .team__picture {
    height: auto;
  }

  .questions__content {
    padding: 50px 0;
  }

  .questions__left a {
    width: 80%;
  }
}

.questions__right {
  width: 65%;
}

.minus {
  display: none;
}

.spoiler ul {
  width: 100%;
}

.spoiler ul li {
  width: 100%;
  border-top: 1px solid #000;
}

.spoiler ul li:nth-last-of-type(1) {
  border-bottom: 1px solid #000;
}

.spoiler ul li button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 0;
}

.spoiler ul li button span {
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
  text-align: left;
}

.spoiler ul li button._active .plus {
  display: none;
}

.spoiler ul li button._active .minus {
  display: block;
}

.spoiler__inner {
  padding: 0 30px 32px 0;
}

.spoiler__inner p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

.contacts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 80px 0 120px;
}

@media (max-width:768px) {
  .spoiler ul li button span {
    font-size: 14px;
  }

  .spoiler__inner p {
    font-size: 12px;
  }

  .contacts__content {
    padding: 50px 0;
  }
}

@media (max-width:520px) {
  .questions__right {
    width: 100%;
  }

  .spoiler ul li button span {
    font-size: 12px;
  }

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

.contacts__left {
  width: 35%;
}

@media (max-width:520px) {
  .contacts__left {
    width: 100%;
  }
}

.contacts__left h2 {
  font: 400 36px/122% Racama,sans-serif;
  letter-spacing: -.02em;
  margin-bottom: 40px;
}

.contacts__left address {
  font-style: normal;
  margin-bottom: 32px;
}

.contacts__left p {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  margin-bottom: 24px;
}

.contacts__left a {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: -.02em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-underline-offset: 5px;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color .4s;
  transition: text-decoration-color .4s;
}

@media (any-hover:hover) {
  .header__menu nav ul li a:hover,
  .header__phone span:hover {
    text-decoration-color: inherit;
  }

  .header__wapp span:hover {
    text-decoration-color: transparent;
  }

  .footer__body nav ul a:hover,
  .footer__phone span:hover {
    text-decoration-color: inherit;
  }

  .intro__header-right a:hover,
  .intro__inner-right small a:hover {
    text-decoration-color: transparent;
  }

  .services__content ul li a:hover .services__header svg {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
  }

  .form__right small a:hover {
    text-decoration-color: transparent;
  }

  .contacts__left a:hover {
    text-decoration-color: inherit;
  }
}

.contacts__schedule small {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  margin-bottom: 9px;
  opacity: .5;
}

.contacts__schedule p {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
}

.contacts__right {
  width: 65%;
}

@media (max-width:520px) {
  .contacts__right {
    width: 100%;
  }
}

.contacts__map {
  position: relative;
  width: 100%;
  height: 330px;
}

.contacts__map iframe {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
}

.policy__content {
  padding: 48px 0 80px;
}

.policy__content h2 {
  font: 400 56px/100% Racama,sans-serif;
  letter-spacing: -.02em;
  margin-bottom: 40px;
}

.policy__content > p {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  margin-bottom: 10px;
}

.policy__content > p:nth-last-of-type(1) {
  margin-bottom: 0;
}

.policy__content ul {
  margin-top: 10px;
  margin-bottom: 10px;
}

.policy__content ul li p {
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
}

/*# sourceMappingURL=maps/index.css.map */
/*# sourceMappingURL=index.css.map */
