@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=optional");
@import url("https://fonts.googleapis.com/css2?family=Forum&family=Pacifico&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Arial Narrow", "Roboto", sans-serif;
  box-sizing: border-box;
}

header {
  flex: 0 0 auto;
}

.dark {
  background: #1C302B;
  background: linear-gradient(41deg, rgb(28, 48, 43) 0%, rgb(79, 128, 118) 70%, rgb(119, 184, 167) 100%);
}
.dark h2 {
  color: #fff;
  margin: 80px 0;
}

section {
  margin: 0 auto;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  justify-content: center;
  align-items: flex-start;
}
section h2 {
  color: #1C302B;
  font-size: 3em;
  font-weight: 200;
  margin-bottom: 80px;
  font-family: "forum", "Helvetica Neue", "Arial Narrow", "Roboto", sans-serif;
}

.page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
}
.page-container__wide {
  max-width: none;
  width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  display: none;
}
.header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1C302B;
  box-shadow: 0px 4px 14px -8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.header__main {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 80px;
  align-items: center;
}
.header__logo {
  max-width: 220px;
  position: relative;
  z-index: 3;
}
.header__logo img {
  max-width: 100%;
  display: block;
}
.header__burger {
  display: none;
}
.header a.parent {
  margin: 0px 20px 0 0;
}
.header__list > li {
  position: relative;
  list-style: none;
  margin-right: 20px;
}
.header__list > li:last-child {
  margin-right: 0;
}
.header__list > li.active {
  color: #560A9E;
}
.header__list > li.active:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 5px;
  width: 100%;
  background-color: #560A9E;
}
.header__list {
  display: flex;
  position: relative;
  z-index: 2;
}
.header__link {
  position: relative;
  color: #fff;
  text-decoration: none;
}
.header__link:hover {
  color: #ccc;
  transition: all 0.1s;
}

.hero {
  display: flex;
  height: 100vh;
  width: 100%;
  background-image: url("../images/backgrounds/background2.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  align-items: center;
}
.hero__info {
  position: absolute;
  top: 30px;
  right: 100px;
  color: #fff;
  text-align: right;
  font-family: Arial, Helvetica, sans-serif;
  padding: 10px 20px;
}
.hero__info_tel a {
  text-decoration: none;
  color: #fff;
  font-size: 1.4em;
  border-bottom: 1px solid #5adda4;
}
.hero__info_addr {
  margin-top: 10px;
}
.hero__back {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background-image: url("../images/backgrounds/pattern_cross.png");
}
.hero__back_logo {
  position: relative;
  display: flex;
}
.hero__back_logo a {
  display: flex;
  margin: 0 auto;
  margin-top: 50px;
}
.hero__back_logo img {
  width: 250px;
  height: auto;
  aspect-ratio: attr(width)/attr(height);
}
.hero__title {
  position: relative;
  z-index: 2;
  margin-left: 13%;
  text-shadow: 3px 4px 0px rgb(28, 48, 43);
}
.hero__title h1 {
  font-weight: 200;
  font-size: 4em;
  font-family: "forum", "Helvetica Neue", "Arial Narrow", "Roboto", sans-serif;
}
.hero__title p {
  font-size: 2em;
  font-weight: 300;
  font-family: "Arian Narrow";
}
.hero__title_button {
  margin: 20px auto;
  display: inline-block;
  background: #77B8A7;
  padding: 20px;
  border-radius: 25px;
  width: 300px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 1.2em;
  text-shadow: none;
  transition: all 0.3s ease;
}
.hero__title_button:hover {
  transform: scale(1.1);
}
.hero__title {
  color: #fff;
  display: flex;
  flex-direction: column;
  max-width: 500px;
}
.hero__links {
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: 100px;
  display: flex;
  flex-direction: column;
  padding: 10px;
  background-color: #1C302B;
  list-style: none;
  border-radius: 20px;
}
.hero__links li {
  margin: 8px;
}
.hero__links li img {
  width: 36px;
}
.hero__links li {
  transition: all 0.2s ease;
}
.hero__links li:hover {
  transform: scale(1.2);
  border-bottom: 1px solid #5adda4;
}

.features {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.features__item {
  min-height: 250px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  width: 45%;
  border-left: 1px solid #5adda4;
  justify-content: center;
  align-items: flex-start;
}
.features__item_title {
  font-size: 5em;
  color: #1C302B;
  line-height: 1;
}
.features__item_desc {
  margin-top: 20px;
  font-size: 1.2em;
  line-height: 1.6;
  font-family: "Arial Narrow";
}
.features__item_desc span {
  background-color: #89BDB1;
  padding: 5px 15px;
  border-radius: 20px;
  margin-right: 5px;
}
.features__epilogue {
  margin-top: 60px;
  font-size: 1.6em;
  line-height: 1.4;
  font-weight: 300;
}
.features__button-consult {
  display: block;
  width: 400px;
  padding: 20px;
  background-color: #77B8A7;
  color: #1C302B;
  text-align: center;
  font-size: 2em;
  border-radius: 40px;
  margin: 20px;
  text-decoration: none;
}

/* Базовые стили для контейнера слайдера */
.swiper {
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1e2a3a;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Стили для пагинации (точки) */
.swiper-pagination-bullet {
  color: #fff !important;
  background-color: #fff !important;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #007aff;
}

.swiper-button-prev, .swiper-button-next {
  color: #fff !important;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  transform: scale(0.8);
}
.swiper-button-prev:active, .swiper-button-next:active {
  transform: scale(0.6);
}

/* Контейнер для кнопок управления зумом (опционально) */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
}

.reviews {
  display: flex;
  position: relative;
  flex-direction: column;
  flex-wrap: nowrap;
}
.reviews__row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 20px;
}
.reviews__img {
  flex: 1;
}
.reviews__img img {
  width: auto;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.reviews__yandex {
  position: relative;
  flex: 1;
  height: 560px;
  overflow: hidden;
}

.prices-for-tailoring {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  position: relative;
}
.prices-for-tailoring__item {
  position: relative;
  flex: 1;
  border: 2px solid #3a4a5a;
  padding: 0px;
}
.prices-for-tailoring__item_photo {
  height: 200px;
  position: relative;
}
.prices-for-tailoring__item_photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.prices-for-tailoring__item_title {
  font-family: "forum", "Helvetica Neue", "Arial Narrow", "Roboto", sans-serif;
  font-weight: 200;
  position: absolute;
  bottom: 20px;
  left: 0px;
  font-size: 2em;
  color: #fff;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.7529411765);
  padding: 5px 30px 5px 20px;
  border-bottom-right-radius: 20px;
}
.prices-for-tailoring__item_title span {
  display: flex;
  font-size: 0.6em;
  font-family: "Arial Narrow";
}
.prices-for-tailoring__item_arrow {
  visibility: hidden;
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 3em;
  font-weight: 500;
}
.prices-for-tailoring__item_desc {
  padding: 0px 20px;
  margin: 20px 0;
  text-align: center;
  font-size: 1.2em;
  font-family: "Arial Narrow";
}
.prices-for-tailoring__item_price {
  text-align: center;
  font-size: 2em;
}
.prices-for-tailoring__item_button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 20px 30px;
  background-color: #89BDB1;
  color: #1C302B;
  font-family: "forum", "Arial Narrow";
  font-weight: 700;
  font-size: 1.4em;
  width: 90%;
  margin: 20px auto;
}
.prices-for-tailoring__item_features {
  padding: 20px;
  list-style: none;
  font-size: 1.3em;
  font-weight: 200;
}
.prices-for-tailoring__item_features li {
  font-family: "Arial Narrow";
  position: relative;
  margin: 10px 0 0px 20px;
  font-weight: 200;
}
.prices-for-tailoring__item_features li:first-child {
  margin: 0 0 0 20px;
}
.prices-for-tailoring__item_features li::before {
  position: absolute;
  content: "";
  top: 16px;
  left: -25px;
  background: #1C302B;
  width: 20px;
  height: 1px;
}

.our-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.our-process__item {
  background-color: #89BDB1;
  position: relative;
  display: flex;
  min-height: 220px;
}
.our-process__item_number {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0px;
  top: 0px;
  background-color: #1C302B;
  color: #fff;
  font-size: 2em;
  line-height: 0;
  border-bottom-right-radius: 50%;
  box-shadow: 3px 4px 5px -2px rgba(34, 60, 80, 0.8);
}
.our-process__item p {
  margin: 80px 0;
  padding: 0 20px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Arial Narrow";
  font-size: 1.2em;
}

.contacts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 40px;
  width: 100%;
}
.contacts__info, .contacts__form {
  flex: 1;
}
.contacts__form h3 {
  font-family: "forum";
  font-weight: 100;
  font-size: 1.4em;
  margin-bottom: 20px;
}
.contacts__form form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contacts__form form input {
  height: 40px;
  margin: 20px 0;
}
.contacts__form form input:first-child {
  margin: 0 0 10px 0;
}
.contacts__form form button {
  background-color: #89BDB1;
  color: #1C302B;
  border: 0;
  height: 50px;
  border-radius: 40px;
  font-size: 1.3em;
  font-family: "forum";
  width: 80%;
  margin: 0 auto;
}
.contacts__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  border-bottom: 1px solid #89BDB1;
}
.contacts__item ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.contacts__item ul li {
  margin: 0 10px;
}
.contacts__item ul li img {
  min-width: 36px;
}

@media (max-width: 600px) {
  body.lock {
    overflow: hidden;
  }
  .swiper {
    width: 100%;
  }
  .header__main {
    height: 50px;
  }
  .header__logo {
    width: 140px;
  }
  .header__burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 3;
  }
  .header__burger.active:before {
    transform: rotate(45deg);
    top: 9px;
    background-color: #fff;
  }
  .header__burger.active:after {
    transform: rotate(-45deg);
    bottom: 9px;
    background-color: #fff;
  }
  .header__burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    top: 9px;
    background-color: #ffffff;
    transition: all 0.2s;
  }
  .header__burger.active span {
    transform: scale(0);
  }
  .header__burger:before, .header__burger:after {
    content: "";
    position: absolute;
    background-color: #ffffff;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.2s;
  }
  .header__burger:before {
    top: 0;
  }
  .header__burger:after {
    bottom: 0;
  }
  .header__list {
    display: block;
    margin: 0 40px;
  }
  .header__list li {
    padding: 10px 0;
    border-bottom: 1px solid #3a4a5a;
  }
  .header__list li:first-child {
    border-top: 1px solid #5adda4;
  }
  .header__list li:last-child {
    margin-right: 20px;
  }
  .header__link:first-child {
    border-top: none !important;
  }
  .header__link.active:before {
    background-color: transparent;
  }
  .header__menu {
    position: fixed;
    top: 0;
    right: -110%;
    width: 100%;
    height: 100%;
    background-color: #1C302B;
    padding: 70px 0px 0 20px;
    transition: all 0.2s;
    overflow: auto;
  }
  .header__menu.active {
    right: 0;
  }
  .sub-header__list1,
  .sub-header__list2 {
    position: relative;
    left: 0;
    top: 0;
  }
  .sub-header__list2,
  .sub-header__list1 {
    border: 0;
    text-align: left;
  }
  .hero__info {
    display: none;
  }
  .hero::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 45%;
    background-image: url(../images/backgrounds/pattern_cross.png);
    left: 0;
    top: 0;
    z-index: 0;
  }
  .hero {
    position: relative;
    background-image: url("../images/backgrounds/background1.jpg");
    background-position: left;
    background-size: cover;
  }
  .hero__back {
    background-image: none;
    width: 100%;
  }
  .hero_logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero__title {
    font-size: 0.6em;
    margin-left: 10px;
  }
  .hero__title p {
    padding: 0 60px 0 0;
    margin: 10px 0;
    font-size: 2.2em;
    text-align: justify;
  }
  .hero__title_button {
    font-size: 2em;
  }
  .hero__links {
    flex-direction: row;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .hero__links li {
    margin: 0 15px;
  }
  section {
    margin: 50px auto;
  }
  section h2 {
    margin-bottom: 0;
    font-size: 2.2em;
    margin: 50px 0;
    padding: 0 10px 0 10px;
    border-left: 4px solid #5adda4;
  }
  .features__item {
    width: 100%;
    margin-top: 10px;
    min-height: auto;
    padding: 10px 20px;
    border-left: none;
    border-bottom: 2px solid #5adda4;
  }
  .features__item_title {
    font-size: 3em;
    font-family: "forum";
  }
  .features__item_title img {
    max-width: 32px;
  }
  .features__epilogue {
    padding: 0 20px;
    text-align: justify;
    font-size: 1.4em;
    margin-top: 20px;
  }
  .features__button-consult {
    width: 90%;
    font-size: 1.2em;
  }
  .reviews__row {
    width: 100%;
    gap: 0;
  }
  .reviews__yandex {
    width: 100%;
  }
  .reviews__img {
    display: none;
  }
  .dark h2 {
    margin: 40px 0;
  }
  .prices p {
    padding: 0 10px;
    margin-bottom: 50px;
    text-align: center;
  }
  .prices-for-tailoring {
    padding: 0 10px;
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }
  .prices-for-tailoring__item {
    border: none;
    border-bottom: 1px solid #3a4a5a;
    border-top: 1px solid #3a4a5a;
    width: 100%;
  }
  .prices-for-tailoring__item_title {
    position: relative;
    bottom: auto;
    background: none;
    color: #1C302B;
  }
  .prices-for-tailoring__item_arrow {
    top: 10px;
    visibility: visible;
    color: #1C302B;
  }
  .prices-for-tailoring__item_desc {
    display: none;
  }
  .prices-for-tailoring__item_photo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    width: auto;
  }
  .prices-for-tailoring__item_photo img {
    display: none;
  }
  .prices-for-tailoring__item_features {
    display: none;
  }
  .prices-for-tailoring__item_price {
    display: none;
  }
  .our-process {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }
  .our-process__item {
    width: 100%;
    min-height: auto;
  }
  .our-process__item p {
    margin: 55px 0;
  }
  .contacts {
    padding: 0 10px;
    flex-direction: column;
  }
  .contacts__form {
    width: 100%;
  }
  .contacts__form form input {
    margin: 10px 0;
  }
  .contacts__form form input:first-child {
    margin: 0 0 10px 0;
  }
  .contacts__form form button {
    margin-top: 10px;
  }
}/*# sourceMappingURL=main.css.map */
