@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  scroll-behavior: smooth;
}

html {
  font-size: 10px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
  font-family: "Jost", sans-serif;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body {
  background-color: #F8F6F3;
}

header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid rgba(62, 58, 54, 0.1);
  background: rgba(248, 246, 243, 0.85);
  padding: 1rem 8rem;
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  position: fixed;
  z-index: 3;
}
header .header-content {
  max-width: 114rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
}
header .header-content .logo {
  width: 20rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .header-content .logo img {
  width: 100%;
  max-height: 10rem;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header-content .logo:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
header .header-content nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2rem;
}
header .header-content nav ul li {
  display: block;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .header-content nav ul li:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
header .header-content nav ul li:hover a {
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  color: #3E3A36;
}
header .header-content nav ul li a {
  color: #A38F7A;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.8rem;
}

#toggle {
  display: none;
}

.section-label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-label .line {
  width: 4rem;
  height: 3px;
  background: #A38F7A;
}
.section-label span {
  font-size: 2rem;
  font-weight: 500;
  color: #A38F7A;
  text-transform: uppercase;
}

h1 {
  font-size: 6rem;
  margin-bottom: 2rem;
  color: #3E3A36;
}

h2 {
  font-size: 4.5rem;
  margin-bottom: 2rem;
  color: #3E3A36;
}

h3 {
  font-size: 3rem;
  color: #3E3A36;
}

p {
  font-size: 2rem;
  color: #756C64;
  margin-bottom: 2rem;
}

.p-btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #3E3A36;
  color: #ffffff;
  padding: 1.2rem 4rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 500;
  border: 2px solid #3E3A36;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  margin: 2rem 0;
}
.p-btn:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.s-btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid #A38F7A;
  color: #A38F7A;
  padding: 1.2rem 4rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 500;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  margin: 2rem 0;
}
.s-btn:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

main {
  width: 100%;
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0rem 8rem;
}
main .main-content {
  max-width: 114rem;
  width: 100%;
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
  padding-top: 9rem;
}
main .main-content .main-txt {
  width: 100%;
  height: 100%;
  -ms-flex-preferred-size: 55%;
      flex-basis: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main .main-content .main-txt h1 {
  color: #3E3A36;
}
main .main-content .main-img {
  width: 100%;
  height: 100%;
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
  padding: 3rem;
}
main .main-content .main-img .main-img-content {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
main .main-content .main-img .main-img-content .box {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem;
  margin-bottom: 3rem;
  background: rgba(248, 246, 243, 0.85);
  gap: 1rem;
}
main .main-content .main-img .main-img-content .box .section-label {
  margin-bottom: 0;
}
main .main-content .main-img .main-img-content .box h3 {
  color: #3E3A36;
}

section {
  width: 100%;
  padding: 10rem 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section .section-content {
  max-width: 114rem;
  width: 100%;
}

#contact-tab {
  background: #ffffff;
}
#contact-tab .section-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#contact-tab .section-content .contact-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem;
  gap: 1rem;
  border-right: 1px solid rgba(62, 58, 54, 0.1);
}
#contact-tab .section-content .contact-details:last-child {
  border-right: none;
}
#contact-tab .section-content .contact-details p {
  margin-bottom: 0;
  font-weight: 500;
}
#contact-tab .section-content .contact-details span {
  font-size: 1.8rem;
  font-weight: 500;
  color: #A38F7A;
  text-transform: uppercase;
}

#about {
  background: #D8D0C8;
}
#about .section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
}
#about .section-content .about-img {
  width: 100%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  position: relative;
}
#about .section-content .about-img img {
  aspect-ratio: 1;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about .section-content .about-img .img-bigger {
  width: 80%;
  padding-bottom: 5rem;
}
#about .section-content .about-img .img-smaller {
  width: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 1.5rem solid #D8D0C8;
}
#about .section-content .about-txt {
  width: 100%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#about .section-content .about-txt .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}

#services {
  background: #25221F;
}
#services .section-content h2 {
  color: #ffffff;
}
#services .section-content p {
  color: rgba(255, 255, 255, 0.6);
}
#services .section-content .services-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 3rem 0;
}
#services .section-content .services-wrapper .service {
  display: grid;
  grid-template-columns: 5rem 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
}
#services .section-content .services-wrapper .service .service-number {
  font-size: 3rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}
#services .section-content .services-wrapper .service .service-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#services .section-content .services-wrapper .service .service-description ul {
  font-size: 2rem;
  color: #756C64;
  margin-bottom: 2rem;
}
#services .section-content .services-wrapper .service .service-description ul li {
  color: #756C64;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#services .section-content .services-wrapper .service .service-description ul li::before {
  content: "—";
  color: #A38F7A;
  margin-right: 1.5rem;
}
#services .section-content .services-wrapper .service .service-description .tags {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
#services .section-content .services-wrapper .service .service-description .tags .tag {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid #A38F7A;
  color: #A38F7A;
  padding: 0.6rem 2rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#services .section-content .services-wrapper .service .service-img img {
  width: 100%;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.light-version {
  background: #F8F6F3 !important;
}
.light-version .section-content h2 {
  color: #000000 !important;
}
.light-version .section-content p {
  color: #756C64 !important;
}
.light-version .section-content .services-wrapper .service {
  border-bottom: 2px solid rgba(62, 58, 54, 0.15) !important;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: start !important;
}
.light-version .section-content .services-wrapper .service .service-number {
  color: #A38F7A !important;
}
.light-version .section-content .services-wrapper .service .service-img {
  aspect-ratio: 4/3;
}
.light-version .section-content .services-wrapper .service .service-img img {
  aspect-ratio: 4/3 !important;
}

#catalogue .section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
#catalogue .section-content .section-label {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#catalogue .section-content .catalogue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 35rem);
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
}
#catalogue .section-content .catalogue-grid .grid-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 3rem;
  text-decoration: none;
  background-color: #25221F;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#catalogue .section-content .catalogue-grid .grid-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  z-index: 1;
}
#catalogue .section-content .catalogue-grid .grid-item:hover {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
#catalogue .section-content .catalogue-grid .grid-item .item-content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
#catalogue .section-content .catalogue-grid .grid-item .item-content span {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
}
#catalogue .section-content .catalogue-grid .grid-item .item-content h3 {
  color: #ffffff;
  font-size: 4rem;
  margin-bottom: 0.5rem;
}
#catalogue .section-content .catalogue-grid .grid-item .item-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  margin-bottom: 0;
}
#catalogue .section-content .catalogue-grid .item-main {
  grid-column: 1/2;
  grid-row: 1/3;
}
#catalogue .section-content .catalogue-grid .item-sub-1 {
  grid-column: 2/3;
  grid-row: 1/2;
}
#catalogue .section-content .catalogue-grid .item-sub-2 {
  grid-column: 2/3;
  grid-row: 2/3;
}

#history {
  background: #D8D0C8;
}
#history .section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
}
#history .section-content .history-txt {
  width: 100%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#history .section-content .history-img {
  width: 100%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#history .section-content .history-img img {
  width: 100%;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
}

#home-gallery {
  background: #ffffff;
}
#home-gallery .section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#home-gallery .section-content .gallery-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
#home-gallery .section-content .gallery-wrapper .gallery-item {
  display: block;
  width: 100%;
  overflow: hidden;
}
#home-gallery .section-content .gallery-wrapper .gallery-item img {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: ease 0.5s all;
  transition: ease 0.5s all;
}
#home-gallery .section-content .gallery-wrapper .gallery-item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#home-gallery .section-content .gallery-wrapper .gallery-item:nth-child(even) {
  margin-top: 5rem;
}

#contact-section .section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}
#contact-section .section-content .contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
}
#contact-section .section-content .contact-grid .contact-info-box, #contact-section .section-content .contact-grid .contact-form-box {
  background: #ffffff;
  padding: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#contact-section .section-content .contact-grid .contact-info-box .info-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#contact-section .section-content .contact-grid .contact-info-box .info-list .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(62, 58, 54, 0.1);
  gap: 0.5rem;
}
#contact-section .section-content .contact-grid .contact-info-box .info-list .info-item:last-child {
  border-bottom: none;
}
#contact-section .section-content .contact-grid .contact-info-box .info-list .info-item span {
  font-size: 1.8rem;
  font-weight: 500;
  color: #A38F7A;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
#contact-section .section-content .contact-grid .contact-info-box .info-list .info-item p {
  color: #3E3A36;
  font-weight: 500;
  margin-bottom: 0;
}
#contact-section .section-content .contact-grid .contact-form-box form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#contact-section .section-content .contact-grid .contact-form-box form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
#contact-section .section-content .contact-grid .contact-form-box form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#contact-section .section-content .contact-grid .contact-form-box form .form-group label {
  font-size: 1.8rem;
  font-weight: 500;
  color: #3E3A36;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}
#contact-section .section-content .contact-grid .contact-form-box form .form-group input, #contact-section .section-content .contact-grid .contact-form-box form .form-group textarea {
  width: 100%;
  background: #F8F6F3;
  border: 1px solid transparent;
  padding: 1.5rem;
  font-size: 1.8rem;
  font-family: "Jost", sans-serif;
  color: #3E3A36;
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#contact-section .section-content .contact-grid .contact-form-box form .form-group input:focus, #contact-section .section-content .contact-grid .contact-form-box form .form-group textarea:focus {
  border: 1px solid rgba(163, 143, 122, 0.5);
}
#contact-section .section-content .contact-grid .contact-form-box form .form-group input::-webkit-input-placeholder, #contact-section .section-content .contact-grid .contact-form-box form .form-group textarea::-webkit-input-placeholder {
  color: rgba(117, 108, 100, 0.6);
}
#contact-section .section-content .contact-grid .contact-form-box form .form-group input::-moz-placeholder, #contact-section .section-content .contact-grid .contact-form-box form .form-group textarea::-moz-placeholder {
  color: rgba(117, 108, 100, 0.6);
}
#contact-section .section-content .contact-grid .contact-form-box form .form-group input:-ms-input-placeholder, #contact-section .section-content .contact-grid .contact-form-box form .form-group textarea:-ms-input-placeholder {
  color: rgba(117, 108, 100, 0.6);
}
#contact-section .section-content .contact-grid .contact-form-box form .form-group input::-ms-input-placeholder, #contact-section .section-content .contact-grid .contact-form-box form .form-group textarea::-ms-input-placeholder {
  color: rgba(117, 108, 100, 0.6);
}
#contact-section .section-content .contact-grid .contact-form-box form .form-group input::placeholder, #contact-section .section-content .contact-grid .contact-form-box form .form-group textarea::placeholder {
  color: rgba(117, 108, 100, 0.6);
}
#contact-section .section-content .contact-grid .contact-form-box form .form-group textarea {
  resize: vertical;
}
#contact-section .section-content .contact-grid .contact-form-box form .gdpr-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
#contact-section .section-content .contact-grid .contact-form-box form .gdpr-checkbox input[type=checkbox] {
  margin-top: 0.4rem;
  accent-color: #A38F7A;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
#contact-section .section-content .contact-grid .contact-form-box form .gdpr-checkbox label {
  font-size: 1.8rem;
  color: #756C64;
}
#contact-section .section-content .contact-grid .contact-form-box form .gdpr-checkbox label a {
  color: #3E3A36;
  text-decoration: underline;
}
#contact-section .section-content .contact-grid .contact-form-box form .p-btn {
  margin: 0;
  border-radius: 50px;
}
#contact-section .section-content .map-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
#contact-section .section-content .map-wrapper .iframe-container {
  width: 100%;
  height: 45rem;
}
#contact-section .section-content .map-wrapper .iframe-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}
#contact-section .section-content .map-wrapper .map-info {
  padding: 5rem 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5rem;
  background: #ffffff;
}
#contact-section .section-content .map-wrapper .map-info h3 {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  font-size: 4.5rem;
  color: #3E3A36;
}
#contact-section .section-content .map-wrapper .map-info p {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  font-size: 1.8rem;
  margin-bottom: 0;
}

footer {
  width: 100%;
  background-color: #25221F;
  padding: 6rem 8rem 3rem 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .footer-content {
  max-width: 114rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .footer-content .footer-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
footer .footer-content .footer-top .footer-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
footer .footer-content .footer-top .footer-col:first-child {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}
footer .footer-content .footer-top .footer-col .footer-logo {
  width: 18rem;
  margin-bottom: 2rem;
}
footer .footer-content .footer-top .footer-col .footer-logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer-content .footer-top .footer-col .footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.8rem;
  margin-bottom: 0;
  line-height: 1.6;
}
footer .footer-content .footer-top .footer-col h4 {
  font-family: "Jost", sans-serif;
  color: #A38F7A;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom: 2.5rem;
}
footer .footer-content .footer-top .footer-col ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
footer .footer-content .footer-top .footer-col ul li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
}
footer .footer-content .footer-top .footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
footer .footer-content .footer-top .footer-col ul li a:hover {
  color: #A38F7A;
}
footer .footer-content .footer-top .footer-col .footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
footer .footer-content .footer-top .footer-col .footer-socials a, footer .footer-content .footer-top .footer-col .footer-socials span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
}
footer .footer-content .footer-top .footer-col .footer-socials a {
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
footer .footer-content .footer-top .footer-col .footer-socials a:hover {
  color: #A38F7A;
}
footer .footer-content .footer-bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 3rem;
}
footer .footer-content .footer-bottom p, footer .footer-content .footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.8rem;
  margin-bottom: 0;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
footer .footer-content .footer-bottom a:hover {
  color: #A38F7A;
}

.cookies {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: center;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  padding-bottom: 0;
  width: 42.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 6;
}
.cookies p {
  font-size: 1.6rem;
}
.cookies a {
  color: #3E3A36;
  font-weight: bold;
}
.cookies .row {
  width: 50%;
  margin: 2rem;
}
.cookies .row .btn-g {
  font-size: 1.6rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: #3E3A36;
  padding: 0.8rem 2.4rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  border: 2px solid #3E3A36;
  cursor: pointer;
  border-radius: 25px;
  text-transform: uppercase;
}
.cookies .row .btn-g:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.cookies .row .btn-b {
  font-size: 1.6rem;
  margin: 0rem 2rem;
  color: #A38F7A;
  background: transparent;
  padding: 0.8rem 2.4rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  border: 2px solid #A38F7A;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  cursor: pointer;
  border-radius: 25px;
  text-transform: uppercase;
}
.cookies .row .btn-b:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

#rules {
  min-height: 100dvh;
}
#rules .section-content {
  padding-top: 9rem;
}
#rules .section-content h2 {
  text-align: center;
}

.active {
  color: #3E3A36 !important;
}

.subpage-hero {
  height: 100dvh;
  padding-top: 15rem;
  position: relative;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#f8f6f3), color-stop(25%, rgba(248, 246, 243, 0.9)), color-stop(55%, rgba(248, 246, 243, 0.6)), color-stop(85%, rgba(248, 246, 243, 0.15)), to(rgba(248, 246, 243, 0)));
  background: linear-gradient(90deg, #f8f6f3 0%, rgba(248, 246, 243, 0.9) 25%, rgba(248, 246, 243, 0.6) 55%, rgba(248, 246, 243, 0.15) 85%, rgba(248, 246, 243, 0) 100%);
  z-index: 1;
}
.subpage-hero .section-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.subpage-hero .section-content .hero-txt {
  max-width: 60rem;
}
.subpage-hero .section-content .hero-txt h1 {
  color: #3E3A36;
  margin-bottom: 2rem;
}

#cta-banner {
  background: #D8D0C8;
}
#cta-banner .section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#cta-banner .section-content .cta-txt {
  max-width: 80rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#cta-banner .section-content .cta-txt p {
  color: #3E3A36;
}

#product-showcase .section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#product-showcase .section-content .product-filters {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  margin-bottom: 6rem;
}
#product-showcase .section-content .product-filters .filter-btn {
  border: 1px solid #A38F7A;
  color: #A38F7A;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#product-showcase .section-content .product-filters .filter-btn:hover, #product-showcase .section-content .product-filters .filter-btn.active-ctg {
  background: #A38F7A;
  color: #ffffff;
}
#product-showcase .section-content .featured-product {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
  margin-bottom: 8rem;
}
#product-showcase .section-content .featured-product .img-col {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  width: 100%;
}
#product-showcase .section-content .featured-product .img-col .section-label {
  margin-bottom: 2rem;
}
#product-showcase .section-content .featured-product .img-col .product-img-link {
  display: block;
  width: 100%;
  overflow: hidden;
}
#product-showcase .section-content .featured-product .img-col .product-img-link img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: ease 0.5s all;
  transition: ease 0.5s all;
}
#product-showcase .section-content .featured-product .img-col .product-img-link:hover img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
#product-showcase .section-content .featured-product .txt-col {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#product-showcase .section-content .featured-product .txt-col .tag {
  border: 1px solid rgba(62, 58, 54, 0.2);
  padding: 0.6rem 2rem;
  border-radius: 50px;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #3E3A36;
  font-weight: 500;
  margin-bottom: 3rem;
}
#product-showcase .section-content .featured-product .txt-col h2 {
  margin-bottom: 3rem;
}
#product-showcase .section-content .featured-product .txt-col p {
  margin-bottom: 3rem;
}
#product-showcase .section-content .featured-product .txt-col ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
#product-showcase .section-content .featured-product .txt-col ul li {
  font-size: 1.8rem;
  color: #756C64;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#product-showcase .section-content .featured-product .txt-col ul li::before {
  content: "—";
  color: #A38F7A;
  margin-right: 1.5rem;
}
#product-showcase .section-content .featured-product .txt-col .s-btn {
  margin: 0;
}
#product-showcase .section-content .product-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
#product-showcase .section-content .product-grid .product-card {
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#product-showcase .section-content .product-grid .product-card .product-img-link {
  display: block;
  width: 100%;
  overflow: hidden;
}
#product-showcase .section-content .product-grid .product-card .product-img-link .card-img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: ease 0.5s all;
  transition: ease 0.5s all;
}
#product-showcase .section-content .product-grid .product-card .product-img-link:hover .card-img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#product-showcase .section-content .product-grid .product-card .card-content {
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#product-showcase .section-content .product-grid .product-card .card-content .tag {
  border: 1px solid rgba(62, 58, 54, 0.15);
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #3E3A36;
  font-weight: 500;
  margin-bottom: 2rem;
}
#product-showcase .section-content .product-grid .product-card .card-content h3 {
  margin-bottom: 1.5rem;
}
#product-showcase .section-content .product-grid .product-card .card-content p {
  font-size: 1.8rem;
  margin-bottom: 0;
}
#product-showcase .section-content .product-grid .product-card .card-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 3rem;
  border-top: 1px solid rgba(62, 58, 54, 0.1);
}
#product-showcase .section-content .product-grid .product-card .card-footer span {
  font-size: 1.6rem;
  color: #756C64;
}
#product-showcase .section-content .product-grid .product-card .card-footer span:last-child {
  color: #3E3A36;
  font-weight: 600;
}
#product-showcase .section-content .pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  margin-top: 6rem;
}
#product-showcase .section-content .pagination .page-num {
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #A38F7A;
  border-radius: 50%;
  color: #A38F7A;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#product-showcase .section-content .pagination .page-num:hover, #product-showcase .section-content .pagination .page-num.active-page {
  background: #A38F7A;
  color: #ffffff;
}

#gallery .section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#gallery .section-content .gallery-filters {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
#gallery .section-content .gallery-filters .filter-btn {
  border: 1px solid #A38F7A;
  color: #A38F7A;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#gallery .section-content .gallery-filters .filter-btn:hover, #gallery .section-content .gallery-filters .filter-btn.active-filter {
  background: #A38F7A;
  color: #ffffff;
}
#gallery .section-content .galleries-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}
#gallery .section-content .galleries-container .gallery-block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
#gallery .section-content .galleries-container .gallery-block.fade-out {
  opacity: 0;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
}
#gallery .section-content .galleries-container .gallery-block .section-label {
  margin-bottom: 1.5rem;
}
#gallery .section-content .galleries-container .gallery-block h2 {
  margin-bottom: 1rem;
}
#gallery .section-content .galleries-container .gallery-block p {
  margin-bottom: 4rem;
}
#gallery .section-content .galleries-container .gallery-block .gallery-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
#gallery .section-content .galleries-container .gallery-block .gallery-grid .gallery-item {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #D8D0C8;
}
#gallery .section-content .galleries-container .gallery-block .gallery-grid .gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: ease 0.5s all;
  transition: ease 0.5s all;
}
#gallery .section-content .galleries-container .gallery-block .gallery-grid .gallery-item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#timeline {
  background: #ffffff;
}
#timeline .section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#timeline .section-content .timeline-header {
  max-width: 80rem;
  margin-bottom: 6rem;
}
#timeline .section-content .timeline-header h2 {
  margin-bottom: 2rem;
}
#timeline .section-content .timeline-header p {
  margin-bottom: 0;
}
#timeline .section-content .timeline-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#timeline .section-content .timeline-wrapper .timeline-item {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 5rem;
  padding: 4rem 0;
  border-top: 1px solid rgba(62, 58, 54, 0.1);
}
#timeline .section-content .timeline-wrapper .timeline-item:last-child {
  border-bottom: 1px solid rgba(62, 58, 54, 0.1);
}
#timeline .section-content .timeline-wrapper .timeline-item .timeline-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  color: #A38F7A;
  line-height: 1.2;
}
#timeline .section-content .timeline-wrapper .timeline-item .timeline-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#timeline .section-content .timeline-wrapper .timeline-item .timeline-text h3 {
  font-size: 2.8rem;
  color: #3E3A36;
  margin-bottom: 1.5rem;
}
#timeline .section-content .timeline-wrapper .timeline-item .timeline-text p {
  font-size: 1.8rem;
  color: #756C64;
  margin-bottom: 0;
  line-height: 1.6;
}

@media (min-width: 2560px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 1336px) {
  html {
    font-size: 9.5px;
  }
  header {
    padding: 1rem 7rem;
  }
  main {
    padding: 0 7rem;
  }
  section {
    padding: 6rem 7rem;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 9px;
  }
  header {
    padding: 1rem 6rem;
  }
  main {
    padding: 0 6rem;
  }
  section {
    padding: 6rem;
  }
  #contact-section .section-content .contact-grid .contact-info-box, #contact-section .section-content .contact-grid .contact-form-box {
    padding: 4rem;
  }
  #contact-section .section-content .map-wrapper .map-info {
    padding: 4rem;
  }
  #product-showcase .section-content .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #gallery .section-content .galleries-container .gallery-block .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1000px) {
  #toggle {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid rgba(62, 58, 54, 0.1);
    background: rgba(248, 246, 243, 0.85);
    padding: 1rem 4rem;
    -webkit-backdrop-filter: blur(18px);
            backdrop-filter: blur(18px);
    position: fixed;
    z-index: 4;
  }
  #toggle .logo {
    width: 20rem;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  #toggle .logo img {
    width: 100%;
    max-height: 10rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #toggle .logo:hover {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  #toggle #toggler {
    width: 4rem;
    height: 4rem;
    cursor: pointer;
  }
  #toggle #toggler path {
    fill: #A38F7A;
  }
  header {
    width: 32rem;
    height: 100dvh;
    padding: 4rem;
    padding-top: 15rem;
    padding-bottom: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    border-left: 1px solid rgba(62, 58, 54, 0.1);
  }
  header .header-content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  header .header-content .logo {
    display: none;
  }
  header .header-content nav {
    width: 100%;
  }
  header .header-content nav ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  header .header-content nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(62, 58, 54, 0.1);
    padding-bottom: 0.8rem;
  }
  header .header-content nav ul li a {
    font-size: 2rem;
  }
  .active-menu {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  .not-active-menu {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  main {
    padding: 0 4rem;
  }
  section {
    padding: 4rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 8.5px;
  }
  main {
    height: auto;
  }
  main .main-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    padding-top: 12rem;
    height: auto;
  }
  main .main-content .main-txt, main .main-content .main-img {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }
  h1 {
    font-size: 5rem;
  }
  h3 {
    font-size: 2.5rem;
  }
  #contact-tab .section-content {
    grid-template-columns: repeat(1, 1fr);
  }
  #contact-tab .section-content .contact-details {
    gap: 1rem;
    border-bottom: 1px solid rgba(62, 58, 54, 0.1);
    border-right: none;
  }
  #contact-tab .section-content .contact-details:last-child {
    border-bottom: none;
  }
  #about .section-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 3rem;
  }
  #services .section-content .services-wrapper .service {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 2rem 0;
  }
  #services .section-content .services-wrapper .service .service-description h2 {
    margin-bottom: 1rem;
  }
  #catalogue .section-content .catalogue-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  #catalogue .section-content .catalogue-grid .grid-item {
    min-height: 35rem;
  }
  #catalogue .section-content .catalogue-grid .item-main, #catalogue .section-content .catalogue-grid .item-sub-1, #catalogue .section-content .catalogue-grid .item-sub-2 {
    grid-column: 1/-1;
    grid-row: auto;
  }
  #history .section-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
  #home-gallery .section-content .gallery-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  #home-gallery .section-content .gallery-wrapper .gallery-item:nth-child(even) {
    margin-top: 3rem;
  }
  #contact-section .section-content .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #contact-section .section-content .map-wrapper .map-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2rem;
  }
  #contact-section .section-content .map-wrapper .map-info h3, #contact-section .section-content .map-wrapper .map-info p {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  footer {
    padding: 6rem 4rem 3rem 4rem;
  }
  footer .footer-content .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5rem;
  }
  footer .footer-content .footer-top .footer-col:first-child {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  footer .footer-content .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  section.subpage-hero::before {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #f8f6f3), color-stop(50%, rgba(248, 246, 243, 0.8)), to(rgba(248, 246, 243, 0)));
    background: linear-gradient(0deg, #f8f6f3 10%, rgba(248, 246, 243, 0.8) 50%, rgba(248, 246, 243, 0) 100%);
  }
  section.subpage-hero .section-content {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-bottom: 4rem;
  }
  #product-showcase .section-content .featured-product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    margin-bottom: 0rem;
  }
  #product-showcase .section-content .product-grid {
    grid-template-columns: 1fr;
  }
  #gallery .section-content .galleries-container {
    gap: 5rem;
  }
  #gallery .section-content .galleries-container .gallery-block .gallery-grid {
    gap: 1.5rem;
  }
  #timeline .section-content .timeline-wrapper .timeline-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 0;
  }
  #timeline .section-content .timeline-wrapper .timeline-item .timeline-year {
    font-size: 3.5rem;
  }
}
@media (max-width: 425px) {
  html {
    font-size: 8px;
  }
  #home-gallery .section-content .gallery-wrapper {
    grid-template-columns: 1fr;
  }
  #home-gallery .section-content .gallery-wrapper .gallery-item:nth-child(even) {
    margin-top: 0;
  }
  #contact-section .section-content .contact-grid .contact-form-box form .form-row {
    grid-template-columns: 1fr;
  }
  .cookies {
    width: 100%;
  }
}