/*
Theme Name: Pixel Example Theme
Theme URI: https://wp.pixel-development.nl
Author: Pixel Creation
Author URI: https://www.pixelcreation.nl/
Description: This is a example theme made by Pixel Creation.
Version: 1.0
Text Domain: pixel-example
*/
/* TODO: Fill in the correct information above */
/* TODO: Vervang de screenshot.png */
/* This file is made for all your variables, think of colors you will use, basic spacing etc. */
@font-face {
  font-family: "Cormorant Upright";
  src: url("webfonts/CormorantUpright-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Cormorant Upright";
  src: url("webfonts/CormorantUpright-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("webfonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("webfonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
body {
  font-size: 1.05rem;
  font-family: "Montserrat", sans-serif;
  color: #2f352f;
  background-color: #f4efe4;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.32);
}

/* ACCESSIBILITY */
.skip-links a {
  position: absolute;
  top: -100vh;
  left: -100vw;
  z-index: 9999;
  padding: 1.2rem 2rem;
  color: white;
  border-top: 2px solid white;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  background-color: #1d1d1d;
}
.skip-links a:focus {
  top: 8rem;
  left: 0;
}

a:focus-visible, button:focus-visible {
  outline: 2px dotted black;
  z-index: 9999;
  outline-offset: 0;
  -webkit-box-shadow: 0 0 0 2px white;
  box-shadow: 0 0 0 2px white;
}

.accessibility {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 9px;
  font-size: 16px;
}
.accessibility .set-font-size {
  padding: 0 0 3px 0;
  display: inline-flex;
}
.accessibility .set-font-size .font-size {
  padding: 0 8px 2px 8px;
  display: flex;
  align-items: end;
  line-height: 1;
  border: 0;
  background-color: unset;
}
.accessibility .set-font-size .font-size.font-small {
  font-size: 15px;
}
.accessibility .set-font-size .font-size.font-medium {
  font-size: 18px;
}
.accessibility .set-font-size .font-size.font-large {
  font-size: 21px;
}
.accessibility .set-font-size .font-size:hover {
  text-decoration: underline;
}
.accessibility .set-font-size .font-size.active {
  font-weight: 700;
  cursor: default;
}
.accessibility .set-font-size .font-size.active:hover {
  text-decoration: none;
}
.accessibility .contrast {
  border: 0;
  background-color: unset;
}

/* Colors */
.first-color {
  color: #2f6b54;
}

.second-color {
  color: #d36f48;
}

.text-color {
  color: #2f352f;
}

.white-color {
  color: #ffffff;
}

.black-color {
  color: #000000;
}

.first-bg {
  background-color: #2f6b54 !important;
}

.second-bg {
  background-color: #d36f48 !important;
}

.third-bg {
  background-color: #f4efe4 !important;
}

.white-bg {
  background-color: #ffffff !important;
}

.black-bg {
  background-color: #000000 !important;
}

::selection {
  background-color: #2f6b54;
  color: white;
}

.color-inherit {
  color: inherit;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-size: clamp(3.25rem, 7vw, 6.75rem);
  line-height: 0.95;
  font-weight: 700;
  font-family: "Cormorant Upright", serif;
  letter-spacing: 0;
  color: #2f6b54;
}

h2, .h2 {
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  line-height: 1;
  font-weight: 700;
  font-family: "Cormorant Upright", serif;
  letter-spacing: 0;
  color: #2f6b54;
  margin-bottom: 1.4rem;
}

h3, .h3 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.12;
  font-weight: 700;
  font-family: "Cormorant Upright", serif;
  letter-spacing: 0;
  color: #2f6b54;
}

h4, .h4 {
  font-size: 1.75rem;
  line-height: 2.25rem;
  font-weight: 700;
  font-family: "Cormorant Upright", serif;
  letter-spacing: 0;
  color: #2f6b54;
}

p, ul li, ol li {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.85;
}

small {
  font-size: 0.875rem;
}

a {
  color: #d36f48;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
  transition: 0.3s;
}
a:hover {
  color: #ad5635;
  text-decoration: underline;
}
a.a-no-hover:hover {
  text-decoration: none;
}
a.a-color-inherit {
  color: inherit;
}
a.a-hover-text-decoration:hover {
  text-decoration: underline !important;
}
a.a-hover-color:hover {
  color: #ad5635 !important;
}

strong {
  font-weight: 700;
}

.p-last-child p:last-child {
  margin-bottom: 0;
}
.p-last-child ul {
  margin-bottom: 0;
  padding-left: 20px;
}
.p-last-child ul li {
  padding-left: 5px;
  margin-bottom: 8px;
}
.p-last-child ul li::marker {
  color: #2f6b54;
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  .p-last-child ul li::marker {
    font-size: 20px;
  }
}

/* SECTIONS */
section {
  padding: 120px 0;
}
section.section-sm {
  padding: 82px 0;
}

/* CONTAINER */
.container {
  padding: 0 24px;
  max-width: 1340px !important;
}

/* BUTTONS */
.btn, .button, input[type=submit], .wp-element-button {
  background-color: transparent !important;
  padding: 13px 22px !important;
  border: 1px solid rgba(47, 107, 84, 0.2) !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  line-height: 1.2 !important;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  height: unset !important;
  text-decoration: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  opacity: 1 !important;
  transition: 0.3s !important;
}
.btn:hover, .button:hover, input[type=submit]:hover, .wp-element-button:hover {
  text-decoration: none !important;
}
.btn:hover:after, .button:hover:after, input[type=submit]:hover:after, .wp-element-button:hover:after {
  left: 5px;
}
.btn:after, .button:after, input[type=submit]:after, .wp-element-button:after {
  content: "\f061";
  font-family: "Font Awesome 7 Pro";
  font-weight: 300;
  font-size: 0.76rem;
  display: inline-block;
  margin-left: 12px;
  position: relative;
  left: 0;
  transition: 0.3s;
}
.btn.btn-primary, .button.btn-primary, input[type=submit].btn-primary, .wp-element-button.btn-primary {
  background-color: #d36f48 !important;
  color: white !important;
  box-shadow: 0 10px 22px rgba(173, 86, 53, 0.14);
}
.btn.btn-primary:hover, .button.btn-primary:hover, input[type=submit].btn-primary:hover, .wp-element-button.btn-primary:hover {
  background-color: #ad5635 !important;
  color: white !important;
  transform: translateY(-1px);
}
.btn.btn-secondary, .button.btn-secondary, input[type=submit].btn-secondary, .wp-element-button.btn-secondary {
  background-color: #2f6b54 !important;
  color: white !important;
}
.btn.btn-secondary:hover, .button.btn-secondary:hover, input[type=submit].btn-secondary:hover, .wp-element-button.btn-secondary:hover {
  background-color: #214b3b !important;
  color: white !important;
  transform: translateY(-1px);
}

.wp-element-button {
  background-color: #2f6b54 !important;
  color: white !important;
}
.wp-element-button:hover {
  background-color: #214b3b !important;
  color: white !important;
}

/* HEADER */
.navbar {
  background-color: rgba(244, 239, 228, 0.88);
  backdrop-filter: blur(18px);
  width: 100%;
  padding: 14px 15px;
  border-bottom: 1px solid rgba(47, 107, 84, 0.12);
  position: sticky;
  top: 0;
  left: 20px;
  z-index: 999;
  transition: 0.3s;
}
@media screen and (max-width: 575px) {
  .navbar .container {
    padding: 0;
  }
}
.navbar .nav-link {
  padding: 0 !important;
  margin-left: 18px;
  margin-right: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #2f6b54;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: 0.3s;
}
@media screen and (max-width: 991px) {
  .navbar .nav-link {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
    width: fit-content;
  }
}
.navbar .nav-link:hover {
  color: #d36f48;
  text-decoration: none;
}
.navbar .nav-link.active {
  color: #d36f48;
  text-decoration: none;
}
.navbar .btn {
  margin-left: 20px;
}
@media screen and (max-width: 991px) {
  .navbar .btn {
    position: absolute;
    right: 80px;
    top: 20px;
  }
}
@media screen and (max-width: 575px) {
  .navbar .btn {
    right: 60px;
    top: 15px;
  }
}
@media screen and (max-width: 400px) {
  .navbar .btn {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav {
    padding-top: 25px;
  }
}
.navbar .navbar-brand:hover {
  text-decoration: none;
}
.navbar .navbar-brand .logo {
  display: block;
  font-size: 2.05rem;
  font-weight: 600;
  font-style: italic;
  font-family: "Cormorant Upright", serif;
  color: #2f6b54;
  letter-spacing: 0;
}
@media screen and (max-width: 575px) {
  .navbar .navbar-brand .logo {
    font-size: 1.5rem;
  }
}
.navbar .bar1, .navbar .bar2, .navbar .bar3 {
  width: 30px;
  height: 2px;
  margin: 6px 0;
  transition: 0.3s;
  border: none;
  border-radius: 30px;
  background-color: #2f6b54;
}
.navbar .change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-4px, 3px);
  transform: rotate(-45deg) translate(-3px, 3px);
}
.navbar .change .bar2 {
  opacity: 0;
}
.navbar .change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}
.navbar .close-button {
  position: relative;
  top: 0;
}
.navbar .close-button .navbar-toggler {
  border: unset;
  padding: 0;
}
.navbar .close-button .navbar-toggler:focus {
  box-shadow: unset;
}

/* MAIN */
.section-copy {
  max-width: 650px;
}
.section-copy > *:last-child {
  margin-bottom: 0;
}
.section-copy p {
  color: rgba(47, 53, 47, 0.86);
}

.first-bg .section-copy p {
  color: rgba(255, 255, 255, 0.88);
}

.header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: min(720px, 100vh - 130px);
  aspect-ratio: 16/8.5;
  border-radius: 22px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5rem);
  box-shadow: 0 18px 44px rgba(35, 47, 38, 0.12);
}
@media screen and (max-width: 767px) {
  .header {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 575px) {
  .header {
    padding: 25px 5px;
  }
}
.header h1 {
  color: white;
  max-width: 760px;
  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
}

.text-with-image.first-bg {
  background-color: #2f6b54 !important;
}
.text-with-image.first-bg h2 {
  color: white;
}
.text-with-image.first-bg .text-with-image-figure::before {
  background-color: rgba(255, 255, 255, 0.14);
}
.text-with-image .text-with-image-figure {
  position: relative;
  margin: 0;
  max-width: 600px;
}
.text-with-image .text-with-image-figure::before {
  content: "";
  position: absolute;
  inset: 28px -28px -28px 28px;
  z-index: 0;
  border: 1px solid rgba(47, 107, 84, 0.16);
  border-radius: 22px;
  background-color: rgba(255, 255, 255, 0.52);
}
.text-with-image .text-with-image-figure.is-mirrored::before {
  inset: 28px 28px -28px -28px;
}
.text-with-image .text-with-image-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(35, 47, 38, 0.1);
}

.usps.first-bg {
  background-color: #2f6b54 !important;
}
.usps.first-bg h2, .usps.first-bg h3 {
  color: white;
}
.usps.first-bg .usp-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
.usps.first-bg .usp-icon {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: white;
}
.usps .usps-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.usps .usp-card {
  height: 100%;
  padding: 36px 26px;
  border: 1px solid rgba(47, 107, 84, 0.12);
  border-radius: 22px;
  background-color: #fffaf2;
  transition: 0.3s;
}
.usps .usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(35, 47, 38, 0.08);
}
.usps .usp-icon {
  background-color: rgba(211, 111, 72, 0.16);
  color: #2f6b54;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin: 0 auto 20px auto;
  font-size: 1.5rem;
  border: 1px solid rgba(211, 111, 72, 0.32);
}

.gallery.first-bg {
  background-color: #2f6b54 !important;
}
.gallery.first-bg h2 {
  color: white;
}
.gallery.first-bg .gallery-intro {
  border-color: rgba(255, 255, 255, 0.14);
}
.gallery .gallery-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(47, 107, 84, 0.12);
}
.gallery .gallery-intro .section-copy {
  max-width: 760px;
}
.gallery .gallery-action {
  flex-shrink: 0;
}
.gallery .gallery-frame {
  overflow: visible;
}
.gallery .owl-gallery .owl-item {
  opacity: 0.38;
  transition: 0.3s;
}
.gallery .owl-gallery .owl-item.center {
  opacity: 1;
}
.gallery .owl-gallery .owl-item.center .gallery-img {
  transform: scale(1);
}
.gallery .owl-gallery .owl-item:not(.center) .gallery-img {
  transform: scale(0.96);
}
.gallery .owl-gallery .owl-item .gallery-link {
  display: block;
  border-radius: 22px;
  text-decoration: none;
  overflow: hidden;
}
.gallery .owl-gallery .owl-item .gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(35, 47, 38, 0.1);
  transition: 0.3s;
}
.gallery .owl-nav {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.gallery .owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white !important;
  color: #2f6b54 !important;
  border: 1px solid rgba(47, 107, 84, 0.16) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0 !important;
  position: relative;
  transition: 0.3s;
}
.gallery .owl-nav button:hover {
  background-color: #2f6b54 !important;
  color: white !important;
}
.gallery .owl-nav button.owl-prev::before {
  content: "\f060";
  font-family: "Font Awesome 7 Pro";
  font-weight: 300;
  font-size: 1rem;
}
.gallery .owl-nav button.owl-next::before {
  content: "\f061";
  font-family: "Font Awesome 7 Pro";
  font-weight: 300;
  font-size: 1rem;
}

.text-centered.first-bg {
  background-color: #2f6b54 !important;
}
.text-centered.first-bg h2 {
  color: white;
}
.text-centered .text-centered-inner {
  max-width: 820px;
  margin: 0 auto;
}
.text-centered .text-centered-content img {
  margin-top: 20px;
  border-radius: 22px;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(35, 47, 38, 0.1);
}

.block-with-image-and-text .block-with-image-and-text-panel {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(35, 47, 38, 0.1);
}
.block-with-image-and-text .block-with-image-and-text-panel > .row > [class*=col-] {
  display: flex;
}
.block-with-image-and-text .block-with-image-and-text-figure {
  height: 100%;
  width: 100%;
  margin: 0;
  background-color: #d7e4dc;
}
.block-with-image-and-text .block-with-image-and-text-content {
  background-color: #fff7ed;
  padding: clamp(2.5rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  min-height: 540px;
  border: 1px solid rgba(211, 111, 72, 0.22);
}
@media screen and (max-width: 991px) {
  .block-with-image-and-text .block-with-image-and-text-content {
    min-height: unset;
  }
}
@media screen and (max-width: 575px) {
  .block-with-image-and-text .block-with-image-and-text-content {
    padding: 40px 25px;
  }
}
.block-with-image-and-text .block-with-image-and-text-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 991px) {
  .block-with-image-and-text .block-with-image-and-text-img {
    max-height: 600px;
    min-height: 400px;
  }
}

.specifications.first-bg {
  background-color: #2f6b54 !important;
}
.specifications.first-bg h2 {
  color: white;
}
.specifications.first-bg .specifications-panel {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}
.specifications.first-bg .specification-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
.specifications.first-bg .specification-icon {
  color: white;
  background-color: rgba(255, 255, 255, 0.12);
}
.specifications.first-bg .specification-label {
  color: rgba(255, 255, 255, 0.72);
}
.specifications.first-bg .specification-value {
  color: white;
}
.specifications .specifications-panel {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(47, 107, 84, 0.12);
  border-radius: 22px;
  background-color: #fff7ed;
}
.specifications .specifications-grid {
  margin-top: clamp(2rem, 4vw, 3rem);
}
.specifications .specification-card {
  height: 100%;
  padding: 22px;
  border: 1px solid rgba(47, 107, 84, 0.12);
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  align-items: center;
  background-color: white;
}
.specifications .specification-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2f6b54;
  background-color: #d7e4dc;
}
.specifications .specification-label {
  display: block;
  margin-bottom: 0.12rem;
  color: rgba(47, 53, 47, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.specifications .specification-value {
  display: block;
  color: #2f352f;
  font-size: 1.05rem;
}

.form-section.first-bg {
  background-color: #2f6b54 !important;
}
.form-section.first-bg h2 {
  color: white;
}
.form-section.first-bg .form-section-panel {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}
.form-section .form-section-panel {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(47, 107, 84, 0.12);
  border-radius: 22px;
  background-color: #fff7ed;
}
.form-section .form-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(47, 107, 84, 0.12);
  border-radius: 22px;
  background-color: white;
}
.form-section .form-card .nf-form-fields-required {
  display: none;
}
.form-section .form-card .nf-field-label {
  min-height: 2.8rem;
  display: flex;
  align-items: flex-end;
}
.form-section .form-card .nf-field-label label, .form-section .form-card .nf-field-label span {
  color: #2f6b54;
  font-size: 0.82rem;
  line-height: 1.35;
  text-transform: uppercase;
}
.form-section .form-card .nf-field-element input,
.form-section .form-card .nf-field-element textarea,
.form-section .form-card .nf-field-element select {
  border: 1px solid rgba(47, 107, 84, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  color: #2f352f;
  background-color: #fffaf2;
}
.form-section .form-card .nf-field-element input:focus,
.form-section .form-card .nf-field-element textarea:focus,
.form-section .form-card .nf-field-element select:focus {
  border-color: #d36f48;
  outline: 3px solid rgba(211, 111, 72, 0.22);
  outline-offset: 2px;
}
.form-section .form-card .nf-field-element input[type=button],
.form-section .form-card .nf-field-element input[type=submit] {
  width: auto;
  background-color: #d36f48 !important;
  color: white !important;
  cursor: pointer;
}
.form-section .form-card .nf-field-element input[type=button]:hover,
.form-section .form-card .nf-field-element input[type=submit]:hover {
  background-color: #ad5635 !important;
}
.form-section .form-card .nf-error.field-wrap .nf-field-element::after {
  display: none;
}
.form-section .form-card .nf-error.field-wrap .nf-field-element input,
.form-section .form-card .nf-error.field-wrap .nf-field-element textarea,
.form-section .form-card .nf-error.field-wrap .nf-field-element select {
  border-color: #d36f48;
  outline: 3px solid rgba(211, 111, 72, 0.18);
  outline-offset: 2px;
}

/* FOOTER */
.site-footer {
  padding: 110px 0 34px;
  background-color: #e7dccd;
}

.footer-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(47, 107, 84, 0.12);
  border-radius: 22px;
  background-color: #fff7ed;
  box-shadow: 0 16px 42px rgba(35, 47, 38, 0.08);
}
.footer-panel::before {
  content: none;
}
.footer-panel > * {
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: inline-block;
  color: #2f6b54;
  text-decoration: none;
}
.footer-brand:hover {
  color: #214b3b;
  text-decoration: none;
}

.footer-logo {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.96;
  font-weight: 700;
  font-style: italic;
  font-family: "Cormorant Upright", serif;
  letter-spacing: 0;
}

.footer-intro {
  max-width: 430px;
  margin-top: 1.4rem;
  color: rgba(47, 53, 47, 0.78);
}

.footer-column {
  height: 100%;
  padding-top: 0.55rem;
}

.footer-title {
  margin-bottom: 1rem;
  color: #2f6b54;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-list {
  margin: 0;
}
.footer-list li {
  margin-bottom: 0.58rem;
  color: rgba(47, 53, 47, 0.78);
  line-height: 1.65;
}
.footer-list li:last-child {
  margin-bottom: 0;
}
.footer-list a {
  color: rgba(47, 53, 47, 0.82);
  text-decoration: none;
}
.footer-list a:hover {
  color: #2f6b54;
  text-decoration: none;
}

.footer-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.footer-menu a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(211, 111, 72, 0.72);
  transition: 0.3s;
}
.footer-menu a:hover::before {
  transform: scale(1.35);
  background-color: #d36f48;
}

.footer-contact-list {
  margin-top: 1.2rem;
}
.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-contact-list i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2f6b54;
  background-color: rgba(47, 107, 84, 0.08);
}

.socials {
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f6b54;
  background-color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(47, 107, 84, 0.12);
  text-decoration: none;
}
.socials a:hover {
  color: white;
  background-color: #2f6b54;
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-bottom {
  margin-top: clamp(2.4rem, 5vw, 4rem);
  padding-top: 1.35rem;
  border-top: 1px solid rgba(47, 107, 84, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(47, 53, 47, 0.62);
  font-size: 0.88rem;
}

/* SCREEN READER */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

@media screen and (max-width: 767px) {
  section {
    padding: 78px 0;
  }
  section.section-sm {
    padding: 54px 0;
  }

  h1, .h1 {
    font-size: 3.25rem;
    line-height: 0.98;
  }

  h2, .h2 {
    font-size: 2.45rem;
    line-height: 1.04;
  }

  h3, .h3 {
    font-size: 1.85rem;
    line-height: 1.14;
  }

  .text-with-image .text-with-image-figure::before,
.text-with-image .text-with-image-figure.is-mirrored::before {
    inset: 18px -12px -18px 12px;
  }

  .gallery .gallery-intro {
    display: block;
  }
  .gallery .gallery-action {
    margin-top: 1.5rem;
  }

  .usps .usp-card {
    padding: 30px 22px;
  }

  .block-with-image-and-text .block-with-image-and-text-content {
    padding: 38px 26px;
  }
  .block-with-image-and-text .block-with-image-and-text-img {
    min-height: 320px;
  }

  .specifications .specifications-panel,
.specifications .form-section-panel,
.form-section .specifications-panel,
.form-section .form-section-panel {
    padding: 32px 24px;
  }
  .specifications .specification-card,
.form-section .specification-card {
    padding: 18px;
  }

  .site-footer {
    padding-top: 78px;
  }

  .footer-panel {
    padding: 32px 24px;
  }

  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin-bottom: 0.35rem;
  }
  .footer-bottom span:last-child {
    margin-bottom: 0;
  }
}

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