* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Nunito", Arial, sans-serif;
  color: #697757;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
body main {
  width: 100%;
  margin: -140px auto 0 auto;
  flex-grow: 1;
}

.container {
  width: 100%;
  max-width: 1280px;
  padding: 40px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}
.container .col-half {
  width: 50%;
}
.container .col-third {
  width: 33.3333333333%;
}

.full-width {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #4c5c37;
}

h2 {
  width: 100%;
  font-weight: 600;
  font-size: 38px;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #697757;
}

p {
  width: 100%;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.3;
}

strong {
  font-weight: 600;
}

a {
  color: #d98f28;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
a:hover {
  color: #000;
  transition: 0.3s ease-in-out;
}

.btn-orange {
  background: #d98f28;
  border-radius: 16px;
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  transition: 0.2s ease-in-out;
  text-decoration: none;
  padding: 24px 32px;
}
.btn-orange:hover {
  color: #ffffff;
  background-color: #c17d1f;
}

@media screen and (max-width: 768px) {
  .container .col-half {
    width: 100%;
  }
  .container .col-third {
    width: 100%;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  p {
    font-size: 18px;
  }
  .btn-orange {
    font-size: 24px;
    padding: 18px 26px;
  }
}

.header-wrapper {
  width: 100%;
  max-width: 1280px;
}

.header {
  width: 100%;
  max-width: 1280px;
  padding: 0 15px;
  position: sticky;
  top: 0;
  z-index: 99;
}
.header .header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 20px 40px 19px 40px;
  border-radius: 0 0 24px 24px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 24px;
}
.header .header-inner .logo {
  display: flex;
  align-items: start;
  margin: 0;
}
.header .header-inner .logo img {
  width: 100%;
  max-width: 200px;
  min-width: 150px;
}
.header .header-inner {
  /* Hide the menu toggle button on desktop */
}
.header .header-inner .menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}
.header .header-inner nav ul {
  display: flex;
  align-items: center;
  justify-content: end;
}
.header .header-inner nav ul .menu-link {
  padding: 12px 16px;
  text-align: center;
  list-style-type: none;
  text-wrap: nowrap;
}
.header .header-inner nav ul .menu-link:last-of-type {
  padding: 12px 0 12px 16px;
}
.header .header-inner nav ul .menu-link a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.header .header-inner nav ul .menu-link a:hover {
  color: #d98f28;
  transition: 0.2s ease-in-out;
}

@media screen and (max-width: 1080px) {
  .header .header-inner .menu-toggle {
    display: block;
  }
  .header .header-inner nav {
    display: none;
    position: absolute;
    top: 80px; /* adjust to your header height */
    left: 0;
    right: 0;
    background: white;
    text-align: center;
    margin: 0 15px;
    border-radius: 0 0 24px 24px;
  }
  .header .header-inner nav ul {
    flex-direction: column;
    gap: 0;
  }
  .header .header-inner nav ul .menu-link:last-of-type {
    padding: 12px 16px;
  }
  .header .header-inner nav.active {
    display: block; /* show menu when active */
  }
}
.intro {
  background-color: #bdc6b3;
  padding: 40px 0px 0 0px;
}
.intro .content-wrapper {
  width: 100%;
  max-width: 1280px;
  padding: 160px 15px 0px 55px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.intro .content-wrapper .col-left {
  padding-right: 40px;
  padding-bottom: 30px;
}
.intro .content-wrapper .col-left h1 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #4c5c37;
}
.intro .content-wrapper .col-left p {
  font-size: 20px;
  line-height: 1.3;
  color: #4c5c37;
}
.intro .content-wrapper .col-right {
  position: relative;
}
.intro .content-wrapper .col-right img {
  display: block;
  width: 100%;
  height: calc(100% + 50px);
  border-radius: 24px;
  object-fit: cover;
}
.intro .content-wrapper .col-right .start-btn {
  position: absolute;
  right: 50px;
  bottom: 0;
}

.herken-je-dit h2 {
  text-align: center;
  margin-top: 60px;
}
.herken-je-dit h2.smaller {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 30px;
}
.herken-je-dit .col-3-block {
  width: 100%;
  display: flex;
  gap: 30px;
}
.herken-je-dit .col-3-block .col-third {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  padding: 30px;
}
.herken-je-dit .col-3-block .col-third:first-of-type {
  color: #697757;
  background-color: #dee3d4;
}
.herken-je-dit .col-3-block .col-third:nth-of-type(2) {
  color: #eff1ec;
  background-color: #697757;
}
.herken-je-dit .col-3-block .col-third:last-of-type {
  color: #4c5c37;
  background-color: #bdc6b3;
}
.herken-je-dit .col-3-block .col-third p {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}

.voordelen {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 30%), url("../images/voordelen.jpg") center center;
  background-size: cover;
  width: 100%;
  padding: 60px 30px;
}
.voordelen h2 {
  color: #ffffff;
  text-align: center;
}
.voordelen .col-5-block {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1280px;
}
.voordelen .col-5-block .col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(33.3333333333% - 30px);
  background: rgba(105, 119, 87, 0.7);
  backdrop-filter: blur(5px) saturate(150%);
  -webkit-backdrop-filter: blur(5px) saturate(150%);
  border-radius: 16px;
  color: white;
  padding: 40px 30px;
  text-align: center;
}
.voordelen .col-5-block .col p strong {
  font-size: 28px;
}
.voordelen .col-5-block .col p {
  font-weight: 300;
}

.woodspaces-principe {
  width: 100%;
  max-width: 1280px;
  margin: 30px auto 0 auto;
  position: relative;
}
.woodspaces-principe .content-wrapper {
  width: 100%;
  position: relative;
  background-color: #eff1ec;
  border-radius: 24px;
  justify-content: start;
  padding: 40px;
}
.woodspaces-principe .content-wrapper h2 {
  color: #4c5c37;
  margin-bottom: 40px;
}
.woodspaces-principe .content-wrapper ol {
  width: 60%;
  list-style: none; /* remove default marker */
  counter-reset: item;
}
.woodspaces-principe .content-wrapper ol li {
  text-align: left;
  counter-increment: item;
  margin-bottom: 40px;
  position: relative;
  padding-left: 80px; /* space for the custom marker */
  font-size: 20px;
  font-weight: 300;
}
.woodspaces-principe .content-wrapper ol li strong {
  font-size: 26px;
  font-weight: 700;
  color: #4c5c37;
}
.woodspaces-principe .content-wrapper ol li::before {
  font-size: 36px;
  font-weight: 600;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #bdc6b3;
  color: #4c5c37;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  text-align: center;
  line-height: 64px;
}
.woodspaces-principe .content-wrapper a {
  width: 100%;
  font-size: 28px;
  text-align: center;
  font-weight: 600;
}
.woodspaces-principe .content-wrapper .img-right {
  width: 100%;
  max-width: 600px;
  height: calc(100% - 80px);
  object-fit: cover;
  border-radius: 24px;
  position: absolute;
  top: 40px;
  right: 0;
  transform: translateX(40%);
}

.leefruimte h2 {
  text-align: center;
  color: #697757;
}
.leefruimte .col-3-block {
  width: 100%;
  display: flex;
  gap: 30px;
}
.leefruimte .col-3-block .col-third {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.leefruimte .col-3-block .col-third img {
  height: 300px;
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}
.leefruimte .col-3-block .col-third .btn-orange {
  transform: translateY(-50%);
}

.text {
  width: 100%;
  max-width: 1280px;
  padding: 40px 55px;
  margin: 30px auto 0 auto;
  position: relative;
}
.text h2 {
  margin-bottom: 20px;
}
.text p {
  line-height: 1.6;
}
.text a {
  color: #697757;
  text-decoration: none;
  transition: color 0.2s ease;
}
.text a:hover {
  color: #d98f28;
}

@media screen and (max-width: 768px) {
  .text {
    padding: 20px 30px;
  }
}
.testimonial {
  background-color: #697757;
}
.testimonial .testimonial-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
}
.testimonial .testimonial-inner p {
  margin: 0 auto;
  padding: 80px 30px;
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  position: relative;
}
.testimonial .testimonial-inner p span {
  position: absolute;
  font-size: 20px;
  color: #fff;
  bottom: 20px;
  left: 50%;
  font-style: italic;
  transform: translateX(-50%);
}
.testimonial .testimonial-inner img {
  width: 100px;
  height: auto;
  display: block;
  opacity: 0.2;
}
.testimonial .testimonial-inner img#quote-left {
  transform: rotate(180deg) translateY(40px);
}
.testimonial .testimonial-inner img#quote-right {
  transform: translateY(40px);
}

.inspireren {
  text-align: center;
  padding: 60px 0;
}
.inspireren p {
  padding: 0 30px;
}
.inspireren .slider {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  width: 100%;
  height: 600px;
  margin-top: 60px;
}
.inspireren .slider .slide-btn {
  position: absolute;
  background-color: #697757;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  padding: 20px 18px 20px 22px;
  transition: 0.2s ease-in-out;
}
.inspireren .slider .slide-btn:hover {
  cursor: pointer;
}
.inspireren .slider .slide-btn:hover img {
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.inspireren .slider .slide-btn img {
  opacity: 0.5;
  transition: 0.2s ease-in-out;
}
.inspireren .slider .slide-btn.btn-next {
  right: 30px;
}
.inspireren .slider .slide-btn.btn-next:hover {
  transform: scale(1.1);
  transition: 0.2s ease-in-out;
}
.inspireren .slider .slide-btn.btn-previous {
  left: 30px;
  transform: rotate(180deg);
}
.inspireren .slider .slide-btn.btn-previous:hover {
  transform: rotate(180deg) scale(1.1);
  transition: 0.2s ease-in-out;
}
.inspireren .slider .slides {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
}
.inspireren .slider .slides .slide {
  width: 33.3333333333%;
  opacity: 0.4;
}
.inspireren .slider .slides .slide img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}
.inspireren .slider .slides .slide.active {
  width: 70%;
  opacity: 1;
}
.inspireren .slider .slides .slide.active img {
  width: 100%;
  height: 600px;
}

.meer-testimonials {
  text-align: center;
}
.meer-testimonials h2 {
  color: #697757;
  margin-bottom: 80px;
}
.meer-testimonials .col-3-block {
  width: 100%;
  display: flex;
  gap: 30px;
}
.meer-testimonials .col-3-block .col-third {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  padding: 30px 30px 20px 30px;
}
.meer-testimonials .col-3-block .col-third:first-of-type {
  color: #697757;
  background-color: #dee3d4;
}
.meer-testimonials .col-3-block .col-third:nth-of-type(2) {
  color: #eff1ec;
  background-color: #697757;
}
.meer-testimonials .col-3-block .col-third:nth-of-type(2) hr {
  background-color: #bdc6b3;
}
.meer-testimonials .col-3-block .col-third:last-of-type {
  color: #4c5c37;
  background-color: #bdc6b3;
}
.meer-testimonials .col-3-block .col-third img {
  width: 95px;
  height: auto;
  margin: -80px auto 20px auto;
}
.meer-testimonials .col-3-block .col-third p {
  text-align: center;
  font-size: 24px;
}
.meer-testimonials .col-3-block .col-third p:nth-of-type(2) {
  font-size: 20px;
}
.meer-testimonials .col-3-block .col-third hr {
  width: 100%;
  background-color: #697757;
  height: 1px;
  border: 0px;
  margin: 24px 12px 12px 12px;
}

.faq {
  padding: 40px 30px 40px 30px;
}
.faq h2 {
  color: #697757;
  text-align: center;
}
.faq .faq-wrapper {
  background-color: #dee3d4;
  width: 100%;
  padding: 30px 40px;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 30px;
}
.faq .faq-wrapper img {
  position: absolute;
  top: -40px;
  left: 0;
  transform: translateX(-70%);
  display: block;
  width: 600px;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.faq .faq-wrapper .content {
  width: 100%;
}
.faq .faq-wrapper .content .faq-section h3 {
  font-size: 22px;
  padding: 0.75rem 1rem;
  margin: 0 0 0.5rem 0;
  border-radius: 4px;
}
.faq .faq-wrapper .content .faq-section .faq-item {
  border-radius: 10px;
  margin-bottom: 5px;
  position: relative;
}
.faq .faq-wrapper .content .faq-section .faq-item:after {
  content: "";
  background-image: url("../images/arrow-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 15px;
  transform: rotate(90deg);
  transition: all 0.3s ease-in;
}
.faq .faq-wrapper .content .faq-section .faq-item .faq-question {
  width: 100%;
  font-family: "Nunito", Arial, sans-serif;
  color: #4c5c37;
  font-size: 20px;
  text-align: left;
  background: transparent;
  border: none;
  padding: 10px 50px 10px 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 10px;
}
.faq .faq-wrapper .content .faq-section .faq-item .faq-question:after {
  content: "";
  display: block;
  width: 99%;
  margin: 10px auto 0;
  border-bottom: 1px solid #bdc6b3;
}
.faq .faq-wrapper .content .faq-section .faq-item .faq-question:hover {
  background: #eff1ec;
}
.faq .faq-wrapper .content .faq-section .faq-item .faq-answer {
  display: none;
  padding: 0px 20px 20px 20px;
  background: transparent;
}
.faq .faq-wrapper .content .faq-section .faq-item .faq-answer p {
  font-size: 18px;
}
.faq .faq-wrapper .content .faq-section .faq-item.active {
  background: #eff1ec;
}
.faq .faq-wrapper .content .faq-section .faq-item.active .faq-answer {
  display: block;
}
.faq .faq-wrapper .content .faq-section .faq-item.active:after {
  transform: rotate(-90deg);
  transition: all 0.3s ease-in;
}
.faq .faq-wrapper .content p strong {
  font-weight: 600;
}
.faq .faq-wrapper hr {
  width: 100%;
  background-color: #697757;
  height: 1px;
  border: 0px;
  margin: 24px 0px;
}

.start-je-ontwerp {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%), url("../images/start-je-ontwerp.jpg") center 70%;
  background-size: cover;
  width: 100%;
  padding: 60px 30px;
}
.start-je-ontwerp h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 1080px) {
  .woodspaces-principe .content-wrapper .img-right {
    transform: translate(60%);
  }
  .inspireren .slider {
    height: 400px;
  }
  .inspireren .slider .slides .slide img {
    height: 300px;
  }
  .inspireren .slider .slides .slide.active img {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .intro .content-wrapper {
    flex-wrap: wrap;
    padding: 100px 30px 0px 30px;
  }
  .intro .content-wrapper .col-left {
    width: 100%;
    padding-right: 0;
    padding: 0 0 40px 0;
  }
  .intro .content-wrapper .col-left h1 {
    font-size: 32px;
  }
  .intro .content-wrapper .col-left p {
    font-size: 18px;
    line-height: 1.2;
  }
  .intro .content-wrapper .col-right {
    width: 100%;
  }
  .herken-je-dit h2.smaller {
    font-size: 24px;
  }
  .herken-je-dit .col-3-block {
    flex-wrap: wrap;
  }
  .herken-je-dit .col-3-block .col-third {
    height: 150px;
  }
  .voordelen .col-5-block {
    gap: 20px;
  }
  .voordelen .col-5-block .col {
    width: 100%;
  }
  .voordelen .col-5-block .col p strong {
    font-size: 24px;
  }
  .woodspaces-principe {
    margin: 30px auto 60px auto;
  }
  .woodspaces-principe .content-wrapper {
    padding: 40px 30px;
  }
  .woodspaces-principe .content-wrapper ol {
    width: 100%;
  }
  .woodspaces-principe .content-wrapper ol li {
    padding-left: 60px;
  }
  .woodspaces-principe .content-wrapper ol li::before {
    font-size: 26px;
    width: 44px;
    height: 44px;
    line-height: 44px;
  }
  .woodspaces-principe .content-wrapper .img-right {
    position: relative;
    top: unset;
    right: unset;
    transform: translate(0);
    width: 100%;
    max-width: unset;
    height: 300px;
    margin: 40px auto -120px auto;
  }
  .leefruimte .col-3-block {
    gap: 20px;
    flex-wrap: wrap;
  }
  .testimonial .testimonial-inner img {
    width: 40px;
  }
  .testimonial .testimonial-inner p {
    font-size: 24px;
    padding: 40px 30px;
  }
  .inspireren {
    padding: 60px 0 30px 0;
  }
  .inspireren .slider {
    height: auto;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .inspireren .slider .slides {
    width: 100%;
    overflow: hidden;
    order: 1;
  }
  .inspireren .slider .slides .slide {
    display: none;
    width: 100%;
    opacity: 1;
  }
  .inspireren .slider .slides .slide img {
    height: 280px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .inspireren .slider .slides .slide.active {
    display: block;
    width: 100%;
  }
  .inspireren .slider .slides .slide.active img {
    height: 320px;
  }
  .inspireren .slider .slide-btn {
    position: static;
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
  }
  .inspireren .slider .slide-btn img {
    width: 18px;
    height: auto;
    margin-left: 3px;
  }
  .inspireren .slider .slide-btn.btn-previous {
    transform: rotate(180deg);
  }
  .meer-testimonials .col-3-block {
    flex-wrap: wrap;
  }
  .meer-testimonials .col-3-block .col-third {
    width: 100%;
    margin-bottom: 40px;
  }
  .meer-testimonials .col-3-block .col-third:last-of-type {
    margin-bottom: 0;
  }
  .faq {
    margin: 0px auto;
  }
  .faq .faq-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 10px;
  }
  .faq .faq-wrapper .content {
    order: 1;
    width: 100%;
  }
  .faq .faq-wrapper .content .faq-section .faq-item .faq-question {
    padding: 10px 40px 10px 15px;
  }
  .faq .faq-wrapper img {
    order: 2;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
    width: 100%;
    height: 300px;
    margin: 40px auto -120px auto;
  }
}
@media screen and (max-width: 480px) {
  .intro .content-wrapper .col-right {
    text-align: center;
  }
  .intro .content-wrapper .col-right .start-btn {
    position: relative;
    right: unset;
  }
  .herken-je-dit {
    padding: 80px 30px 40px 30px;
  }
  .testimonial .testimonial-inner img {
    width: 30px;
  }
  .testimonial .testimonial-inner p {
    font-size: 20px;
    padding: 20px 10px;
  }
  .faq .faq-wrapper {
    padding: 20px 10px;
  }
}
.footer {
  margin-top: 60px;
  width: 100%;
  max-width: 1280px;
  padding: 0 15px;
}
.footer .footer-inner {
  background-color: #eff1ec;
  width: 100%;
  padding: 40px 40px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 15px;
  border-radius: 24px 24px 0 0;
}
.footer .footer-inner .contact, .footer .footer-inner .menu-items {
  text-align: left;
  font-size: 18px;
  line-height: 32px;
  width: 33%;
}
.footer .footer-inner .contact img, .footer .footer-inner .menu-items img {
  width: 200px;
  height: auto;
  margin-bottom: 15px;
}
.footer .footer-inner .contact p, .footer .footer-inner .menu-items p {
  line-height: 1.5;
}
.footer .footer-inner .contact a, .footer .footer-inner .menu-items a {
  color: #697757;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer .footer-inner .contact a:hover, .footer .footer-inner .menu-items a:hover {
  color: #d98f28;
}
.footer .footer-inner .menu-items {
  display: flex;
  width: 33%;
}
.footer .footer-inner .menu-items ul {
  width: 50%;
}
.footer .footer-inner .menu-items ul li {
  list-style-type: none;
}
.footer .footer-inner .six24 {
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 33%;
  gap: 8px;
}
.footer .footer-inner .six24 span {
  width: 100%;
  display: block;
}
.footer .footer-inner .six24 img.bau {
  width: 150px;
  height: auto;
}
.footer .footer-inner .six24 img.six {
  width: 120px;
  height: auto;
}
.footer .footer-inner .schild {
  min-width: 150px;
  display: flex;
  width: 30%;
  gap: 10px;
}
.footer .footer-inner .schild img {
  margin-left: -15px;
  width: 200px;
  height: auto;
}
.footer .footer-inner .socials {
  min-width: 150px;
  display: flex;
  gap: 10px;
}
.footer .footer-inner .socials img {
  width: 40px;
  height: 40px;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.footer .footer-inner .socials img:hover {
  opacity: 0.8;
}
.footer .footer-bottom {
  background: #DEE3D4;
  padding: 12px 40px;
  display: flex;
}
.footer .footer-bottom a {
  margin-left: auto;
  color: #697757;
}

@media screen and (max-width: 768px) {
  .footer .footer-inner {
    justify-content: space-between;
  }
  .footer .footer-inner .contact, .footer .footer-inner .socials {
    width: 100%;
  }
  .footer .footer-inner .menu-items {
    width: 100%;
    margin-top: 30px;
  }
  .footer .footer-inner .six24 {
    margin-top: 20px;
    width: 50%;
  }
  .footer .footer-inner .schild {
    width: 50%;
  }
  .footer .footer-bottom {
    background: #DEE3D4;
    padding: 12px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer .footer-bottom a {
    margin: 10px auto 0px auto;
    color: #697757;
    text-align: center;
    width: 100%;
  }
}

/*# sourceMappingURL=/assets/home-b8e378f4.css.map */
