body {
  -webkit-font-smoothing: antialiased;
  color: #555555;
  font-size: 13px;
  line-height: 2.2;
  text-rendering: optimizeLegibility;
  font-weight: 100;
  font-family: "Open Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

.section-wrapper {
  padding: 20px;
  width: 100%;
}
.section-wrapper + .section-wrapper {
  padding-top: 0px;
}

.section {
  position: relative;
  width: 100%;
  display: flex;
}
.section:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.section img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.half-section {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
}
.half-section + .half-section {
  right: 0px;
  left: unset;
}

.caption-wrapper {
  width: 470px;
  height: 470px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #333333;
  font-size: 16px;
  margin: auto;
}
.caption-wrapper a {
  color: inherit;
}
.caption-wrapper p {
  margin: 0px;
}
.caption-wrapper p span {
  margin-left: 16px;
}
.caption-wrapper img {
  width: 170px;
  margin-bottom: 40px;
}

.contact-section {
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 128px;
}

.home-mobile {
  display: none;
}

.catalogue-url {
  margin: auto;
  width: 100%;
  max-width: 640px;
  position: relative;
}
.catalogue-url:before {
  content: "";
  display: block;
  padding-top: 100%;
  width: 100%;
}
.catalogue-url img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.catalogue-url a {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
}

@media only screen and (max-width: 1024px) {
  .contact-section {
    min-height: unset;
  }
}
@media only screen and (max-width: 800px) {
  .contact-section {
    background-image: unset !important;
  }
  .caption-wrapper {
    width: 100%;
    border-radius: unset;
    height: unset;
  }
  .section.split-section {
    display: flex;
    flex-direction: column;
  }
  .section.split-section:before {
    content: none;
  }
  .section.split-section .half-section {
    position: relative;
    width: 100%;
  }
  .section.split-section .half-section:before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 125%;
  }
  .section:before {
    padding-top: 133.25%;
  }
  .home-desktop {
    display: none;
  }
  .home-mobile {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */