:root {
  --index: calc(1vw + 1vh);
  --font-size: 16px;
  --line-height: 1.4;
  --item-width: 325px;
  --burger-color: #F7F7F7;
  --burger-color-active: #F7F7F7;
  --container-width: 1340px;
  --container-padding: 30px;
  --font-default: "Evolventa", sans-serif;
  --transition: cubic-bezier(0.445, 0.050, 0.550, 0.950);
  --transition2: cubic-bezier(0.785, 0.135, 0.150, 0.860);
  --transition3: cubic-bezier(0.715, -0.235, 0.120, 1.300);
  --bg-body: #161616;
  --color-body: #F7F7F7;
  --color-text: #F7F7F7;
  --primary: #F39223;
}
@media screen and (max-width: 480px) {
  :root {
    --item-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --container-padding: 10px;
  }
}

/* responsive */
@font-face {
  font-family: "Evolventa";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Evolventa-Regular.woff") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Evolventa Bold";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Evolventa-Bold.woff") format("woff2");
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important;
}

a {
  transition: 0.3s ease;
}
a:hover {
  opacity: 0.6;
}

input,
a {
  outline: none !important;
  color: var(--color-text);
}

button,
input,
textarea {
  font-family: var(--font-default);
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

*::-webkit-input-placeholder {
  opacity: 1;
}

*:-moz-placeholder {
  opacity: 1;
}

*::-moz-placeholder {
  opacity: 1;
}

*:-ms-input-placeholder {
  opacity: 1;
}

input:focus {
  outline: none;
}

html {
  font-size: var(--font-size);
}

body {
  background: var(--bg-body);
  font-size: var(--font-size);
  min-width: 320px;
  position: relative;
  line-height: var(--line-height);
  font-family: var(--font-default);
  font-weight: normal;
  font-style: normal;
  color: var(--color-body);
  border-top: 8px solid var(--color-blue-light);
}
@media screen and (max-width: 992px) {
  body {
    border-top: 4px solid var(--color-blue-light);
  }
}
body.no-scroll {
  overflow: hidden;
  padding-right: 15px;
}
@media screen and (max-width: 992px) {
  body.no-scroll {
    padding-right: 0px;
  }
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}

@media screen and (min-width: 480px) {
  .-md4-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .-md3-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 1280px) {
  .-md1-hidden {
    display: none !important;
  }
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
  max-width: var(--container-width);
}

.container-fluid {
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  margin-right: auto;
  margin-left: auto;
}

.wrapper {
  min-height: 100vh;
  overflow: hidden;
}

.burger {
  cursor: pointer;
  display: none;
  width: 26px;
  position: relative;
  z-index: 1000;
  padding-bottom: 7.5px;
}
@media screen and (max-width: 992px) {
  .burger {
    display: block;
  }
}
.burger i {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--burger-color);
  transition: all 0.2s ease-out;
}
.burger i::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--burger-color);
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  top: -9px;
}
.burger i::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--burger-color);
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  bottom: -9px;
}
.burger.active i {
  background: transparent;
}
.burger.active i::before {
  top: 0;
  transform: rotateZ(45deg);
  background: var(--burger-color-active);
}
.burger.active i::after {
  bottom: 0;
  transform: rotateZ(-45deg);
  background: var(--burger-color-active);
}

.sub {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Evolventa Bold", sans-serif;
  font-size: 15px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .sub {
    margin-bottom: 18px;
  }
}
.sub::before {
  content: "";
  min-width: 12px;
  max-width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 3.75px;
}

.title {
  font-size: 32px;
  font-family: "Evolventa Bold", sans-serif;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 27px;
  }
}
.title span {
  color: var(--primary);
}

.aioseo-breadcrumbs {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .aioseo-breadcrumbs {
    font-size: 14px;
  }
}
.aioseo-breadcrumbs .aioseo-breadcrumb {
  color: rgba(247, 247, 247, 0.6);
}
.aioseo-breadcrumbs .aioseo-breadcrumb a {
  color: #F7F7F7;
  text-decoration: none;
}
.aioseo-breadcrumbs .aioseo-breadcrumb-separator {
  color: #F7F7F7;
}

.modal {
  display: none;
  padding: 52px 68px 52px 52px;
  border-radius: 14px;
  background: var(--primary);
  max-width: 600px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .modal {
    padding: 30px;
  }
}
.modal .request__title {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .modal .request__title {
    font-size: 24px;
  }
}
.modal .request__body {
  max-width: 100%;
  width: 100%;
}
.modal .request__body input[type=submit] {
  max-width: 100%;
}
@media screen and (max-width: 480px) {
  .modal .request__body input[type=submit] {
    width: 100%;
  }
}

.header {
  padding: 21px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: 0.3s ease;
}
.header.active {
  background: var(--bg-body);
}
.header a {
  text-decoration: none;
}
.header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 76px;
}
@media screen and (max-width: 1280px) {
  .header__left {
    gap: 30px;
  }
}
.header__left ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 36px;
  font-size: 15px;
  color: rgba(247, 247, 247, 0.8);
}
@media screen and (max-width: 1280px) {
  .header__left ul {
    gap: 25px;
    font-size: 14px;
    row-gap: 10px;
  }
}
@media screen and (max-width: 992px) {
  .header__left ul {
    display: none;
  }
}
.header__left ul .menu-item-has-children {
  position: relative;
}
.header__left ul .menu-item-has-children a:not(.sub-menu > li > a) {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__left ul .menu-item-has-children a:not(.sub-menu > li > a)::after {
  content: "";
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  background-image: url("../img/header-dropdown.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s ease;
}
.header__left ul .menu-item-has-children a:not(.sub-menu > li > a).active::after {
  transform: rotate(180deg);
}
.header__left ul .sub-menu {
  position: absolute;
  background: #2C2C2C;
  display: flex;
  flex-direction: column;
  gap: 18px;
  left: 0;
  top: 44px;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 20px;
  border-radius: 14px;
  display: none;
}
.header__left ul .sub-menu.active {
  display: flex;
}
.header__left ul .sub-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.header__logo {
  display: flex;
  align-items: center;
  height: 37px;
  aspect-ratio: 150/37;
}
@media screen and (max-width: 1280px) {
  .header__logo {
    height: 30px;
  }
}
@media screen and (max-width: 992px) {
  .header__logo {
    height: 37px;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1280px) {
  .header__right {
    gap: 20px;
  }
}
.header__soc {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .header__soc {
    display: none;
  }
}
.header__soc a {
  display: flex;
  align-items: center;
}
.header__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  font-family: "Evolventa Bold", sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .header__info {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .header__info {
    display: none;
  }
}
.header__btn {
  font-family: "Evolventa Bold", sans-serif;
  font-size: 15px;
  padding: 12px 20px;
  border: 1px solid #F7F7F7;
  border-radius: 9px;
  white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .header__btn {
    font-size: 14px;
    padding: 12px 15px;
  }
}
@media screen and (max-width: 768px) {
  .header__btn {
    display: none;
  }
}
.header__phone {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__phone {
    display: flex;
    align-items: center;
  }
}

.burger-content {
  background: var(--bg-body);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 99;
  padding: 80px 10px 0;
}
.burger-content a {
  text-decoration: none;
}
.burger-content__body {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  text-align: center;
}
.burger-content__body ul {
  list-style: none;
  text-align: left;
  font-size: 35px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.burger-content__body ul .menu-item-has-children {
  position: relative;
}
.burger-content__body ul .menu-item-has-children a:not(.sub-menu > li > a) {
  display: flex;
  align-items: center;
  gap: 10px;
}
.burger-content__body ul .menu-item-has-children a:not(.sub-menu > li > a)::after {
  content: "";
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  background-image: url("../img/header-dropdown.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s ease;
}
.burger-content__body ul .menu-item-has-children a:not(.sub-menu > li > a).active::after {
  transform: rotate(180deg);
}
.burger-content__body ul .sub-menu {
  margin: 15px 0 0 5px;
  display: none;
}
.burger-content__body ul .sub-menu li:not(:last-child) {
  margin-bottom: 13px;
}
.burger-content__body ul .sub-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.burger-content__bottom {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  border: 1px solid rgba(247, 247, 247, 0.4);
  border-radius: 20px;
  padding: 25px;
}
.burger-content__soc {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.burger-content__info {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  font-size: 22px;
  font-family: "Evolventa Bold", sans-serif;
}
.burger-content__btn {
  font-family: "Evolventa Bold", sans-serif;
  font-size: 15px;
  padding: 12px 20px;
  border: 1px solid #F7F7F7;
  border-radius: 9px;
  white-space: nowrap;
  display: block;
  text-align: center;
}

.homesect {
  padding: 104px 0 59px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .homesect {
    padding: 70px 0 40px;
  }
}
.homesect::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  min-width: 543px;
  max-width: 543px;
  height: 100%;
  background-image: url("../img/home-bg-1.png");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .homesect::before {
    display: none;
  }
}
.homesect::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  min-width: 375px;
  max-width: 375px;
  height: 420px;
  background-image: url("../img/home-bg-2.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
}
.homesect__body {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .homesect__body {
    flex-direction: column;
    gap: 30px;
  }
}
.homesect__content {
  margin-top: 23px;
  width: 47%;
}
@media screen and (max-width: 1280px) {
  .homesect__content {
    width: 50%;
  }
}
@media screen and (max-width: 992px) {
  .homesect__content {
    width: 100%;
  }
}
.homesect__title {
  margin: 0;
  font-family: "Evolventa Bold", sans-serif;
  font-size: 44px;
  line-height: 130%;
  margin-bottom: 16px;
  max-width: 576px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .homesect__title {
    font-size: 35px;
  }
}
@media screen and (max-width: 768px) {
  .homesect__title {
    font-size: 32px;
  }
}
.homesect__desc {
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 571px;
  position: relative;
  z-index: 1;
}
.homesect__btn {
  text-decoration: none;
  background: var(--primary);
  font-family: "Evolventa Bold", sans-serif;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: 9px;
  display: inline-block;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .homesect__btn {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .homesect__btn {
    width: 100%;
    text-align: center;
  }
}
.homesect__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 12px;
  margin-bottom: 12px;
}
@media screen and (max-width: 480px) {
  .homesect__items {
    gap: 15px;
    margin-bottom: 25px;
  }
}
.homesect__item {
  grid-column: 6 span;
  padding: 29px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 480px) {
  .homesect__item {
    grid-column: 12 span;
    padding: 0px;
  }
}
.homesect__item-img {
  display: flex;
  align-items: center;
}
.homesect__item-title {
  font-family: "Evolventa Bold", sans-serif;
  font-size: 12px;
  max-width: 156px;
}
.homesect__bottom {
  background: #767676;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  gap: 12px;
}
@media (max-width: 576px) {
  .homesect__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.homesect__bottom-img {
  display: flex;
  align-items: center;
}
.homesect__bottom-title {
  font-family: "Evolventa Bold", sans-serif;
  font-size: 12px;
  max-width: 199px;
}
.homesect__bottom-els {
  margin-left: auto;
  display: flex;
  padding-right: 19px;
}
@media (max-width: 576px) {
  .homesect__bottom-els {
    margin-left: 0;
  }
}
.homesect__bottom-el {
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 1px solid #767676;
  overflow: hidden;
  margin-right: -19px;
}
.homesect__bottom-el img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}
.homesect__img {
  width: 45.6%;
}
@media screen and (max-width: 1280px) {
  .homesect__img {
    width: 47%;
  }
}
@media screen and (max-width: 992px) {
  .homesect__img {
    display: none;
  }
}
.homesect__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}

.about {
  background: #0F0F0F;
  border-radius: 30px 30px 0 0;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 40px 0;
  }
}
.about__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .about__body {
    flex-direction: column;
  }
}
.about__left {
  max-width: 556px;
  width: 100%;
  position: sticky;
  top: 100px;
}
@media screen and (max-width: 768px) {
  .about__left {
    max-width: 100%;
  }
}
.about__left .title {
  max-width: 503px;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .about__left .title {
    margin-bottom: 20px;
  }
}
.about__description {
  font-size: 15px;
}
.about__description strong {
  font-family: "Evolventa Bold", sans-serif;
}
.about__description * + * {
  margin-top: 20px;
}
.about__items {
  max-width: 581px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media screen and (max-width: 768px) {
  .about__items {
    max-width: 100%;
  }
}
.about__item {
  background: black;
  border-radius: 14px;
  padding: 5px 0 5px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .about__item {
    padding: 17px;
  }
}
.about__item-title {
  margin-bottom: 21px;
}
@media screen and (max-width: 480px) {
  .about__item-title {
    margin-bottom: 15px;
  }
}
.about__item-description {
  font-size: 12px;
  max-width: 171px;
}
.about__item-img {
  height: 125px;
  aspect-ratio: 166/125;
}
@media screen and (max-width: 480px) {
  .about__item-img {
    display: none;
  }
}
.about__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes partners-scroll-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes partners-scroll-left {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.partners {
  padding: 60px 0 72px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .partners {
    padding: 40px 0;
  }
}
.partners--service {
  background: #0F0F0F;
  padding: 82px 0 108px;
  border-radius: 30px 30px 0 0;
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .partners--service {
    padding: 40px 0 70px;
  }
}
.partners__body .title {
  max-width: 750px;
}
.partners__items {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  margin-top: 56px;
  gap: 55px;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .partners__items {
    gap: 35px;
    margin-top: 35px;
  }
}
.partners__items--to-right {
  animation: partners-scroll-right 22s linear infinite;
}
.partners__items--to-left {
  animation: partners-scroll-left 22s linear infinite;
}
.partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .partners__item {
    height: 45px;
  }
}
.partners__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.geo {
  padding: 60px 0 53px;
  background: #0A0A0A;
  border-radius: 30px 30px 0 0;
}
@media screen and (max-width: 768px) {
  .geo {
    padding: 40px 0;
  }
}
.geo__body .title {
  max-width: 593px;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .geo__body .title {
    margin-bottom: 20px;
  }
}
.geo__img {
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 1100/681;
}
.geo__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}

.directions {
  padding: 412px 0 24px;
  background: #0F0F0F;
  border-radius: 30px 30px 0 0;
  margin-top: -355px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .directions {
    margin-top: -305px;
    padding-top: 362px;
  }
}
@media screen and (max-width: 480px) {
  .directions {
    margin-top: -205px;
    padding-top: 262px;
  }
}
.directions--brand {
  margin-top: 0;
  padding: 82px 0 72px;
  background: #1C1C1C;
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .directions--brand {
    padding: 40px 0;
  }
}
.directions__items {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 13px;
       column-gap: 13px;
  row-gap: 13px;
}
@media screen and (max-width: 768px) {
  .directions__items {
    margin-top: 30px;
  }
}
.directions__item {
  grid-column: 4 span;
  background: var(--bg-body);
  padding: 20px;
  border-radius: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  overflow: hidden;
  transition: 0.3s ease;
}
@media screen and (max-width: 992px) {
  .directions__item {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 480px) {
  .directions__item {
    grid-column: 12 span;
  }
}
.directions__item:nth-child(2n) {
  flex-direction: column-reverse;
  padding-top: 36px;
  padding-bottom: 18px;
}
.directions__item:nth-child(2n) .directions__item-title {
  margin-right: 63px;
}
.directions__item * {
  transition: 0.3s ease;
}
.directions__item:hover {
  background: rgba(22, 22, 22, 0.8);
}
.directions__item:hover .directions__item-title, .directions__item:hover .directions__item-description, .directions__item:hover .directions__item-img {
  opacity: 0.8;
}
.directions__item:hover .directions__item-arrow img {
  transform: rotate(0);
}
.directions__item-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.directions__item-arrow {
  display: flex;
  align-items: center;
  position: absolute;
  right: 40px;
  top: 36px;
  min-width: 33px;
  max-width: 33px;
  height: 33px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.directions__item-arrow img {
  transition: 0.3s ease;
  transform: rotate(-45deg);
}
.directions__item-arrow:hover {
  opacity: 1;
}
.directions__item-img {
  aspect-ratio: 378/240;
  border-radius: 14px;
  overflow: hidden;
}
.directions__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.directions__item-title {
  margin-bottom: 18px;
  font-size: 17px;
  font-family: "Evolventa Bold", sans-serif;
}
.directions__item-description {
  font-size: 15px;
}
.directions__request {
  grid-column: 4 span;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
  position: relative;
  padding: 36px 20px 34px;
  gap: 50px;
}
@media screen and (max-width: 992px) {
  .directions__request {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 480px) {
  .directions__request {
    grid-column: 12 span;
  }
}
.directions__request-title {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-family: "Evolventa Bold", sans-serif;
  max-width: 308px;
}
.directions__request-btn {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-family: "Evolventa Bold", sans-serif;
  padding: 16px 24px;
  background: #161616;
  border-radius: 9px;
  text-decoration: none;
}
.directions__request-img {
  position: absolute;
  height: 307px;
  right: -55px;
  bottom: -11px;
}
.directions__request-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}

.gown {
  padding: 96px 0 66px;
  background: #131313;
}
@media screen and (max-width: 768px) {
  .gown {
    padding: 40px 0;
  }
}
.gown__body {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 992px) {
  .gown__body {
    flex-direction: column;
  }
}
.gown__left {
  width: 50%;
  background: var(--bg-body);
  border-radius: 30px;
  padding: 40px 20px 20px 20px;
}
@media screen and (max-width: 992px) {
  .gown__left {
    width: 100%;
  }
}
.gown__items {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 12px;
}
.gown__item {
  grid-column: 6 span;
  background: black;
  padding: 26px 20px;
  min-height: 228px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .gown__item {
    min-height: 190px;
  }
}
@media screen and (max-width: 480px) {
  .gown__item {
    grid-column: 12 span;
  }
}
.gown__item:first-child {
  background: #2E2F2F;
}
.gown__item:first-child .gown__item-img {
  bottom: -50px;
  right: -93px;
  height: 233px;
  aspect-ratio: 310/233;
}
@media screen and (max-width: 768px) {
  .gown__item:first-child .gown__item-img {
    height: 200px;
  }
}
.gown__item-title {
  font-family: "Evolventa Bold", sans-serif;
  font-size: 17px;
  max-width: 176px;
  position: relative;
  z-index: 1;
}
.gown__item-img {
  position: absolute;
  display: flex;
  align-items: center;
  height: 159px;
  aspect-ratio: 211/159;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .gown__item-img {
    height: 129px;
  }
}
.gown__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gown__img {
  width: 50%;
  border-radius: 30px;
  background: var(--bg-body);
  padding: 20px;
}
@media screen and (max-width: 992px) {
  .gown__img {
    width: 100%;
  }
}
.gown__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  transform: scaleX(-1);
}

.faq {
  background: #0F0F0F;
  padding: 59px 0 82px;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 40px 0;
  }
}
.faq--service {
  background: var(--bg-body);
  padding: 82px 0 88px;
  border-radius: 30px 30px 0 0;
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .faq--service {
    padding: 40px 0 70px;
  }
}
.faq__items {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 0;
}
@media screen and (max-width: 768px) {
  .faq__items {
    border-bottom: 1px solid rgba(118, 118, 118, 0.6);
    margin-top: 25px;
  }
}
.faq__col {
  grid-column: 6 span;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .faq__col {
    grid-column: 12 span;
  }
}
.faq__item {
  border-top: 1px solid rgba(118, 118, 118, 0.6);
}
.faq__item:last-child {
  border-bottom: 1px solid rgba(118, 118, 118, 0.6);
}
@media screen and (max-width: 768px) {
  .faq__item:last-child {
    border-bottom: 0;
  }
}
.faq__item-top {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 10px;
}
.faq__item-top img {
  transition: 0.3s ease;
}
.faq__item-top.active img {
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .faq__item-top {
    padding: 15px 0;
  }
}
.faq__item-title {
  font-family: "Evolventa Bold", sans-serif;
  font-size: 17px;
}
.faq__item-content {
  display: none;
  margin-top: -10px;
  padding-bottom: 50px;
  font-size: 15px;
}
@media screen and (max-width: 992px) {
  .faq__item-content {
    padding-bottom: 20px;
  }
}

.request {
  background: var(--primary);
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .request {
    padding: 50px 0;
  }
}
@media screen and (max-width: 768px) {
  .request {
    padding: 40px 0 0 0;
  }
}
.request__body {
  max-width: 45%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .request__body {
    max-width: 100%;
  }
}
.request__body form {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.request__body form input:not([type=submit], [type=checkbox]) {
  max-width: 384px;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(247, 247, 247, 0.8);
  padding: 12px 0;
  font-size: 18px;
  color: var(--color-body);
  margin-bottom: 24px;
}
@media screen and (max-width: 480px) {
  .request__body form input:not([type=submit], [type=checkbox]) {
    max-width: 100%;
    padding: 6px 0;
    margin-bottom: 18px;
  }
}
.request__body form input:not([type=submit], [type=checkbox])::-moz-placeholder {
  color: rgba(247, 247, 247, 0.8);
}
.request__body form input:not([type=submit], [type=checkbox])::placeholder {
  color: rgba(247, 247, 247, 0.8);
}
.request__body form label {
  margin-bottom: 12px;
}
.request__body form label input {
  display: none;
}
.request__body form label span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .request__body form label span {
    gap: 8px;
  }
}
.request__body form label span::before {
  content: "";
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  border: 1px solid rgba(247, 247, 247, 0.8);
}
.request__body form label input:checked + span::before {
  background: rgba(247, 247, 247, 0.8);
}
.request__body form input[type=submit] {
  background: black;
  border: none;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 14px 24px;
  font-size: 15px;
  font-family: "Evolventa Bold", sans-serif;
  border-radius: 9px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 28px;
}
.request__body form input[type=submit]:hover {
  opacity: 0.6;
}
@media screen and (max-width: 480px) {
  .request__body form input[type=submit] {
    margin-top: 12px;
    width: 100%;
    max-width: 100%;
  }
}
.request__title {
  font-size: 36px;
  font-family: "Evolventa Bold", sans-serif;
  line-height: 130%;
  margin-bottom: 35px;
}
@media screen and (max-width: 992px) {
  .request__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .request__title {
    font-size: 27px;
    margin-bottom: 24px;
  }
}
.request__body-img {
  display: flex;
  align-items: center;
  max-width: 295px;
  min-width: 295px;
  aspect-ratio: 295/339;
  position: absolute;
  bottom: -73px;
  right: -116px;
  z-index: 0;
}
@media screen and (max-width: 480px) {
  .request__body-img {
    display: none;
  }
}
.request__body-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}
.request__img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 48%;
  z-index: 2;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .request__img {
    position: relative;
    width: 100%;
    margin-top: 40px;
  }
}
.request__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
@media screen and (max-width: 768px) {
  .request__img img {
    -o-object-position: center;
       object-position: center;
  }
}

.customers {
  background: var(--bg-body);
  border-radius: 30px;
  padding: 82px 0;
}
@media screen and (max-width: 768px) {
  .customers {
    padding: 40px 0;
  }
}
.customers__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 39px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .customers__top {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .customers__top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.customers__btn {
  text-decoration: none;
  background: var(--primary);
  color: var(--color-body);
  font-family: "Evolventa Bold", sans-serif;
  font-size: 15px;
  padding: 14px 34px;
  border-radius: 9px;
  white-space: nowrap;
}
.customers__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 16px;
}
.customers__item {
  grid-column: 2 span;
  aspect-ratio: 200/157;
  background: #1D1D1D;
  border-radius: 14px;
  position: relative;
  padding: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .customers__item {
    grid-column: 3 span;
  }
}
@media screen and (max-width: 768px) {
  .customers__item {
    grid-column: 4 span;
  }
}
@media screen and (max-width: 480px) {
  .customers__item {
    grid-column: 6 span;
  }
}
.customers__item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.customers__item-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  border-radius: 4.9px;
  z-index: 1;
  position: absolute;
  left: 20px;
  top: 20px;
}
.customers__item-arrow img {
  width: 17px;
  height: 17px;
  transform: rotate(45deg);
}
.customers__item-img {
  display: flex;
  align-items: center;
}
.customers__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}

.advantages {
  background: #0F0F0F;
  border-radius: 30px 30px 0 0;
  padding: 82px 0;
  margin-top: -30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .advantages {
    padding: 40px 0;
  }
}
.advantages--brand {
  padding-bottom: 112px;
}
@media screen and (max-width: 768px) {
  .advantages--brand {
    padding-bottom: 70px;
  }
}
.advantages--service {
  border-radius: 30px;
  margin-top: -30px;
}
.advantages__items {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 16px;
}
@media screen and (max-width: 768px) {
  .advantages__items {
    margin-top: 30px;
  }
}
.advantages__item {
  grid-column: 4 span;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: black;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
}
@media screen and (max-width: 768px) {
  .advantages__item {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 480px) {
  .advantages__item {
    grid-column: 12 span;
    height: 170px;
  }
}
.advantages__item-arrow {
  position: relative;
  z-index: 1;
  background: var(--primary);
  min-width: 33px;
  max-width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6.75px;
}
.advantages__item-arrow img {
  transform: rotate(-45deg);
}
.advantages__title {
  position: relative;
  z-index: 1;
  max-width: 231px;
  font-size: 17px;
  font-family: "Evolventa Bold", sans-serif;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .advantages__title {
    font-size: 16px;
  }
}
.advantages__img {
  position: absolute;
  height: 100%;
  aspect-ratio: 266/200;
  right: -21px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 992px) {
  .advantages__img {
    height: 90%;
    right: -90px;
  }
}
.advantages__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}

.brandmain {
  position: relative;
  padding: 171px 0 102px;
}
@media screen and (max-width: 768px) {
  .brandmain {
    padding: 90px 0 70px;
  }
}
.brandmain__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.brandmain__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.brandmain__body {
  position: relative;
  z-index: 1;
}
.brandmain__title {
  margin: 0;
  max-width: 588px;
  font-family: "Evolventa Bold", sans-serif;
  font-size: 40px;
  line-height: 130%;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .brandmain__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
.brandmain__title span {
  color: var(--primary);
}
.brandmain__btn {
  text-decoration: none;
  background: var(--primary);
  font-family: "Evolventa Bold", sans-serif;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 9px;
  display: inline-block;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .brandmain__btn {
    margin-bottom: 20px;
  }
}
.brandmain__bottom {
  max-width: 478px;
}
@media screen and (max-width: 768px) {
  .brandmain__bottom {
    max-width: 100%;
  }
}
.brandmain__items {
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 12px;
}
.brandmain__item {
  grid-column: 6 span;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 29px 12px 29px 18px;
  background: #161616;
  border-radius: 14px;
}
@media screen and (max-width: 480px) {
  .brandmain__item {
    grid-column: 12 span;
  }
}
.brandmain__item-img {
  display: flex;
  align-items: center;
}
.brandmain__item-title {
  font-size: 12px;
  font-family: "Evolventa Bold", sans-serif;
}

.brandinfo {
  padding: 82px 0 112px;
  background: #0F0F0F;
  position: relative;
  border-radius: 30px 30px 0 0;
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .brandinfo {
    padding: 40px 0 70px;
  }
}
.brandinfo__body {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .brandinfo__body {
    flex-direction: column;
  }
}
.brandinfo__left {
  max-width: 571px;
}
@media screen and (max-width: 992px) {
  .brandinfo__left {
    max-width: 401px;
  }
}
@media screen and (max-width: 768px) {
  .brandinfo__left {
    max-width: 100%;
  }
}
.brandinfo__desc {
  margin-top: 20px;
  font-size: 15px;
  letter-spacing: 0.1px;
}
.brandinfo__desc strong {
  font-family: "Evolventa Bold", sans-serif;
}
.brandinfo__img {
  max-width: 569px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 569/267;
}
@media screen and (max-width: 768px) {
  .brandinfo__img {
    max-width: 100%;
  }
}
.brandinfo__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.types {
  padding: 82px 0;
  border-radius: 30px;
  background: var(--bg-body);
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .types {
    padding: 40px 0;
  }
}
.types__items {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 12px;
}
@media screen and (max-width: 768px) {
  .types__items {
    margin-top: 30px;
  }
}
.types__item {
  grid-column: 3 span;
  background: #0F0F0F;
  border-radius: 14px;
  padding: 20px;
}
@media screen and (max-width: 992px) {
  .types__item {
    grid-column: 4 span;
  }
}
@media screen and (max-width: 768px) {
  .types__item {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 480px) {
  .types__item {
    grid-column: 12 span;
  }
}
.types__item-img {
  margin-bottom: 20px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 271/160;
}
.types__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.types__item-title {
  font-family: "Evolventa Bold", sans-serif;
  font-size: 17px;
}

.servmain {
  position: relative;
  padding: 119px 0 122px;
}
@media screen and (max-width: 768px) {
  .servmain {
    padding: 90px 0 70px;
  }
}
.servmain--brands .servmain__btn {
  padding: 14px 30px;
}
.servmain::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0.4) 100%);
}
.servmain__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.servmain__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.servmain__body {
  position: relative;
  z-index: 2;
}
.servmain__title {
  font-size: 40px;
  font-family: "Evolventa Bold", sans-serif;
  margin: 0;
  margin-top: 32px;
  margin-bottom: 15px;
  line-height: 130%;
  max-width: 542px;
}
.servmain__title span {
  color: var(--primary);
}
@media screen and (max-width: 768px) {
  .servmain__title {
    font-size: 32px;
    margin-top: 20px;
  }
}
.servmain__desc {
  max-width: 401px;
  font-size: 15px;
  margin-bottom: 41px;
}
@media screen and (max-width: 768px) {
  .servmain__desc {
    margin-bottom: 20px;
  }
}
.servmain__btns {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 480px) {
  .servmain__btns {
    flex-direction: column;
  }
}
.servmain__btn {
  font-family: "Evolventa Bold", sans-serif;
  font-size: 15px;
  color: #F7F7F7;
  text-decoration: none;
  padding: 14px 19px;
  background: var(--primary);
  border-radius: 9px;
  border: 2px solid var(--primary);
  text-align: center;
}
.servmain__btn--outline {
  background: transparent;
  border: 2px solid #F7F7F7;
}

.servinfo {
  padding: 82px 0 132px;
  background: #080808;
  border-radius: 30px 30px 0 0;
  margin-top: -30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .servinfo {
    padding: 40px 0 70px;
  }
}
.servinfo__content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .servinfo__content {
    flex-direction: column;
  }
}
.servinfo__left {
  max-width: 600px;
}
@media screen and (max-width: 992px) {
  .servinfo__left {
    max-width: 100%;
  }
}
.servinfo__desc {
  margin-top: 32px;
  max-width: 586px;
  margin-bottom: 40px;
  font-size: 15px;
  letter-spacing: 0.1px;
}
@media screen and (max-width: 992px) {
  .servinfo__desc {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .servinfo__desc {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.servinfo__els {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
  margin-bottom: 9px;
}
.servinfo__el {
  grid-column: 4 span;
  display: flex;
  align-items: center;
  background: var(--bg-body);
  border-radius: 14px;
  padding: 20px 18px;
  gap: 12px;
}
@media screen and (max-width: 480px) {
  .servinfo__el {
    grid-column: 12 span;
    padding: 16px;
  }
}
.servinfo__el h3 {
  font-family: "Evolventa Bold", sans-serif;
  font-size: 12px;
}
.servinfo__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
}
.servinfo__item {
  grid-column: 6 span;
  background: #767676;
  display: flex;
  align-items: center;
  border-radius: 14px;
  padding: 20px 18px;
  gap: 12px;
}
@media screen and (max-width: 480px) {
  .servinfo__item {
    grid-column: 12 span;
    padding: 16px;
  }
}
.servinfo__item h3 {
  font-family: "Evolventa Bold", sans-serif;
  font-size: 12px;
}
.servinfo__img {
  aspect-ratio: 569/391;
  border-radius: 20px;
  max-width: 569px;
  overflow: hidden;
  position: relative;
}
.servinfo__img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.servinfo__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 992px) {
  .servinfo__img {
    max-width: 100%;
  }
}

.req {
  padding: 46px 0 112px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .req {
    padding: 40px 0 70px;
  }
}
.req__body {
  background-image: url("../img/req.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 52px;
  border-radius: 32px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 0 -40px;
}
@media screen and (max-width: 1280px) {
  .req__body {
    margin: 0 -30px;
  }
}
@media screen and (max-width: 768px) {
  .req__body {
    flex-direction: column;
    padding: 40px 10px;
    margin: 0 -10px;
    border-radius: 18px;
  }
}
.req__left {
  max-width: 610px;
}
@media screen and (max-width: 768px) {
  .req__left {
    max-width: 100%;
  }
}
.req__title {
  margin-bottom: 20px;
  font-family: "Evolventa Bold", sans-serif;
  font-size: 40px;
}
@media screen and (max-width: 992px) {
  .req__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .req__title {
    font-size: 27px;
  }
}
.req__desc {
  font-size: 17px;
  line-height: 160%;
  max-width: 401px;
}
.req form {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #F7F7F7;
  border-radius: 32px;
  padding: 32px;
}

.req .wpcf7 {
  max-width: 580px;
  width: 100%;
}

.req .wpcf7-response-output {
  color: var(--bg-body);
}

@media screen and (max-width: 768px) {
  .req .wpcf7 {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .req form {
    padding: 20px;
  }
}
.req form input:not([type=submit], [type=checkbox]), .req form textarea {
  margin-bottom: 16px;
  font-size: 15px;
  border: none;
  background: rgba(22, 22, 22, 0.06);
  border-radius: 9px;
  padding: 16px 20px;
}
.req form textarea {
  margin-bottom: 23px;
  resize: none;
  height: 104px;
}
.req form label {
  margin-bottom: 12px;
  color: #161616;
  cursor: pointer;
}
.req form label input {
  display: none;
}
.req form label span {
  font-size: 14px;
  position: relative;
  padding-left: 32px;
  display: inline-block;
}
.req form label span::before {
  position: absolute;
  content: "";
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  border: 1px solid #161616;
  border-radius: 2px;
  margin-right: 16px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.req form label span a {
  text-decoration: none;
  color: var(--primary);
}
.req form label input:checked + span::before {
  background: var(--primary);
}
.req form input[type=submit] {
  border: none;
  color: white;
  background: var(--primary);
  padding: 14px;
  border-radius: 9px;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 15px;
  font-family: "Evolventa Bold", sans-serif;
  margin-top: 24px;
}
.req form input[type=submit]:hover {
  opacity: 0.6;
}
@media screen and (max-width: 480px) {
  .req form input[type=submit] {
    margin-top: 10px;
  }
}

.otherserv {
  background: #0F0F0F;
  padding: 84px 0 82px;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
}
@media screen and (max-width: 768px) {
  .otherserv {
    padding: 40px 0;
  }
}
.otherserv__body .swiper-slide {
  height: auto;
}
.otherserv__body .swiper-slide .directions__item {
  height: 100%;
}
.otherserv__body .swiper-slide:nth-child(2n) .directions__item {
  flex-direction: column-reverse;
  padding-top: 36px;
  padding-bottom: 18px;
}
.otherserv__body .swiper-slide:nth-child(2n) .directions__item .directions__item-title {
  margin-right: 63px;
}
.otherserv__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .otherserv__top {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .otherserv__top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.otherserv__arrows {
  display: flex;
  gap: 6px;
}
.otherserv__arrow {
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
  cursor: pointer;
}
.otherserv__arrow:hover {
  opacity: 0.6;
}
.otherserv__arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.otherserv__arrow--next {
  transform: rotate(180deg);
}
.conttop {
  background-image: url("../img/conttop.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #111111;
  padding: 119px 0 87px;
}
@media screen and (max-width: 768px) {
  .conttop {
    padding: 90px 0 70px;
  }
}
.conttop__title {
  margin: 0;
  margin-top: 32px;
  font-family: "Evolventa Bold", sans-serif;
  font-size: 40px;
}
.conttop__title span {
  color: var(--primary);
}
@media screen and (max-width: 768px) {
  .conttop__title {
    font-size: 32px;
    margin-top: 20px;
  }
}

.contact {
  background: #0F0F0F;
  border-radius: 30px 30px 0 0;
  margin-top: -30px;
  padding: 86px 0 95px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 40px 0;
  }
}
.contact__body {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 9px;
       column-gap: 9px;
  row-gap: 9px;
}
.contact__content {
  grid-column: 6 span;
  border-radius: 30px;
  background: #767676;
  padding: 40px 37px;
}
@media screen and (max-width: 768px) {
  .contact__content {
    grid-column: 12 span;
  }
}
@media screen and (max-width: 480px) {
  .contact__content {
    padding: 20px;
    border-radius: 20px;
  }
}
.contact__items {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 43px;
       column-gap: 43px;
  row-gap: 21px;
  max-width: 328px;
}
@media screen and (max-width: 768px) {
  .contact__items {
    margin-top: 20px;
    max-width: 100%;
  }
}
.contact__item {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  max-width: 280px;
}
.contact__item-title {
  font-family: "Evolventa Bold", sans-serif;
  font-size: 17px;
}
.contact__item-desc {
  font-size: 14px;
}
.contact__btn {
  margin-top: 50px;
  border-radius: 9px;
  background: var(--primary);
  text-decoration: none;
  padding: 16px 24px;
  font-family: "Evolventa Bold", sans-serif;
  font-size: 15px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .contact__btn {
    margin-top: 30px;
  }
}
.contact__map {
  grid-column: 6 span;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .contact__map {
    grid-column: 12 span;
    aspect-ratio: 634/480;
  }
}
@media screen and (max-width: 480px) {
  .contact__map {
    border-radius: 20px;
  }
}

.modalcont {
  display: none;
  position: relative;
  background: #767676;
  border-radius: 14px;
  padding: 52px;
  max-width: 600px;
  width: 100%;
  min-height: 427px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .modalcont {
    min-height: 0;
    padding: 30px;
  }
}
.modalcont::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -102px;
  min-width: 295px;
  max-width: 295px;
  height: 320px;
  background-image: url("../img/modalcont.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 480px) {
  .modalcont::after {
    display: none;
  }
}
.modalcont__body {
  position: relative;
  z-index: 1;
}
.modalcont__title {
  font-family: "Evolventa Bold", sans-serif;
  font-size: 36px;
  margin-bottom: 44px;
}
@media screen and (max-width: 480px) {
  .modalcont__title {
    margin-bottom: 20px;
    font-size: 28px;
  }
}
.modalcont__desc {
  max-width: 288px;
  font-size: 14px;
}
.modalcont__desc * + * {
  margin-top: 20px;
}

.home .footer {
  background: var(--bg-body);
}

.footer {
  position: relative;
  padding: 85px 0 131px;
  overflow: hidden;
  background: #262626;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 0 101px;
    text-align: center;
  }
}
.footer ul {
  list-style: none;
}
.footer ul a {
  text-decoration: none;
}
.footer::after {
  content: "";
  position: absolute;
  bottom: -111px;
  left: 0;
  width: 100%;
  height: 353px;
  background-image: url("../img/footer-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.12;
}
@media screen and (max-width: 768px) {
  .footer::after {
    bottom: -150px;
  }
}
.footer__body {
  position: relative;
  z-index: 1;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .footer__top {
    flex-direction: column;
  }
}
.footer__left {
  display: flex;
  gap: 91px;
}
@media screen and (max-width: 1280px) {
  .footer__left {
    gap: 50px;
  }
}
@media screen and (max-width: 992px) {
  .footer__left {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .footer__menu {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 768px) {
  .footer__menu {
    grid-column: 12 span;
  }
}
.footer__menu ul {
  font-size: 17px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.footer__sub {
  font-size: 15px;
  color: rgba(247, 247, 247, 0.4);
  margin-bottom: 16px;
}
@media screen and (max-width: 992px) {
  .footer__services {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 768px) {
  .footer__services {
    grid-column: 12 span;
  }
}
.footer__services ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  font-size: 15px;
}
.footer__right {
  display: flex;
  gap: 125px;
}
@media screen and (max-width: 1280px) {
  .footer__right {
    gap: 50px;
  }
}
@media screen and (max-width: 992px) {
  .footer__right {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .footer__cont {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 768px) {
  .footer__cont {
    grid-column: 12 span;
  }
}
.footer__cont ul {
  display: flex;
  flex-direction: column;
  font-family: "Evolventa Bold", sans-serif;
  font-size: 28px;
  line-height: 47px;
}
@media screen and (max-width: 1280px) {
  .footer__cont ul {
    font-size: 22px;
    line-height: 41px;
  }
}
.footer__info {
  max-width: 326px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1280px) {
  .footer__info {
    max-width: 280px;
  }
}
@media screen and (max-width: 992px) {
  .footer__info {
    grid-column: 6 span;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer__info {
    grid-column: 12 span;
  }
}
.footer__adress {
  margin-bottom: 22px;
  font-size: 17px;
}
.footer__soc {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .footer__soc {
    justify-content: center;
  }
}
.footer__soc a {
  display: flex;
  align-items: center;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 80px;
}
@media screen and (max-width: 992px) {
  .footer__bottom {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.footer__bottom ul {
  display: flex;
  gap: 197px;
}
@media screen and (max-width: 1280px) {
  .footer__bottom ul {
    gap: 50px;
  }
}
@media screen and (max-width: 992px) {
  .footer__bottom ul {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer__bottom ul {
    flex-direction: column;
    gap: 15px;
  }
}

/* New styles */

.custom {
  padding: 120px 0 40px;
}

.custom h1 {
  font-size: 40px;
  font-family: 'Evolventa Bold';
  margin: 32px 0 36px;
}

.custom__description p, .custom__description ul, .custom__description h2, .custom__description h3, .custom__description h4, .custom__description h5, .custom__description h6 {
  padding-top: 20px;
}

.custom__description h2, .custom__description h3, .custom__description h4, .custom__description h5, .custom__description h6 {
  font-family: 'Evolventa Bold';
}

.custom__description ul {
  padding-left: 20px;
}

.custom__description {
  margin-top: -20px;
}

@media screen and (max-width: 768px) {

  .custom {
    padding: 90px 0 40px;
  }

  .custom h1 {
    font-size: 32px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.wpcf7-list-item {
  margin-left: 0;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.wpcf7-list-item label {
  margin-bottom: 0 !important;
}

.wpcf7-response-output {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 14px !important;
}
.gown__item:first-child {
    background: black;
}