html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  text-decoration: none;
}

html, body {
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea, input {
  border: none;
}

textarea, input:focus {
  outline-color: transparent;
  outline-style: none;
}

a {
  color: inherit;
  cursor: pointer;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

.ease, .btn, .add-cart, header {
  transition: all .2s ease-in-out;
}

.page-enter-active,
.page-leave-active {
  transition: all 0.15s ease-out;
  transform: translate(0, 0);
}

.page-enter,
.page-leave-active {
  opacity: 0;
  transform-origin: 50% 50%;
  transition: all 0.15s ease-out;
  transform: translate(0, 4px);
}

html {
  font-family: "degular", helvetica, ubuntu, roboto, noto, "segoe ui", arial, sans-serif;
  color: #373230;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "nocturne-serif", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1px;
}

h1 {
  font-size: 60px;
  letter-spacing: -2px;
}

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

h2 {
  font-size: 40px;
}

@media screen and (max-width: 767.98px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 28px;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

p.large {
  font-size: 20px;
}

.btn {
  display: inline-flex;
  padding: 20px 32px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}

.btn:hover {
  background-color: #141a1e;
}

.btn.primary {
  color: #fff;
  background-color: #b0ac96;
}

.btn.outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn.outline.dark {
  border: 1px solid #373230;
  color: #373230;
}

.add-cart {
  padding: 10px 16px;
  border: 1px solid #000;
  color: #000;
  border-radius: 4px;
  background-color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
  cursor: pointer;
}

.add-cart:hover {
  background-color: #000;
  color: #fff;
}

.add-cart.alt {
  padding: 16px 50px;
  background-color: #b0ac96;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 0;
}

.product_img {
  width: 100%;
}

.product_content {
  background-color: #fafafa;
  padding: 16px 20px;
}

.product_content_name {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.product_content_type {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 24px 0;
}

html {
  position: relative;
}

body._no-scroll {
  overflow: hidden;
}

.container {
  margin: 0 auto;
  padding: 0 8%;
  display: flex;
}

@media screen and (max-width: 767.98px) {
  .container {
    padding: 0 6%;
  }
}

.mobile-menu {
  display: none;
}

@media screen and (max-width: 767.98px) {
  .mobile-menu {
    position: fixed;
    left: -100vw;
    top: 0;
    opacity: 0;
    z-index: 9999;
    min-height: 100vh;
    background: #000;
    width: 100%;
    color: #fff;
    padding: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
    transition: all .5s ease-in-out;
  }
  .mobile-menu.open {
    left: 0;
    opacity: 1;
  }
  .mobile-menu nav a {
    display: table;
    font-size: 32px;
    margin-top: 15px;
    padding-bottom: 4px;
  }
  .mobile-menu nav a.active {
    border-bottom: 1px solid #fff;
  }
  .mobile-menu .close-nav {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 42px;
  }
}

header {
  position: fixed;
  width: 100%;
  padding: 2.2rem 8%;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #b0ac96;
}

@media screen and (max-width: 767.98px) {
  header {
    position: relative;
    padding: 2.2rem 6%;
  }
}

header.light {
  background: #FFFFFF;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}

header nav {
  flex: 1;
}

header .menu-open {
  display: none;
}

@media screen and (max-width: 767.98px) {
  header .menu-open {
    display: block;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }
}

header .menu {
  display: none;
  width: 27px;
  height: 27px;
  margin: 0 20px 0 0;
}

@media screen and (max-width: 991.98px) {
  header .menu {
    display: inline-block;
  }
}

header .header_logo {
  flex: 1;
  text-align: center;
}

header .header_logo img {
  max-width: 140px;
}

@media screen and (max-width: 991.98px) {
  header .header_logo {
    text-align: left;
  }
  header .header_logo img {
    max-width: 100px;
  }
}

header nav {
  display: flex;
}

@media screen and (max-width: 991.98px) {
  header nav {
    display: none;
  }
}

header nav a {
  font-weight: 500;
  font-size: 20px;
  margin: 0 30px 0 0;
  padding-bottom: 4px;
  display: flex;
  align-items: center;
  color: #fff;
}

header nav a.active {
  border-bottom: 1px solid #fff;
}

header nav a:hover {
  color: rgba(255, 255, 255, 0.5);
}

header nav a img {
  margin: 0 0 0 6px;
}

header nav a:last-child {
  margin: 0;
}

header .actions {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

@media screen and (max-width: 767.98px) {
  header .actions {
    display: none;
  }
}

@media screen and (max-width: 991.98px) {
  header .actions {
    width: 100%;
  }
}

header .actions nav {
  justify-content: flex-end;
}

header .actions nav a {
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}

header .actions a {
  display: flex;
  align-items: center;
  margin: 0 20px 0 0;
}

header .actions a:last-child {
  margin: 0;
}

header .actions a:last-child .counter {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
  background-color: #373230;
  border-radius: 100%;
  color: #fff;
  margin: 0 0 0 6px;
}

footer .footer {
  background: #9e9a7f;
  padding: 2rem 0;
  text-align: center;
}

footer .footer-logos {
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 2rem auto;
}

footer .footer-logos li {
  list-style: none;
  margin: 0 10px;
  cursor: pointer;
}

footer .footer-logos li:hover {
  opacity: .5;
}

footer .footer-logos li img {
  width: 40px;
}

footer .footer p, footer .footer a {
  margin: auto;
  display: block;
  color: #fff;
  width: auto;
}

footer .footer .logo {
  margin: auto;
  display: block;
  max-width: 120px;
  height: auto;
}

@media screen and (max-width: 767.98px) {
  footer .cta {
    padding: 4rem 20px;
  }
}

footer .container {
  padding: 2rem;
  text-align: center;
}

footer .container img {
  margin: auto;
  max-width: 160px;
}

footer .item {
  width: 50%;
}

footer .item:first-child .logo {
  margin: 0 0 20px 0;
  max-width: 150px;
}

footer .item:first-child .social a {
  margin: 0 10px 0 0;
  display: inline-block;
}

footer .item:first-child .social a img {
  width: 20px;
}

footer .item:first-child .social a:last-child {
  margin: 0;
}

@media screen and (max-width: 575.98px) {
  footer .item {
    margin: 0 0 20px 0;
  }
}

footer .item .heading {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px 0;
  display: block;
}

footer .item a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 10px 0;
  display: block;
}

.hero {
  height: 80vh;
  background-size: cover;
  background-position: center;
  width: 100%;
  display: flex;
  position: relative;
}

.hero.home {
  background-image: url("https://images.pexels.com/photos/3997989/pexels-photo-3997989.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
  align-items: center;
}

.hero.half .content .container .info h1, .hero.half .content .container .info p {
  color: #373230;
}

.hero.half:before {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  background: #f7f3ec;
}

@media screen and (max-width: 767.98px) {
  .hero.half:before {
    width: 100%;
  }
}

.hero.half .img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  flex: 0 0 50%;
}

@media screen and (max-width: 767.98px) {
  .hero {
    height: 65vh;
  }
}

.hero:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  background: linear-gradient(90deg, rgba(55, 50, 48, 0.6) 9%, rgba(255, 255, 255, 0.1));
}

.hero .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero .content .container {
  display: flex;
  align-items: center;
  height: 100%;
}

.hero .content .container .info {
  margin-top: 10%;
  max-width: 480px;
}

@media screen and (max-width: 767.98px) {
  .hero .content .container .info {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
  }
}

.hero .content .container .info h1 {
  font-size: 66px;
  margin: 0 0 30px 0;
  color: #fff;
  line-height: 1;
}

@media screen and (max-width: 767.98px) {
  .hero .content .container .info h1 {
    font-size: 48px;
  }
}

.hero .content .container .info p {
  font-size: 26px;
  margin: 0 0 30px 0;
  color: #fff;
  line-height: 1.2;
}

.hero .info {
  flex: 0 0 50%;
}

.hero .img {
  flex: 0 0 40%;
}

.hero .img {
  width: 50%;
  height: 100%;
}

.hero .img {
  margin: 0 0 0 auto;
  background-size: cover;
  background-position: center;
}

.top-sellers {
  padding: 60px 0;
  background-color: #fefdfb;
}

.top-sellers h2 {
  text-align: center;
  width: 100%;
  margin: 0 0 60px 0;
}

.top-sellers .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top-sellers .container .product {
  width: 23%;
}

@media screen and (max-width: 767.98px) {
  .top-sellers .container .product {
    width: 48%;
  }
}

.treatment-slider {
  display: flex;
  padding: 80px 0;
}

@media screen and (max-width: 767.98px) {
  .treatment-slider {
    padding: 4rem 0;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.treatment-slider .carousel {
  flex: auto;
}

.treatment-slider .carousel--fixed {
  flex: 0 0 460px;
  min-width: 40%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 60px 0 0;
  padding: 0 4rem 0 8%;
}

@media screen and (max-width: 767.98px) {
  .treatment-slider .carousel--fixed {
    flex: 0 0 100%;
    margin-bottom: 4rem;
  }
}

.treatment-slider .carousel--fixed .btn {
  margin-top: 2rem;
}

.treatment-slider .item {
  flex: 0 0 460px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 60px 0 0;
}

.treatment-slider .item:first-child {
  flex: 0 0 380px;
}

.treatment-slider .item:first-child h3 {
  margin: 0 0 40px 0;
}

.treatment-slider .item img {
  width: 500px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: 0 0 20px 0;
}

.treatment-slider .item .title {
  font-size: 23px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

@media screen and (max-width: 767.98px) {
  .treatment-slider .item .title {
    padding: 10px 20px 0;
  }
}

.treatment-slider .item .count {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  color: #00000060;
}

@media screen and (max-width: 767.98px) {
  .treatment-slider .item .count {
    padding: 10px 20px;
  }
}

.insta {
  padding: 100px 0;
  background-color: #f7f3ec;
}

.insta .top {
  display: flex;
  flex-direction: column;
  margin: 0 auto 60px auto;
  align-items: center;
}

.insta .carousel .flickity-slider {
  margin-left: 8%;
}

.insta.contain .item img {
  background: #fff;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 30px;
}

.insta .item {
  width: 260px;
  flex: 0 0 260px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 20px 0 0;
  border-radius: 4px;
  overflow: hidden;
}

.insta .item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: 0 0 14px 0;
}

.insta .item .name {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  margin: 0 0 4px 20px;
}

.insta .item .user {
  font-size: 14px;
  font-weight: 500;
  color: #00000060;
  margin: 0 10px 14px 20px;
}

.cta {
  background: #b0ac96;
  padding: 100px 0;
  text-align: center;
  background-image: url("{{ siteUrl }}/img/cta.png");
  background-size: cover;
  background-position: bottom right;
  color: #fff;
}

.cta h2 {
  margin: 0 0 20px 0;
}

.cta p {
  font-size: 22px;
  margin: 0 auto 20px auto;
}

.treatments-list {
  padding-bottom: 100px;
}

.treatments-list .container {
  flex-direction: column;
}

.treatments-list--item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  padding-top: 5rem;
  align-items: center;
}

.treatments-list--item:nth-child(even) {
  flex-direction: row-reverse;
}

.treatments-list--img {
  flex: 0 0 45%;
  overflow: hidden;
}

.treatments-list--img img {
  width: 100%;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 767.98px) {
  .treatments-list--img {
    height: 300px;
    flex: 0 0 100%;
  }
}

.treatments-list--info {
  flex: 0 0 45%;
  padding: 40px;
}

.treatments-list--info.full {
  flex: 0 0 100%;
  padding: 40px;
}

@media screen and (max-width: 767.98px) {
  .treatments-list--info.full {
    padding: 20px;
  }
}

@media screen and (max-width: 767.98px) {
  .treatments-list--info {
    padding: 0px;
    flex: 0 0 100%;
  }
}

.treatments-list--info h1, .treatments-list--info h3 {
  margin: 2rem 0;
}

.treatments-list--info ul {
  padding-left: 20px;
  list-style-type: disc;
}

.treatments-list--info ul li {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.treatments-list--prices {
  padding-left: 0 !important;
  margin-bottom: 30px;
}

.treatments-list--prices li {
  font-size: 14px !important;
  margin-bottom: 10px !important;
  display: flex;
  justify-content: space-between;
}

.treatments-list--prices li.addon:first-of-type {
  margin-top: 20px;
}

.product-full {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-full .info {
  flex: 0 0 50%;
  padding: 0 160px 0 60px;
}

.product-full .info h1 {
  font-size: 52px;
  font-weight: 600;
  margin: 0 0 40px 0;
}

.product-full .info p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 40px 0;
}

.product-full .info .btns {
  display: flex;
}

.product-full .info .btns .quantity {
  display: flex;
  border: 1px solid #29343c;
  border-radius: 4px;
  margin: 0 20px 0 0;
  align-items: center;
  overflow: hidden;
  color: #29343c;
  font-weight: 600;
}

.product-full .info .btns .quantity span {
  text-align: center;
}

.product-full .info .btns .quantity span:first-child {
  padding: 0 16px;
  font-size: 20px;
}

.product-full .info .btns .quantity span:last-child {
  padding: 0 16px;
  font-size: 20px;
}

.product-full .img {
  flex: 0 0 50%;
}

.product-full .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.product-details {
  padding: 120px 0;
  background-color: #fff;
}

.product-details .container {
  display: flex;
  justify-content: space-between;
}

.product-details .container .item {
  flex: 0 0 30%;
}

.product-details .container .item h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.product-details .container .item p {
  font-size: 15px;
  line-height: 1.4;
}

/*# sourceMappingURL=main.css.map*/