<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
html {
    box-sizing: border-box;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
  }
  
  @font-face {
    font-family: 'Montserrat';
    src: local('Montserrat'),
      url('Montserrat-Regular.ttf') format('truetype');
    font-display: swap;
    font-weight: 400;
    font-style: normal;
  }
  
  body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
  }
  
  /* glob */
  
  .list-reset {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .btn-reset {
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
  }
  
  .flex {
    display: flex;
  }
  
  .container {
    max-width: 1140px;
    padding: 0 15px;
    margin: 0 auto;
  }
  
  .section-offset {
    padding: 90px 0;
  }

  .header {
    background-color: white;
  }

  .header-logo {
    font-size: 30px;
    font-weight: 700;
    max-width: 70px;
    margin-right: 15px;
    color: black;
  }

  .burger {
    position: absolute;
  }

  .hero-container {
    position: relative;
    z-index: 110;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .header-container {
    position: relative;
    z-index: 111;
    flex-direction: column;
    justify-content: space-between;
    color: black;
  }

  .header-top {
    padding: 15px 0;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }

  .header__nav {
    padding: 15px 0 ;
    display: flex;
    align-items: center;
  }

  .nav__list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .nav-item {
    margin-right: 20px;
  }

  .nav-item a {
    color: black;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s ease-in-out;
  }

  .nav-item a:hover {
    color: #de6f5c;
  }

  .nav__item a {
    color: white;
  }

  .header-top {
    justify-content: space-between;
  }
  
  .header__nav {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    min-width: 250px;
    height: 100vh;
    z-index: 1000;
    padding: 50px;
    box-shadow: 0 0 5px #888;
    background-color: #3c3c3cfc;
    opacity: 0.9;
    overflow-y: auto;
    visibility: hidden;
    transform: translateX(-120%);
    transition: visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  
  .header__nav .nav__list {
    flex-direction: column;
  }
  
  .header__nav .nav__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 30px;
  }
  
  .header__nav .nav__item-link {
    font-size: 18px;
  }
  
  .header__nav--active {
    visibility: visible;
    transform: none;
  }

  .hero-bottom-img {
    width: 100%;
  }
  
  .burger {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 13px;
    border-radius: 3px;
    color: black;
  }
  
  .stop-scroll {
    overflow: hidden;
  }
  
  .burger--active .burger__line:nth-child(2) {
    opacity: 0;
  }
  
  .burger--active .burger__line:nth-child(1) {
    top: 50%;
    left: 25%;
    transform: rotate(45deg);
    transform-origin: center;
    transition: transform 0.3s ease-in-out, left 0.3s ease-in-out, top 0.3s ease-in-out;
  }
  
  .burger--active .burger__line:nth-child(3) {
    bottom: auto;
    top: 50%;
    left: 25%;
    transform: rotate(-45deg);
    transform-origin: center;
    transition: transform 0.3s ease-in-out, left 0.3s ease-in-out, top 0.3s ease-in-out;
  }
  
  .burger__line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: currentColor;
  }
  
  .burger__line:nth-child(1) {
    top: 13px;
  }
  
  .burger__line:nth-child(2) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  
  .burger__line:nth-child(3) {
    bottom: 13px;
  }

  .hero-title {
    font-size: 80px;
    margin: 0;
    margin-bottom: 20px;
  }


 .button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    background-color: black;
    cursor: pointer;
    height: 50px;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 20px;

    color: white;
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
  }

  .button:hover {
    background-color: black;
    color: white;
  }

  .hero-button:hover {
    background-color: #4f0548;
    color: white;
  }

  .section-title {
    margin: 0;
    margin-bottom: 20px;
    color: rgba(0,0,0,1);
    font-size: 48px;
    font-weight: 400;
    text-decoration: none;
    line-height: 130%;
    font-family: "Montserrat", sans-serif;
  }

  .hero-list {
    display: grid;
    margin-top: 40px;
    grid-template-columns: repeat(3, calc((100% - 40px) / 3));
    gap: 20px;
    width: 100%;
  }

  .hero-item {
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    font-size: 20px;
    border: 1px solid black;
  }

  .happy-container {
    display: flex;

  }

  .happy-left {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    max-width: 70%;
    margin-right: 30px;
  }

  .happy-item {
    padding-left: 20px;
    border-left: 5px solid #7E4C8B;
  }

  .happy-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .happy-img {
    width: 145px;
    height: 80px;
    object-fit: cover;
    border-radius: 20px;
  }

  .treatment-list {
    display: grid;
    grid-template-columns: repeat(3, calc((100% - 40px) / 3));
    gap: 20px;
  }

  .treatment-img   {
    border-radius: 20px;
  }

  .shop-container {
    background-color: rgb(231, 228, 228);
    border-radius: 20px;
    padding: 20px;
  }

  .shop-body {
    display: grid;
    grid-template-columns: repeat(2, calc((100% - 30px) / 2));
    gap: 30px;
  }

  .shop-name {
    font-size: 32px;
    color: rgb(0, 167, 110);
  }

  .shop-text {
    display: flex;
    flex-direction: column;
    align-items: baseline;
  }

  .shop-text li {
    margin-bottom: 20px;
  }

  .popular-list {
    display: grid;
    grid-template-columns: repeat(4, calc((100% - 60px) / 4));
    gap: 20px;
  }

  .popular-item {
    padding: 10px;
    background-color: #efefef;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
  }

  .about-us-img {
    border-radius: 20px;
    width: 100%;
  }

  .about-us-title {
    max-width: 50%;
  }

  .about-us-body {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, calc((100% - 20px) / 2));
    gap: 20px;
  }

  .about-img {
    border-radius: 20px;

    margin: 0 auto;
  }

  .about-us-descr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  } 

  .review-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #efefef;
    border-radius: 20px;
    padding: 20px;
  }

  .review-descr {
    max-width: 70%;
  }

  .footer {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: black;
    color: white;
  }

  .footer-list {
    display: grid;
    grid-template-columns: repeat(3, calc((100% - 40px) / 3));
    gap: 20px;
  }

  .footer-descr {
    max-width: 250px;
  }

  .footer-item {
    display: flex;
    flex-direction: column;
    align-items: baseline;
  }

  .footer-item a {
    margin-bottom: 15px;
  }

.order-form {
  padding: 20px;
}

.form-left {
  display: flex;
  flex-direction: column;
}

.form-left a {
  margin-bottom: 20px;
  text-decoration: underline;
  color: black;

}

.form-left a:hover {
  color: #00000099;
}

.order-form-inputs {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.order-form-input {
  width: 100%;
  height: 45px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-form-input input {
  padding: 20px 10px;
  background-color: rgba(244,244,244,1);
  width: 99%;
  height: 30px;
  box-sizing: border-box;
  outline: none;
  border: 1px solid transparent;
}


  /* Cookie */
#cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 11111;
    width: 100%;
    background: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    display: none;
}

#cookie-notification button {
    background: #df7731;
    color: white;
    border-radius: 10px;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}

.form-container {
  display: grid;
  grid-template-columns: repeat(2, calc((100% - 50px) / 2));
  gap: 50px;
}


@media (max-width: 1144px) {

}

@media (max-width: 1024px) {
  .about-us-title {
    max-width: 100%;
  }

}

@media (max-width: 768px) {
 
  .hero-list, .popular-list{
    grid-template-columns: repeat(2, calc((100% - 20px) / 2));
    gap: 20px;
  }

  .hero-name {
    font-size: 20px;
  }

  .happy-container {
    flex-wrap: wrap;
  }

  .treatment-list, .shop-body, .about-us-body {
    grid-template-columns: repeat(1, 100%);
  }

.hero-title {
  max-width: 100%;
  font-size: 39px;
}

.hero-descr {
  max-width: 100%;
}

.hero-text {
  width: 100%;
}

.form-container {
  display: grid;
  grid-template-columns: repeat(1, 100%);
  gap: 50px;
}


.hero-container span {
  font-size: 22px;
  max-width: 100%;
  margin-bottom: 20px;
  color: white;
}
}

@media (max-width: 425px) {
  .hero-container {

     max-width: 100%; 

  }

  .hero-list, .popular-list, .footer-list{
    grid-template-columns: repeat(1, 100%);
  }

.review-descr {
  max-width: 100%;
}

  .section-title {
    font-size: 22px;
}

.products-name {
  font-size: 57px;
}

.products-descr {
  font-size: 24px;
}

  .form-container {
    border-bottom: 1px solid gray;
}
}</pre></body></html>