/*
Theme Name:     Esslinger
Author:         2code
Description:    Esslinger Theme
Version:        1.0
License:        GNU General Public License v2 or later
*/

@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/Roboto/static/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/Roboto/static/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Halifax";
  src: url("assets/fonts/Halifax/Halifax.ttf") format("truetype");
  font-weight: 400;
}

/* @font-face {
  font-family: "Halifax";
  src: url("assets/fonts/Halifax/Halifax-Medium.ttf") format("truetype");
  font-weight: 500;
} */

@font-face {
  font-family: "Halifax";
  src: url("assets/fonts/Halifax/Halifax-Bold.ttf") format("truetype");
  font-weight: 700;
}

@media (min-width: 1240px) {
  .container {
    max-width: 1240px;
  }
}

/* Layout */

body {
  display: grid;
  /* grid-template-columns: minmax(80px, 1fr) minmax(320px, 4fr); */
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr auto;
  row-gap: 48px;
  column-gap: calc(48px - var(--bs-gutter-x, 0.75rem));
  padding-top: 40px;
}

/* h1 {
  margin-bottom: 40px;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 700;
} */

h1 {
  font: normal normal bold 144px / 1 "Halifax";
}

/* h2 {
  font-family: Halifax;
  font-weight: 700;
  font-size: 78px;
  line-height: 100%;
  letter-spacing: 1%;
} */

h2 {
  font: normal normal bold 78px / 1 "Halifax";
}

/* h3 {
  font-family: Halifax;
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 1%;
} */

h3 {
  font: normal normal bold 64px / 1 "Halifax";
}

/* h4 {
  font-family: Halifax;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 1%;
} */

h4 {
  font: normal normal bold 32px / 1 "Halifax";
}

header {
  grid-column: 1;
  grid-row: 1 / 3;
  padding-left: calc(40px - var(--bs-gutter-x, 0.75rem));
  /* min-width: 480px; */
  max-width: 480px;
}

main {
  grid-column: 2;
  grid-row: 1 / 3;
  padding-right: calc(52px - var(--bs-gutter-x, 0.75rem));
}

footer {
  grid-column: 1 / 3;
  grid-row: 3;
}

button {
  &.button,
  &.link {
    border: none;
    background-color: transparent;
    padding: 0;

    a {
      text-transform: uppercase;
      font: normal normal 500 18px / 25.2px "Halifax";
    }
  }

  &.button {
    a {
      background-color: var(--maincolor);
      color: white;
      padding: 12px 24px;
    }
  }

  &.link {
    a {
      color: var(--maincolor);
      display: flex;

      &::after {
        content: url("assets/images/icons/linkicon.svg");
        margin-left: 16px;
      }
    }
  }
}

/*******************************/

:root {
  --red: #e7000e;
  --dark-red: #9a0e16;
  --blue: #2a2a3c;
  --blue-light: #636386;

  --green: #186419;

  --maincolor: #009ca2;
  --maincolor-transparent: #009ca233;

  --text: #555756;

  --icon-size: 40px;
  --header-height: 66px;
}

html {
  margin: 0;
  position: relative;
  scrollbar-width: thin;
}

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

video {
  max-width: 100%;
}

form.cost-estimate .form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

form.cost-estimate {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form input#hint {
  position: absolute;
  opacity: 0;
  height: 0;
  padding: 0;
}

div#cost-estimate-message {
  margin-top: 20px;
  color: white;
}

.form-wrap .group {
  display: flex;
  flex-direction: column;
  width: calc(50% - 10px);
}
.form-wrap .group div {
  position: relative;
}
img.input-icon {
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  height: fit-content;
  margin: auto;
}
.form-wrap .group.full {
  width: 100%;
}

.form-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 13px;
  align-items: end;
  margin-bottom: 13px;
}

form button[type="submit"],
form input[type="submit"] {
  background-color: white;
  padding: 16px 43px;
  border: 0px;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--maincolor);
  font-weight: 500;
}

form input,
form select {
  padding: 19px 16px;
  background-color: #f1f1f11a;
  border: 0px;
  color: rgb(255, 255, 255, 0.4);
  width: 100%;
}

form select option {
  color: #2a2a3c;
}
form button[type="submit"] {
  width: fit-content;
}

form select {
  color: rgb(255, 255, 255, 0.4);
}

input::placeholder,
textarea::placeholder {
  color: white;
  opacity: 0.4;
}

form span.first {
  color: white;
  margin-bottom: 10px;
}

.newsletter label {
  color: white;
  margin-bottom: 10px;
}

.newsletter form input {
  padding: 19px 16px;
  background-color: #f1f1f11a;
  border: 0px;
  color: white;
  max-width: 100%;
  min-width: 360px;
}

.newsletter form input::placeholder {
  color: #ffffff80;
}

a {
  text-decoration: none;
  color: var(--text);

  &.download-link {
    display: flex;
    color: var(--maincolor);
    text-decoration: underline;

    &:hover {
      color: var(--maincolor);
      text-decoration: none;
    }

    &::before {
      border-radius: 0 !important;

      content: "" !important;
      color: var(--maincolor);

      margin-right: 8px;
      opacity: 1 !important;
      position: relative !important;
      right: 0 !important;
      z-index: 1 !important;

      width: 18px;
      height: 18px;

      background-color: var(--maincolor);
      -webkit-mask-image: url("assets/images/icons/pdf.svg");
      mask-image: url("assets/images/icons/pdf.svg");
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-size: contain;
      mask-size: contain;
    }
  }
}

a:hover {
  color: initial;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0px;
  color: var(--text);
}

section {
  margin-top: 40px;
  margin-bottom: 40px;
}

section:first-of-type {
  margin-top: 0px;
}

.wrapper {
  gap: 40px;
  display: grid;
}

a button {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
  color: #ffffff;
  background-color: var(--maincolor);
  padding: 12px 24px;
  border: 0px;
}

body {
  font-family: "Halifax";
  font-size: 16px;
  line-height: 19.2px;
  background-color: #f1f1f1;
  font-weight: 400;
}

/* cf7 */
input {
  accent-color: white;
}

section .wpcf7-not-valid-tip {
  color: white;
  padding-top: 5px;
}

.wpcf7-form-control-wrap span.wpcf7-list-item {
  margin: 0;
}

section.contact .wpcf7-list-item label,
section .wpcf7-list-item label {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

form .wpcf7-list-item {
  margin-left: 0;
}

section .wpcf7-list-item input[type="checkbox"] {
  padding: 0 !important;
  width: fit-content !important;
  min-width: unset;
}

header .wrapper {
  gap: 0px;
}

header .logo {
  margin-bottom: 40px;
}

header img {
  padding: 48px;
  background-color: white;
}

header .header-menu {
  background-color: white;
  padding: 80px;
}

header .header-menu ul {
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  list-style: none;
  margin-bottom: 0;
}

header .header-menu ul a {
  font-weight: 500;
  font-size: 24px;
  line-height: 33.6px;
  letter-spacing: 0.01em;
  color: var(--text);
}

footer {
  background-color: white;
  padding: 120px 0px 32px 0px;
}

.footer-container {
  display: grid;
  grid-template-columns: auto auto auto auto;
  padding-left: 120px;
  padding-right: 120px;
  column-gap: 212px;
  row-gap: 138px;
}

footer .row {
  display: flex;
  flex-direction: column;
}

footer .first-row img {
  width: 164px;
  object-fit: cover;
  margin-bottom: 40px;
}

footer ul.nav-menu {
  list-style: none;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

footer ul.nav-menu a {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
}

footer .icon-container {
  display: flex;
  gap: 16px;
}

footer .icon-container svg {
  height: 44px;
  width: 44px;
  object-fit: contain;
}
footer .icon-container svg rect {
  fill: var(--maincolor);
}

footer .bottom-info {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-column: 1 / -1;

  nav {
    margin: auto 0;

    .nav-menu {
      flex-direction: row !important;
      gap: 0;
      margin-bottom: 0;

      li {
        width: fit-content;

        &:not(:last-child) {
          &::after {
            content: "|";
            margin: 0 15px;
          }
        }
      }
    }
  }
}

footer .bottom-info p {
  font-family: "Halifax";
  font-weight: 700;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
  /* text-align: end; */
  /* display: flex; */
  /* align-self: center; */
  /* justify-self: end; */
  text-transform: uppercase;

  margin: auto 0 auto auto;
}

footer .location {
  display: flex;
  flex-direction: column;
}

footer .location p.standort {
  font-family: "Halifax";
  font-weight: 700;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
  color: var(--maincolor);
  margin-bottom: 16px;
  text-transform: uppercase;
}

footer .location p,
footer .location p a {
  font-weight: 400;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
  color: #565655;
}

footer .place-zip {
  display: flex;
  gap: 4px;
}

section.text-template {
  padding: 80px;
  background: white;
}

section.text-template a {
  color: var(--maincolor);
  font-weight: 500;
}

section.text-template p {
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

section.text-template p:last-of-type {
  margin-bottom: 0;
}

section.text-template.text-404 h1 {
  margin-bottom: 30px;
}

.wp-block-heading {
  margin-bottom: 15px;
}

h2.wp-block-heading {
  font-size: 32px !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 100%;
}

h3.wp-block-heading {
  font-size: 20px !important;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.01em;
  margin-bottom: 13px;
}

ul + .wp-block-heading,
ol + .wp-block-heading,
p + .wp-block-heading {
  margin-top: 30px;
}

section.hero {
  position: relative;
  z-index: 1;
  margin-top: 0px;
}

section.hero .hero-image img {
  height: 840px;
  object-fit: cover;
  width: 100%;
}

section.hero .hero-content h2 {
  font-weight: 700;
  font-size: 78px;
  line-height: 78px;
  letter-spacing: 0.01em;
  padding: 64px;
  color: white;
  background-color: var(--maincolor);
  font-family: "Halifax";
  font-weight: 700;
}

section.hero .hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 50%;
  clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 80px, 100% 100%, 0 100%);
}

section.text-picture {
  margin-top: 40px;
  margin-bottom: 40px;
}

section.text-picture .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

section.text-picture .wrapper .image img {
  object-fit: cover;
  width: 100%;
}

section.text-picture .wrapper .text h4 {
  font-family: "Halifax";
  font-weight: 700;
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

section.text-picture .wrapper .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
  margin-bottom: 36px;
}

section.text-picture .wrapper .text {
  padding: 80px 54px;
  background-color: white;
}

section.title-subtitle .wrapper {
  display: flex;
  flex-direction: column;
  padding: 80px;
  align-items: center;
  gap: 16px;
  background-color: white;
}

section.title-subtitle .wrapper p {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--maincolor);
}

section.title-subtitle .wrapper h3 {
  font-family: "Halifax";
  font-weight: 700;
  font-weight: 700;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--text);
}

section.title-subtitle .wrapper h1 {
  font-family: "Halifax";
  font-weight: 700 !important;
  font-size: 64px !important;
  line-height: 64px !important;
  letter-spacing: 0.01em !important;
  text-align: center;
  color: var(--text);

  &:has(+ p, + a) {
    margin-bottom: 16px;
  }
}

section.title-subtitle .wrapper h3 + p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--text);
  margin-bottom: 32px;
  text-transform: none;
  max-width: 50%;
}

section.title-subtitle .wrapper h1 + p {
  padding-right: 0px !important;
}

section.title-subtitle input {
  padding: 16px;
  background-color: #f4f4f4;
  border: 0px;
  color: #94949466;
  width: 100%;
}

section.title-subtitle input::placeholder {
  color: #94949466;
}

section.title-subtitle form {
  width: 100%;
  max-width: 380px;
}

section.title-subtitle .wrapper h1 + p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--text);
  text-transform: none;
  max-width: 50%;
}

section.three-boxes .wrapper {
  grid-template-columns: 1fr 1fr;
}

section.three-boxes .content-box:not(.right) {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 80px;
}

section.three-boxes .content-box.left {
  background-color: var(--maincolor);
  clip-path: polygon(0 0, calc(100% - 120px) 0, 100% 120px, 100% 100%, 0 100%);
}

section.three-boxes .content-box.left h3 {
  color: #ffffff;
}

section.three-boxes h3 {
  font-family: "Halifax";
  font-weight: 700;
  font-size: 144px;
  line-height: 144px;
  letter-spacing: 0.01em;
  color: var(--text);
}

section.three-boxes .content-box.left .content_box_text {
  color: white;
  padding-right: 63px;
}

section.three-boxes .content-box.left .content_box_text p {
  color: white;
}

section.three-boxes .content_box_text {
  font-weight: 400;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
  color: var(--text);
}

section.three-boxes .content-box.right {
  display: flex;
  gap: 40px;
  flex-direction: column;
}

section.three-boxes .content-box.right .content_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px;
  background-color: white;
  gap: 48px;
}

section.team .team-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 40px;
}

section.team .team-wrapper .team-image img {
  object-fit: cover;
  width: 100%;
}

section.team .team-wrapper .team-content {
  padding: 32px 24px;
  background-color: var(--maincolor-transparent);
}

section.team .team-wrapper .team-content h4 {
  font-family: "Halifax";
  font-weight: 700;
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  color: var(--text);
}

section.team .team-wrapper .team-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
  color: var(--text);
}

section.team .team-wrapper .team-content p.position {
  margin-bottom: 16px;
}

section.team .team-wrapper .team-content p.description {
  margin-bottom: 24px;
}

section.team .team-wrapper .team-content p.contact + p.contact {
  margin-top: 12px;
}

section.team .team-wrapper .team-content p.contact {
  display: flex;
  gap: 17px;
  align-items: center;
}

section.team {
  .team-wrapper {
    .team-member {
      display: flex;
      flex-direction: column;

      > .team-image + .team-content {
        height: 100%;
      }

      .team-content {
        margin-top: auto;
      }
    }
  }
}

section.newsletter {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 96px 105px;
  align-items: center;
  clip-path: polygon(0 0, calc(100% - 120px) 0, 100% 120px, 100% 100%, 0 100%);
  background-color: var(--maincolor);
}

section.newsletter .text {
  max-width: 1100px;
}

section.newsletter .text h3 {
  font-family: "Halifax";
  font-weight: 700;
  font-weight: 700;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}

section.newsletter .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #ffffff80;
}

section.faq .faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

section.faq .faq-wrapper .faq-item {
  background-color: white;
  padding: 20px 48px;
}

section.faq .faq-wrapper .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section.faq .faq-wrapper .faq-question span {
  font-family: "Halifax";
  font-weight: 700;
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.01em;
  color: var(--text);
}

.faq:not(.trashart) img.minus {
  display: none;
}

.faq-answer {
  display: none;
}

.faq-item:not(.active) {
  cursor: pointer;
}

section.faq .faq-answer p {
  margin-top: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22.4px;
  letter-spacing: 0.01em;
}

section.testimonials {
  /* display: none; */
}

section.map {
  background-color: white;
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

section.map .map-text {
  margin-bottom: 80px;
}

section.map .map-top {
  p {
    &.subtitle {
      text-transform: uppercase;
      color: var(--maincolor);
    }

    font-size: 18px;
    line-height: 25.2px;

    &:not(:last-child) {
      margin-bottom: 16px;
    }
  }

  h1,
  h2,
  h3,
  h4 {
    &:has(+ p, + a) {
      color: var(--text);
      margin-bottom: 15px;
    }
  }
}

section.map .map-top p {
  /* letter-spacing: 0.01em; */
}

section.map .map-top h3 {
  font-family: "Halifax";
  font-weight: 700;
  font-weight: 700;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: 0.01em;
}

section.map .map-top h2 + p,
section.map .map-top h3 + p,
section.map .map-top h4 + p {
  /* margin-top: 15px; */
  /* text-transform: none; */
  /* color: var(--text); */
}

section.map .map-top ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

section.map .map-top ul li {
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
  color: var(--text);
}

section.map .map-top h3 + ul,
section.map .map-top h2 + ul,
section.map .map-top h4 + ul {
  margin-top: 15px;
  text-transform: none;
  color: var(--text);
}

section.map .map-top ul + h2,
section.map .map-top ul + h3,
section.map .map-top ul + h4 {
  margin-top: 20px;
}

section.map .map-top h3 + p + h3,
section.map .map-top h2 + p + h2,
section.map .map-top h4 + p + h4 {
  margin-top: 20px;
}

section.services {
  &:not(.block) {
    .services-bottom {
      .services-wrapper {
        .service-item {
          &.img_right {
            direction: rtl;

            .service-description {
              direction: ltr;
            }
          }
        }
      }
    }
  }
}

section.services {
  background-color: white;
  padding: 80px 40px;
}

section.services .services-top {
  margin-bottom: 64px;

  .subtitle {
    margin-bottom: 16px;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 25.2px;
    letter-spacing: 0.01em;
    text-align: center;
    color: var(--maincolor);
  }

  h1,
  h2,
  h3,
  h4 {
    text-align: center;

    &:has(+ p) {
      margin-bottom: 32px;
    }
  }

  p:not(:last-child) {
    margin-bottom: 22px;
  }
}

section.services .services-top p {
  /* font-family: Halifax; */
  /* font-weight: 400; */
  /* font-size: 18px; */
  /* line-height: 140%; */
  /* letter-spacing: 1%; */
  /* text-align: center; */
  /* color: var(--text); */
  /* text-transform: none; */
  font: normal normal normal 18px / 25.2px "Halifax";
}

section.services .services-top h2 + p {
}

section.services .services-top h3 + p {
  /* font-family: Halifax;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1%;
  text-align: center;
  color: var(--text);
  margin-top: 32px;
  text-transform: none; */
}

section.services .services-top h2 {
  /* font-family: Halifax;
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 1%;
  text-align: center; */
  /* color: var(--text); */
}

section.services .services-top h3 {
  /* font-family: "Halifax";
  font-weight: 700;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: 0.01em;
  text-align: center; */
}

section.services .services-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

section.services .services-wrapper .service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

section.services .services-wrapper .service-item img {
  object-fit: cover;
  height: 100%;
}

section.services .services-wrapper .service-item .service-description {
  padding: 0px 40px;
  align-content: center;
}

section.services .services-wrapper .service-item .service-description p {
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
  margin-bottom: 30px;
  color: #565655cc;
}

section.services .services-wrapper .service-item .service-description p + p {
  margin-bottom: 22px;
}

section.services .services-wrapper .service-item .service-description h3 {
  font-family: "Halifax";
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}

section.services .services-wrapper .service-item .service-description h3 + p {
  color: #565655cc;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
  text-transform: none;
}

section.services .services-wrapper .service-item .service-description h4,
section.services
  .services-wrapper
  .service-item
  .service-description
  h4
  strong {
  font-family: "Halifax";
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

section.services .services-wrapper .service-item .service-description h4 + p {
  color: #565655cc;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
  text-transform: none;
}

section.services .services-wrapper .service-item .service-description p a {
  color: #565655cc;
}

section.services .services-wrapper .service-item .service-description a.link {
  color: var(--maincolor);
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
  margin-bottom: 0px;
  text-transform: uppercase;

  background-image: url("assets/images/icons/linkicon.svg");
  background-position: center right;
  padding-right: 27px;
  background-repeat: no-repeat;
}

section.services .services-wrapper .service-item .service-description a.button {
  background-color: var(--maincolor);
  color: white;
  font: normal normal 500 18px / 25px "Halifax";
  text-transform: uppercase;
  padding: 12px 24px;
}

section.services .services-wrapper .service-item .service-description p:has(a) {
  /* margin-bottom: 0px; */
}

section.services .services-wrapper .service-item .service-description p a {
}

section.services .services-wrapper .service-item .service-description ul li {
  color: #565655cc;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
}

section.services .services-wrapper .service-item .service-description ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.intro-p strong {
  font-family: Halifax;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1%;
  text-transform: uppercase;
  color: var(--text);
}

section.benefits {
  background-color: white;
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  gap: 102px;
}

section.benefits .top-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

section.benefits .top-section p {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--maincolor);
}

section.benefits .top-section h3 {
  font-family: "Halifax";
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-align: center;
}

section.benefits .bottom-section .benefits-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

section.benefits .bottom-section .benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 37px 32px;
  background-color: #f1f1f1;
  position: relative;
}

section.benefits .benefit-icon {
  position: absolute;
  top: -46px;
}

section.benefits .benefit-icon img {
  border-radius: 50%;
  background-color: white;
  padding: 10px;
}

section.benefits .benefit-description {
  padding-top: 28px;
}

section.services.block .services-wrapper {
  /* grid-template-columns: 1fr 1fr; */
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
}

section.services.block .services-wrapper .service-item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 12px);
}

section.services.block .services-wrapper .service-item .service-description {
  padding: 32px 32px;
}

section.services.block .services-wrapper .service-item .service-description h3 {
  font-family: "Halifax";
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
  word-break: break-word;
}

section.services.block
  .services-wrapper
  .service-item
  .service-description
  h3
  + p {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #565655cc;
  margin-bottom: 32px;
  text-transform: none;
}

section.text-left_right .wrapper {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

section.text-left_right .top {
  background-color: #fffefe;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 56px;
}

section.text-left_right .top p {
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--maincolor);
}

section.text-left_right .top h3 {
  font-family: Halifax;
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 1%;
  text-align: center;
  color: var(--text);
}

section.text-left_right .top h3 + p,
section.text-left_right .top h1 + p,
section.text-left_right .top h4 + p {
  font-family: Halifax;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1%;
  text-align: center;
  color: var(--text);
  margin-top: 32px;
  text-transform: none;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

section.text-left_right .wrapper .left,
section.text-left_right .wrapper .right {
  padding: 146px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section.text-left_right .block-row {
  display: flex;
}

section.text-left_right .wrapper .left {
  background-color: var(--maincolor);
}

section.text-left_right .wrapper .right {
  background-color: white;
}

section.text-left_right .wrapper .right h4,
section.text-left_right .wrapper .left h4 {
  font-family: "Halifax";
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0.01em;
  margin-bottom: 40px;
}

section.text-left_right .wrapper .right h4 + p,
section.text-left_right .wrapper .left h4 + p {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  margin-bottom: 52px;
}

section.text-left_right .wrapper .right p a,
section.text-left_right .wrapper .left p a {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  padding: 12px 24px;
}

section.text-left_right .wrapper .left > * {
  color: white;
}

section.text-left_right .wrapper .left p a {
  color: var(--text);
  background-color: white;
}

section.text-left_right .wrapper .right > * {
  color: var(--text);
}

section.text-left_right .wrapper .right p a {
  color: white;
  background-color: var(--maincolor);
}

body section.text-left_right .wrapper .left:has(img) {
  padding: 0px;
}

body section.text-left_right .wrapper .left:has(img) p {
  width: 100%;
  height: 100%;
}

section.text-left_right .wrapper .left:has(img) img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

body section.text-left_right .wrapper .right:has(img) {
  padding: 0px;
}

body section.text-left_right .wrapper .right:has(img) p {
  width: 100%;
  height: 100%;
}

section.text-left_right .wrapper .right:has(img) img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.block-row + .block-row {
  margin-top: 40px;
}

section.quote {
  background-color: white;
  padding: 96px 215px;
}

section.quote .wrapper {
  grid-template-columns: 1fr 1fr;
  gap: 0px;
}

section.quote .quote-left blockquote {
  font-family: "Halifax";
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  background-image: url("assets/images/icons/quote.svg");
  background-repeat: no-repeat;
  padding-left: 35px;
  margin-left: -35px;
  padding-top: 18px;
  margin-top: -18px;
  color: var(--text);
}

section.quote .quote-left p.quote-name {
  font-size: 18px !important;
  line-height: 140% !important;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--maincolor);
  margin-bottom: 2px;
}

section.quote .quote-left p.quote-position {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #565655cc;
}

section.quote .quote-right p {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #565655cc;
  margin-top: 11px;
  padding-left: 72px;
}

section.text-picture.boxes_without_margin .wrapper {
  gap: 0px;
}

section.text-picture .wrapper img {
  height: 100%;
  object-fit: cover;
}

section.text-picture.boxes_without_margin .wrapper .text {
  padding: 138px 72px;
  background-color: var(--maincolor);
  display: flex;
  flex-direction: column;
}

section.text-picture.boxes_without_margin .wrapper .text h3 {
  font-family: "Halifax";
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0.01em;
  margin-bottom: 40px;
  color: white;
}

section.text-picture.boxes_without_margin .wrapper .text h3 + p {
  margin-bottom: 52px;
  color: white;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
}

section.text-picture.boxes_without_margin .wrapper .text p a {
  background-color: white;
  color: var(--text);
  margin: 0px;
  padding: 12px 24px;
}

section.text-picture.boxes_without_margin .wrapper .text p:has(a) {
  margin: 0px;
}

section.text-picture:not(:has(img)) .wrapper {
  grid-template-columns: 1fr;
}

section.text-picture:not(:has(img)) .wrapper h2,
section.text-picture:not(:has(img)) .wrapper h3,
section.text-picture:not(:has(img)) .wrapper h4 {
  margin-bottom: 25px;
}

body section.text-picture:not(:has(img)) .wrapper .text p {
  margin-bottom: 22px;
}

section.text-picture:not(:has(img)) .wrapper ul {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

section.text-picture:not(:has(img)) .wrapper ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: var(--text);
}

section.text-picture:not(:has(img)) .wrapper ul + h3,
section.text-picture:not(:has(img)) .wrapper ul + h2,
section.text-picture:not(:has(img)) .wrapper p + h3,
section.text-picture:not(:has(img)) .wrapper p + h2,
section.text-picture:not(:has(img)) .wrapper ul + h4,
section.text-picture:not(:has(img)) .wrapper p + h4 {
  margin-top: 30px;
}

section.facts {
  padding: 80px;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 54px;
}

section.facts .top-section p.facts-subtitle {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
  color: var(--maincolor);
  margin-bottom: 16px;
}

section.facts .top-section h3 {
  font-family: "Halifax";
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 24px;
}

section.facts .top-section p {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #565655cc;
}

.facts-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.fact-item {
  padding: 48px 32px 62px 32px;
  border: 1px solid #56565580;
}

.fact-item h3 {
  margin-bottom: 16px;
  font-family: "Halifax";
  font-weight: 700;
  font-size: 56px;
  line-height: 66px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--maincolor);
}

.fact-item p {
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.fact-item p + p {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #56565580;
  text-transform: none;
  margin-bottom: 0px;
}

section.contact {
  padding: 80px;
  background-color: var(--maincolor);
  clip-path: polygon(0 0, calc(100% - 100px) 0, 100% 100px, 100% 100%, 0 100%);
}

section.contact .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-left {
  width: calc(40% - 25px);
}

.contact-right {
  width: calc(60% - 25px);
}

section.contact .contact-right .contact-fields br {
  display: none;
}

section.contact .contact-left .contact-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

section.contact .contact-left .contact-text p {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
}

section.contact .contact-left .contact-text h4 {
  font-family: "Halifax";
  font-weight: 700;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: white;
}

section.contact .contact-right .contact-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section.contact .contact-right .contact-fields p span.first {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: white;
}

section.contact .contact-right .contact-fields p span input {
  padding: 16px;
  background-color: #f1f1f11a;
  border: 0px;
  color: white;
  width: 100%;
}

section.contact input::placeholder,
section.contact textarea::placeholder {
  color: white;
}

.wpcf7-form-control-wrap {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: white;
}

.wpcf7-form-control-wrap input::placeholder,
.wpcf7-form-control-wrap textarea::placeholder {
  opacity: 0.4;
}

.wpcf7-form-control-wrap:focus {
  opacity: 100%;
}

section.contact textarea {
  background-color: #f1f1f11a;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: white;
  padding: 16px;
  border: 0px;
  width: 100%;
  min-height: 50px;
  height: 120px;
}

section.contact label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.wpcf7-form-control.wpcf7-submit {
  background-color: white;
  padding: 12px 43px;
  border: 0px;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--maincolor);
  font-weight: 500;
  width: fit-content;
}

.wpcf7-response-output {
  color: white;
}

/* .faq-answer {
  flex-wrap: wrap;   
}

.faq-answer > :first-child {
  flex: 0 0 100%;
}

.faq-answer > :nth-child(2),
.faq-answer > :nth-child(3) {
  flex: 1 1 50%;
} */
section.search-results {
  padding: 80px;
  background: white;
}

section.search-results ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 70px;
}

section.search-results h2 {
  margin-bottom: 10px;
}

section.search-results a {
  color: var(--text);
  font-weight: 700;
  font-weight: 32px;
  letter-spacing: 0.01em;
  line-height: 100%;
}

section.search-results h1 {
  margin-bottom: 40px;
}

section.trashart .faq-item .trash-search {
  display: none;
}

section.trashart .faq-item.active .trash-search {
  display: flex;
}

section.trashart .top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

section.trashart {
  .faq-item {
    &.active {
      .content {
        display: block;
      }
    }

    .content {
      display: none;
    }
  }
}

.faq-toggle {
  cursor: pointer;
}

main section.trashart .faq-wrapper .faq-question {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background-color: #fff;
}

.faq-item,
.faq-question,
.faq-question span,
.faq-question p,
.faq-question input,
.faq-answer,
.faq-answer > div {
  transition: all 0.3s;
}

li.fade-in {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: list-item;
}

li.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: none;
}

section.trashart .faq-item.active .trash-search {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

main section.trashart .faq-wrapper .faq-item.active {
  padding: 0px;
}

main section.trashart .faq-wrapper .faq-item.active .faq-question {
  padding: 48px;
  background-color: var(--maincolor);
}

main section.trashart .faq-wrapper .faq-item.active .faq-question span {
  font-family: "Halifax";
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: white;
}

main section.trashart .faq-wrapper .faq-item.active .faq-question p {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: white;
}

main section.trashart .faq-wrapper .faq-item.active .faq-question input {
  padding: 16px;
  background-color: #f1f1f11a;
  color: white;
  border: 0px;
}

section.trashart .faq-item .faq-answer > div {
  padding: 48px;
  flex: 1 1 50%;
}

section.trashart .faq-item .faq-answer > div h3 {
  font-family: "Halifax";
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0.01em;
}

section.trashart .faq-item .faq-answer > div ul li {
  font-family: Halifax;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: var(--text);
}

section.trashart .faq-item .faq-answer > div ul {
  margin-top: 32px;
}

section.trashart .faq-item .faq-answer .left {
  background-color: var(--maincolor) 33;
}

section.trashart .faq-item .faq-answer .right {
  background-color: #f7dddd;
}

.current-menu-item a {
  color: var(--maincolor) !important;
}

section.testimonials {
  padding: 80px 0px;
  background-color: white;
}

section.testimonials .testimonials_top {
  padding: 0px 80px;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}

section.testimonials .testimonials_top p {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
  padding-top: 32px;
  background-image: url("assets/images/icons/fivestar.svg");
  background-position: top;
  background-repeat: no-repeat;
}

section.testimonials .testimonials_top h3 {
  font-family: "Halifax";
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-align: center;
}

.testimonial_stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: 20px;
}

.testimonial_item {
  padding: 55px 40px;
  background-color: #f1f1f1;
  margin: 0px 8px;
}

.testimonial_text {
  margin-bottom: 120px;
}

.testimonial_text > * {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
}

.testimonial_author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.testimonial_author p {
  font-family: Halifax;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--text);
}

.testimonial_author span {
  font-family: Halifax;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--text);
}

.testimonials_bottom button {
  position: absolute;
  top: calc(50% - 38px);
}

.slick-prev {
  left: 21px;
  color: transparent;
  border: none;
  background: none;
}

.slick-next {
  right: 21px;
  color: transparent;
  border: none;
  background: none;
}

.slick-prev::before,
.slick-next::before {
  display: none;
}

.slick-prev::after,
.slick-next::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 56px;
  width: 56px;
}

.slick-prev::after {
  background-image: url("assets/images/icons/sliderl.svg");
}

.slick-next::after {
  background-image: url("assets/images/icons/sliderr.svg");
}

a {
  display: inline-block;
  width: fit-content;
}

/* blog page */
section.blog-content {
  background: white;
  padding: 32px 32px 40px 32px;
}

section.blog-content .post-card {
  color: var(--text);
  height: 100%;
}

section.blog-content .post-card.additional-post .thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 394 / 240;
  object-fit: cover;
}

section.blog-content .headline {
  display: inline-block;
  width: 100%;
  margin-bottom: 32px;
}

section.blog-content .headline h2 {
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 700;
}

section.blog-content .row,
section.blog-content .row > * {
  --bs-gutter-x: 30px;
}

section.blog-content .post-card .thumbnail + .date {
  margin-top: 23px;
}

section.blog-content .left-post img {
  width: 100%;
  height: auto;
  aspect-ratio: 608 / 224;
  object-fit: cover;
}

section.blog-content .right-post {
  display: flex;
  gap: 30px;
}

section.blog-content .right-post img {
  width: 100%;
  height: auto;
  aspect-ratio: 320 / 200;
  object-fit: cover;
}

section.blog-content .right-posts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

section.blog-content .date {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 10px;
}

section.blog-content a:hover .date {
  color: var(--text);
}

section.blog-content h3 {
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  padding-right: 16px;
}

section.blog-content h3::after {
  content: url("assets/images/icons/arrow.svg");
  height: 14px;
  width: 14px;
  position: absolute;
  right: 0;
  top: 0;
}

section.blog-content .excerpt {
  line-height: 24px;
  letter-spacing: 0;
}

section.blog-content .post-card.left-post,
section.blog-content .textcontent {
  display: flex;
  flex-direction: column;
}

section.blog-content .tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.right-posts h3 {
  margin-top: -2px;
  margin-bottom: 12px !important;
}

section.blog-content .tags span {
  /* background-color: var(--maincolor) 14; */
  /* background-color: var(--maincolor-transparent); */
  background-color: #009ca214;
  border-radius: 16px;
  color: var(--maincolor);
  padding: 2px 9px;
}

section.blog-content .additional-posts {
  margin-top: 70px;
}

section.blog-content .latest-posts .row,
section.blog-content .additional-posts .row {
  row-gap: 30px;
}

section.blog-content .pagination {
  border-top: 1px solid #f1f1f1;
  padding-top: 15px;
  margin-top: 100px;
  display: block;
}

section.blog-content .pagination-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  --webkit-justify-content: space-between;
  align-items: center;
  width: 100%;
}

section.blog-content .pagination-numbers {
  display: flex;
  flex-wrap: wrap;
}

section.blog-content .page-numbers {
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: var(--text);
}

section.blog-content .page-numbers.current,
section.blog-content .page-numbers:hover {
  color: var(--maincolor);
  background-color: var(--maincolor) 14;
}

.pagination-prev,
.pagination-next,
.pagination-prev a:hover,
.pagination-next a:hover {
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  color: var(--text);
}

.pagination-prev.disabled,
.pagination-next.disabled {
  opacity: 0.5;
}

.mobile-next-prev {
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  --webkit-justify-content: space-between;
  margin-top: 15px;
}

section.blog-content .post-card a {
  width: 100%;
}

section.blog-content .left-post h3 {
  margin-bottom: 15px;
  margin-top: 11px;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 1%;
}

.testimonials_bottom {
  position: relative;
}

section.blog-content .left-post img {
  height: 224px;
}

section.blog-content .right-post img {
  height: 200px;
}

.additional-posts .row {
  row-gap: 84px !important;
}

.additional-posts {
  margin-bottom: -36px;
}

.additional-posts .tags {
  margin-top: 16px !important;
}

section.blog-content .additional-posts h3 {
  margin-top: 11px;
  margin-bottom: 15px;
}

.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 72px;
}

.location-info .first-office > span,
.location-info .second-office > span {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1%;
  text-transform: uppercase;
  color: #56565580;
}

.location-info .bottom {
  margin-top: 16px;
  font-family: Halifax;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1%;
  color: var(--text);
  background-image: url("assets/images/icons/maps.svg");
  background-position: top left;
  background-repeat: no-repeat;
}

.location-info .bottom .address {
  padding-left: 36px;
}

.location-info .bottom {
  display: flex;
  gap: 32px;
}

.location-info .bottom .mail {
  display: flex;
  gap: 22px;
}

section.map div#map {
  aspect-ratio: 1216 / 515;
  width: 100%;
  height: auto;
}

.location-info .bottom .mail span {
  font-family: Halifax;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1%;
  color: var(--text);
  text-transform: none;
  padding-left: 40px;
}

.location-info .bottom .mail span:first-of-type {
  background-image: url("assets/images/icons/mails.svg");
  background-position: 0px 5px;
  background-repeat: no-repeat;
}

.location-info .bottom .mail span:nth-of-type(2) {
  background-image: url("assets/images/icons/phones.svg");
  background-position: 0px 2px;
  background-repeat: no-repeat;
}

.benefit-description h4 {
  margin-bottom: 12px;
  font-family: Halifax;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 1%;
  text-align: center;
  color: var(--text);
}

.benefit-description p {
  font-family: Halifax;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1%;
  text-align: center;
  color: #565655cc;
}

section.headline {
  margin-bottom: 0;
}

section.headline + section {
  margin-top: 20px;
}

.short-line {
  color: white;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

section.text-picture.no_boxes {
  background-color: #ffffff;
  padding: 40px 80px;
}

section.text-picture.no_boxes .wrapper {
  display: flex;
  gap: 0px;
}
section.text-picture.no_boxes .wrapper {
  display: flex;
  gap: 0px;
}

section.text-picture.no_boxes .wrapper .text {
  padding: 0px;
}

section.text-picture.no_boxes .wrapper .image {
  padding: 0px;
}

section.text-picture.no_boxes .wrapper div.first.text {
  padding-right: 56px;
}

section.text-picture.no_boxes .wrapper div.text.second {
  padding-left: 56px;
}

html body section.text-picture.no_boxes .wrapper h4 {
  font-family: Halifax;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 1%;
  margin-bottom: 20px;
}

html body section.text-picture.no_boxes .wrapper h4 + p {
  margin-bottom: 0px;
}

html body section.text-picture.no_boxes .wrapper p + ul {
  margin-bottom: 0px;
}

html body section.text-picture.no_boxes .wrapper ul li {
  font-family: Halifax;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1%;
  color: var(--text);
}

html body section.text-picture.no_boxes .wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding-left: 22px;
}

html body section.text-picture.no_boxes .wrapper p a {
  padding: 12px 24px;
  font-family: Halifax;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1%;
  text-transform: uppercase;
  background-color: #009ca2;
  color: white;
}

html footer .bottom-info nav a {
  font-weight: 500;
}

.cookie-statement {
  padding: 80px;
  background-color: white;
  max-width: 100%;
}

.cookie-statement > p:first-child {
  margin-bottom: 30px;
}

html main .cookie-statement p + h2,
html main .cookie-statement div + h2 {
  margin-top: 30px !important;
}

html main .cookie-statement h2 {
  font-size: 32px !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 100%;
  margin-bottom: 15px !important;
  margin-top: 15px !important;
  padding: 0px !important;
}

html main .cookie-statement p {
  font-family: Halifax;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 1%;
  color: var(--text);
}

html main .cookie-statement ul li {
  font-family: Halifax;
  font-weight: 400;
  font-size: 16px !important;
  line-height: 140% !important;
  letter-spacing: 1%;
  color: var(--text);
}

#cmplz-document {
  max-width: unset !important;
}

body.privacy-policy {
  section.text-template {
    h1 {
      font: normal normal bold 78px / 1 "Halifax" !important;
    }

    h2 {
      font: normal normal bold 64px / 1 "Halifax" !important;
    }

    h3 {
      font: normal normal bold 32px / 1 "Halifax" !important;
    }

    h1,
    h2,
    h3,
    h4 {
      &.wp-block-heading {
        margin-top: 32px;
      }
      margin-bottom: 16px;
    }

    p,
    a {
      &:has(+ p, + a, + ul, + ol) {
        margin-bottom: 16px;
      }

      &:not(:has(+ p, + a, + ul, + ol)) {
        margin-bottom: 0;
      }
    }
  }
}

/** Tablet / Laptop **/

@media (min-width: 1600px) and (max-width: 1920px) {
  header .wrapper {
    display: flex;
    flex-direction: column;
  }

  header .wrapper a.logo {
    width: 100%;
  }

  header .wrapper a.logo img {
    width: 100%;
  }

  header .header-menu {
    /* padding: 80px 0px; */
    justify-content: start;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  header .header-menu {
    padding: 48px;
    justify-content: start;
  }

  header .wrapper {
    display: flex;
    flex-direction: column;
  }

  header .wrapper a.logo {
    width: 100%;
  }

  header img {
    padding: 12px;
    width: 100%;
  }

  header .header-menu ul {
    gap: 38px;
  }

  header .header-menu ul a {
    font-size: 22px;
    line-height: 32px;
  }

  section.hero .hero-content {
    max-width: 75%;
  }

  h2 {
    font-size: 74px !important;
  }

  h3 {
    font-size: 60px !important;
  }

  h4 {
    font-size: 30px !important;
  }

  main p {
    font-size: 17px !important;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding-left: calc(40px - var(--bs-gutter-x, 0.75rem));
    padding-right: calc(40px - var(--bs-gutter-x, 0.75rem));
    column-gap: 0px;
    row-gap: 68px;
  }

  footer .row {
    max-width: 100%;
  }

  section.quote {
    padding: 96px 160px;
  }

  section.faq .faq-wrapper .faq-question span {
    font-size: 30px;
  }

  section.trashart .faq-item .faq-answer > div h3 {
    font-size: 30px !important;
  }

  section.blog-content .headline h2 {
    font-size: 32px !important;
  }

  section.blog-content h3 {
    font-size: 22px !important;
  }
}

@media (max-width: 1600px) {
  section.team {
    .team-wrapper {
      grid-template-columns: repeat(2, 1fr);
    }
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  header {
    /* min-width: 370px; */
    max-width: 370px;
  }
}

@media (max-width: 1400px) {
  section.team {
    .team-wrapper {
      /* grid-template-columns: repeat(2, 1fr); */
      /* gap: 32px; */

      padding: 0 24px;
      .team-member {
        padding: 0;
      }
    }
  }
}

@media (max-width: 1200px) {
  html {
    margin: 0px !important;
  }

  p.quote-name {
    margin-top: 47px;
  }

  html #wpadminbar {
    display: none;
  }

  body {
    display: block;
    margin-top: 0px;
    padding-top: 0px;
  }

  header {
    max-width: unset;
  }

  :root {
    --padding-right-phone: 24px;
    --padding-left-phone: 24px;
    --padding-vertical-phone: 32px;
  }

  h1 {
    font-family: "Halifax";
    font-weight: 700;
    font-size: 64px !important;
    line-height: 100% !important;
    letter-spacing: 0.01em;
  }

  h2 {
    font-family: "Halifax";
    font-weight: 700;
    font-weight: 700;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0.01em;
  }

  h3 {
    font-family: "Halifax";
    font-weight: 700;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0.01em;
  }

  h4 {
    font-family: "Halifax";
    font-weight: 700;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0.01em;
  }

  main p {
    font-family: Halifax;
    font-weight: 400;
    font-size: 16px !important;
    line-height: 140% !important;
    letter-spacing: 0.01em;
  }

  main {
    padding: 0px;
  }

  main .wrapper {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  header {
    background-color: white;
    padding: 0px;
  }

  header .container {
    padding: 0px;
    max-width: none;
  }

  header .wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0px 16px 0px 6px;
  }

  header .wrapper a {
    justify-self: start;
  }

  header .wrapper .menu-icon-wrap {
    justify-self: end;
    position: relative;
  }

  header img {
    padding: 9px 0px;
    margin-bottom: 0px;
    max-height: 78px;
  }

  header .logo {
    margin-bottom: 0px;
  }

  main section:first-of-type {
    margin-bottom: 32px !important;
    margin-top: 0px !important;
  }

  main section {
    margin-bottom: 32px !important;
    margin-top: 32px !important;
  }

  a button {
    font-size: 16px;
    line-height: 140%;
  }

  section.mobile-menu {
    margin: 0px;
    position: absolute;
    z-index: 999;
    background-color: white;
    right: 0;
  }

  section.mobile-menu ul {
    padding: 32px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 80vw;
    padding-right: 120px;
  }

  section.mobile-menu ul li {
    list-style: none;
    font-family: "Halifax";
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--text);
  }

  section.hero .hero-image img {
    height: 433px;
  }

  section.hero .hero-content {
    max-width: 100%;
  }

  section.hero .hero-content h2 {
    font-weight: 700;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0.01em;
    padding: 32px;
    padding-right: 50px;
  }

  section.text-picture .wrapper .text {
    padding-left: var(--padding-left-phone);
    padding-right: var(--padding-right-phone);
    padding-top: var(--padding-vertical-phone);
    padding-bottom: var(--padding-vertical-phone);
  }

  section.title-subtitle .wrapper {
    padding: 32px 24px;
    gap: 16px;
  }

  section.three-boxes .content-box.right .content_box,
  section.three-boxes .content-box:not(.right) {
    padding-left: var(--padding-left-phone);
    padding-right: var(--padding-right-phone);
    padding-top: var(--padding-vertical-phone);
    padding-bottom: var(--padding-vertical-phone);
  }

  section.three-boxes .content-box.left {
    background-color: var(--maincolor);
    clip-path: polygon(0 0, calc(100% - 75px) 0, 100% 75px, 100% 100%, 0 100%);
  }

  section.three-boxes h3 {
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0.01em;
  }

  section.three-boxes .content-box.left p {
    color: white;
  }

  section.three-boxes .content-box.left h3 {
    margin-bottom: 48px;
  }

  section.three-boxes .content-box.left h1 {
    margin-bottom: 48px;
  }

  html body section.title-subtitle .wrapper h1 {
    font-size: 32px !important;
    line-height: 100% !important;
    letter-spacing: 1% !important;
  }

  section.title-subtitle .wrapper h3 + p {
    max-width: 100%;
    margin-top: 14px;
  }

  section.title-subtitle .wrapper h1 + p {
    max-width: 100%;
    margin-top: 14px;
  }

  section.contact {
    padding-left: var(--padding-left-phone);
    padding-right: var(--padding-right-phone);
    padding-top: var(--padding-vertical-phone);
    padding-bottom: var(--padding-vertical-phone);
  }

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

  footer {
    padding-top: var(--padding-vertical-phone);
    padding-bottom: var(--padding-vertical-phone);
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding-left: var(--padding-left-phone);
    padding-right: var(--padding-right-phone);
  }

  .team-member {
    padding: 0px 24px;
  }

  section.newsletter {
    padding: 112px 24px;
  }

  section.faq .faq-wrapper {
    padding: 8px 24px;
  }

  section.faq .faq-wrapper .faq-item {
    padding: 24px;
  }

  section.faq .faq-wrapper .faq-question span {
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0.01em;
  }

  section.services {
    padding: 80px 0px;
  }

  section.services .services-top {
    margin-bottom: 48px;
    padding: 0 24px;
  }

  section.services.block .services-wrapper {
    column-gap: 0 !important;
  }

  section.services.block .services-wrapper .service-item {
    width: 50%;
  }

  section.services .services-wrapper .service-item {
    display: flex;
    flex-direction: column;
    padding: 0px 24px;
  }

  section.services .services-wrapper .service-item .service-description {
    padding: 40px 32px;
    background-color: #f1f1f1;
  }

  section.services .services-wrapper .service-item .service-description h4 + p {
    margin-bottom: 25px;
  }

  section.benefits {
    padding-left: 24px;
    padding-right: 24px;
    gap: 76px;
  }

  section.benefits .bottom-section .benefits-wrapper {
    gap: 52px;
  }

  section.benefits .benefit-description h4 {
    margin-bottom: 12px;
  }

  section.services .services-top {
    margin-bottom: 64px;
  }

  section.services.block .services-wrapper {
    grid-template-columns: 1fr;
  }

  section.services.block .services-wrapper .service-item .service-description {
    padding: 32px 24px;
    background-color: var(--maincolor) 14;
  }

  section.services.block
    .services-wrapper
    .service-item
    .service-description
    h3 {
    font-family: Halifax;
    font-weight: 500;
    font-size: 24px !important;
    line-height: 100% !important;
    letter-spacing: 0.01em;
    color: var(--text);
    margin-bottom: 16px;
  }

  section.services .services-wrapper .service-item .service-description p a {
    font-size: 16px;
    line-height: 140%;
  }

  section.text-left_right div.wrapper {
    gap: 0px !important;
  }

  section.text-left_right .wrapper .left,
  section.text-left_right .wrapper .right {
    padding: 104px 24px;
  }

  section.quote {
    padding: 104px 24px 104px 24px;
  }

  section.quote .quote-left blockquote {
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.01em;
    padding-left: 18px;
    margin-left: -18px;
    padding-top: 20px;
    margin-top: -20px;
    margin-bottom: 16px;
    font-weight: 500;
  }

  section.quote .quote-right p {
    padding-left: 0px;
  }

  section.text-picture.boxes_without_margin .wrapper {
    gap: 0px !important;
  }

  section.text-picture.boxes_without_margin .wrapper .text {
    padding: 104px 24px 104px 24px;
  }

  section.facts {
    padding: 80px 24px;
  }

  section.facts .facts-wrapper {
    grid-template-columns: 1fr;
  }

  .fact-item {
    padding: 32px 32px 40px 32px;
  }

  footer .row:not(.first-row) {
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--maincolor) 33;
  }

  footer .first-row {
    display: flex;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--maincolor) 33;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  footer .first-row.row > * {
    width: auto !important;
  }

  footer .first-row img {
    width: 100%;
    margin-bottom: 0px;
    max-height: 88px;
    object-fit: contain;
    margin-top: 2px;
  }

  footer .first-row a:has(img) {
    padding-right: 8px;
  }

  footer .first-row .footer-menu {
    padding-left: 8px;
  }

  footer .first-row ul.nav-menu {
    gap: 0px;
  }

  html footer div.third-row.row {
    padding-bottom: 20px;
    border-bottom: 0px;
  }

  html footer div.fourth-row.row {
    padding-top: 20px;
    border-bottom: 0px;
  }

  footer ul.nav-menu {
    margin-bottom: 0px;
  }

  footer .first-row ul.nav-menu a {
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
  }

  footer .footer-container {
    column-gap: 0px;
    row-gap: 0px;
  }

  footer .bottom-info {
    grid-template-columns: 1fr;
    gap: 40px;

    nav {
      .nav-menu {
        flex-direction: column !important;

        li {
          &:not(:last-child) {
            margin-bottom: 12px;

            &::after {
              content: unset;
            }
          }
        }
      }
    }
  }

  footer .icon-container {
    gap: 8px;
  }

  footer .bottom-info p {
    /* justify-self: left; */
    margin: 0;
  }

  footer .location p,
  footer .location p a {
    color: var(--text);
    font-size: 16px;
    line-height: 140%;
  }

  section.services .services-top h3 {
    font-family: Halifax;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 1%;
    text-align: center;
    padding: 0px 24px;
  }

  section.testimonials .testimonials_top {
    padding: 0px 24px;
  }

  section.testimonials .testimonials_top h3 {
    font-family: Halifax;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 1%;
    text-align: center;
  }

  section.map {
    padding: 56px 24px;
  }

  section.benefits .benefit-description h4 {
    font-family: Halifax;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 1%;
    text-align: center;
  }

  section.map .map-top h3 {
    font-family: Halifax;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 1%;
  }

  section.benefits .top-section p {
    font-family: Halifax;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 1%;
    text-align: center;
    text-transform: uppercase;
  }

  section.benefits .top-section h3 {
    font-family: Halifax;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 1%;
    text-align: center;
    color: var(--text);
  }

  section.services .services-wrapper .service-item .service-description h4 {
    font-family: Halifax;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 1%;
  }
  section.headline {
    padding: 0 24px;
  }

  .text-picture .wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  /* 2. Default (mobile): Text zuerst */
  .text-picture .text {
    order: 0;
  }
  .text-picture .image {
    order: 1;
  }

  html main .cookie-statement h2 {
    font-size: 24px !important;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 100%;
    margin-bottom: 15px;
    padding: 0px;
  }

  h2.wp-block-heading {
    font-size: 24px !important;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 100%;
  }

  h3.wp-block-heading {
    font-size: 18px !important;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.01em;
    margin-bottom: 13px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  section.title-subtitle .wrapper h1 + p {
    max-width: 100%;
    margin-top: 0px;
  }
}

@media (max-width: 992px) {
  section.trashart .faq-item .faq-answer > div {
    flex: none;
    padding: 24px;
  }

  section.trashart .faq-item .faq-answer {
    flex-direction: column;
  }

  main section.trashart .faq-item .faq-answer > div h3 {
    font-size: 24px !important;
  }

  section.trashart .faq-item .faq-answer > div ul {
    margin-top: 16px;
    padding-left: 20px;
    margin-bottom: 0px;
  }

  main section.trashart .faq-wrapper .faq-item .faq-question {
    padding: 24px 24px;
  }

  section.blog-content .latest-posts .tags {
    margin-top: 16px;
  }

  section.blog-content .additional-posts h3 {
    margin-top: 8px;
    margin-bottom: 12px;
  }

  section.blog-content .left-post h3 {
    margin-top: -2px;
    margin-bottom: 12px;
  }

  section.contact .wrapper {
    flex-direction: column;
  }

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

  section.map {
    .location-info {
      .bottom {
        flex-direction: column;

        .mail {
          flex-direction: column;
        }
      }
    }
  }

  form.cost-estimate .form-wrap {
    flex-direction: column;
    gap: 18px;
  }
  .form-wrap .group {
    width: 100%;
  }
  .contact-right,
  .contact-left {
    width: 100%;
  }
  .short-line {
    display: none;
  }

  section.text-left_right {
    .top {
      padding: 20px;
    }

    .image-rechts {
      flex-direction: column-reverse;
    }
  }

  section.text-picture.no_boxes {
    padding: 0;

    .wrapper {
      &:has(.text + .image) {
        flex-direction: column-reverse;
      }

      .text {
        padding: 20px;
      }
    }
  }
}

/** Phone **/

@media (max-width: 768px) {
  section.blog-content .headline h2 {
    font-size: 24px;
    line-height: 100%;
    font-weight: 500;
  }

  section.blog-content h3 {
    font-size: 18px;
    line-height: 100%;
  }

  section.blog-content .additional-posts .row {
    row-gap: 45px;
  }

  section.blog-content .latest-posts .row {
    row-gap: 48px;
  }

  section.blog-content .right-post {
    flex-direction: column;
  }

  section.blog-content .right-posts {
    flex-direction: row;
  }

  section.blog-content .left-post img {
    aspect-ratio: 380 / 184;
  }

  section.blog-content .post-card.additional-post .thumbnail img,
  section.blog-content .right-post img {
    aspect-ratio: 174 / 200;
  }

  section.blog-content .pagination-wrapper {
    justify-content: center;
    --webkit-justifiy-content: center;
  }

  section.blog-content .pagination {
    margin-top: 60px;
  }

  section.blog-content .date {
    font-size: 14px;
    line-height: 24px;
  }

  section.blog-content .tags span {
    font-size: 14px;
    line-height: 20px;
    padding: 2px 10px;
  }

  .location-info {
    flex-direction: column;
    gap: 30px;
  }

  .location-info .second-office .bottom .mail,
  .location-info .second-office .bottom {
    flex-direction: column;
    gap: 10px;
  }

  section.map {
    gap: 36px;
  }

  section.map div#map {
    aspect-ratio: 380 / 515;
  }
  section.text-picture .wrapper .text h4 {
    font-size: 24px;
    line-height: 100%;
    font-weight: 500;
  }
  section.title-subtitle .wrapper h3 {
    font-size: 32px;
    line-height: 100%;
    font-weight: 700;
  }
  section.contact .contact-left .contact-text h4 {
    font-size: 24px;
    line-height: 100%;
    font-weight: 500;
  }
  section.contact .contact-left .contact-text {
    padding-right: 20px;
  }
  section.title-subtitle .wrapper h3 + p {
    margin-bottom: 14px;
  }
  section.faq.trashart .faq-wrapper {
    padding: 0;
  }
  main section.trashart .faq-wrapper .faq-item .faq-question {
    padding: 0;
  }
  main section.trashart .faq-wrapper .faq-item.active .faq-question {
    padding: 24px;
  }
  main section.trashart .faq-wrapper .faq-item.active .faq-question span {
    font-size: 24px;
    line-height: 100%;
  }
  section.trashart .faq-item .faq-answer > div h3 {
    font-size: 500;
  }
  section.faq .faq-wrapper {
    gap: 30px;
  }
  section.text-template {
    padding: 80px 24px;
  }
  html body section.title-subtitle .wrapper h1 {
    margin-bottom: 0;
  }
  h2.wp-block-heading {
    font-size: 24px;
    font-weight: 500;
  }
  h3.wp-block-heading {
    font-weight: 500;
    font-size: 18px;
  }
  .wp-block-heading strong {
    font-weight: inherit;
  }

  section.team {
    .team-wrapper {
      grid-template-columns: repeat(1, 1fr);
      gap: 24px;
    }
  }

  section.team .team-wrapper .team-content h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
  }
  section.team .team-wrapper .team-content p.position {
    margin-bottom: 10px;
  }
  section.team .team-wrapper .team-content p.description {
    margin-bottom: 14px;
  }
  section.newsletter .text h3 {
    font-size: 32px;
    line-height: 100%;
  }
  .newsletter .form-wrap,
  .newsletter form input {
    width: 100%;
  }
  section.services .services-top {
    margin-bottom: 44px;
  }
  section.services .services-wrapper .service-item img {
    aspect-ratio: 380 / 478;
  }

  section.services.block .services-wrapper .service-item {
    width: 100%;

    img {
      width: 100%;
      height: auto;
      aspect-ratio: revert-layer;
    }
  }

  section.headline h2 {
    font-size: 32px;
    line-height: 100%;
    font-weight: 700;
  }
  section.headline {
    margin-top: 40px !important;
    margin-bottom: 33px !important;
  }
  section.contact.cost-estimate {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  section.contact.cost-estimate h4 {
    font-size: 32px;
    line-height: 100%;
    font-weight: 700;
  }
  form button[type="submit"],
  form input[type="submit"] {
    padding: 12px 43px;
  }
  section.text-left_right .wrapper .right h4,
  section.text-left_right .wrapper .left h4 {
    font-size: 24px;
    line-height: 100%;
    font-weight: 500;
  }
  section.text-left_right .wrapper .right h4 + p,
  section.text-left_right .wrapper .left h4 + p {
    margin-bottom: 40px;
  }
  section.facts .top-section h3 {
    font-size: 32px;
    line-height: 100%;
    font-weight: 700;
  }
  section.facts {
    gap: 46px;
  }
  .fact-item h3 {
    font-size: 38px;
    line-height: 100%;
    margin-bottom: 13px;
  }
  .fact-description p:first-of-type {
    font-weight: 500;
    font-size: 18px !important;
    line-height: 100% !important;
  }

  html .single section.newsletter {
    padding-top: 112px 24px;
  }

  html .single .newsletter .newsletter-text {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-direction: column;
  }

  html .single .newsletter .newsletter-text h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 1%;
    text-align: center;
  }

  html .single .newsletter .newsletter-text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 1%;
    text-align: center;
  }

  html .single section.newsletter {
    clip-path: polygon(0 0, calc(100% - 90px) 0, 100% 90px, 100% 100%, 0 100%);
  }

  .single .wp-block-image figure, .wp-block-image figure img {
    width: 100%!important;
  }

  .single section.newsletter {
    gap: 32px;
  }

  .newsletter .form-content input {
    min-width: 100px!important;
  }
}
@media (max-width: 576px) {
  /* h1,
  h2,
  h3,
  h4,
  h5 {
    word-break: break-word;
  } */
}

@media (max-width: 435px) {
  footer .first-row {
    display: grid;
    grid-template-columns: 44% 56%;
  }
}

@media (min-width: 563px) and (max-width: 992px) {
  section.hero .hero-content h2 {
    padding-right: 50px;
  }
}

.single .newsletter .newsletter-text {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
}

.single .newsletter .newsletter-text h3 {
  font-family: Halifax;
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 1%;
  text-align: center;
  color: white;
}

.single .newsletter .newsletter-text p {
  font-family: Halifax;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1%;
  text-align: center;
  color: #ffffff80;
}

.single section.post-content {
  background-color: white;
  padding: 32px;
}

.single section.post-content img {
  height: 175px;
  width: auto;
}

.single section.post-content figcaption {
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #565655;
  margin-top: 6px;
}

.single figure {
  margin-top: 0px !important;
}

.single section.post-content .taxonomy-post_tag span {
  display: none;
}

.single section.post-content .taxonomy-post_tag a {
  padding: 2px 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  background-color: #009ca214;
  color: #009ca2;
  margin: 0px;
  border-radius: 16px;
}

.single section.post-content .taxonomy-post_tag {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.single section.post-content .wp-block-heading {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 1%;
  color: #555756;
  margin-bottom: 32px;
}

.single .wp-block-post-date {
  margin-bottom: 45px;
}

.single section.post-content time {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #21398f80;
}

.single section.post-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1%;
}

.single section.post-content p + p {
  margin-top: 20px;
}
