@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  touch-action: manipulation;
}

body {
  font-family: "Poppins-Regular", sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 400;
  background-color: rgb(233, 228, 208);
  color: rgb(0, 0, 0);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: manipulation;
}

body.no-scroll {
  overflow-y: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

*::-webkit-scrollbar {
  display: none;
}

main {
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}

img {
  display: block;
}

hr {
  color: rgb(0, 0, 0);
  background: rgb(0, 0, 0);
  height: 1px;
  border: 0;
}

h1, h2 {
  font-weight: 400;
  -webkit-hyphens: auto;
          hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
}

.invert {
  color: rgb(255, 255, 255);
}
.invert hr {
  color: rgb(255, 255, 255);
  background: rgb(255, 255, 255);
}
.invert a {
  color: rgb(255, 255, 255);
}

.logo {
  width: 75%;
}

.small-logo, .menu, .close {
  width: 46.5px;
}

.close path {
  stroke: rgb(255, 255, 255);
  stroke-width: 2;
}

.center {
  text-align: center;
}

section:not(.gallery-section) {
  padding: 8rem calc(2rem + 46.5px) 5rem;
}

#home section:not(.gallery-section) {
  padding: 8rem calc(2rem + 46.5px) 5rem;
}

.section-heading {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

h1.section-heading {
  text-transform: none;
}

.social-icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 50%;
  padding: 0.1rem;
}

.social-icon path {
  fill: rgb(0, 0, 0);
}

.download {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid rgb(0, 0, 0);
  padding-bottom: 0.5rem;
}

.download-icon {
  width: 1rem;
}

.download-icon path {
  fill: rgb(0, 0, 0);
}

.download-icon line {
  fill: none;
  stroke: rgb(0, 0, 0);
  stroke-linecap: round;
  stroke-width: 0.5;
}

.list {
  display: flex;
  flex-direction: column;
}

.social-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}

p:not(:first-of-type) {
  margin-top: 1rem;
}

.zoom-effect {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}

.zoom-effect img {
  transition: transform 0.4s ease;
}

.margin-top {
  margin-top: 1rem;
}

.margin-top-big {
  margin-top: 3rem;
}

.margin-top-huge {
  margin-top: 6rem;
}

.margin-bottom {
  margin-bottom: 1rem;
}

.margin-bottom-small {
  margin-bottom: 0.5rem;
}

.margin-bottom-big {
  margin-bottom: 3rem;
}

.margin-bottom-huge {
  margin-bottom: 6rem;
}

.arrow, .lightbox-prev, .lightbox-next {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.grid {
  display: grid;
  gap: 2rem;
  -webkit-hyphens: auto;
          hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
}

.flex {
  display: flex;
  gap: 2rem;
}

.flex-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.align-center {
  align-items: center;
  justify-content: center;
}

.wrap {
  flex-wrap: wrap;
}

.align-end {
  align-content: end;
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.error-section {
  padding: 1rem !important;
}

.popup {
  position: fixed;
  display: none;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translate(-50%, -50%);
  background: rgb(177, 136, 87);
  border-radius: 10px;
  padding: 0.5rem;
  overflow: hidden;
  width: 50vw;
  max-width: 1000px;
}

.popup-close {
  margin-left: auto;
  width: 15.5px;
  cursor: pointer;
}

.popup-text {
  padding: 3rem;
  text-align: center;
}

.popup-text h2 {
  margin-bottom: 2rem;
}

.bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}

.mobile {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1440px) {
  html {
    font-size: 18px;
  }
  section:not(.gallery-section) {
    padding: 8rem calc(4rem + 46.5px) 5rem;
  }
  #home section:not(.gallery-section) {
    padding: 8rem calc(4rem + 46.5px) 5rem;
  }
}
@media (min-width: 1600px) {
  html {
    font-size: 20px;
  }
  section:not(.gallery-section) {
    padding: 8rem calc(6rem + 46.5px) 5rem;
  }
  #home section:not(.gallery-section) {
    padding: 8rem calc(6rem + 46.5px) 5rem;
  }
}
@media (min-width: 2000px) {
  html {
    font-size: 22px;
  }
  section:not(.gallery-section) {
    padding: 8rem calc(10rem + 46.5px) 5rem;
  }
  #home section:not(.gallery-section) {
    padding: 8rem calc(10rem + 46.5px) 5rem;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  .grid-5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .grid-5 > div {
    width: calc(33% - 1.2rem);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .margin-side {
    margin-left: unset;
    margin-right: unset;
  }
  .popup {
    left: 1rem;
    width: calc(100vw - 2rem);
    transform: translateY(-50%);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  section:not(.gallery-section) {
    padding: 8rem 1rem 5rem;
  }
  #home section:not(.gallery-section) {
    padding: 8rem 1rem 5rem;
  }
  .grid-5 > div {
    width: calc(50% - 1rem);
  }
  .small-logo, .menu, .close {
    width: 31px;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 480px) {
  .grid-5, .grid-4, .grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-5 > div {
    width: 75%;
  }
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: rgb(177, 136, 87);
  }
  .social-icon:hover {
    border-color: rgb(177, 136, 87);
  }
  .social-icon:hover path {
    fill: rgb(177, 136, 87);
  }
  a:hover .zoom-effect img {
    transform: scale(1.1);
  }
  a:hover .zoom-effect .gallery-text-overlay {
    opacity: 1;
  }
  a:hover .zoom-effect .gallery-text-overlay p {
    color: rgb(255, 255, 255);
  }
  .download-container a:hover .download-icon path {
    fill: rgb(177, 136, 87);
  }
  .download-container a:hover .download-icon line {
    stroke: rgb(177, 136, 87);
  }
  button:hover {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
  }
}
.nav-overlay a:hover {
  color: rgb(177, 136, 87);
}

.nav-link:hover path {
  stroke: rgb(177, 136, 87);
}

.product-gallery-container {
  width: 100%;
}

.product-gallery a {
  display: none;
  cursor: pointer;
}

.product-gallery img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
  cursor: pointer;
}

.product-gallery a:nth-child(-n+2) {
  display: block;
}

.arrow-container {
  display: flex;
  justify-content: end;
  gap: 1rem;
  margin-top: 1rem;
}

.left-arrow .arrow {
  transform: rotate(180deg);
}

.arrow-container .arrow {
  cursor: pointer;
  width: 1.5rem;
  touch-action: manipulation;
}

.arrow-container .arrow path {
  stroke: rgb(0, 0, 0);
}

.gallery-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.gallery-text-overlay p {
  padding: 0.5rem;
  border-radius: 12px;
  background: rgb(177, 136, 87);
  color: rgb(255, 255, 255);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 99;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 75%;
  max-height: 75%;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-prev .arrow {
  transform: rotate(180deg);
}

.lightbox-next {
  right: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 46.5px;
  height: auto;
  cursor: pointer;
}

@media (max-width: 768px) {
  .lightbox-close {
    width: 31px;
  }
}
@media (max-width: 480px) {
  .lightbox img {
    max-width: calc(100% - 2rem);
    max-height: calc(100% - 2rem);
  }
  .lightbox-prev, .lightbox-next {
    top: unset;
    bottom: 1rem;
    transform: unset;
  }
}
form {
  width: 100%;
}

label, input:not(input[type=checkbox]), textarea {
  display: block;
  width: 100%;
}

input[type=checkbox] {
  margin-top: unset;
}

label {
  font-size: 0.8rem;
}

input, textarea {
  font-size: 16px;
}

form > label:not(:first-child) {
  margin-top: 1rem;
}

input, textarea {
  font-family: "Poppins-Regular", sans-serif;
  margin-top: 0.5rem;
  padding: 0.5rem;
}

button {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: rgb(177, 136, 87);
  border: none;
  color: rgb(255, 255, 255);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
}

.privacy {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.error, .success {
  margin-bottom: 1rem;
}

.nav, .nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  z-index: 2;
}

.nav {
  background-color: rgb(233, 228, 208);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.nav.invert {
  background-color: unset;
  box-shadow: unset;
}

.nav, .nav-overlay-content {
  padding: 1rem;
}

.menu, .close {
  cursor: pointer;
  height: auto;
}

nav ul, .nav ul {
  list-style: none;
  grid-column: 3;
  line-height: normal;
}

.nav-overlay {
  height: 0;
  color: rgb(0, 0, 0);
  z-index: 100;
  background: rgb(69, 60, 52);
  pointer-events: none;
  visibility: hidden;
  transition: height 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-overlay.active {
  visibility: visible;
  height: 100vh;
  height: 100dvh;
  pointer-events: auto;
}

.nav-overlay.closing {
  height: 0;
}

.nav-overlay-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-overlay-content.bottom {
  align-items: end;
  grid-template-columns: repeat(2, 1fr);
}

.legal-link {
  font-size: 1.2rem;
  text-transform: uppercase;
}

.nav-logo-container {
  grid-column: span 1;
}

.nav-logo {
  width: 90%;
}

.nav-overlay.active .nav-overlay-content {
  opacity: 1;
}

.nav-overlay.closing .nav-overlay-content {
  opacity: 0;
}

nav li {
  font-size: 2rem;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}

.nav li {
  position: relative;
}

.nav-overlay li, .nav-overlay a {
  color: rgb(255, 255, 255);
}

.nav-link, .current-nav-link {
  color: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hover-nav {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  padding-top: 2rem;
  transform: translateX(-50%);
  line-height: normal;
}

.hover-nav ul {
  background: rgb(177, 136, 87);
  padding: 1rem 5rem;
}

.hover-nav:before {
  position: absolute;
  content: "";
  top: calc(2rem - 9px);
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  -webkit-transform: translateX(-50%) rotate(45deg);
  border-style: solid;
  border-width: 10px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-color: rgb(177, 136, 87);
}

.hover-nav a {
  color: rgb(255, 255, 255);
  display: block;
}

.hover-nav a:hover {
  color: rgb(0, 0, 0);
}

.hover-nav .nav-link, .hover-nav .current-nav-link {
  display: block;
}

.hover-nav .current-nav-link {
  color: rgb(0, 0, 0);
}

.nav li:hover .hover-nav {
  display: block;
}

.arrow {
  height: 1.5rem;
  width: auto;
  touch-action: manipulation;
}

.arrow path {
  stroke: rgb(255, 255, 255);
  stroke-width: 2;
}

.current-nav-link:not(.hover-nav .current-nav-link) {
  color: rgb(177, 136, 87);
}

.current-nav-link .arrow path {
  stroke: rgb(177, 136, 87);
}

.sub {
  font-size: 16px;
  text-transform: none;
}

.close {
  grid-column: 4;
  justify-self: end;
}

.logo-clip {
  clip-path: inset(0 0 0 0);
}

nav .social-icon {
  border: 1px solid rgb(255, 255, 255);
}

nav .social-icon path {
  fill: rgb(255, 255, 255);
}

@media (min-width: 1440px) {
  .nav, .nav-overlay-content {
    padding: 1rem 2rem;
  }
}
@media (max-width: 768px) {
  .nav-logo-container {
    grid-column: span 2;
  }
  .nav {
    background-color: unset;
    box-shadow: unset;
  }
}
@media (max-width: 480px) {
  nav ul {
    grid-row: 2;
    grid-column: span 4;
  }
}
footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 5rem 3rem;
  gap: 1rem 1.5rem;
  color: rgb(255, 255, 255);
  background: rgb(69, 60, 52);
  line-height: 1.5;
  font-size: 0.8rem;
  margin-top: 5rem;
  grid-template-rows: auto 1fr;
  align-items: stretch;
}

.footer-flex {
  grid-column: auto;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1/span 2;
}

.footer-flex > .grid-heading {
  grid-row: 1;
  align-self: end;
}

.footer-flex > :not(.grid-heading) {
  grid-row: 2;
}

.footer-logo {
  width: 90%;
}

footer h3:after {
  content: " ";
  display: block;
  width: 40px;
  height: 1px;
  background: rgb(177, 136, 87);
}

.contact-container {
  margin-top: 1rem;
}

footer a {
  color: rgb(255, 255, 255);
}

footer .social-icon {
  border: 1px solid rgb(255, 255, 255);
}

footer .social-icon path {
  fill: rgb(255, 255, 255);
}

@media (min-width: 1440px) {
  footer {
    padding: 5rem;
  }
}
@media (min-width: 1600px) {
  footer {
    padding: 5rem 6rem;
  }
}
@media (min-width: 2000px) {
  footer {
    padding: 5rem 8rem;
  }
}
@media (max-width: 1024px) {
  footer {
    padding: 3rem 1rem;
  }
}
@media (max-width: 768px) {
  footer {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    gap: 3rem 1.5rem;
  }
  .footer-flex {
    display: flex;
    flex-direction: column;
    grid-row: unset;
    gap: 1rem;
  }
  .footer-flex > .grid-heading {
    grid-row: unset;
    align-self: unset;
  }
  .footer-flex .flex-col div {
    margin-top: 1rem;
  }
}
@media (max-width: 480px) {
  footer {
    grid-template-columns: repeat(1, 1fr);
  }
  footer .logo {
    width: 50%;
  }
  .footer-flex > div {
    width: 50%;
  }
}
.gallery-section {
  padding-bottom: 5rem;
}

.gallery-container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 99;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  z-index: 1;
  transform: scale(1);
  transition: opacity 1.2s ease-in-out, transform 6s linear;
}

.image-container img.is-current {
  opacity: 1;
  z-index: 2;
}

.image-container img.is-previous {
  opacity: 0;
  z-index: 1;
}

.image-container img.is-zooming {
  transform: scale(1.2);
}

.home-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25vw;
  min-width: 150px;
}

.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.product, .product a, .service, .service a, .article a {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  grid-column: span 1;
  align-items: center;
  text-align: center;
}

.quote-container {
  position: relative;
  z-index: -1;
}

#home .quote-container {
  margin-top: 13rem;
}

.quote-container div {
  padding: 10rem 0;
}

.quote-container .bg {
  left: calc((2rem + 46.5px) * -1);
  width: 100vw;
}

.quote-container h2 {
  margin-bottom: 1rem;
}

.article {
  width: 33.3%;
}

.product .icon {
  display: inline;
  width: 3rem;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.product h3:after, .service h3:after {
  content: " ";
  display: block;
  width: 40px;
  height: 1px;
  margin: auto;
  background: rgb(0, 0, 0);
}

.service .zoom-effect {
  aspect-ratio: 3/2;
}

.service-image {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-image {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.timeline {
  position: relative;
  margin: auto;
  padding-top: 3rem;
  z-index: -1;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  background-color: rgb(0, 0, 0);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 1rem 2rem;
  position: relative;
  width: 50%;
}

.timeline-item::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: rgb(177, 136, 87);
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
  text-align: right;
}

.left::before {
  right: -10px;
}

.right {
  left: 50%;
  text-align: left;
}

.right::before {
  left: -10px;
}

@media (min-width: 1440px) {
  .quote-container .bg {
    left: calc((4rem + 46.5px) * -1);
  }
}
@media (min-width: 1600px) {
  .quote-container .bg {
    left: calc((6rem + 46.5px) * -1);
  }
}
@media (min-width: 2000px) {
  .quote-container .bg {
    left: calc((10rem + 46.5px) * -1);
  }
}
@media (max-width: 1024px) {
  .left {
    padding-left: 0;
  }
  .right {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .timeline::after {
    left: 0;
  }
  .timeline-item {
    width: 100%;
  }
  .left {
    padding-left: 2rem;
    text-align: left;
  }
  .left::before {
    left: -10px;
  }
  .right {
    left: 0;
    padding-right: 2rem;
  }
  .article {
    width: calc(50% - 1rem);
  }
  .quote-container .bg {
    left: -1rem;
  }
}
@media (max-width: 480px) {
  .article {
    width: 100%;
  }
}
.team-member {
  grid-column: span 1;
  text-align: center;
  font-size: 0.8rem;
}

.team-member .team-image {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.contact-section .contact-content {
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .contact-section .contact-content {
    grid-column: span 1;
  }
}
.partner-flex {
  display: flex;
  gap: 5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.partner {
  width: calc(25% - 3.75rem);
  text-align: center;
}

.partner img {
  width: 100%;
}

.partner h3:after {
  content: " ";
  display: block;
  width: 40px;
  height: 1px;
  margin: auto;
  background: rgb(0, 0, 0);
}

@media (max-width: 768px) {
  .partner {
    width: calc(33% - 3.75rem);
  }
}
@media (max-width: 480px) {
  .partner {
    width: calc(50% - 3.75rem);
  }
}
.article-header-image {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 3rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-block:not(:first-of-type) {
  margin-top: 3rem;
}

.article-block .content {
  width: 75%;
  margin: auto;
}

.article-text a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.article-block iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.legal h2:not(:first-child), .legal h3:not(:first-child), .legal p:not(:first-child) {
  margin-top: 1rem;
}

.textfield h2:not(:first-child), .textfield h3:not(:first-child), .textfield p:not(:first-child), .textfield ul:not(:first-child) {
  margin-top: 1rem;
}

.textfield ul {
  display: block;
  list-style: disc inside !important;
  padding-left: 1rem;
}/*# sourceMappingURL=main.css.map */