@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");
@font-face {
  font-family: "SwindaleRough";
  src: url("./fonts/swindalerough-rg-webfont.woff2") format("woff2"), url("./fonts/swindalerough-rg-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SwindaleRough";
  src: url("./fonts/swindaleroughsh-rg-webfont.woff2") format("woff2"), url("./fonts/swindaleroughsh-rg-webfont.woff") format("woff");
  font-weight: bold;
  font-style: bold;
}
@font-face {
  font-family: "BushMarket";
  src: url("./fonts/bushmarket-regular-webfont.woff2") format("woff2"), url("./fonts/bushmarket-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Yonder";
  src: url("./fonts/yonder-regular-webfont.woff2") format("woff2"), url("./fonts/yonder-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "SwindaleRough", serif;
  font-size: 14px;
}
@media all and (min-width: 767px) and (max-width: 1400px) {
  html, body {
    font-size: 13px;
  }
}

/* nav */
nav {
  position: absolute;
  width: 100%;
  z-index: 10;
  color: white;
  transition: all 200ms ease-in;
}
nav a, nav a:visited {
  color: inherit;
  text-decoration: none;
  font-size: 1.3em;
}
@media all and (min-width: 767px) and (max-width: 1000px) {
  nav a, nav a:visited {
    font-size: 1.1em;
  }
}
nav .width-wrapper {
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: space-evenly;
  margin: auto;
  max-width: 1225px;
}
@media all and (max-width: 767px) {
  nav .width-wrapper .logo-a {
    display: none;
  }
}
nav .toggle-mobile-menu {
  display: none;
  background: none;
  border: none;
  color: inherit;
  font-size: 2em;
}
@media all and (max-width: 767px) {
  nav .toggle-mobile-menu {
    display: block;
  }
}
nav .menu {
  display: flex;
  list-style-type: none;
}
nav .menu li {
  margin-right: 30px;
}
@media all and (max-width: 1400px) {
  nav .menu li {
    margin-right: 15px;
  }
}
@media all and (max-width: 767px) {
  nav .menu {
    font-size: 1em;
    transform: translateY(-100%);
    background: #49707f;
    position: absolute;
    flex-direction: column;
    width: 100%;
    align-items: center;
    top: 0;
    margin: 0;
    padding: 20px;
    transition: all 300ms ease-in;
  }
  nav .menu li {
    margin: 0 auto;
    margin-bottom: 15px;
  }
}
nav .menu .menuButton {
  display: none;
  font-size: 2em;
}
@media all and (max-width: 767px) {
  nav .menu .menuButton {
    display: block;
  }
}
nav .menu.active {
  transform: translateY(0);
}
nav .logo {
  height: 30px;
  display: none;
  margin: auto 50px;
}
@media all and (max-width: 1023px) {
  nav .logo {
    height: 20px;
    margin: auto 10px;
  }
}
@media all and (max-width: 767px) {
  nav .logo {
    display: block;
    opacity: 0;
    transition: all 200ms ease-in;
  }
}
nav .socials {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding-right: 20px;
}
nav .socials a {
  margin-right: 10px;
}
nav .socials span {
  font-family: "BushMarket", serif;
  font-size: 2em;
  margin-right: 10px;
}
@media all and (max-width: 1023px) {
  nav .socials span {
    display: none;
  }
}
nav .socials .button {
  font-size: 1em;
}
nav .socials .button i {
  margin-right: 5px;
}
nav.fixed {
  top: 0;
  position: fixed;
  background-color: #49707f;
}
nav.fixed .logo {
  display: block;
}
@media all and (max-width: 767px) {
  nav.fixed .logo {
    opacity: 1;
  }
}
.text nav {
  top: 0;
  position: fixed;
  background-color: #49707f;
}
.text nav .logo {
  display: block;
}
@media all and (max-width: 767px) {
  .text nav .logo {
    opacity: 1;
  }
}

/* Header */
header {
  margin: 0 auto;
  max-width: 1500px;
  position: relative;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-image: linear-gradient(to right, rgba(21, 58, 68, 0.5), rgba(21, 58, 68, 0.5));
  background-position: center;
}
@media all and (max-width: 767px) {
  header {
    padding-top: 85%;
  }
}
.text header {
  padding-top: 23.4%;
  margin-top: 100px;
}

header .header-logo {
  width: 300px;
  margin-bottom: 25px;
}
@media all and (max-width: 767px) {
  header .header-logo {
    width: 200px;
    margin-bottom: 5px;
  }
}
header h1 {
  max-width: 600px;
  text-align: center;
  color: white;
  font-size: 3.5em;
  font-weight: normal;
}
.text header h1 {
  font-size: 3em;
}

@media all and (min-width: 1023px) {
  header h1 {
    max-width: 1000px;
  }
}
@media all and (max-width: 1023px) {
  header h1 {
    font-size: 2.5em;
  }
}
@media all and (max-width: 767px) {
  header h1 {
    font-size: 2em;
  }
}
header .over-slideshow {
  position: absolute;
  top: 0;
  height: calc(100% - 100px);
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.text header .over-slideshow {
  height: 100%;
  padding-top: 0;
}

header div.slideshow {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 46%;
}
header div.slideshow .slide {
  display: block;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* sections */
main {
  margin: auto;
}
main section.sec-intro {
  padding: 90px;
  max-width: 1225px;
  margin: auto;
  min-height: 400px;
}
@media all and (max-width: 1023px) {
  main section.sec-intro {
    padding: 20px;
    margin: auto 10px;
  }
}
main section.sec-intro .border-radius-wrapper {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}
@media all and (max-width: 767px) {
  main section.sec-intro .border-radius-wrapper {
    flex-direction: column-reverse;
  }
}
main section.sec-intro .image {
  position: relative;
  background-size: cover;
  flex: 1 1 50%;
  background-position: center;
}
main section.sec-intro .image .props {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media all and (max-width: 767px) {
  main section.sec-intro .image .props {
    position: static;
    transform: translateY(-32px);
    flex-direction: row-reverse;
    height: 300px;
  }
}
main section.sec-intro .image .props .prop {
  width: 85px;
  height: 85px;
  position: relative;
  margin-bottom: 15px;
}
@media all and (max-width: 767px) {
  main section.sec-intro .image .props .prop {
    width: 65px;
    height: 65px;
    margin-bottom: auto;
    margin-left: 15px;
  }
}
main section.sec-intro .image .props .prop .circle {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
main section.sec-intro .image .props .prop .circle img {
  width: 30px;
  height: 30px;
}
main section.sec-intro .image .props .prop:nth-child(1) .circle {
  background-color: #eac16d;
}
main section.sec-intro .image .props .prop:nth-child(2) .circle {
  background-color: #1e7b50;
}
main section.sec-intro .image .props .prop:nth-child(3) .circle {
  background-color: #f08150;
}
main section.sec-intro .intro {
  flex: 1 1 50%;
  background-color: #fcf6eb;
}
main section.sec-intro .intro .intro-wrapper {
  padding: 60px 100px;
}
@media all and (max-width: 767px) {
  main section.sec-intro .intro .intro-wrapper {
    padding: 15px 50px;
    text-align: center;
  }
}
main section.sec-intro .intro .intro-wrapper h2 {
  color: #1e7b50;
  font-size: 2.5em;
  font-weight: bold;
}
main section.sec-intro .intro .intro-wrapper p {
  font-family: "Open Sans", sans-serif;
  font-weight: lighter;
  line-height: 1.5em;
  color: #153a44;
}
main section.sec-intro .intro .intro-wrapper signature {
  color: #49707f;
  font-family: "BushMarket", serif;
  font-size: 2.5em;
}
@media all and (max-width: 767px) {
  main section.sec-intro .intro .intro-wrapper signature {
    margin-bottom: 30px;
    display: block;
  }
}
main section.home-section {
  background-image: linear-gradient(180deg, #153a44 0%, #153a44 45%, #f9edd6 45%, #f9edd6 100%);
  position: relative;
}
main section.home-section .background-image {
  position: absolute;
  height: 55%;
  width: 100%;
  bottom: 140px;
  background-size: cover;
}
main section.home-section .background-image .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.5) 100%);
}
main section.home-section .content-wrapper {
  max-width: 1225px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
main section.home-section .content-wrapper .line.first {
  margin-top: -45px;
}
@media all and (max-width: 1023px) {
  main section.home-section .content-wrapper .line.first {
    display: none;
  }
}
main section.home-section .content-wrapper .line.second {
  margin-top: 45px;
}
main section.home-section .content-wrapper .openingstijden {
  margin: 40px 0;
  color: white;
  font-family: "Open Sans", sans-serif;
}
main section.home-section .content-wrapper .openingstijden h4 {
  font-size: 1.5em;
}
main section.home-section .content-wrapper .openingstijden div {
  width: 220px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  font-weight: lighter;
  font-size: 1.1em;
}
main section.home-section .content-wrapper .pijltje {
  position: absolute;
  top: 165px;
  width: 90px;
  height: 80px;
  left: 62%;
  z-index: 10;
}
@media all and (min-width: 1400px) {
  main section.home-section .content-wrapper .pijltje {
    top: 185px;
  }
}
@media all and (max-width: 1023px) {
  main section.home-section .content-wrapper .pijltje {
    display: none;
  }
}
main section.home-section .content-wrapper .pijltje img {
  width: 100%;
  height: 100%;
}
main section.home-section .content-wrapper .sticker {
  height: 160px;
  width: 160px;
  position: absolute;
  top: -50px;
  right: 260px;
  font-family: "Open Sans", sans-serif;
}
@media all and (max-width: 1400px) {
  main section.home-section .content-wrapper .sticker {
    right: 90px;
  }
}
@media all and (max-width: 1023px) {
  main section.home-section .content-wrapper .sticker {
    right: 40px;
  }
}
@media all and (max-width: 767px) {
  main section.home-section .content-wrapper .sticker {
    height: 110px;
    width: 110px;
  }
}
main section.home-section .content-wrapper .sticker .circle-border {
  border-color: #446c7a;
  top: 2px;
  left: -4px;
  z-index: 0;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
}
main section.home-section .content-wrapper .sticker .circle-background {
  background-color: white;
  color: #e5ba63;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
}
main section.home-section .content-wrapper .sticker .circle-background span {
  padding: 11px;
  text-align: center;
  font-weight: bold;
}
main section.home-section .content-wrapper .content-items {
  display: flex;
  max-width: 1225px;
  justify-content: space-around;
  align-items: flex-start;
}
@media all and (max-width: 1023px) {
  main section.home-section .content-wrapper .content-items {
    max-width: 1024px;
    justify-content: space-evenly;
  }
}
@media all and (max-width: 767px) {
  main section.home-section .content-wrapper .content-items {
    flex-direction: column;
  }
}
main section.home-section .content-wrapper .content-items .item {
  width: 250px;
  background-color: white;
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4));
  margin-right: 30px;
}
@media all and (max-width: 1225px) {
  main section.home-section .content-wrapper .content-items .item {
    width: 220px;
    margin-right: 20px;
  }
}
@media all and (max-width: 1023px) {
  main section.home-section .content-wrapper .content-items .item {
    width: 220px;
    margin-right: 10px;
  }
}
@media all and (max-width: 920px) {
  main section.home-section .content-wrapper .content-items .item {
    margin-right: 10px;
    width: 180px;
  }
}
@media all and (max-width: 767px) {
  main section.home-section .content-wrapper .content-items .item {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 15px;
  }
}
main section.home-section .content-wrapper .content-items .item a, main section.home-section .content-wrapper .content-items .item a:visited {
  color: white;
  text-decoration: none;
}
main section.home-section .content-wrapper .content-items .item img {
  width: 100%;
  height: 210px;
}
@media all and (max-width: 767px) {
  main section.home-section .content-wrapper .content-items .item img {
    object-fit: cover;
  }
}
main section.home-section .content-wrapper .content-items .item .triangle {
  position: absolute;
  top: 185px;
  width: 0;
  height: 0;
  border-left: 250px solid transparent;
  border-bottom: 25px solid white;
}
@media all and (max-width: 767px) {
  main section.home-section .content-wrapper .content-items .item .triangle {
    display: none;
  }
}
main section.home-section .content-wrapper .content-items .item .content {
  padding: 0 25px 25px 25px;
}
main section.home-section .content-wrapper .content-items .item .content p {
  color: #49707f;
  font-family: "Open Sans", sans-serif;
  font-weight: lighter;
  font-size: 0.9em;
}
main section.home-section .content-wrapper .content-items .item .content h4 {
  color: #153a44;
  font-size: 1.2em;
}
main section.home-section .content-wrapper .content-items .item .content .button {
  width: 100px;
  height: 18px;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9em;
}
main section.home-section .content-wrapper .content-items .item:nth-child(even) img {
  height: 185px;
}
main section.home-section .content-wrapper .content-items .item:nth-child(even) .triangle {
  top: 160px;
}
main section.home-section .content-wrapper .content-items .item:nth-child(2) .button {
  background-color: #eac16d;
}
main section.home-section .content-wrapper .content-items .item:nth-child(3) .button {
  background-color: #a57d46;
}
main section.home-section .content-wrapper .content-items .item:nth-child(4) .button {
  background-color: #f08150;
}
main section.home-section .content-wrapper .home-footer-quote {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  margin: 0 auto 100px auto;
  text-align: center;
}
@media all and (max-width: 767px) {
  main section.home-section .content-wrapper .home-footer-quote {
    margin: 0 auto;
    padding: 10px;
  }
}
main section.home-section .content-wrapper .home-footer-quote h2 {
  font-size: 1.7em;
  color: #1e7b50;
}
main section.home-section .content-wrapper .home-footer-quote p {
  color: #49707f;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9em;
  line-height: 1.7em;
  font-weight: bold;
}

.footer-follow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 0.9em;
  margin-top: 120px;
}
@media all and (max-width: 767px) {
  .footer-follow {
    margin-top: 45px;
  }
  .footer-follow {
    margin-top: 15px;
  }
}
.footer-follow.yellow {
  color: #e5ba63;
  background-color: #f9edd6;
}
.footer-follow.yellow a, .footer-follow.yellow a:visited {
  color: inherit;
  text-decoration: none;
}
.footer-follow.yellow span {
  color: #49707f;
}
.footer-follow.orange {
  color: white;
  background-color: #f08150;
}
.footer-follow.orange a, .footer-follow.orange a:visited {
  color: inherit;
  text-decoration: none;
}
.footer-follow .gallery-wrapper {
  display: flex;
  margin: auto;
  margin-top: -120px;
}
@media all and (max-width: 1023px) {
  .footer-follow .gallery-wrapper {
    margin-top: -65px;
  }
}
@media all and (max-width: 767px) {
  .footer-follow .gallery-wrapper {
    margin-top: 0;
  }
}
.footer-follow .gallery-wrapper .image-gallery {
  max-width: 1225px;
  display: flex;
  height: 175px;
  border-radius: 6px;
  overflow: hidden;
}
@media all and (max-width: 1400px) {
  .footer-follow .gallery-wrapper .image-gallery {
    max-width: 1000px;
    height: 140px;
  }
}
@media all and (max-width: 1023px) {
  .footer-follow .gallery-wrapper .image-gallery {
    max-width: 768px;
    height: 110px;
  }
}
@media all and (max-width: 767px) {
  .footer-follow .gallery-wrapper .image-gallery {
    max-width: 100vw;
    border-radius: 0;
    height: auto;
    width: auto;
  }
  .footer-follow .gallery-wrapper .image-gallery a:nth-child(n+5) {
    display: none;
  }
}
.footer-follow .gallery-wrapper .image-gallery a {
  width: 175px;
}
.footer-follow .gallery-wrapper .image-gallery a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-follow p {
  padding: 20px 0;
}
@media all and (max-width: 767px) {
  .footer-follow p {
    padding: 10px;
    text-align: center;
  }
}
.footer-follow a.social {
  margin-left: 20px;
}
.footer-follow a.social:last-child {
  margin-left: 8px;
}
.footer-follow span {
  font-family: "SwindaleRough", serif;
  font-weight: normal;
}

footer {
  background-color: #1e7b50;
  color: white;
}
footer a, footer a:visited {
  color: inherit;
  text-decoration: none;
}
footer .footer-menu {
  display: flex;
  height: 175px;
  align-items: center;
  justify-content: center;
  margin: auto;
  max-width: 1000px;
}
@media all and (min-width: 1023px) {
  footer .footer-menu {
    max-width: 1100px;
  }
}
@media all and (max-width: 1023px) {
  footer .footer-menu {
    height: auto;
    padding: 0 50px;
  }
}
@media all and (max-width: 767px) {
  footer .footer-menu {
    flex-direction: column;
    text-align: center;
  }
  footer .footer-menu > a {
    margin-top: 15px;
    order: -1;
  }
}
footer .footer-menu > div, footer .footer-menu > img {
  flex: 1 1 33%;
}
@media all and (max-width: 1023px) {
  footer .footer-menu > div, footer .footer-menu > img {
    flex: auto;
  }
}
footer .footer-menu > div {
  display: flex;
  justify-content: space-evenly;
}
@media all and (max-width: 1023px) {
  footer .footer-menu > div {
    flex-direction: column;
  }
}
footer .footer-menu ul {
  list-style: none;
  padding: 0;
}
footer .footer-menu ul li {
  font-size: 0.9em;
  line-height: 1.7em;
  white-space: nowrap;
}
footer .footer-menu ul li:first-child {
  font-size: 1.4em;
  line-height: 35px;
  font-family: "Yonder", serif;
}
footer .footer-menu ul li.flex {
  display: flex;
  justify-content: space-between;
}
footer .footer-menu ul li.flex span {
  margin-right: 15px;
}
footer .footer-menu .footer-logo {
  height: 80px;
  margin: 0 70px;
}
footer .copyright {
  height: 85px;
  background-color: #4a8a64;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7em;
  font-family: "Open Sans", sans-serif;
}

.text section > .width-wrapper {
  max-width: 980px;
  margin: auto;
}
.text section > .width-wrapper .intro {
  display: flex;
  flex-direction: column;
  margin: 65px auto;
  max-width: 800px;
  text-align: center;
  color: #153a44;
}
@media all and (max-width: 767px) {
  .text section > .width-wrapper .intro {
    padding: 0 10px;
  }
}
.text section > .width-wrapper .intro h2 {
  font-size: 2.5em;
}
.text section > .width-wrapper .intro p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1em;
  color: #49707f;
}
.text section .blocks {
  margin: auto;
  margin-bottom: 75px;
}
@media all and (max-width: 767px) {
  .text section .blocks {
    margin-bottom: 0;
  }
}
.text section .blocks .block {
  font-family: "Open Sans", sans-serif;
  color: #153a44;
  font-weight: 300;
}
.contact.text section .blocks .block {
  color: white;
}
@media all and (max-width: 767px) {
  .contact.text section .blocks .block {
    background-color: #153a44 !important;
    padding-bottom: 30px;
  }
}
.contact.text section .blocks .block .text h3 {
  font-size: 1.6em;
}
.contact.text section .blocks .block .text p {
  margin: 0;
  font-size: 1em;
}

@media all and (max-width: 767px) {
  .text section .blocks .block {
    background: none !important;
    margin-bottom: 10px;
  }
}
.text section .blocks .block .width-wrapper {
  max-width: 1225px;
  display: flex;
  margin: auto;
}
@media all and (max-width: 767px) {
  .text section .blocks .block .width-wrapper {
    flex-direction: column;
  }
}
.text section .blocks .block:first-child {
  border-top-left-radius: 5px;
  overflow: hidden;
  background-image: linear-gradient(90deg, #ffffff 0%, #ffffff 45%, #e4eae4 45%, #e4eae4 100%);
}
.text section .blocks .block:last-child {
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
@media all and (min-width: 767px) {
  .text section .blocks .block:nth-child(even) .width-wrapper {
    flex-direction: row-reverse;
  }
}
.text section .blocks .block .image {
  width: 50%;
  height: 400px;
  background-size: cover;
}
@media all and (max-width: 767px) {
  .text section .blocks .block .image {
    width: auto;
    height: 250px;
  }
}
.text section .blocks .block .text {
  padding: 0 100px 0 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(50% - 210px);
}
@media all and (max-width: 1023px) {
  .text section .blocks .block .text {
    padding: 0 50px 0 55px;
    width: calc(50% - 105px);
  }
}
@media all and (max-width: 767px) {
  .text section .blocks .block .text {
    width: auto;
  }
}
.text section .blocks .block .text a, .text section .blocks .block .text a:visited {
  color: inherit;
  text-decoration: none;
}
.text section .blocks .block .text h2 {
  font-size: 2em;
}
.text section .blocks .block .text h3 {
  font-size: 1.7em;
}
.text section .blocks .block .text p, .text section .blocks .block .text span {
  font-size: 1em;
  line-height: 1.7em;
}
.text section .blocks .block .text .cols-2 {
  max-width: 300px;
}
.text section .blocks .block .text .cols-2 > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  max-width: 230px;
}
.text section .blocks .block .text .cols-2 > div span {
  margin-right: 15px;
}
.text section .footer-blocks {
  display: flex;
  flex-direction: column;
}
.text section .footer-blocks.gallery-margin .width-wrapper {
  height: 540px;
}
@media all and (max-width: 767px) {
  .text section .footer-blocks.gallery-margin .width-wrapper {
    height: auto;
  }
}
.text section .footer-blocks.gallery-margin .footer-follow {
  margin-top: 0;
}
.text section .footer-blocks .width-wrapper {
  display: flex;
  height: 400px;
}
@media all and (max-width: 767px) {
  .text section .footer-blocks .width-wrapper {
    flex-direction: column;
    height: auto;
  }
}
.text section .footer-blocks .width-wrapper .image {
  flex: 1 1 50%;
}
.text section .footer-blocks .width-wrapper .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.text section .footer-blocks .width-wrapper .text {
  flex: 1 1 50%;
  background-color: #e4eaec;
}
.text section .footer-blocks .width-wrapper .text .width-wrapper {
  max-width: 490px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (max-width: 767px) {
  .text section .footer-blocks .width-wrapper .text .width-wrapper {
    max-width: none;
    padding: 0 10px;
  }
}
.text section .footer-blocks .width-wrapper .text .width-wrapper .line {
  margin-top: -22px;
}
.text section .footer-blocks .width-wrapper .text .width-wrapper .portrait {
  height: 125px;
  width: 125px;
  position: relative;
  margin-top: 40px;
}
.text section .footer-blocks .width-wrapper .text .width-wrapper .portrait .circle {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #e5ba63;
  overflow: hidden;
}
.text section .footer-blocks .width-wrapper .text .width-wrapper .portrait .circle img {
  width: 100%;
  height: 100%;
}
.text section .footer-blocks .width-wrapper .text .width-wrapper .text-wrapper {
  max-width: 230px;
  text-align: center;
  margin-bottom: 50px;
}
.text section .footer-blocks .width-wrapper .text .width-wrapper .text-wrapper h2 {
  color: #1e7b50;
  line-height: 1.5em;
}
.text section .footer-blocks .width-wrapper .text .width-wrapper .text-wrapper p {
  color: #153a44;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.7em;
}

/* global */
.button {
  color: #ffffff;
  background-color: #1e7b50;
  border-radius: 25px;
  font-size: 1em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 14px;
  cursor: pointer;
}

.circle-border {
  width: 100%;
  height: 100%;
  border: 2px solid white;
  background: transparent;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: -3px;
}

.line {
  width: 3px;
  height: 90px;
  background-color: #e5ba63;
}
.line.small {
  height: 45px;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  /* IE10+ specific styles go here */
  nav .menu li {
    margin-right: 30px;
  }
  nav .socials > * {
    margin-right: 10px;
  }

  header {
    margin-right: 30px;
  }
}

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