/**************************************************/
/**         GENERAL RESET & BASE STYLES          **/
/**************************************************/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

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

* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 120%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: auto;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}
a:hover {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

b {
  font-weight: 500;
}

img {
  width: 100%;
  height: auto;
}

input,
textarea,
select {
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box;
  resize: none;

  border: 1px solid transparent;
  color: #000c49;
  background-color: #fff;
  border-radius: 0 !important;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #ffffff;
  font-size: 16px;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  color: #b9b9b9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  /* -webkit-background-clip: text; */
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px transparent;
}

.footer__form input:-webkit-autofill,
.footer__form input:-webkit-autofill:hover,
.footer__form input:-webkit-autofill:focus,
.footer__form input:-webkit-autofill:active {
  /* -webkit-background-clip: text; */
  -webkit-text-fill-color: #000;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px transparent;
}

button {
  border-radius: 0 !important;
}

.hover {
  transition: opacity 0.4s;
  cursor: pointer;
}

.hover:hover {
  opacity: 0.5;
}

.container {
  display: block;
  position: relative;
  width: 100%;
  padding: 0 160px;
  margin: 0 auto;
  height: auto;
}

/**************************************************/
/**                 MAIN STYLES                  **/
/**************************************************/
.menu {
  display: none;
}
.section-padding {
  padding-top: 150px;
}
.title *,
.title {
  color: #000;
  padding-right: 10px;
  font-size: 3.6vw;
  font-family: "AnastasiaScript";
}
.service-tabs__title {
  margin-bottom: 60px;
}
.service-tabs__item {
  padding: 20px 0;
  border-top: 1px solid #b1b1b1;
  /* border-bottom: 1px solid #b1b1b1; */
  display: flex;
  gap: 20px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.service-tabs__image {
  width: 40%;
  overflow: hidden;
}

.service-tabs__wrap {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.service-tabs__top {
  display: flex;
  flex-direction: column;
}
.service-tabs__subtitle {
  color: #000;
  font-size: 24px;
  line-height: 150%; /* 36px */
  text-transform: uppercase;
}
.service-tabs__text {
  font-size: 18px;
  color: #252525;
  font-weight: 300;
  margin-top: 20px;
  overflow: hidden;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  width: 100vw;
  height: 100vh;
}
.preloader svg {
  width: 90%;
}
.title__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.popular__wrap {
  margin-top: 60px;
  overflow: hidden;
  position: relative;
}

.popular__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid #c8c8c8;
  transition: all 0.4s;
  cursor: pointer;
}
.popular__item.active {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.popular__grid-block {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.4s;
}
.popular__grid-block > div {
  min-height: 0;
}
.popular__item.active .popular__grid-block {
  grid-template-rows: 1fr;
}
.popular__item:last-child {
  border-bottom: 1px solid #c8c8c8;
}
.popular__subtitle {
  color: #232323;
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
}
.popular__image {
  height: 100%;
  width: 50%;
  position: absolute;
  right: 0;
  z-index: 1;
  overflow: hidden;
  padding-left: 0 !important;
}
.popular__image .container {
  height: 100%;
}
.openPopup {
  cursor: pointer;
}
.popular__image img {
  position: absolute;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.4s;
  opacity: 0;
  z-index: 1;
  top: 0;
  transition: 0.5s all;
}
.popular__image img.active {
  z-index: 2;
  opacity: 1;
}
.popular__content {
  z-index: 2;
  position: relative;
}
.popular__btns {
  display: flex;
  gap: 20px;
}
.btn-black {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  width: 250px;
  height: 46px;
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
  transition: all 0.4s;
  border: 1px solid #000;
}
.btn-black:hover {
  color: #000;
  background-color: #fff;
}
.btn-black:hover:before {
  opacity: 0;
  margin: 0;
}
.btn-black:before {
  content: "";
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background-color: #fff;
  position: relative;
  margin-right: 10px;
  transition: all 0.4s;
}

.btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  width: 250px;
  height: 46px;
  text-transform: uppercase;
  color: #000000;
  font-size: 18px;
  transition: all 0.4s;
  border: 1px solid #ffffff;
}
.btn-white:hover {
  color: #000;
  background-color: #ffffff;
}
.btn-white:hover:before {
  opacity: 0;
  margin: 0;
}
.btn-white:before {
  content: "";
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background-color: #000000;
  position: relative;
  margin-right: 10px;

  transition: all 0.4s;
}

.btn-border {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 46px;
  color: #000;
  border: 1px solid #000;
  text-transform: uppercase;
  font-size: 18px;
  transition: all 0.4s;
}
.btn-border:hover {
  background-color: #000;
  color: #fff;
}
.popular__item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  overflow: hidden;
  will-change: height;
}
.popular__text {
  width: 60%;
  margin-top: 15px;
  text-align: center;

  font-size: 18px;

  font-weight: 300;
}
.btn-arrow__img {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 50%;
  margin-right: -30px;
  cursor: pointer;
}
.btn-arrow__img svg {
  transition: all 0.4s;
}
.btn-arrow {
  display: flex;
  cursor: pointer;
  align-items: center;
}
.btn-arrow p {
  background-color: #fff;
  padding: 12px 0;
  text-transform: uppercase;
}
.service-tabs__bottom {
  display: flex;
  justify-content: end;
}
.btn-arrow:hover .btn-arrow__img svg {
  rotate: 70deg;
}
.about-us-tabs {
  height: 100vh;
  overflow: hidden;
  display: block;
}
.about-us-tabs__top {
  height: 130px;
  position: relative;
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
}
.about-us-tabs__inner {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
.about-us-tabs__item {
  flex: 1;
  display: flex;
  align-items: center;

  position: relative;
  overflow: hidden;
}

/* TODO */

.about-us-tabs__title {
  font-size: 80px;
  font-family: "AnastasiaScript";
}
/* TODO */

.about-us-tabs__item:first-child {
  border-right: 1px solid #c8c8c8;
  height: 100%;
}

.about-us-tabs__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  transition: all 0.4s;
  object-fit: contain;
}
.about-us-tabs__image.active {
  opacity: 1;
}
.about-us-tabs__subtitle {
  color: #000;
  font-size: 36px;
  font-weight: 300;
  text-transform: uppercase;
}
.about-us-tabs__subtitle strong {
  font-weight: 500;
}
.about-us-tabs__text {
  margin: 40px 0 70px;
  color: #252525;
  text-align: right;
  font-size: 18px;
  font-weight: 300;
  width: 80%;
  align-self: flex-end;
}
.about-us-tabs__content {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  justify-content: center;
  padding-left: 40px;
  opacity: 0;

  transition: all 0.7s;
}

.about-us-tabs__content.active {
  opacity: 1;
  z-index: 2;
}
.about-us-tabs__link {
  align-self: flex-end;
}
.about-us-tabs__bottom {
  height: 100%;
  display: flex;
}
.section-margin {
  margin-top: 150px;
}
.about-us-tabs_btns {
  justify-content: space-evenly;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
body
  > main
  > section.about-us-tabs.section-margin
  > div.about-us-tabs__top
  > div
  > div:nth-child(2) {
  overflow: visible;
}
.about-us-tabs__btn {
  display: flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  position: relative;
  height: 100%;
}
.about-us-tabs__btn:after {
  content: "";
  position: absolute;
  background: #000;
  height: 2px;
  bottom: -47px;
  width: 0;
  transition: all 0.4s;
}
.about-us-tabs__btn p {
  color: #8a8a8a;

  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  text-transform: uppercase;
}
.about-us-tabs__btn span {
  transition: all 0.4s;
  color: #8a8a8a;
  font-weight: 500;
  line-height: 150%;
  text-transform: uppercase;
  margin-top: -5px;
}
.about-us-tabs__btn.active span {
  color: #232323;
}
.about-us-tabs__btn.active h4 * {
  color: #232323;
}
.about-us-tabs__btn:hover h4 {
  color: #232323;
}
.about-us-tabs__btn:hover span {
  color: #232323;
}
.about-us-tabs__btn.active:after {
  content: "";
  width: 100%;
}
.whu-us__bottom {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 100px;
}

.whu-us__item {
  flex: 1;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  height: 425px;
  justify-content: space-between;
  border: 1px solid transparent;
}
.whu-us__item:nth-child(2) {
  align-self: flex-end;
}

.whu-us__subtitle {
  color: #fff;
  font-size: 1.5vw;
  font-weight: 500;
  text-transform: uppercase;
}
.whu-us__color {
  background: #4d5b44;
}
.whu-us__content {
  padding-top: 15px;
  border-top: 1px solid #ffffff;
}
.whu-us__color-2 {
  background: #cad4af;
}
.whu-us__border .whu-us__subtitle {
  color: #252525;
}
.whu-us__border .whu-us__content {
  border-top: 1px solid #4d5b44;
}

.whu-us__border {
  height: 330px;
  border: 1px solid #4d5b44;
}
.whu-us__content p {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}
.whu-us__content span {
  margin-top: 15px;
  color: #acacac;
  font-style: italic;
  font-weight: 300;
  display: block;
}

.whu-us__border .whu-us__content p {
  color: #252525;
}

.whu-us {
  height: 100vh;
  display: flex;
  align-items: center;
}
.whu-us__inner {
  height: auto;
}
.hero__images {
  position: relative;
  width: 100%;

  opacity: 0;
}
.hero-img-black {
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
}
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: relative;
}
.hero__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  opacity: 0;
}
.hero__right {
  display: flex;
  width: 47%;
  justify-content: space-between;
  align-items: center;
}
.hero__text {
  font-size: 18px;

  font-weight: 300;

  width: 50%;
}
.hero__line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  background: #dedede;

  background: "#000";
  height: 0;
}
.hero__line-1 {
  left: 30vw;
}
.hero__line-3 {
  left: 70vw;
}
.hero__line-4 {
  left: 75vw;
}
.branches__list {
  display: flex;
  flex-direction: column;
}
.branches__item {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 25%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
}
.branches__item:nth-child(2) {
  align-self: flex-end;
  margin: -100px 0;
}
.branches__item:nth-child(3) {
  align-self: center;
}
.branches__title {
  position: sticky;
  top: 30%;
  left: 50%;
  translate: -50% 0;
  width: 50%;
  /* padding-top: 20px; */
}
/* .branches__title {
	position: absolute;
	top: 25%;
	left: 50%;
	translate: -50% 0;
	width: 50%;
} */
.branches {
  position: relative;
}
.changes__inner {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.changes__inner .whu-us__top {
  width: 100%;
}
.whu-us__top .title {
  white-space: nowrap;
}
.branches__sutitle {
  color: #191919;
  font-size: 1.4vw;
  font-weight: 500;
  text-transform: uppercase;
}
.changes {
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  position: relative;
  justify-content: space-between;
  /* justify-content: space-around; */
}
.changes__line {
  display: flex;
  z-index: 2;
  width: max-content;
  position: absolute;
  bottom: 120px;
  right: 0;
}
/* .changes__line {
  display: flex;
  z-index: 2;
  width: max-content;
  position: absolute;
  bottom: 120px;
  left: 160px;
} */
.changes__item {
  width: 25vw;
}
.changes__bg {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.changes__bg img {
  width: 100%;
}
.changes__text {
  color: #252525;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 130%; /* 23.4px */
  width: 50%;
}

/* FORM SECTION STYLES */
.form-section {
  overflow: hidden;
}
.form-section__inner {
  width: 100vw;
  height: 100vh;
  background-image: url("../images/form-section-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.form-section__content {
  display: flex;
  flex-direction: column;
  width: 1098px;
  align-items: flex-end;
  margin-bottom: 80px;
}
.form-section__title {
  width: 80%;
  text-align: right;
  margin-bottom: 30px;
  line-height: 90%; /* 72px */
}
.form-section__text {
  color: #fff;
  text-align: right;
  font-size: 24px;
  width: 50%;
  padding-bottom: 40px;
}
.form-section__form-wrap {
  width: 528px;
}
.form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form__btn {
  cursor: pointer;
  align-self: flex-end;
}
.form__btn br {
  display: none;
}

.input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(17.5px);
  backdrop-filter: blur(17.5px);
  padding: 14px 20px;
  color: #fff;
  font-size: 18px;
  line-height: 130%;
}

.input__wrap {
  margin-bottom: 10px;
}
/* FORM SECTION STYLES */

/* REVIEWS SECTION STYLES */
.reviews {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.reviews__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../images/reviews-section-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
.reviews__inner {
  width: 100%;
  height: 100%;
  background: #191919;
  /* -webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px); */
  overflow: hidden;
  border-bottom-right-radius: 1000px;
}
.reviews__inner-top {
  padding-top: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}
.reviews__swiper-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}
.reviews__btn-prev svg,
.reviews__btn-next svg {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}
.reviews__btn-prev,
.reviews__btn-next {
  flex-shrink: 0;
  height: 40px;
  width: 40px;
  cursor: pointer;
  transition: all 0.7s;
}
.reviews__btn-prev:hover,
.reviews__btn-next:hover {
  opacity: 0.7;
}
.reviews__inner-bottom {
  width: 80%;
  min-height: 278px;
  display: flex;
  gap: 45px;
  margin-top: 167px;
}
.slide__content-t {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.slide__content {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.slide__content-b {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.slide__procedure {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #9d9d9d;
  font-weight: 300;
  line-height: 130%;
}
.slide__procedure span {
  color: #fff;
  font-weight: 300;
  line-height: 130%;
}
.slide__date {
  color: #fff;
  font-weight: 300;
  line-height: 130%;
}
.slide__title {
  color: #fff;
  font-size: 32px;
  line-height: 130%; /* 41.6px */
  text-transform: uppercase;
}
.slide__text {
  color: #fff;
  font-size: 18px;
  line-height: 130%; /* 23.4px */
}
.reviews__quote-before {
  align-self: flex-end;
}
/* REVIEWS SECTION STYLES */

/* OUR INST SECTION STYLES */
.our-inst {
  width: 100%;
  height: 100vh;
  position: relative;
}
.our-inst__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.our-inst__title {
  /* position: absolute;
  top: 0; */
  width: 100%;
  padding-top: 5%;
}
.our-inst__title svg {
  width: 100%;
}

.our-inst__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.our-inst__subtext-l {
  color: #252525;
  font-size: 20px;
  font-weight: 300;
  line-height: 130%; /* 26px */
  text-transform: uppercase;
}
.our-inst__subtext-r {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.our-inst__subtext-r span {
  color: #252525;
  font-size: 20px;
  font-weight: 300;
  line-height: 130%;
  text-transform: uppercase;
}
.our-inst__subtext-r a {
  color: #252525;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  transition: opacity 0.4s;
}
.our-inst__subtext-r a:hover {
  opacity: 0.7;
}
.our-inst__subtext-r a:visited {
  color: #252525;
}
.our-inst__content {
  position: relative;
}
.our-inst__bottom {
  position: relative;
  margin-bottom: 150px;
  /* width: calc(100% - 320px); */
}
.our-inst__photos {
  width: 30vw;
  height: 643px;
  overflow: visible;
  position: absolute;
  inset: 50% 50%;
  translate: -50% -50%;
}
.our-inst__photo {
  position: absolute;
  inset: 0;
}
.our-inst__photo:nth-child(2n) {
  transform: rotate(15deg);
}
.our-inst__photo:nth-child(3n) {
  transform: rotate(-15deg);
}
/* OUR INST SECTION STYLES */
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 55px;
}
.header {
  border-bottom: 1px solid #dedede;
  padding: 13px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;

  translate: 0 -100%;
}
.hover-word-js__wrap {
  position: relative;
  overflow: hidden;
}
.nav__link {
  /* padding: 25px 0; */
  display: block;
  color: #1b1b1b;
  overflow: hidden;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
}
.header__left .nav__link {
  text-transform: lowercase;
}
.nav__link .nav__link-current {
  text-transform: uppercase;
}
.header__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__right {
  display: flex;
  gap: 70px;
  align-items: center;
}
.nav {
  display: flex;
  gap: 50px;
}
.service-tabs__btn {
  position: absolute;
  overflow: hidden;
  bottom: 20px;
}
.vh {
  height: 100vh;
  background-color: #acacac;
}
.image-text {
  background: #1a1a1a;
  position: relative;
}
.image-text__inner {
  position: relative;
}
.image-text__wrap {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 20%;
  right: 160px;
  width: 42%;
}
.image-text__image {
  max-width: 55%;
}
.image-text__image img {
  margin-bottom: -5px;
}
.image-text__content {
  background-color: #1a1a1a;
  padding: 60px 0 60px 50px;
  display: flex;
  flex-direction: column;

  margin-bottom: 70px;
}
.white-title * {
  color: #fff;
}
.image-text__title * {
  line-height: 90%;
  padding-bottom: 25px;
}
.image-text__text {
  color: #fff;
  font-size: 24px;
}
.btn-arrow-white path {
  stroke: #fff;
}
.image-text__btn {
  align-self: flex-end;
}
.image-text__btn .btn-arrow__img {
  border-color: #fff;
}
.image-text__btn.btn-arrow p {
  background: #1a1a1a;
  color: #fff;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37, 37, 37, 0.8);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -100;
  opacity: 0;
  scale: 1.05;
  transition: all 0.4s;
}
.popup__inner {
  width: 70%;
  position: relative;
  background-image: url(../images/form-bg.webp);
  background-size: cover;
  background-position: center;
  padding: 100px;
}
.popup__form {
  width: 50%;
  margin: 0 auto;
}
.popup__text {
  margin: 20px auto 25px;
  width: 60%;
  color: #fff;
  text-align: center;
}
.popup__title * {
  width: 70%;
  margin: 0 auto;
  line-height: 110%;
  text-align: center;
}
.btn-center {
  margin: 0 auto;
  margin-top: 30px;
}
.close-btn {
  position: absolute;
  top: 20px;
  z-index: 2;
  right: 20px;
}
.popup__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup__video {
  width: 60%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  max-height: 100%;
  position: relative;
}
.close-btn-video {
  position: relative;
  width: 170px;
  margin: 40px auto 0;
}
.popup.active {
  opacity: 1;
  z-index: 1000;
  scale: 1;
}
.burger-desctop {
  position: fixed;
  z-index: 20;
  width: 100vw;
  height: 100vh;
  left: 0;
  display: flex;
  top: -100vh;
  overflow: hidden;
  transition: all 0.4s;
}
.burger-desctop.active {
  top: 0;
}
.burger-desctop__left {
  width: 40%;
  background-color: #fff;
  padding: 100px 60px 0 160px;
}
.burger-desctop__right {
  width: 60%;
  background-image: url(../images/burger-ing.webp);
  background-position: center;
  background-size: cover;
  padding: 50px 160px 0 60px;
}
.burger-desctop__link {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #b1b1b1;

  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.4s;
}
.burger-desctop__link.active {
  font-weight: 500;
}
.burger-desctop__link.active svg {
  rotate: 45deg;
}
.burger-desctop__link.active svg path {
  stroke: #000;
}
.burger-desctop__link svg {
  transition: all 0.4s;
}
.burger-desctop__link svg path {
  transition: all 0.4s;
}
.burger-close {
  width: 170px;
}
.burger-desctop__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.burger-desctop__subtitle {
  color: #fff;
  font-family: "AnastasiaScript";
  font-size: 48px;
  line-height: 90%;
}
.burger-desctop__bottom {
  position: relative;
}
.burger-desctop__sublist {
  position: absolute;
  margin-top: 70px;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
}
.burger-desctop__sublink {
  display: block;
  width: 100%;
  padding: 14px 0;
  padding-left: 60px;
  padding-right: 60px;
  color: #fff;
  line-height: 150%;
  text-transform: uppercase;
  transition: all 0.4s;
  /* -webkit-backdrop-filter: blur(7.5px);
	backdrop-filter: blur(7.5px); */
}
.burger-desctop__sublink:hover {
  color: #fff;
  opacity: 0.5;
}
.burger-desctop__subitem {
  position: relative;
}
.burger-desctop__subitem:nth-child(2n + 1)::after {
  content: "";
  background-image: url(../images/blur.png);
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
  /* background-color: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(7.5px);
	backdrop-filter: blur(7.5px); */
}
.burger-desctop__sublist.active {
  opacity: 1;
  z-index: 1;
}
.hover-word-js {
  cursor: pointer;
}
.footer__content {
  display: flex;
  margin-top: 50px;
}
.footer__item {
  flex: 1;
}
.footer__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 70px;
}
.footer__block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__middle,
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer__list-row {
  flex-direction: row;
  justify-content: space-between;
}
.footer__link {
  font-size: 14px;
  position: relative;
  display: block;
}
.footer__text {
  color: #989898;
  font-size: 14px;
}
.footer__form {
  width: 50%;
}
.input-white {
  background: rgba(0, 0, 0, 0.03);
  -webkit-backdrop-filter: blur(17.5px);
  backdrop-filter: blur(17.5px);
}
.input-white {
  color: #000000;
  padding: 10px;
}
.input-white::-webkit-input-placeholder {
  color: #8d8d8d;
  font-size: 16px;
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
}
.footer__bottom {
  border-top: 1px solid #cfcfcf;
}
.footer__text {
  display: flex;
  align-items: center;
  gap: 5px;
}
.align-end {
  align-items: flex-end;
}
.reviews__quote-before svg,
.reviews__quote-after svg {
  width: 90px;
}
.menu {
  display: none;
}
.hero-img-color-tablet,
.hero-img-color-mobile {
  display: none;
}
.burger-mobile {
  display: none;
}
.service-tabs__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
}
.linksss {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}
.sub-service-hero {
  display: flex;
  border-bottom: 1px solid #dedede;
  height: 100vh;
  position: relative;
}
.sub-service-hero__right {
  flex: 45%;
  padding: 20px 0 20px 20px;
  border-left: 1px solid #dedede;
}
.sub-service-hero__right img {
  height: 100%;
  object-fit: cover;
}
.sub-service-hero__left {
  padding-left: 150px;
  display: flex;
  height: 100%;
  flex: 55%;
  align-items: center;
}
.sub-service-hero__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.sub-service-hero__title {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 25px;
}
.sub-service-hero__text {
  color: #252525;
  font-size: 18px;
  font-weight: 300;
}
.sub-service-hero__item {
  display: flex;
  gap: 3px;
}
.sub-service-hero__item span {
  color: #838383;
  font-weight: 300;
}
.sub-service-hero__item p {
  color: #252525;
  font-weight: 300;
}
.image-text-tab__wrap {
  display: flex;
  gap: 100px;
  align-items: center;
  margin-bottom: 13px;
}
.image-text-tab__top {
  margin-top: 60px;
  border-bottom: 1px solid #d2d2d2;
}
.image-text-tab__bottom {
  border-bottom: 1px solid #d2d2d2;
  padding: 56px 0;
}
.image-text-tab__inner {
  display: flex;
  gap: 20px;
}
.image-text-tab__left {
  flex: 45%;
}
.image-text-tab__right {
  flex: 55%;
}
.image-text-tab__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.image-text-tab__item:last-child {
  align-self: flex-end;
  margin-top: 15px;
}
.image-text-tab__subtitle {
  font-size: 28px;
  margin-bottom: 20px;
}
.image-text-tab__text {
  color: #252525;
  font-size: 18px;
  font-weight: 300;
}
.stage-item__list p,
.image-text-tab__text p {
  font-weight: 300;
  line-height: 130%;
}
.image-text-tab__text p strong {
  font-weight: 400;
  line-height: 130%;
}
.image-text-tab__content {
  position: absolute;
  opacity: 0;

  transition: all 0.5s;
}
/* .image-text-tab__btn:after {
	content: "";
	position: absolute;
	bottom: -10px;
	background-color: #252525;
	width: 100%;
	display: block;
	height: 2px;
} */
.image-text-undrln {
  position: relative;
}
.image-text-undrln:after {
  content: "";
  position: absolute;
  bottom: -20px;
  background-color: #252525;
  width: 100%;
  display: block;
  height: 2px;
  transform: scaleX(0);
  transition: transform 0.4s;
}
.image-text-tab-btn-js.active.image-text-undrln:after {
  transform: scaleX(1);
}

.image-text-tab__content.active {
  position: relative;
  opacity: 1;
}
.image-text-tab__clesh {
  color: #8a8a8a;
  font-size: 24px;
  line-height: 150%; /* 36px */
  position: relative;
  /* margin-bottom: 17px; */
}
.image-text-tab__btn {
  color: #8a8a8a;
  font-size: 20px;
  line-height: 150%; /* 36px */
  transition: all 0.5s;
  cursor: pointer;
  position: relative;
  /* margin-bottom: 17px; */
}
.image-text-tab-btn-js.active .image-text-tab__btn {
  color: #000;
}
.image-text-tab__btn-wrap {
  overflow: hidden;
}
.image-text-tab__btn.active {
  color: #000;
}
.apparat-slider-item-title h3 {
  color: #8a8a8a;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-transform: uppercase;
  transition: 0.3s;
}
.apparat-slider-item.active .apparat-slider-item-title h3 {
  color: #232323;
}
.apparat-slider-item.swiper-slide {
  width: max-content !important;
}
.apparat-slider-item-title {
  display: flex;
  padding: 50px 0;
  cursor: pointer;
}
.first-apparat {
  padding-left: 160px;
}
.apparat-slider-item-title h5 {
  color: #8a8a8a;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-transform: uppercase;
  transition: 0.3s;
}
.apparat-slider-item.active .apparat-slider-item-title h5 {
  color: #232323;
}

.tab_apparat-name h2 {
  color: #000;
  font-family: AnastasiaScript;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 80%;
  padding: 80px 0;
}
.tab_apparat-item-el:first-child {
  border-top: none;
}
.tab_apparat-item-el {
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
  display: flex;
  /* gap: 20px; */
  align-items: center;
  justify-content: space-between;
  /* margin-bottom: 150px; */
}
.tab_apparat-item-l,
.tab_apparat-item-r {
  width: 50%;
}
.tab_apparat-item-l {
  padding-top: 15px;
  padding-bottom: 15px;
}
h4.tab_apparat-item-title {
  color: #000;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.tab_apparat-item-el:nth-child(even) .tab_apparat-item-l {
  padding-right: 50px;
}
.tab_apparat-item-el:nth-child(odd) .tab_apparat-item-l {
  padding-left: 50px;
}
.tab_apparat-item-el:nth-child(odd) .tab_apparat-item-r {
  border-right: 1px solid #c8c8c8;
}
.tab_apparat-item-el:nth-child(even) .tab_apparat-item-r {
  border-left: 1px solid #c8c8c8;
}
.tab_apparat-item-el:nth-child(odd) {
  flex-direction: row-reverse;
}
.apparat-slider.swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
}
/* ... */
.tab_apparat-item {
  position: absolute;
  opacity: 0;
  z-index: -1;
  top: 0;
  overflow: hidden;
  transition: opacity 0.3s, max-height 0.5s ease-out;
}

.tab_apparat-item.active {
  opacity: 1;
  z-index: 1;
  position: relative;
}

.tab_apparat-content {
  position: relative;
}
.tab_apparat-item-r img {
  height: 100%;
  object-fit: cover;
  /* width: auto; */
  margin-bottom: -4px;
}
.tab_apparat-item-r {
  height: 800px;
}
.tab_apparat-item-text ul {
  list-style: disc;
  padding-left: 40px;
  padding-top: 10px;
}
/*! HARDWARE */
.hardware-hero__bottom {
  display: flex;
  gap: 40px;
  z-index: 2;
}
.hardware-hero__item {
  display: flex;
}
.hardware-hero__item:last-child {
  display: flex;
  justify-content: end;
  margin-bottom: 40px;
}
.hardware-hero__text {
  color: #252525;
  font-size: 20px;
  font-weight: 300;
}
.hardware-hero__inner {
  display: flex;

  align-items: end;
  height: 100%;
}
.hardware-hero__top {
  position: absolute;
  top: 15vh;
  z-index: 1;
  left: 0;
  width: 100%;
}
.hardware-hero__inner {
  position: relative;
}
.hardware-hero__text {
  padding-top: 40px;
  text-indent: 80px;
  text-align: justify;
}
.breadcrumbs {
  position: absolute;
  top: 9vh;
  z-index: 2;
  color: #9f9f9f;
  font-size: 12px;
  font-weight: 300;
  line-height: 130%;
  width: 50vw;
}
.hardware-hero__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.hardware-hero__item img {
  width: 100%;
}
.hardware-hero {
  overflow: hidden;
}
.hardware-hero,
.hardware-hero__inner,
.hardware-hero .container {
  height: 100vh;
  position: relative;
}
.hardware-hero__wrapp {
  display: flex;
  gap: 40px;
  width: 100%;
  position: absolute;
}
.hardware-hero__images {
  flex: 1;
  position: relative;
}

.hardware-hero__images-js-1,
.hardware-hero__images-js-2 {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 40px;
  position: absolute;
  bottom: 0;
}
.hardware-hero__images-js-2 {
  bottom: auto;
  top: 0;
}
.hardware-hero__wrapp {
  width: 100%;
  height: 100%;
}
.hardware-hero__images-js-2 {
  translate: 0 -100%;
}
.hardware-hero__images-js-1 {
  translate: 0 100%;
}

/*! HARDWARE */

/* ! уляля */
.wpcf7 p {
  display: flex;
  flex-direction: column;
}

.popup .wpcf7 p .form__btn {
  align-self: center;
}

.popup .wpcf7-response-output {
  color: #fff;
  text-align: center;
}
.form-section .wpcf7-response-output {
  color: #fff;
}
.hardware-hero__images-flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  pointer-events: none;
  display: none;
}
.hardware-hero__images-flex img:nth-child(2) {
  opacity: 0;
}
.hardware-hero__images-flex img:nth-child(1) {
  translate: 0 -100%;
}
.hardware-hero__images-flex img:nth-child(3) {
  translate: 0 100%;
}
h3.popup__title.title.white-title * {
  padding-bottom: 10px;
  line-height: 92%;
}
.wpcf7-submit,
.form__btn {
  margin-top: 20px;
}
.footer__form button.form__btn.btn-black {
  margin-top: 10px;
  align-self: flex-start;
}

.ticker {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ticker__wrapper {
  display: flex;
  width: max-content;
  animation: ticker-scroll 85s linear infinite;
}

/* Дублированный контент */
.ticker__wrapper span {
  display: inline-block;
  padding: 10px 20px;
  font-size: 24px;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker__wrapper li {
  display: flex;
  padding: 10px;
  flex-shrink: 0;
  width: 385px;
  height: 451px;
}

.ticker__wrapper li img {
  object-fit: cover;
}
.hardware-heros-title {
  margin-top: 100px;
  padding-top: 40px;
}
.hardware-heros-title-text {
  color: #252525;
  width: 60%;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  margin-bottom: 20px;
}

.__bottom .hardware-hero__items:nth-child(2) {
  display: flex;
  justify-content: center;
  width: 100%;
}
.__bottom .hardware-hero__items:nth-child(2) .hardware-hero_text {
  width: 900px;
  color: #252525;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
}
.__bottom p.hardware-hero_text {
  margin-top: 55px;
  text-align: center;
}

.hero-equipment .breadcrumbs {
  top: 0vh;
}
.my-custom-container {
  display: flex;
  gap: 40px;
}
.changes__item-swiper {
  position: relative;
  width: 100%;
}
.changes__line_btn svg {
  cursor: pointer;
}
.changes__line_btn {
  position: absolute;
  top: 48%;
  padding: 0 160px;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.4s;
}
.changes__item-swiper:hover .changes__line_btn {
  opacity: 1;
}

.changes__item {
  width: auto;
}
.changes__item-swiper .swiper-slide:first-child {
  margin-left: 160px;
}

.footer__middle .footer__block:nth-child(3) .footer__list {
  display: none;
}
