:root {
  --linear-metallic-color: linear-gradient(
    1.28deg,
    #fdedc9 1.09%,
    #f2deb2 3.25%,
    #d7b779 7.75%,
    #d0ad6a 8.82%,
    #c7a361 9.87%,
    #a47c3e 14.44%,
    #895d23 18.96%,
    #764710 23.35%,
    #6a3a04 27.56%,
    #663500 31.39%,
    #6b3b05 35.32%,
    #794b13 40.39%,
    #91652b 46.09%,
    #b18a4b 52.19%,
    #d0ad6a 57.13%,
    #edd6a7 66.31%,
    #fdedc9 72.21%,
    #f2deb2 75.32%,
    #d7b779 81.78%,
    #d0ad6a 83.32%,
    #84581e 93.98%,
    #663500 98.91%
  );
  --linear-gold-color: linear-gradient(180deg, #d9ad7e 0%, #b4895f 100%);
  --gray-color: #5c5c5c;
  --white-color: #ffffff;
  --btn-linear-metallic: linear-gradient(
    0.51deg,
    #fdedc9 -32.15%,
    #f2deb2 -27.29%,
    #d7b779 -17.17%,
    #d0ad6a -14.77%,
    #c7a361 -12.42%,
    #a47c3e -2.12%,
    #895d23 8.04%,
    #764710 17.92%,
    #6a3a04 27.38%,
    #663500 35.98%,
    #6b3b05 44.82%,
    #794b13 56.23%,
    #91652b 69.04%,
    #b18a4b 82.76%,
    #d0ad6a 93.87%,
    #edd6a7 114.5%,
    #fdedc9 127.79%,
    #f2deb2 134.78%,
    #d7b779 149.3%,
    #d0ad6a 152.76%,
    #84581e 176.73%,
    #663500 187.82%
  );
  --btn-linear-metallic-2: linear-gradient(
    0.51deg,
    #fdedc9 0.44%,
    #f2deb2 2.63%,
    #d7b779 7.19%,
    #d0ad6a 8.27%,
    #c7a361 9.33%,
    #a47c3e 13.97%,
    #895d23 18.55%,
    #764710 23%,
    #6a3a04 27.26%,
    #663500 31.14%,
    #6b3b05 35.12%,
    #794b13 40.27%,
    #91652b 46.04%,
    #b18a4b 52.22%,
    #d0ad6a 57.23%,
    #edd6a7 66.52%,
    #fdedc9 72.51%,
    #f2deb2 75.66%,
    #d7b779 82.2%,
    #d0ad6a 83.76%,
    #84581e 94.56%,
    #663500 99.56%
  );
  --black-color: #000000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Playfair Display", sans-serif;
  background: var(--black-color);
  color: #fff;
  overflow-x: hidden;
  width: 100%;
}

.wrapper {
  max-width: 1410px;
  margin: 0 auto;
}

/* Buttons */

.btn {
  padding: 22px 50px;
  background: var(--btn-linear-metallic);
  text-decoration: none;
  color: var(--white-color);
}

.btn:hover {
  background: var(--btn-linear-metallic-2);
}

.margin_top{
    margin-top: 10%;
}

/* Text */

h1 {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-size: 128px;
}

h2 {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-size: 64px;
}

h3 {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
}

.text-subtitle {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
}

.text-cta {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
}

.text-body {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
}

.text-detail {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
}

.owl-carousel .item {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.owl-carousel .item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease, border 0.3s ease;
}

.owl-carousel .owl-item.center img {
  border: 3px solid;
  border-image: linear-gradient(
    1.28deg,
    #fdedc9 1.09%,
    #f2deb2 3.25%,
    #d7b779 7.75%,
    #d0ad6a 8.82%,
    #c7a361 9.87%,
    #a47c3e 14.44%,
    #895d23 18.96%,
    #764710 23.35%,
    #6a3a04 27.56%,
    #663500 31.39%,
    #6b3b05 35.32%,
    #794b13 40.39%,
    #91652b 46.09%,
    #b18a4b 52.19%,
    #d0ad6a 57.13%,
    #edd6a7 66.31%,
    #fdedc9 72.21%,
    #f2deb2 75.32%,
    #d7b779 81.78%,
    #d0ad6a 83.32%,
    #84581e 93.98%,
    #663500 98.91%
  ) 1;
}

.owl-carousel .owl-item:not(.center) img {
  filter: grayscale(95%);
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2em;
  color: #fff;
  z-index: 1000;
  padding: 10px;
}

.owl-carousel .owl-nav button.owl-prev::before,
.owl-carousel .owl-nav button.owl-next::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: -1;
  border-radius: 5px;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -70px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -70px;
}

.owl-carousel .owl-nav button.owl-prev::before {
  left: 50%;
  transform: translateX(-50%);
}

.owl-carousel .owl-nav button.owl-next::before {
  right: 50%;
  transform: translateX(50%);
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  color: gold;
}

.owl-carousel .owl-nav button.owl-prev:hover::before,
.owl-carousel .owl-nav button.owl-next:hover::before {
  background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 1600px) {
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next {
    top: auto;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: auto;
    height: auto;
  }

  .owl-carousel .owl-nav button.owl-prev {
    margin-right: 20px;
  }

  .owl-carousel .owl-nav button.owl-prev::before,
  .owl-carousel .owl-nav button.owl-next::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
  }

  .owl-carousel .owl-nav button.owl-prev {
    left: calc(52% - 60px);
    right: auto;
  }

  .owl-carousel .owl-nav button.owl-next {
    left: calc(52% + 20px);
    right: auto;
  }
}


/* Header */

header {
  background-image: url(images/header-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
}

nav {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  width: 1410px;
  position: fixed;
  top: 0;
  padding: 50px 0 0 0;
  z-index: 100;
  transition: all 500ms ease;
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 16px 14px -8px rgba(0, 0, 0, 0.3);
  border-radius: 0 0 8px 8px;
  top: 0;
  padding: 0;
}

nav .logo img {
  width: 125px;
  height: 125px;
}

.nav-bar {
  display: flex;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding-left: 235px;
}

nav ul li a {
  text-decoration: none;
  color: var(--white-color);
}

nav.mobile-nav,
.mobile-menu-container {
  display: none;
}

.header-contacts {
  color: var(--white-color);
  align-items: end;
  padding-left: 160px;
  right: 0;
}

.header-contact {
  text-align: right;
}

.header-contacts a {
  color: var(--white-color);
  text-decoration: none;
}

.header-contact:first-child {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.header-contact:last-child {
  padding-top: 60px;
}

.mobile-nav {
  display: none;
}

/* Hero Section */

.hero-section {
  display: flex;
  width: 100%;
  height: 100vh;
  position: relative;
  color: var(--white-color);
}

.offer {
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.offer p {
  padding: 0 0 80px 0;
  margin: 0;
  max-width: 660px;
}

/* Our Work Section */

.our-work h2 {
  text-align: center;
  padding: 130px 0 100px 0;
}

.photo-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}

.photo-block .left-img {
  padding-left: 10px;
}

.photo-block .middle-img {
  padding: 0 30px 0 30px;
}

.photo-block .right-img {
  padding-right: 10px;
}

.photo-block .left-arrow {
  display: none;
}

.photo-block .right-arrow {
  display: none;
}

.video-block {
  display: none;
  /* display: flex; */
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 30px;
  padding-bottom: 550px;
}

.video-block .left {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.video-block .left-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -45px;
  display: none;
}

.video-block .left .left-video {
  width: 690px;
  height: 575px;
}

.video-block .left .left-video p {
  padding-top: 40px;
}

.video-block .right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 200px;
}

.video-block .right-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -45px;
  display: none;
}

.video-block .right .right-video {
  width: 690px;
  height: 575px;
}

.video-block .right .right-video p {
  padding-top: 40px;
}

/* About Us Section */

.about-us {
  text-align: center;
}

.about-us h2 {
  text-align: center;
  padding-bottom: 50px;
}

.about-salon {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  position: relative;
}

.about-salon .salon-info {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-salon .salon-photo img {
  width: 100%;
  height: 100%;
}

.about-persons {
  display: grid;
  grid-template-rows: 1fr 1fr;
  height: 2100px;
  position: relative;
  padding-top: 100px;
}

.about-persons h3 {
  background: var(--linear-metallic-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-persons .top {
  display: flex;
  position: relative;
  /* padding-bottom: 900px; */
  grid-row: 1;
}

.about-persons .top .left {
  justify-content: center;
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  width: 690px;
  padding: 0 100px 0 75px;
}

.about-persons .top .left p {
  width: 100%;
}

.about-persons .top .right {
  justify-content: center;
  position: absolute;
  width: 690px;
  right: 0;
}

.about-persons .top .right img {
  width: 100%;
  height: 100%;
}

.about-persons .bottom {
  display: flex;
  position: relative;
  /* padding-bottom: 900px; */
  grid-row: 2;
}

.about-persons .bottom .left {
  justify-content: center;
  position: absolute;
  width: 690px;
  left: 0;
}

.about-persons .bottom .left img {
  width: 100%;
  height: 100%;
}

.about-persons .bottom .right {
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  top: 65%;
  transform: translateY(-50%);
  width: 690px;
  padding: 0 75px 0 100px;
}

.about-persons .bottom .right p {
  width: 100%;
}

.about-persons .middle-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
}

.about-persons .summary {
  margin-top: 80px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

/* Price List Section */

.hidden {
  display: none;
}

.expanded {
  height: 100%;
}

.wrap {
  display: none;
}

.price-list img {
  width: 100%;
  height: auto;
}

.price-list h2 {
  text-align: center;
  margin-top: 150px;
}

.price-list .procedures hr {
  background-image: var(--linear-gold-color);
  border: none;
  height: 1px;
}

.price-list .procedure {
  overflow: hidden;
  transition: height 1s ease-in-out;
}

.price-list .procedure .name-of-procedure {
  display: flex;
  align-items: center;
  position: relative;
  margin: 50px 0 50px 0;
}

.price-list .procedure .name-of-procedure .text {
  position: absolute;
  justify-self: start;
  /* background: red; */
}

.price-list .procedure .name-of-procedure .icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.price-list .procedure ul {
  transition: opacity 1s ease-in-out;
  opacity: 1;
}

.price-list .procedure ul.hidden {
  opacity: 0;
}

.price-list ul {
  list-style: none;
  padding: 0;
}

.price-list ul li {
  text-decoration: none;
  color: var(--white-color);
  padding-bottom: 20px;
  display: flex;
}

.price-list ul li p.text {
  white-space: nowrap;
  padding-right: 10px;
}

.price-list ul li p.price {
  white-space: nowrap;
  padding-left: 10px;
}

.price-list ul li hr {
  width: 100%;
  align-self: end;
  margin-bottom: 25px;
}

.price-list .color-gold {
  background: var(--linear-gold-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-list button {
  background: none;
  border: none;
  cursor: pointer;
}

.price-list p.summary {
  text-align: center;
  margin: 120px 0 100px 0;
}

.price-list .button {
  text-align: center;
}

.price-list .bg {
  position: absolute;
  z-index: -15;
}

/* Promotion Section */

.promotion {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  margin-top: 200px;
  min-height: 560px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.promotion .left {
  position: absolute;
  top: 0;
  left: 0;
}

.promotion .left img {
  width: 358px;
  height: 280px;
}

.promotion .right img {
  width: 358px;
  height: 280px;
}

.promotion .middle {
  position: absolute;
  text-align: center;
  justify-content: center;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
}

.promotion .right {
  position: absolute;
  bottom: 0;
  right: 0;
}

.promotion .middle p {
  width: 495px;
}

.promotion .middle span {
  font-family: "Marcellus";
  font-style: normal;
  font-weight: 400;
  font-size: 180px;
  background: var(--linear-metallic-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 500px;
}

/* Reviews Section */

.reviews {
  overflow: hidden;
}

.reviews h2 {
  text-align: center;
  margin: 150px 0 100px 0;
}

.reviews-block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-content: center;
  align-items: center;
  min-height: 430px;
  position: relative;
}

.reviews-block .left-review {
  width: 486px;
  align-self: end;
  margin-left: 10px;
}

.reviews-block .middle-review {
  width: 486px;
  align-self: center;
  margin: 0 30px 0 30px;
}

.reviews-block .right-review {
  width: 486px;
  align-self: start;
  margin-right: 10px;
}

.reviews-block .left-arrow {
  display: none;
  position: absolute;
  left: -95px;
  top: 75%;
}

.reviews-block .right-arrow {
  display: none;
  position: absolute;
  right: -95px;
  top: 35%;
}

/* Footer */

footer {
  margin-top: 200px;
  margin-bottom: 100px;
  background: var(--linear-gold-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  position: relative;
  overflow: hidden;
}

footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
}

footer .logo {
  justify-self: left;
}

footer .footer-contacts {
  text-align: right;
  align-items: end;
  padding-top: 50px;
}

footer .footer-contact.contact-telephone {
  padding-top: 25px;
}

.footer-contacts a {
  color: var(--white-color);
  text-decoration: none;
}

.decor {
  position: absolute;
}

.decor#header-1 {
  left: 23%;
}

.decor#header-2 {
  left: 23%;
  bottom: 5%;
}

.decor#header-3 {
  right: 12%;
  bottom: 5%;
}

.decor#polygon-1 {
  z-index: -10;
}

.decor#polygon-2 {
  z-index: -10;
  left: 10%;
  transform: rotate(-210deg);
  top: 375%;
}

.decor#polygon-3 {
  z-index: -10;
  left: 0%;
  transform: rotate(0deg);
  top: 600%;
}

.decor#polygon-4 {
  z-index: -10;
  transform: rotate(130deg);
  left: 5%;
  top: -1000px;
}

.left-arrow {
  cursor: pointer;
}

.right-arrow {
  cursor: pointer;
}

.gallery-image,
.gallery-review {
  transition: opacity 0.5s;
}

.gallery-image.fade-out,
.gallery-review.fade-out {
  opacity: 0;
}

.gallery-image.fade-in,
.gallery-review.fade-in {
  animation: fade-in 0.5s;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1440px) {
  h1 {
    font-size: 96px;
  }

  h2 {
    font-size: 58px;
  }

  h3 {
    font-size: 36px;
  }

  .text-subtitle {
    font-size: 20px;
  }

  .text-cta {
    font-size: 18px;
  }

  .text-body {
    font-size: 16px;
  }

  .text-detail {
    font-size: 14px;
  }

  .wrapper {
    max-width: 1180px;
  }

  nav {
    max-width: 1180px;
  }

  nav ul {
    padding-left: 138px;
  }

  .header-contacts {
    padding-left: 135px;
  }

  .photo-block .middle-img {
    padding: 0 20px 0 20px;
  }

  .photo-block .left-img {
    width: 280px;
    height: 340px;
  }

  .photo-block .middle-img {
    width: 580px;
    height: 470px;
  }

  .photo-block .right-img {
    width: 280px;
    height: 340px;
  }

  .photo-block .left-img img {
    width: 100%;
    height: 100%;
  }

  .photo-block .middle-img img {
    width: 100%;
    height: 100%;
  }

  .photo-block .right-img img {
    width: 100%;
    height: 100%;
  }

  .video-block {
    gap: 20px;
  }

  .video-block .left .left-video {
    width: 580px;
    height: 480px;
  }

  .video-block .right .right-video {
    width: 580px;
    height: 480px;
  }

  .video-block .left .left-video img {
    width: 580px;
    height: 480px;
  }

  .video-block .right .right-video img {
    width: 580px;
    height: 480px;
  }

  .video-block .right {
    top: 200px;
  }

  .about-salon .salon-info {
    width: 100%;
  }

  .about-salon .salon-photo img {
    width: 100%;
    height: 100%;
  }

  .about-persons {
    height: 1775px;
  }

  .about-persons .top .left {
    width: 580px;
    padding: 0 0 0 0;
  }

  .about-persons .top .left p {
    width: 100%;
  }

  .about-persons .top .right {
    width: 580px;
  }

  .about-persons .top .right img {
    width: 100%;
    height: 100%;
  }

  .about-persons .bottom .left {
    width: 580px;
    height: 750px;
  }

  .about-persons .bottom .left img {
    width: 100%;
    height: 100%;
  }

  .about-persons .bottom .right {
    top: 62%;
    width: 580px;
    padding: 0 0 0 20px;
  }

  .about-persons .bottom .right p {
    width: 100%;
  }

  .about-persons .middle-photo {
    width: 380px;
    height: 550px;
  }

  .about-persons .summary {
    width: 100%;
  }

  .promotion .left img {
    width: 280px;
    height: 215px;
  }

  .promotion .right img {
    width: 280px;
    height: 215px;
  }

  .promotion .middle p {
    width: 412px;
  }

  .reviews-block {
    min-height: 350px;
  }

  .reviews-block .left-review {
    width: 380px;
  }

  .reviews-block .left-review img {
    width: 380px;
    height: 180px;
  }

  .reviews-block .middle-review {
    width: 380px;
  }

  .reviews-block .middle-review img {
    width: 380px;
    height: 210px;
  }

  .reviews-block .right-review {
    width: 380px;
  }

  .reviews-block .right-review img {
    width: 380px;
    height: 240px;
  }

  footer {
    margin-top: 150px;
    margin-bottom: 75px;
  }

  .decor#header-1 {
    top: 10%;
    left: 20%;
  }

  .decor#header-3 {
    right: 15%;
    bottom: 5%;
  }

  .decor#polygon-1 {
    z-index: -10;
    transform: rotate(-10deg);
  }

  .decor#polygon-2 {
    z-index: -10;
    left: -10%;
    /* transform: rotateY(-180deg); */
    top: 350%;
  }

  .decor#polygon-3 {
    z-index: -10;
    left: -20%;
    transform: rotate(-10deg);
    top: 550%;
  }

  .decor#polygon-4 {
    z-index: -10;
    transform: rotate(130deg);
    left: 0%;
    top: -1000px;
  }
}

@media (max-width: 1000px) {
  .wrapper {
    max-width: 960px;
  }

  nav {
    display: none;
  }

  nav.mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    padding: 50px 0 0 0;
    z-index: 100;
    transition: all 500ms ease;
  }

  nav.mobile-nav.scrolled {
    padding: 0;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 9px 21px -5px rgba(0, 0, 0, 0.3);
  }

  nav.mobile-nav .header-contacts {
    color: var(--white-color);
    align-items: center;
    text-align: center;
    right: 0;
    padding-left: 0px;
    padding-right: 0px;
  }

  nav.mobile-nav .header-contact {
    text-align: center;
  }

  nav.mobile-nav .header-contact:first-child {
    position: relative;
    top: 0%;
  }

  nav.mobile-nav .header-contact:last-child {
    padding-top: 20px;
  }

  nav.mobile-nav .menu-icon {
    cursor: pointer;
    padding-right: 25px;
  }

  .mobile-menu-container.active .close-icon {
    cursor: pointer;
  }
  .mobile-menu-container {
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 100%;
    background: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    transition: all 400ms ease;
  }

  .mobile-menu-container.active {
    left: 0;
  }

  .mobile-menu-container .close-icon {
    position: fixed;
    top: 100px;
    padding-top: 50px;
    right: 10px;
    opacity: 0;
    pointer-events: none;
    transition: all 400ms ease;
  }

  .mobile-menu-container.active .close-icon {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-container ul {
    list-style: none;
    padding: 0;
  }

  .mobile-menu-container ul li {
    margin: 30px 0;
    text-align: center;
  }

  .mobile-menu-container ul li:last-child {
    margin: 70px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .mobile-menu-container ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
  }

  .photo-block .left-img {
    width: 225px;
    height: 270px;
  }

  .photo-block .middle-img {
    width: 470px;
    height: 380px;
  }

  .photo-block .right-img {
    width: 225px;
    height: 270px;
  }

  .photo-block .left-img img {
    width: 100%;
    height: 100%;
  }

  .photo-block .middle-img img {
    width: 100%;
    height: 100%;
  }

  .photo-block .right-img img {
    width: 100%;
    height: 100%;
  }

  .video-block .left .left-video {
    width: 470px;
    height: 390px;
  }

  .video-block .right .right-video {
    width: 470px;
    height: 390px;
  }

  .video-block .left .left-video img {
    width: 470px;
    height: 390px;
  }

  .video-block .right .right-video img {
    width: 470px;
    height: 390px;
  }

  .video-block .right {
    top: 150px;
  }

  .about-salon .salon-info {
    width: 100%;
    padding: 0 20px 0 20px;
  }

  .about-salon .salon-photo img {
    width: 100%;
    height: 100%;
  }

  .about-persons {
    height: 1475px;
  }

  .about-persons .top .left {
    width: 470px;
    padding: 0 0 0 0;
  }

  .about-persons .top .left p {
    width: 100%;
  }

  .about-persons .top .right {
    width: 470px;
    height: 600px;
  }

  .about-persons .top .right img {
    width: 100%;
    height: 100%;
  }

  .about-persons .bottom .left {
    width: 470px;
    height: 600px;
  }

  .about-persons .bottom .left img {
    width: 100%;
    height: 100%;
  }

  .about-persons .bottom .right {
    top: 62%;
    width: 470px;
  }

  .about-persons .bottom .right p {
    width: 100%;
  }

  .about-persons .middle-photo {
    width: 350px;
    height: 500px;
  }

  .about-persons .summary {
    width: 100%;
  }

  .price-list .procedures {
    margin-left: 10px;
  }

  .promotion .left img {
    width: 225px;
    height: 171px;
  }

  .promotion .right img {
    width: 225px;
    height: 171px;
  }

  .reviews-block {
    min-height: 350px;
  }

  .reviews-block .left-review {
    width: 307px;
    margin-left: 25px;
  }

  .reviews-block .left-review img {
    width: 307px;
    height: 140px;
  }

  .reviews-block .middle-review {
    width: 307px;
    margin: 0 20px 0 20px;
  }

  .reviews-block .middle-review img {
    width: 307px;
    height: 170px;
  }

  .reviews-block .right-review {
    width: 307px;
  }

  .reviews-block .right-review img {
    width: 307px;
    height: 200px;
  }

  footer {
    margin-top: 100px;
    margin-bottom: 50px;
  }

  .decor#header-1 {
    left: 23%;
    width: 100px;
  }

  .decor#header-2 {
    left: 23%;
    bottom: 10%;
    width: 100px;
  }

  .decor#header-3 {
    right: 12%;
    bottom: 2%;
    width: 100px;
  }

  .decor#polygon-1 {
    z-index: -10;
  }

  .decor#polygon-2 {
    z-index: -10;
    left: 0%;
    transform: rotate(-70deg);
    top: 375%;
  }

  .decor#polygon-3 {
    z-index: -10;
    left: 0%;
    transform: rotate(0deg);
    top: 600%;
  }

  .decor#polygon-4 {
    z-index: -10;
    transform: rotate(130deg);
    left: 5%;
    top: -1000px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 48px;
  }

  h3 {
    font-size: 32px;
  }

  .text-subtitle {
    font-size: 18px;
  }

  .text-cta {
    font-size: 16px;
  }

  .text-body {
    font-size: 15px;
  }

  .text-detail {
    font-size: 14px;
  }
  .wrapper {
    max-width: 728px;
  }

  nav.mobile-nav {
    width: 100%;
  }

  .offer p {
    width: 500px;
    padding-bottom: 40px;
  }

  #our-work {
    padding: 100px 0 50px 0;
  }

  .photo-block .left-img {
    width: 167px;
    height: 200px;
  }

  .photo-block .middle-img {
    width: 354px;
    height: 286px;
  }

  .photo-block .right-img {
    width: 167px;
    height: 200px;
  }

  .photo-block .left-img img {
    width: 100%;
    height: 100%;
  }

  .photo-block .middle-img img {
    width: 100%;
    height: 100%;
  }

  .photo-block .right-img img {
    width: 100%;
    height: 100%;
  }

  .video-block .left .left-video {
    width: 354px;
    height: 290px;
  }

  .video-block .right .right-video {
    width: 354px;
    height: 290px;
  }

  .video-block .left .left-video img {
    width: 354px;
    height: 290px;
  }

  .video-block .right .right-video img {
    width: 354px;
    height: 290px;
  }

  .video-block .right {
    top: 120px;
  }

  .about-salon {
    grid-template-columns: 1fr 1fr;
  }

  .about-salon .salon-info {
    order: 3;
    grid-column: span 2;
    width: 100%;
    padding: 0 80px 0 80px;
  }

  .about-salon .salon-photo img {
    width: 100%;
    height: 100%;
  }

  .about-persons {
    height: 1175px;
  }

  .about-persons .top .left {
    width: 354px;
  }

  .about-persons .top .left p {
    width: 100%;
  }

  .about-persons .top .right {
    width: 354px;
    height: 450px;
  }

  .about-persons .top .right img {
    width: 100%;
    height: 100%;
  }

  .about-persons .bottom .left {
    width: 354px;
    height: 450px;
  }

  .about-persons .bottom .left img {
    width: 100%;
    height: 100%;
  }

  .about-persons .bottom .right {
    top: 52%;
    width: 354px;
  }

  .about-persons .bottom .right p {
    margin-top: 40px;
    margin-bottom: 0;
    width: 100%;
  }

  .about-persons .bottom .right h3 {
    margin: 0;
  }

  .about-persons .middle-photo {
    width: 200px;
    height: 290px;
  }

  .about-persons .summary {
    width: 100%;
  }

  .promotion {
    min-height: 200px;
  }

  .promotion .left img {
    width: 167px;
    height: 127px;
  }

  .promotion .right img {
    width: 167px;
    height: 127px;
  }

  .promotion .right {
    bottom: -65%;
  }

  .promotion .middle {
    width: 354px;
    height: 212px;
  }

  .promotion .middle span {
    font-size: 150px;
    width: 212px;
  }

  .promotion .middle p {
    width: 367px;
  }

  .reviews-block {
    min-height: 250px;
  }

  .reviews-block .left-review {
    width: 230px;
    margin-left: 25px;
  }

  .reviews-block .left-review img {
    width: 230px;
    height: 100px;
  }

  .reviews-block .middle-review {
    width: 230px;
    margin: 0 20px 0 20px;
  }

  .reviews-block .middle-review img {
    width: 230px;
    height: 130px;
  }

  .reviews-block .right-review {
    width: 230px;
    margin-right: 25px;
  }

  .reviews-block .right-review img {
    width: 230px;
    height: 150px;
  }

  footer {
    margin-top: 50px;
    margin-bottom: 25px;
  }

  .decor#polygon-1 {
    top: 0%;
    transform: rotate(-170deg);
  }

  .decor#polygon-2 {
  }

  .decor#polygon-3 {
    width: 500px;
    transform: rotate(-360deg);
  }

  .decor#polygon-4 {
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 42px;
  }

  .wrapper {
    max-width: 440px;
  }

  nav.mobile-nav {
    width: 100%;
  }

  nav.mobile-nav .header-contact:first-child {
    display: none;
  }

  nav.mobile-nav .header-contact:first-child {
    display: none;
  }

  nav.mobile-nav .header-contact:last-child {
    padding: 0;
    margin: 0;
  }

  nav .logo img {
    width: 80px;
    height: 80px;
  }

  .offer p {
    width: 375px;
  }

  .photo-block .left-img {
    display: none;
  }

  .photo-block .middle-img {
    max-width: 100%;
    max-height: 100%;
    padding: 0;
  }
  .photo-block .middle-img img {
    width: 100%;
    height: 100%;
  }

  .photo-block .right-img {
    display: none;
  }

  .video-block {
    padding-bottom: 250px;
  }

  .video-block .left .left-video {
    width: 440px;
    height: 360px;
  }

  .video-block .right .right-video {
    width: 440px;
    height: 360px;
  }

  .video-block .left .left-video img {
    width: 440px;
    height: 360px;
  }

  .video-block .right .right-video img {
    width: 440px;
    height: 360px;
  }

  .video-block .right {
    display: none;
  }

  .photo-block {
    flex-direction: column;
  }

  .photo-block .arrows {
    display: flex;
    margin-top: 50px;
    gap: 20px;
  }

  .photo-block .right-arrow {
    display: block;
  }

  .photo-block .left-arrow {
    display: block;
  }

  .video-block {
    flex-direction: column;
  }

  .video-block .arrows {
    display: flex;
    margin-top: 50px;
    gap: 20px;
  }

  .video-block .right-arrow {
    display: block;
  }

  .video-block .left-arrow {
    display: block;
  }

  .about-salon .salon-info {
    width: 100%;
    padding: 0 20px 0 20px;
  }
  .about-salon {
    overflow: hidden;
  }

  .about-salon .salon-photo img {
    width: 100%;
    height: 100%;
  }

  .about-salon .salon-photo:first-child {
    padding-right: 10px;
  }
  .about-salon .salon-photo:last-child {
    padding-left: 10px;
  }

  .about-persons {
    all: unset;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    height: 2300px;
    position: relative;
    margin-top: 80px;
  }

  .about-persons .top .right {
    width: 354px;
    height: 450px;
    order: 1;
    position: absolute;
    top: 0;
    right: 0;
  }

  .about-persons .top .right img {
    width: 100%;
    height: 100%;
  }

  .about-persons .top .left {
    width: 354px;
    order: 2;
    position: absolute;
    top: 600px;
    right: 0;
  }

  .about-persons .top .left p {
    width: 100%;
  }

  .about-persons .bottom .left {
    width: 354px;
    height: 450px;
    order: 3;
    position: absolute;
    top: 450px;
    left: 0;
  }

  .about-persons .bottom .left img {
    width: 100%;
    height: 100%;
  }

  .about-persons .bottom .right {
    top: 62%;
    width: 354px;
    order: 4;
    position: absolute;
    top: 950px;
    left: 0;
  }

  .about-persons .bottom .right p {
    width: 100%;
  }

  .about-persons .middle-photo {
    width: 310px;
    height: 450px;
    order: 5;
    position: absolute;
    top: 1975px;
  }

  .about-persons .summary {
    width: 100%;
    order: 6;
    position: absolute;
    top: 2150px;
  }

  .wrap {
    display: block;
  }

  .promotion {
    min-height: 200px;
  }

  .promotion .left img {
    width: 167px;
    height: 127px;
  }

  .promotion .right img {
    width: 167px;
    height: 127px;
  }

  .promotion .right {
    bottom: -45%;
  }

  .promotion .middle {
    width: 330px;
    height: 206px;
  }

  .promotion .middle p {
    width: 330px;
  }

  .reviews-block {
    min-height: 250px;
    display: flex;
    flex-direction: column;
  }

  .reviews-block .left-review {
    width: 440px;
    height: 190px;
    display: none;
  }

  .reviews-block .left-review img {
    width: 440px;
    height: 190px;
  }

  .reviews-block .middle-review {
    width: 230px;
    margin: 0 20px 0 20px;
    display: none;
  }

  .reviews-block .middle-review img {
    width: 440px;
    height: 190px;
  }

  .reviews-block .right-review {
    width: 440px;
    margin-right: 0px;
    margin-bottom: 25px;
  }

  .reviews-block .right-review img {
    width: 440px;
    height: 190px;
  }

  .reviews-block .arrows {
    display: flex;
    position: relative;
    margin-bottom: 50px;
  }

  .reviews-block .right-arrow {
    display: block;
    padding-right: 50px;
  }

  .reviews-block .left-arrow {
    display: block;
    padding-left: 50px;
  }

  footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  footer .logo {
    order: 1;
    justify-self: center;
    margin-bottom: 50px;
  }

  footer .address {
    order: 2;
    margin-bottom: 25px;
  }

  footer .footer-contacts {
    order: 3;
    margin: 0;
    text-align: center;
    padding: 0;
  }

  footer .footer-contact.contact-telephone {
    padding-top: 15px;
    margin-bottom: 50px;
  }

  footer .socials {
    order: 4;
  }

  .decor#header-1 {
    left: 23%;
    top: 17%;
    width: 75px;
  }

  .decor#header-2 {
    left: 10%;
    bottom: 5%;
    width: 75px;
  }

  .decor#header-3 {
    right: 3%;
    bottom: 5%;
    width: 75px;
  }

  .decor#polygon-4 {
    display: none;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

  .wrapper {
    max-width: 319px;
  }

  nav.mobile-nav {
    max-width: 100%;
  }

  .offer p {
    width: 319px;
  }

  .photo-block .middle-img {
    max-width: 100%;
    max-height: 100%;
  }

  .photo-block .middle-img img {
    width: 100%;
    height: 100%;
  }

  .about-salon .salon-info {
    width: 100%;
    padding: auto;
    padding-top: 25px;
    margin: auto;
  }

  .about-persons {
    height: 2300px;
    position: relative;
    margin-top: 80px;
  }

  .about-persons .top .right {
    width: 320px;
    height: 400px;
    order: 1;
    position: absolute;
    top: 0;
    left: 0;
  }

  .about-persons .top .right img {
    width: 100%;
    height: 100%;
  }

  .about-persons .top .left {
    width: 320px;
    order: 2;
    position: absolute;
    top: 575px;
    right: 0;
  }

  .about-persons .top .left p {
    width: 100%;
  }

  .about-persons .bottom .left {
    width: 320px;
    height: 400px;
    order: 3;
    position: absolute;
    top: 400px;
    left: 0;
  }

  .about-persons .bottom .left img {
    width: 100%;
    height: 100%;
  }

  .about-persons .bottom .right {
    width: 320px;
    order: 4;
    position: absolute;
    top: 850px;
    padding: 0 20px 0 0;
  }

  .about-persons .bottom .right p {
    width: 100%;
  }

  .about-persons .middle-photo {
    width: 320px;
    height: 465px;
    order: 5;
    position: absolute;
    top: 1875px;
  }

  .about-persons .summary {
    width: 100%;
    order: 6;
    position: absolute;
    top: 2075px;
  }

  .reviews-block {
    display: flex;
    flex-direction: column;
  }

  .reviews-block .right-review {
    width: 320px;
    margin-right: 0px;
    margin-bottom: 0;
  }

  .reviews-block .right-review img {
    width: 320px;
    height: 140px;
  }

  .reviews-block .arrows {
    display: flex;
    position: relative;
    margin-top: 50px;
    gap: 0px;
  }

  .reviews-block .right-arrow {
    display: block;
    padding-right: 50px;
  }

  .reviews-block .left-arrow {
    display: block;
    padding-left: 50px;
  }

  .decor#header-1 {
    left: 10%;
    top: 20%;
  }

  .decor#header-2 {
    left: 10%;
    bottom: 5%;
  }

  .decor#header-3 {
    right: 0%;
    bottom: 25%;
  }
  
}
