/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url("https://fonts.googleapis.com/css2?family=Aboreto&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Google Font */
  --work-sans: "Work Sans", sans-serif;
  --aboreto: "Aboreto", sans-serif;

  /* Color Palette */
  --white: #fff;
  --black: #000;
  --gray-70: #707070;
  --beige-white: #efeadc;
  --brown-primary: #8e604b;
  --cream-white: #eeeadc;
  --primary: #24350e;
  --dark: #070120;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: var(--primary);
  font-size: 30px;
  line-height: 35px;
  font-family: var(--work-sans);
  font-weight: 400;
  background-color: var(--white);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--aboreto);
  font-weight: normal;
}

section,
.section {
  position: relative;
}

.container {
  width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a,
button {
  outline: none;
  box-shadow: none;
}

button {
  background: unset;
  padding: 0;
  border: none;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

ol li,
ul li {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
  outline: none;
  border: none;
  box-shadow: none;
}

* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
  margin: 0;
  padding: 0;
}

*::-moz-selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

::selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--grey);
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: var(--grey);
  font-size: 16px;
  opacity: 1;
}

/* Resusable Component and CSS Start */
.outline-text {
  color: transparent;
  -webkit-text-stroke: 1px var(--primary);
}

.border-radius-80 {
  border-radius: 80px;
}

/* Resusable Component and CSS End */

/* Bootstrap Customized CSS Start */

.fs-1 {
  font-size: 60px !important;
  line-height: 74px;
}

.fs-2 {
  font-size: 40px !important;
  line-height: 42px;
}

.fs-3 {
  font-size: 37px !important;
  line-height: 43px;
}

.fs-4 {
  font-size: 30px !important;
  line-height: 35px;
}

.fs-5 {
  font-size: 22px !important;
  line-height: 29px;
}

/* colors */
.text-gray-70 {
  color: var(--gray-70) !important;
}

.text-beige-white {
  color: var(--beige-white) !important;
}

.text-brown-primary {
  color: var(--brown-primary) !important;
}

.text-cream-white {
  color: var(--cream-white) !important;
}

.text-primary {
  color: var(--primary) !important;
}

/* font-family */
.ff-workSans {
  font-family: var(--work-sans) !important;
}

.ff-aboreto {
  font-family: var(--aboreto) !important;
}

/* btns */

.btn {
  font-size: 32px;
  line-height: 48px;
  border-radius: 70px;
  font-family: var(--aboreto);
  padding: 6px 20px;
}

.btn-main {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-main:hover {
  border-color: var(--primary);
  color: var(--beige-white);
  background-color: var(--primary);
}

.btn-secondary {
  border-color: var(--beige-white);
  color: var(--beige-white);
  background-color: transparent;
}

.btn-secondary:hover {
  border-color: var(--beige-white);
  background-color: var(--beige-white);
  color: var(--primary);
}

/* Bootstrap Customized CSS End */

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */

/* offcanvas-header */

.offcanvas__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
  content: "";
  background: var(--beige-white);
  z-index: 99;
  transition: all 0.3s ease;
  padding: 0px 40px 40px;
  height: 100%;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
}

.offcanvas__wrapper.show {
  opacity: 1;
  visibility: visible;
}

.offcanvas__close {
  position: absolute;
  left: 0px;
  top: 42px;
  font-size: 50px;
  color: var(--primary);
}

.offcanvas__close {
  position: relative;
  width: 45px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.offcanvas__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #000;
  display: block;
  border-radius: 2px;
  transform-origin: center;
}

/* First line: rotate to 45deg */
.offcanvas__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* Second line: rotate to -45deg */
.offcanvas__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.offcanvas__inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.offcanvas__logo {
  text-align: center;
  padding: 25px 0px;
}

.offcanvas__menu ul {
  column-count: 2;
  column-gap: 100px;
}

.offcanvas__menu ul li a {
  color: var(--primary);
  font-family: var(--aboreto);
  font-size: 75px;
  line-height: 1;
  display: block;
  padding: 5% 0px;
}

.offcanvas__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  margin-top: 50px;
}

/* offcanvas-header--end */

.header {
  position: relative;
  padding: 28px 0px 18px;
}

.header::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 75vh;
  content: "";
  background: var(--primary);
  z-index: -1;
}

.header__wrapper {
  padding: 0px 0px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.headerMenu {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.headerMenu span {
  width: 100%;
  height: 1px;
  background-color: var(--beige-white);
  display: block;
}

.heaedr__main {
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}

.heaedr__main ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.heaedr__main ul li a {
  font-size: 20px;
  line-height: 24px;
  font-weight: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  color: var(--cream-white);
}

.heaedr__main ul li a.logo img {
  max-width: 130px;
}

.heaedr__main ul li a:hover {
  color: var(--brown-primary);
}

.heaedr__main ul li {
  flex: 0 0 auto;
  width: 33.33%;
  text-align: center;
}

/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */

.hero__wrapper {
  padding: 0px 30px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero__wrapper .hero__img {
  height: calc(100vh - 125px);
  width: 100%;
  border-radius: 80px;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0px 7% 3% 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}

.hero__obj {
  max-width: 846px;
  position: absolute;
  bottom: -70px;
  right: 0;
}

/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Discover Section CSS Start */
/* =============================== */
.discover--section {
  padding: 72px 0 104px;
}

.discover--section .section__head {
  margin-bottom: 100px;
}

.discover__item {
  gap: 76px;
  margin-bottom: 100px;
}

.discover__thumb {
  width: 310px;
  height: 300px;
  border-radius: 40px;
  background-color: var(--beige-white);
}

.discover__thumb__image {
  width: 262px;
  height: 262px;
  border-radius: 50%;
}

.discover__title {
  margin-bottom: 44px;
}

/* =============================== */
/* :: 6.0 Discover Section CSS End */
/* =============================== */

/* ================================================ */
/* :: 7.0 CTA Section + Instagram Section CSS Start */
/* ================================================ */
/* CTA Section Start */
.cta--section {
  padding: 72px 0 128px;
}

.cta__wrapper {
  padding: 80px 120px;
  border-radius: 55px;
  background-color: var(--beige-white);
  box-shadow: 30px 26px 0 var(--primary);
  max-width: 1150px;
}

.cta__content {
  max-width: 1090px;
}

/* CTA Section End */

/* Instagram Section Start */
.instagram--section {
  padding: 72px 0 104px;
}

.instagram__wrapper {
  margin-left: 56px;
}

.instagram--section .js-marquee {
  display: flex;
  gap: 11px;
}

.js-marquee-wrapper {
  overflow: hidden;
}

.instagram__thumb {
  width: 346px;
  height: auto;
}

.instagram__button {
  padding: 12px 43px;
  border-radius: 100px 0 0 100px;
  color: var(--brown-primary);
  font-size: 37px;
  font-family: var(--aboreto);
  gap: 12px;
  background-color: var(--beige-white);
  transition: all 0.3s ease-in-out;
  z-index: 11;
}

.instagram__button:hover {
  color: var(--beige-white);
  background-color: var(--brown-primary);
}

.instagram__button__icon {
  max-width: 24px;
}

.instagram__button__icon svg {
  width: 100%;
}

/* Instagram Section End */
/* ============================================== */
/* :: 7.0 CTA Section + Instagram Section CSS End */
/* ============================================== */

/* ========================================================= */
/* :: 8.0 Approach Section Brands&Products Section CSS Start */
/* ========================================================= */
/* Approach Section Start */
.approach--section {
  padding: 72px 0 104px;
}

.approach__wrapper {
  max-width: 1090px;
}

.approach__button {
  padding-top: 44px;
}

/* Approach Section End */

/* Brands&Products Section Start */
.brands-products--section {
  padding: 72px 0;
}

.brands-products--section .section__head {
  margin-bottom: 34px;
}

.brands-products__link {
  color: var(--primary);
  font-family: var(--aboreto);
  transition: all 0.3s ease-in-out;
}

.brands-products__link:hover {
  color: var(--brown-primary);
}

.brands-products__thumb {
  width: 330px;
  height: 330px;
}

.brands-products--section .js-marquee {
  display: flex;
  gap: 11px;
}

.brands-products__thumb {
  border: 1px solid var(--gray-70);
}

/* Brands&Products Section End */
/* ======================================================= */
/* :: 8.0 Approach Section Brands&Products Section CSS End */
/* ======================================================= */

/* =============================== */
/* :: 9.0 Footer Area CSS Start */
/* =============================== */

.footer {
  padding: 95px 40px 273px;
  background: var(--primary);
  position: relative;
  z-index: 1;
  margin-top: 120px;
}

.footer__wrapper {
  padding: 0px 15px;
  max-width: 1320px;
  margin: 0 auto;
}

.footer__widget > a.btn {
  margin-bottom: 30px;
}

.footer__widget ul li a {
  color: #eeeadc;
  font-size: 20px;
  line-height: 28px;
  display: block;
}

.footer__widget p {
  color: #eeeadc;
  font-size: 20px;
  line-height: 28px;
  display: block;
}

.footer__widget ul {
  margin-bottom: 30px;
}

.footer__widget ul li a:hover {
  color: var(--brown-primary);
}

.footer__newsletter h3 {
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--beige-white);
  margin-bottom: 28px;
}

.footer__inputBox label {
  display: block;
  font-family: var(--work-sans);
  color: #eeeadc;
  font-size: 15px;
  line-height: 18px;
}

.footer__inputBox input {
  width: 100%;
  height: 60px;
  border-bottom: 1px dotted #efeadc;
  background: transparent;
  color: #eeeadc;
}

.footer__inputBox {
  margin-bottom: 30px;
}

.checkBox input {
  display: none;
}

.checkBox label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1;
  color: #efeadc;
  cursor: pointer;
}

.checkBox label span.ind {
  display: flex;
  height: 20px;
  width: 20px;
  border: 1px solid #efeadc;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #efeadc;
}

.footer__newsletter .checkBox {
  margin-bottom: 30px;
}

.checkBox input:checked ~ label span.ind i {
  opacity: 1;
}

.checkBox label span.ind i {
  opacity: 0;
}

img.footer-patern {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

/* =============================== */
/* :: 9.0 Footer Area CSS End */
/* =============================== */
/* =============================== */
/* :: 9.0 work.html Page CSS End */
/* =============================== */
/* Aim Section Start */
.aim--section {
  padding: 72px 0 104px;
}

.aim--section .section__head {
  margin-bottom: 232px;
}

.aim__item {
  gap: 128px;
  margin-bottom: 68px;
}

.aim__thumb {
  border-radius: 220px;
  width: 360px;
  aspect-ratio: 1 / 1.37;
}

.aim__text {
  margin-bottom: 84px;
}

.aim__title {
  margin-bottom: 44px;
}

/* Aim Section End */
/* =============================== */
/* :: 9.0 work.html Page CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 work-2.html Page CSS End */
/* =============================== */
.work--section {
  padding: 116px 0px 160px;
}

.work__blocks {
  padding: 60px 56px 100px;
  padding-right: 140px;
  border-radius: 80px;
  background-color: var(--brown-primary);
  max-width: 1400px;
  margin: 0 auto;
}

.work__textBlock {
  padding: 100px 0px;
}

.work__thumbBlock {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1735px;
  width: 90vw;
  position: relative;
  left: 50%;
  transform: translateX(-47.5%);
  margin: 0 auto;
}

.work__thumbBlock-label {
  flex-grow: 1;
}

.work__thumbBlock-label img {
  max-width: 100%;
  border-radius: 80px;
}

.work__thumbBlock-changes {
  flex: 0 0 auto;
  width: 25%;
}

.work__thumbBlock-changes img {
  border-radius: 296px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

/* =============================== */
/* :: 10.0 work-2.html Page CSS Start */
/* =============================== */

/* =============================== */
/* :: 11.0 skintake.html Page CSS End */
/* =============================== */
/* Plan Section Start */
.plan--section {
  padding: 72px 0 104px;
}

/* Plan Section End */

/* Gallery Section Start */
.gallery__wrapper {
  max-width: 1416px;
}

.gallery__thumb {
  width: calc(33.33% - 50px);
  aspect-ratio: 1 / 1.25;
  margin-bottom: 80px;
}

.gallery__thumb--sm {
  width: 25.21%;
}

.gallery__thumb--md {
  width: calc(33.33% - 50px);
  aspect-ratio: 1 / 0.96;
}

.gallery__thumb--xmd {
  width: calc(33.33% - 50px);
  aspect-ratio: 1 / 0.9;
}

/* Gallery Section End */
/* =============================== */
/* :: 11.0 skintake.html Page CSS End */
/* =============================== */

/* =============================== */
/* :: 12.0 prices.html Page CSS Start */
/* =============================== */
/* Price (Accordion) Section Start */
.price--section {
  padding: 104px 0;
}

.accordion-block__title {
  border-bottom: 2px solid var(--brown-primary);
  padding-bottom: 32px;
}

.accordion-wrapper {
  gap: 80px;
}

.accordion-wrapper .accordion-item {
  border: none;
}

.accordion-wrapper .accordion-button:focus,
.accordion-wrapper .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: unset;
}

.accordion-wrapper .accordion-button {
  padding: 16px;
  font-family: var(--work-sans);
  border-bottom: 2px solid var(--brown-primary);
}

.accordion-wrapper .accordion-button::after {
  display: none;
}

.accordion-wrapper .accordion-body {
  padding: 16px 0 40px 68px;
}

.accordion__content {
  gap: 24px;
}

.accordion-button__icon {
  max-width: 36px;
  transition: all 0.3s ease-in-out;
  transform-origin: center center;
}

.accordion-button__icon svg {
  width: 100%;
}

.accordion-button__icon svg g {
  transition: all 0.3s ease-in-out;
}

.accordion-wrapper .accordion-button[aria-expanded="true"] .accordion-button__icon {
  transform: rotate(90deg);
}

.accordion-wrapper .accordion-button[aria-expanded="true"] .accordion-button__icon svg g {
  fill: var(--brown-primary);
}

.accordion__content__block {
  color: var(--brown-primary);
  gap: 32px;
}

.accordion__content__top {
  gap: 12px;
  font-size: 40px;
}

.accordion__content__title {
  font-size: 40px;
  font-family: var(--work-sans);
  font-weight: 400;
  text-transform: uppercase;
}

.dot-separator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--brown-primary);
}

.accordion__content__info {
  font-size: 20px;
}

.accordion__content__price {
  font-size: 40px;
  margin-top: 5px;
}

/* Price (Accordion) Section End */
/* =============================== */
/* :: 12.0 prices.html Page CSS End */
/* =============================== */

/* =============================== */
/* :: 13.0 brands-product.html CSS start */
/* =============================== */
.brands-products--merken.brands-products--section {
  padding-top: 180px;
}

.brands-products--merken .js-marquee {
  gap: 80px;
}

.productInfo--section {
  padding: 110px 0px 130px;
}

.productInfo__thumb img {
  width: 330px;
  height: 330px;
  border-radius: 80px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--gray-70);
}

/* =============================== */
/* :: 13.0 brands-product.html CSS End */
/* =============================== */

/* extra-css */

.backToTop {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 40px;
  height: 40px;

  border-radius: 50%;
  font-size: 24px;
  color: #24350e;
  z-index: 2;
}

.backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: #efeadc;
  color: #24350e;
  border: none;
  border-radius: 50%;
  height: 40px;
  height: 40px;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.backToTop.show {
  opacity: 1;
  pointer-events: auto;
}

.socials a img {
  max-width: 38px;
  max-height: 40px;
}

.socials--fixedBottom {
  position: fixed;
  z-index: 999;
  right: 30px;
  top: 50%;
  flex-direction: column;
  gap: 15px !important;
  background: #24350e;
  padding: 10px 9px;
  border-radius: 27px;
  transform: translateY(-50%);
  border: 1px solid #eeeadc;
}

/* extra-css--end */

.salon h3 { font-size: 2.0rem; }

.cta__wrapper__2 { box-shadow: 30px 26px 0 #87624e; }

.more { text-decoration: underline; color: #243503; }

.instagram__wrapper img { height: 100%; }