#wpadminbar {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0 !important;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

img {
  max-width: 100%;
}

body,
input {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  body,
input {
    font-size: 17px;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  body,
input {
    font-size: 20px;
  }
}

a {
  color: #343434;
  display: inline-block;
  text-decoration: none;
}

h1,
h2,
h3,
.font-heading {
  font-family: "Euro";
  margin: 6px 0 16px;
  line-height: 1;
}
@media (min-width: 768px) {
  h1,
h2,
h3,
.font-heading {
    margin: 8px 0 18px;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  h1,
h2,
h3,
.font-heading {
    margin: 10px 0 20px;
  }
}

h1 {
  font-size: 40px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 50px;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  h1 {
    font-size: 77px;
  }
}

h2 {
  color: #1F9555;
  font-size: 28px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 34px;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  color: #1F9555;
  font-size: 20px;
}
@media (min-width: 768px) {
  h3 {
    font-size: 25px;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  h3 {
    font-size: 30px;
  }
}

h4 {
  color: #000000;
  font-size: 14px;
}
@media (min-width: 768px) {
  h4 {
    font-size: 17px;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  h4 {
    font-size: 20px;
  }
}

.small {
  font-size: 12px;
}
@media (min-width: 768px) {
  .small {
    font-size: 14px;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  .small {
    font-size: 16px;
  }
}

.icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
}
.icon__arrow-right {
  background: url("../images/arrow-right.svg") no-repeat center center;
  background-size: contain;
}
.icon__arrow-right--green {
  background: url("../images/arrow-right-green.svg") no-repeat center center;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .page-wrapper {
    padding-top: 60px;
  }
}
@media (min-width: 768px) {
  .page-wrapper {
    padding-top: 110px;
  }
}
.page-wrapper main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.preloader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 22;
  transition: opacity 0.4s;
}
.preloader.hidden {
  opacity: 0;
}

section,
.section-padding {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  section,
.section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  section,
.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.container {
  width: 100%;
  max-width: 1470px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .logo {
    height: 17px;
  }
}
@media (min-width: 768px) {
  .logo {
    height: 30px;
    margin-bottom: 15px;
  }
}

header {
  transition: box-shadow 0.8s;
}
header.scroll {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .nav-open header .header-row .nav-col {
    max-height: 206px;
    opacity: 1;
    overflow: hidden;
  }
  .nav-open .page-overlay {
    opacity: 0.35;
    max-height: 100%;
    transition: opacity 0.4s 0s, max-height 0s 0s;
  }
  .nav-open header .hamburger .inner {
    transform: rotateZ(-180deg);
  }
  .nav-open header .hamburger .inner span {
    width: 2px;
    opacity: 0;
  }
  .nav-open header .hamburger .inner::before {
    width: 24px;
    top: 2px;
    transform: translateX(-15px) rotateZ(45deg);
  }
  .nav-open header .hamburger .inner::after {
    width: 24px;
    bottom: 2px;
    transform: translateX(-15px) rotateZ(-45deg);
  }

  .page-overlay {
    position: fixed;
    z-index: 19;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000000;
    opacity: 0;
    max-height: 0;
    transition: opacity 0.4s 0s, max-height 0s 0.4s;
  }
}
header {
  background: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  z-index: 20;
}
@media (min-width: 768px) {
  header .hamburger {
    display: none;
  }
}
@media (max-width: 767px) {
  header .hamburger {
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 5px;
  }
  header .hamburger .inner {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.6s;
  }
  header .hamburger .inner span, header .hamburger .inner::before, header .hamburger .inner::after {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #1F9555;
    transition: width 0.4s, bottom 0.4s, top 0.4s, transform 0.4s, opacity 0.4s;
  }
  header .hamburger .inner::before, header .hamburger .inner::after {
    content: "";
    position: relative;
    left: 50%;
    transform: translateX(-15px);
  }
  header .hamburger .inner::before {
    top: -5px;
  }
  header .hamburger .inner::after {
    bottom: -5px;
  }
}
@media (max-width: 767px) {
  header .logo-wrap {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
}
header .header-row {
  display: flex;
}
@media (max-width: 767px) {
  header .header-row {
    flex-direction: column;
  }
}
header .header-row .header-col {
  display: flex;
}
@media (min-width: 768px) {
  header .header-row .header-col {
    width: 50%;
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  header .header-row .nav-col {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s, opacity 0.4s;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  header .header-row .nav-col .nav-col-upper {
    order: 2;
    display: flex;
    flex-direction: column;
  }
  header .header-row .nav-col .nav-col-upper .number {
    margin-top: 15px;
  }
  header .header-row .nav-col nav {
    order: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    margin-top: 15px;
  }
}
@media (min-width: 768px) {
  header .header-row .nav-col.nav-wrap {
    align-items: flex-end;
  }
}
@media (min-width: 768px) {
  header nav {
    margin-right: -40px;
  }
}
header .nav-link {
  display: inline-block;
  font-weight: 700;
  padding: 15px;
  transition: color 0.4s;
}
header .nav-link:hover {
  color: #1F9555;
}
header .nav-link.active {
  color: #1F9555;
  cursor: default;
}
@media (min-width: 768px) {
  header .nav-link {
    margin: 0 25px;
  }
}
header .nav-col-upper {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  header .nav-col-upper {
    text-align: right;
  }
}
header .nav-col-upper .number {
  font-family: "Euro";
  color: #1F9555;
}
@media (min-width: 768px) {
  header .nav-col-upper .number {
    padding-left: 15px;
  }
}

@media (max-width: 767px) {
  .desktop {
    display: none;
  }
}

@media (min-width: 768px) {
  .mobile {
    display: none;
  }
}

footer {
  background: #1F9555;
  padding: 20px 0;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  footer {
    padding: 40px 0;
  }
}
footer a {
  color: #FFFFFF;
}
footer .footer-container {
  display: flex;
}
@media (max-width: 767px) {
  footer .footer-container {
    flex-direction: column;
  }
  footer .footer-container .footer-col__corporate {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  footer .footer-container {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  footer .footer-container .footer-col {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  footer .footer-container .footer-col__corporate {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  footer .footer-container .footer-col__corporate {
    margin-bottom: 0;
  }
  footer .footer-container .footer-col:nth-of-type(1) {
    width: 35%;
  }
  footer .footer-container .footer-col:nth-of-type(2), footer .footer-container .footer-col:nth-of-type(3) {
    width: 20%;
  }
  footer .footer-container .footer-col:nth-of-type(4) {
    width: 25%;
  }
}
footer .footer-links-wrap {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  footer .footer-links-wrap {
    margin-bottom: 25px;
  }
}
footer .footer-links-wrap .seperator {
  display: inline-block;
  margin: 15px 10px 0;
}

.flex-row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .flex-row {
    flex-direction: row;
  }
  .flex-row .flex-col {
    width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .flex-row.project-row .flex-col:first-of-type {
    width: 64%;
  }
  .flex-row.project-row .flex-col:last-of-type {
    width: 36%;
  }
}
@media (min-width: 768px) {
  .flex-row.project-row .flex-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .hero-wrap {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 116px);
  }
  .hero-wrap > section#Hero {
    flex-grow: 1;
  }
}

#Hero {
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}
@media (max-width: 767px) {
  #Hero {
    justify-content: center;
    align-items: center;
    height: calc(100vh - 60px);
  }
}
@media (min-width: 1440px) and (min-height: 1021px) and (orientation: portrait) {
  #Hero {
    min-height: 50vw;
  }
}
#Hero .slider-wrap {
  position: absolute;
  width: auto;
  height: 100%;
  top: 0;
  right: 0px;
  bottom: 0;
  left: 0px;
}
@media (min-width: 768px) {
  #Hero .slider-wrap {
    left: 20px;
    right: 20px;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  #Hero .slider-wrap {
    left: 40px;
    right: 40px;
  }
}
#Hero .slider-wrap .slider,
#Hero .slider-wrap .slick-slide,
#Hero .slider-wrap .slick-track,
#Hero .slider-wrap .slick-list {
  height: 100%;
}
#Hero .slider-wrap .Slide1 {
  background: url("../images/hero-1.jpeg") no-repeat center center;
  background-size: cover;
}
#Hero .slider-wrap .Slide2 {
  background: url("../images/hero-2.jpeg") no-repeat center center;
  background-size: cover;
}
#Hero .slider-wrap .Slide3 {
  background: url("../images/hero-3.jpeg") no-repeat center center;
  background-size: cover;
}
#Hero .slider-wrap .slider-arrows {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0.05;
  transition: opacity 0.4s;
}
@media (max-width: 767px) {
  #Hero .slider-wrap .slider-arrows {
    top: auto !important;
    bottom: 65px;
    left: 5px;
    right: 5px;
  }
}
@media (min-width: 768px) {
  #Hero .slider-wrap .slider-arrows {
    left: 20px;
    right: 20px;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  #Hero .slider-wrap .slider-arrows {
    left: 40px;
    right: 40px;
  }
}
#Hero .slider-wrap .slider-arrows .slider-arrow {
  cursor: pointer;
  transition: transform 0.4s;
}
@media (max-width: 767px) {
  #Hero .slider-wrap .slider-arrows .slider-arrow {
    width: 40px;
  }
}
#Hero .slider-wrap .slider-arrows .slider-arrow--prev {
  transform: translateX(-10px) rotateZ(180deg);
}
#Hero .slider-wrap .slider-arrows .slider-arrow--next {
  transform: translateX(10px);
}
#Hero .slider-wrap .slider-arrows .slider-arrow g,
#Hero .slider-wrap .slider-arrows .slider-arrow path,
#Hero .slider-wrap .slider-arrows .slider-arrow text {
  transition: all 0.4s;
}
#Hero .slider-wrap .slider-arrows .slider-arrow:hover g#Gruppe_253 {
  opacity: 1;
}
#Hero .slider-wrap .slider-arrows .slider-arrow:hover path#Pfad_214 {
  fill: #fff;
  opacity: 1;
}
#Hero .slider-wrap .slider-arrows .slider-arrow:hover text#_ {
  fill: #1F9555;
}
#Hero .slider-wrap:hover .slider-arrows {
  opacity: 1;
}
#Hero .slider-wrap:hover .slider-arrows .slider-arrow--prev {
  transform: translateX(0px) rotateZ(180deg);
}
#Hero .slider-wrap:hover .slider-arrows .slider-arrow--next {
  transform: translateX(0px);
}

.heading-wrap {
  color: #FFFFFF;
  margin: 20px 0;
  position: relative;
  background: url("../images/green-pattern.svg") no-repeat center center;
  background-size: contain;
  padding: 120px 50px 70px 60px;
  margin-left: -20px;
  margin-right: -20px;
}
@media (max-width: 767px) {
  .heading-wrap {
    transform: translateY(-60px);
  }
}
.heading-wrap a {
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  transition: border 0.4s;
  border-bottom: solid 1px transparent;
}
@media (min-width: 768px) {
  .heading-wrap a {
    letter-spacing: 1px;
    padding-left: 3px;
  }
}
.heading-wrap a .icon {
  margin-left: 15px;
  transform-origin: left;
  transition: transform 0.4s;
}
.heading-wrap a:hover {
  border-bottom: solid 1px #FFFFFF;
}
.heading-wrap a:hover .icon {
  transform: scaleX(1.1);
}
.heading-wrap a {
  font-size: 18px;
}
@media (max-width: 767px) {
  .heading-wrap h1 {
    line-height: 1;
  }
}
@media (min-width: 768px) {
  .heading-wrap {
    padding: 115px 60px 50px 130px;
    margin: 10px 10% 10px auto;
  }
  .heading-wrap a {
    font-size: 21px;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  .heading-wrap {
    left: 50%;
    padding: 145px 100px 55px 160px;
    margin-left: 0;
    margin-right: 0;
  }
  .heading-wrap a {
    font-size: 25px;
  }
}

.sub-hero-section {
  background: #F7F7F7;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .sub-hero-section {
    margin-top: -120px;
    padding-top: 120px;
  }
}

#Icons .icons-container {
  display: flex;
  flex-direction: column;
}
#Icons .icons-container h3 {
  color: #1F9555;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #Icons .icons-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #Icons .icons-container .icon-wrap {
    margin: 20px auto;
  }
  #Icons .icons-container .icon {
    display: block;
    width: auto;
    margin: 0 auto 25px;
  }
  #Icons .icons-container .icon--size-1 {
    height: 60px;
  }
  #Icons .icons-container .icon--size-2 {
    height: 100px;
  }
  #Icons .icons-container .icon--size-3 {
    height: 78px;
  }
}
@media (min-width: 768px) {
  #Icons .icons-container {
    padding-top: 40px;
    padding-bottom: 40px;
    flex-direction: row;
    justify-content: space-evenly;
  }
  #Icons .icons-container .icon-wrap {
    margin: 10px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  #Icons .icons-container .icon {
    display: block;
    margin: auto;
    width: auto;
  }
  #Icons .icons-container .icon--size-1 {
    height: 80px;
  }
  #Icons .icons-container .icon--size-2 {
    height: 125px;
  }
  #Icons .icons-container .icon--size-3 {
    height: 100px;
  }
  #Icons .icons-container h3 {
    margin-top: 20px;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  #Icons .icons-container .icon-wrap {
    margin: 20px 40px;
  }
  #Icons .icons-container .icon--size-1 {
    height: 105px;
  }
  #Icons .icons-container .icon--size-2 {
    height: 150px;
  }
  #Icons .icons-container .icon--size-3 {
    height: 125px;
  }
  #Icons .icons-container h3 {
    margin-top: 30px;
  }
}

@media (min-width: 768px) {
  .project-row {
    padding-top: 80px;
  }
}

.project-content {
  max-width: 620px;
}
@media (min-width: 768px) {
  .project-content {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .pattern-projects {
    max-width: 200px;
    display: block;
    margin: 20px auto 0;
  }
}
@media (min-width: 768px) {
  .pattern-projects {
    padding-left: 60px;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  .pattern-projects {
    padding-left: 120px;
  }
}

.project-quote-row {
  display: flex;
  margin-top: 20px;
}
.project-quote-row .project-quote-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-quote-row .project-quote-col:first-of-type {
  width: 40%;
}
.project-quote-row .project-quote-col:last-of-type {
  width: 60%;
}
@media (min-width: 768px) {
  .project-quote-row {
    margin-top: 40px;
  }
}
.project-quote-row img {
  margin-right: 10px;
  border-radius: 26px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .project-quote-row img {
    margin-right: 30px;
    border-radius: 52px;
    max-width: 220px;
    height: auto;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  .project-quote-row img {
    max-width: 251px;
  }
}

ul.green-bullet-points {
  padding-left: 10px;
}
ul.green-bullet-points li {
  list-style: none;
  margin: 10px 0 10px;
  padding-left: 25px;
  position: relative;
}
@media (min-width: 768px) {
  ul.green-bullet-points li {
    margin-bottom: 20px;
    padding-left: 45px;
  }
}
ul.green-bullet-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  background: #1F9555;
  border-radius: 6px;
}
@media (min-width: 768px) {
  ul.green-bullet-points li::before {
    width: 25px;
    height: 25px;
  }
}

.project-link {
  color: #1F9555;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  border-bottom: solid 1px transparent;
  transition: border 0.4s;
}
@media (min-width: 768px) {
  .project-link {
    margin-top: 40px;
  }
}
.project-link .icon {
  margin-left: 15px;
  transform-origin: left;
  transition: transform 0.4s;
}
.project-link:hover {
  border-bottom: solid 1px #1F9555;
}
.project-link:hover .icon {
  transform: scaleX(1.1);
}

#B {
  color: #1F9555;
}

#Contact {
  margin-top: auto;
}
#Contact .contact-row {
  margin-top: 20px;
  margin-left: -10px;
  margin-right: -10px;
}
@media (min-width: 768px) {
  #Contact .contact-row {
    flex-wrap: wrap;
    margin-top: 40px;
  }
}
#Contact .contact-row .contact-col {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  #Contact .contact-row .contact-col .textarea-wrap {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  #Contact .contact-row .contact-col {
    width: 50%;
    display: flex;
    margin: 0 -10px;
    flex-grow: 1;
  }
  #Contact .contact-row .contact-col.submit-col .submit-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  #Contact .contact-row .contact-col .input-wrap {
    width: 50%;
    padding: 0 10px;
  }
  #Contact .contact-row .contact-col .input-wrap.textarea-wrap {
    width: 100%;
  }
  #Contact .contact-row .contact-col .submit-wrap {
    padding: 0 10px;
  }
}
#Contact .input-wrap label {
  font-weight: 700;
}
#Contact .input-wrap label textarea {
  min-height: 180px;
  margin-bottom: 0;
  resize: vertical;
}
#Contact .input-wrap label input {
  min-height: 55px;
  margin-bottom: 25px;
}
#Contact .input-wrap label input,
#Contact .input-wrap label textarea {
  display: block;
  width: 100%;
  margin-top: 10px;
  background-color: #F7F7F7;
  border: none;
  padding: 5px 10px;
  border-radius: 10px;
  transition: outline-color 0.4s;
  outline-color: #F7F7F7;
}
#Contact .input-wrap label input:focus,
#Contact .input-wrap label textarea:focus {
  outline-color: #1F9555;
}
@media (min-width: 768px) {
  #Contact .checkbox-row {
    margin-top: 35px;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  #Contact .checkbox-row {
    margin-top: 39px;
  }
}
#Contact input[type=submit] {
  cursor: pointer;
  background: #1F9555;
  color: #FFFFFF;
  padding: 8px 25px;
  border: solid 1px #1F9555;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
  transition: background-color 0.4s;
}
@media (min-width: 768px) {
  #Contact input[type=submit] {
    min-width: 311px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
#Contact input[type=submit]:hover {
  background: #177A4A;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 45px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 768px) {
  .checkbox-container {
    font-size: 16px;
  }
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 35px;
  width: 35px;
  border-radius: 7px;
  background-color: #F7F7F7;
}
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-container .checkmark:after {
  left: 11px;
  top: 0px;
  width: 10px;
  height: 20px;
  border: solid #1F9555;
  border-width: 0 6px 6px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.contact-info__wrap {
  margin-top: 60px;
  background: url("../images/map-bg.svg") no-repeat 37% bottom;
  background-size: 133% auto;
  padding-bottom: 20px;
  margin-bottom: -20px;
  padding-bottom: 160px;
}
@media (min-width: 768px) {
  .contact-info__wrap {
    padding-bottom: 170px;
    margin-bottom: -40px;
    margin-right: -160px;
    background-size: contain;
    background-position: right bottom !important;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  .contact-info__wrap {
    padding-bottom: 220px;
    margin-bottom: -60px;
    margin-right: -340px;
    background-size: 1550px auto;
  }
}
@media (min-width: 768px) {
  .contact-info__wrap h2 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.contact-info__wrap .icon-info-wrap {
  position: relative;
  padding-left: 45px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .contact-info__wrap .icon-info-wrap {
    margin-bottom: 40px;
  }
}
.contact-info__wrap .icon-info-wrap .icon {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 40px;
}
.contact-info__wrap .icon-info-wrap p:first-of-type {
  margin-bottom: 0;
}
.contact-info__wrap .drop-wrap {
  position: relative;
  max-width: 290px;
}
.contact-info__wrap .drop-heading {
  cursor: pointer;
  padding-bottom: 10px;
  position: relative;
  padding-right: 15px;
  width: 100%;
}
.contact-info__wrap .drop-heading::after {
  position: absolute;
  top: 2px;
  right: 2px;
  content: "";
  width: 33px;
  height: 33px;
  background: url("../images/arrow-down-green.png") no-repeat center center;
  background-size: contain;
  transition: transform 0.4s;
}
.contact-info__wrap .drop-heading.open::after {
  transform: rotateZ(180deg);
}
.contact-info__wrap .drop-content {
  max-height: 1px;
  background: #FFFFFF;
  border-bottom: solid 1px #1F9555;
  margin: 0 -10px;
  width: auto;
  left: 45px;
  right: 0;
  position: absolute;
  top: 100%;
  overflow: hidden;
  transition: max-height 0.4s;
}
.contact-info__wrap .drop-content__inner {
  padding: 10px;
}
.contact-info__wrap .drop-content.open {
  max-height: 224px;
}

#AboutHero {
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}
@media (max-width: 767px) {
  #AboutHero {
    justify-content: center;
    align-items: center;
    height: calc(100vh - 60px);
  }
}
@media (min-width: 768px) {
  #AboutHero {
    min-height: 211px;
    height: 33vw;
    max-height: 611px;
  }
}
#AboutHero .background {
  background: url("../images/hero-4.jpeg") no-repeat center center;
  background-size: cover;
  height: 100%;
  flex-grow: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (min-width: 768px) {
  #AboutHero .background {
    left: 20px;
    right: 20px;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  #AboutHero .background {
    left: 40px;
    right: 40px;
  }
}
#AboutHero .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  #AboutHero .container {
    justify-content: center;
  }
}

.about-heading {
  color: #FFFFFF;
  background: #1F9555;
  padding: 35px 30px 30px;
  border-radius: 27px;
  line-height: 1;
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 10%;
  margin: 0;
}
@media (max-width: 767px) {
  .about-heading {
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  .about-heading {
    padding: 40px 35px 30px;
    border-radius: 38px;
    left: 11%;
    bottom: -15px;
    font-size: 52px;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  .about-heading {
    padding: 58px 40px 40px;
    border-radius: 50px;
    bottom: -25px;
    font-size: 62px;
  }
}

#Breadcrumps a {
  text-decoration: underline;
}
#Breadcrumps span.active {
  color: #1F9555;
}
#Breadcrumps span,
#Breadcrumps a {
  display: inline-block;
  padding: 0 5px;
}
#Breadcrumps .section-padding {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  #Breadcrumps .section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .about-section .about-img {
    padding: 20px 20px 20px 0;
  }
}
.about-section .about-img--padding {
  padding: 10px;
}
@media (min-width: 768px) {
  .about-section .about-img--padding {
    padding: 20px 40px;
  }
}
@media (min-width: 768px) {
  .about-section .about-content-col {
    padding-top: 40px;
  }
}
@media (min-width: 768px) {
  .about-section .about-content-col h2 {
    margin-bottom: 8px;
  }
}
.about-section .about-content-col h4 {
  margin-top: 0;
}
@media (min-width: 768px) {
  .about-section .about-content-col .about-content {
    padding-top: 1px;
  }
}

.alt-breadcrumps-section {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .alt-breadcrumps-section {
    padding: 20px 0 0;
  }
}
@media (min-width: 1440px) and (min-height: 1021px) {
  .alt-breadcrumps-section {
    padding: 40px 0 0;
  }
}

.wpcf7-not-valid-tip {
  transform: translateY(-1rem);
}

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