html,
body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  color: #222222;
  min-height: 1000px;
  font-size: 16px;
}

@media screen and (min-width: 900px) {
  html {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 20px;
  }
}

body {
  min-height: 1000px;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

.icon {
  height: 20px;
  width: 20px;
}

.eyebrow {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 30px;
  background-color: #67CB60;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 10%;
  z-index: 11;
  font-size: .9em;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  white-space: nowrap;
}

.eyebrow > .info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.eyebrow > .info-wrapper > .info {
  margin: 0 10px;
  text-decoration: none;
}

.eyebrow > .info-wrapper > .icon > img {
  height: 100%;
  width: auto;
  float: right;
}

@media screen and (max-width: 480px) {
  .eyebrow,
  .eyebrow-push {
    display: none;
  }
}

.eyebrow-push {
  height: 30px;
  width: 100%;
}

.nav-push {
  height: 100px;
  width: 100%;
  display: none;
}

.nav-push.show {
  display: block;
}

@media screen and (max-width: 480px) {
  .nav-push {
    display: block;
  }
}

.navbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 30px;
  height: 100px;
  width: 100vw;
  background-color: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 10%;
  z-index: 10;
  -webkit-transition: background-color .3s linear, color .3s linear;
  transition: background-color .3s linear, color .3s linear;
}

@media screen and (max-width: 480px) {
  .navbar {
    top: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
}

.navbar.active, .navbar.show {
  background-color: #fff;
  color: black;
  -webkit-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0px 3px rgba(0, 0, 0, 0.3);
}

.navbar.active > .nav > .nav-item, .navbar.show > .nav > .nav-item {
  color: black;
}

.navbar.dropdown > .nav {
  visibility: visible;
  opacity: 100%;
  -webkit-transition: height .1s linear;
  transition: height .1s linear;
}

.navbar > .logo {
  height: 60px;
}

.navbar > .logo > img {
  height: 100%;
}

.navbar > .nav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 480px) {
  .navbar > .nav {
    visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 100px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 20px 0 50px;
    overflow: hidden;
    /*
            border-bottom: solid rgba(black, .3) 1px;*/
    height: 70%;
    background-color: #fff;
  }
}

.navbar > .nav > .nav-item {
  font-weight: 400;
  margin-left: 30px;
  text-decoration: none;
  color: white;
}

@media screen and (max-width: 480px) {
  .navbar > .nav > .nav-item {
    color: black;
    margin-left: 0;
    padding: 1vh 0;
    font-size: 1.5em;
  }
}

.navbar .mobile-button {
  display: none;
}

@media (max-width: 480px) {
  .navbar .mobile-button {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 20px 0 20px 20px;
  }
}

.nav-mobile {
  display: none;
}

@media screen and (max-width: 480px) {
  .nav-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45px;
    z-index: 10;
    background-color: #67CB60;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 5%;
    color: white;
    text-transform: uppercase;
    border: solid #0CA750 0.5px;
  }
  .nav-mobile > .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: white;
    text-decoration: none;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 20px;
  }
  .nav-mobile > .separator {
    height: 80%;
    width: 1px;
    background-color: #0CA750;
  }
}

.btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 10px 50px;
  border: solid 2px #0CA750;
  color: white;
  border-radius: 2px;
  outline: 0;
  background-color: #0CA750;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.btn.-transparent {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #67CB60;
}

.line::after,
.section > .title::after {
  content: '';
  display: block;
  height: 10px;
  width: 100px;
  background-color: #67CB60;
  margin: 20px 0 50px;
}

#home-header {
  height: calc(100vh - 30px);
  min-height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  background-position: bottom;
  background-size: cover;
  position: relative;
}

#home-header > .swiper-container {
  position: absolute;
  height: 100%;
  width: 100%;
}

#home-header > .swiper-container > .swiper-wrapper {
  width: 100%;
  height: 100%;
}

@media (max-width: 480px) {
  #home-header > .swiper-container > .swiper-wrapper > .swiper-slide.desktop {
    display: none;
  }
}

#home-header > .swiper-container > .swiper-wrapper > .swiper-slide.mobile {
  display: none;
}

@media (max-width: 480px) {
  #home-header > .swiper-container > .swiper-wrapper > .swiper-slide.mobile {
    display: block;
  }
}

#home-header > .swiper-container > .swiper-wrapper > .swiper-slide {
  width: 100%;
  height: 100%;
}

#home-header > .swiper-container > .swiper-wrapper > .swiper-slide > img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

#home-header > .wrapper {
  color: white;
  position: relative;
  z-index: 1;
  margin-left: 10%;
  pointer-events: none;
}

#home-header > .wrapper::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  -webkit-transform: translate(-50%, -50%) rotate(20deg);
          transform: translate(-50%, -50%) rotate(20deg);
  background-color: black;
  width: 1400px;
  opacity: .4;
  height: 150vh;
  z-index: -1;
}

#home-header > .wrapper > h1 {
  color: white;
  margin: 0 0 20px;
  font-size: 2em;
  font-weight: 600;
}

#home-header > .wrapper > h2 {
  font-size: 1.7rem;
  font-weight: 700;
  font-style: italic;
  margin: 10px 0 40px;
}

#home-header > .wrapper > .button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

#home-header > .wrapper > .button-wrapper > .btn {
  padding: 10px 50px !important;
  margin-bottom: 10px;
  margin-right: 5px;
  pointer-events: initial;
}

@media (max-width: 480px) {
  #home-header > .wrapper > .button-wrapper > .btn {
    width: 90%;
    text-align: center;
  }
}

.section {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 10px 40px;
  min-height: 500px;
}

.section > .title {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 600;
}

.section > .title:after {
  margin-left: auto;
  margin-right: auto;
}

.section .name {
  font-size: 1.2em;
  white-space: nowrap;
}

.section .desc {
  font-size: 1em;
}

#services > .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#services > .wrapper > .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 50px;
  max-width: 300px;
  margin-bottom: 50px;
}

#services > .wrapper > .card > .image {
  height: 175px;
  width: 175px;
  border-radius: 50%;
  max-width: 300px;
  background-color: white;
  border: solid lightgreen 5px;
  position: relative;
  overflow: hidden;
}

#services > .wrapper > .card > .image > img {
  height: 95%;
  width: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#services > .wrapper > .card > .btn {
  margin-top: auto;
}

#services > .wrapper > .card > .name {
  font-weight: 600;
  margin-bottom: 0;
}

#services > .wrapper > .card > .desc {
  text-align: center;
  margin-bottom: 30px;
}

#whyus {
  background-color: #F5FFF5;
  border-top: solid #67CB60 1px;
  border-bottom: solid #67CB60 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#whyus > .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

#whyus > .wrapper > .card {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 400px;
}

#whyus > .wrapper > .card > .image {
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 20px;
  width: 150px !important;
  height: 100px;
}

#whyus > .wrapper > .card > .info {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 10px;
}

#whyus > .wrapper > .card > .info > .name {
  margin: 0;
  font-weight: 600;
}

#whyus > .wrapper > .card > .info > .desc {
  margin-bottom: 0;
}

#contact > .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#contact > .wrapper > .column {
  min-width: 300px;
  width: 95%;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact > .wrapper > .column > .info {
  margin-bottom: 50px;
  display: -ms-grid;
  display: grid;
  padding-left: 0;
  width: 100%;
  position: relative;
}

#contact > .wrapper > .column > .info::before {
  position: absolute;
  content: '';
  display: block;
  height: 120%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  width: 90%;
  border-radius: 50%;
  background-color: #F5FFF5;
}

#contact > .wrapper > .column > .info > li.item {
  text-align: right;
  counter-increment: list-counter;
  list-style: none;
}

#contact > .wrapper > .column > .info > .item:before {
  content: counter(list-counter) ". ";
}

#contact > .wrapper > .column > .info > .item .bold {
  color: #0CA750;
  font-weight: 700;
  font-size: 1.5em;
  white-space: pre;
}

#contact > .wrapper > .column > .info > .item .bold:before {
  content: '\A';
}

#contact > .wrapper > .column > .info > .col2 {
  padding-left: 10%;
  margin-right: auto;
  -ms-grid-column: 2;
  grid-column: 2;
}

#contact > .wrapper > .column > .info > .col1 {
  padding-right: 10%;
  -ms-grid-column: 1;
  grid-column: 1;
}

#contact > .wrapper > .column > .info > .row1 {
  -ms-grid-row: 1;
  grid-row: 1;
}

#contact > .wrapper > .column > .info > .row2 {
  -ms-grid-row: 2;
  grid-row: 2;
}

#contact > .wrapper > .column > .info > .row3 {
  -ms-grid-row: 3;
  grid-row: 3;
}

#contact > .wrapper > .column > .info > .row4 {
  -ms-grid-row: 4;
  grid-row: 4;
}

#contact > .wrapper > .column > .info > .row5 {
  -ms-grid-row: 5;
  grid-row: 5;
}

#contact > .wrapper > .column > .info > .row6 {
  -ms-grid-row: 6;
  grid-row: 6;
}

#contact > .wrapper > .column > .info > .row7 {
  -ms-grid-row: 7;
  grid-row: 7;
}

#contact > .wrapper > .column > .contact-form {
  width: 90%;
  max-width: 600px;
  margin: auto;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  padding-bottom: 20px;
}

#contact > .wrapper > .column > .contact-form > .header {
  text-align: center;
  padding: 20px 0;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  background-color: #0CA750;
  margin-bottom: 10px;
}

#contact > .wrapper > .column > .contact-form > .desc {
  text-align: center;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contact > .wrapper > .column > .contact-form > .form {
  width: 80%;
  margin: auto;
  display: block;
}

#contact > .wrapper > .column > .contact-form > .form > .input-name {
  font-weight: 600;
  margin: 20px 0 5px;
}

#contact > .wrapper > .column > .contact-form > .form > .input {
  width: 100%;
}

#contact > .wrapper > .column > .contact-form > .form > .input-textarea {
  width: 100%;
  height: 100px;
  resize: none;
  margin-bottom: 20px;
}

#contact > .wrapper > .column > .contact-form > .form > .btn {
  margin: auto;
  display: block;
}

.footer a {
  color: black;
}

.footer .wrapper {
  margin-top: 50px;
  margin-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 300px;
  padding: 60px 5% 40px;
  background-color: #F9F9F9;
}

@media (max-width: 480px) {
  .footer .wrapper {
    padding-bottom: 50px;
  }
}

.footer .wrapper > .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 200px;
  max-width: 300px;
  width: 100%;
  margin-bottom: 20px;
  padding: 0 20px;
}

.footer .wrapper > .column > .logo {
  height: 70px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}

.footer .wrapper > .column > .logo > img {
  height: 100%;
  width: auto;
}

.footer .wrapper > .column > .name {
  margin-top: 0;
  font-weight: bold;
}

.footer .wrapper > .column > .info {
  margin: 10px 0 20px 20px;
  color: black;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .wrapper > .column > .info-wrapper {
  margin: 10px 0 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer .wrapper > .column > .info-wrapper > .info {
  margin: 0 0 0 10px;
  color: black;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer > .author {
  display: block;
  text-align: center;
  color: white;
  text-decoration: none;
  background-color: #67CB60;
  padding: 5px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 480px) {
  .footer > .author {
    margin-bottom: 45px;
  }
}

.header-ribbon {
  width: 100%;
  text-align: center;
  margin-top: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 10px;
  background-color: #F5FFF5;
  border-top: solid 1px #67CB60;
  border-bottom: solid 1px #67CB60;
  font-weight: 600;
  overflow: hidden;
  z-index: 0;
  position: relative;
}

.header-ribbon > .bold {
  font-weight: 700;
  color: #0CA750;
}

.header-ribbon:after {
  content: '';
  top: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 100%;
  height: 220px;
  position: absolute;
  z-index: 1;
  -webkit-animation: slide 2s infinite;
          animation: slide 2s infinite;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.8)), color-stop(99%, rgba(128, 186, 232, 0)), to(rgba(125, 185, 232, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#007db9e8', GradientType=1);
  /* IE6-9 */
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
  100% {
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
}

@keyframes slide {
  0% {
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
  100% {
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
}

.header-text {
  font-weight: 600;
  margin: 50px 0;
  text-align: center;
  font-size: 2em;
}

.two-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 10px;
  margin-bottom: 30px;
}

.two-block.one > .image {
  background-image: url("img/icons/wood-banner.jpg");
}

.two-block.two > .image {
  background-image: url("img/icons/marble-banner.jpg");
}

.two-block.three > .image {
  background-image: url("img/icons/paint-banner.jpg");
}

@media (max-width: 800px) {
  .two-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  }
  .two-block.one > .info {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.4))), url("/img/icons/wood-banner.jpg");
    background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.4)), url("/img/icons/wood-banner.jpg");
  }
  .two-block.two > .info {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.4))), url("/img/icons/marble-banner.jpg");
    background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.4)), url("/img/icons/marble-banner.jpg");
  }
  .two-block.three > .info {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.4))), url("/img/icons/paint-banner.jpg");
    background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.4)), url("/img/icons/paint-banner.jpg");
  }
}

.two-block > .block {
  width: 100%;
  max-width: 800px;
  height: 500px;
  border-radius: 2px;
  overflow: hidden;
}

.two-block > .block > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.two-block > .info {
  margin-top: 30px;
  background-color: #fff;
  margin-right: -20%;
  z-index: 1;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 0px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.1em;
}

@media (max-width: 800px) {
  .two-block > .info {
    background-color: white;
    background-size: cover;
    background-position: right;
    color: white;
    font-weight: 600;
  }
}

.two-block > .info > .name {
  margin: 0;
  font-size: 1.5em;
  font-weight: 600;
}

.two-block > .info > .name:after {
  margin-left: auto;
  margin-right: auto;
}

.two-block > .info > .desc {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.two-block > .info > .btn {
  margin: 30px auto;
  display: inline-block;
}

.two-block > .info > .tags {
  margin: 0;
}

@media (min-width: 800px) {
  .two-block:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .two-block:nth-child(odd) > .info {
    margin-right: 0;
    margin-left: -20%;
  }
}

.two-block > .image {
  max-width: 1000px;
  background-size: cover;
  background-position: right;
}

@media (max-width: 800px) {
  .two-block > .image {
    display: none;
  }
}

#about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 50px;
}

#about > .block {
  min-width: 300px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#about > .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#about > .image > img {
  max-width: 600px;
  width: 100%;
  height: auto;
}

#about > .info > .bold {
  font-size: 1.2em;
  font-weight: 600;
}

#about > .info > .btn {
  display: block;
  text-align: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

#findus > .wrapper {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#findus > .wrapper > .column {
  padding: 10px;
  overflow: hidden;
}

#findus > .wrapper > .map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#findus > .wrapper > .map > iframe {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 400px;
  max-width: 600px;
}

#findus > .wrapper > .info {
  padding-left: 50px;
}

#findus > .wrapper > .info > .name {
  font-size: 1.2em;
  font-weight: 600;
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gallery > .column {
  max-width: 500px;
  margin: 0 10px 30px;
}

.gallery > .info {
  font-size: 1.5em;
  font-weight: 600;
}

@media (max-width: 480px) {
  .gallery > .info {
    text-align: center;
    margin: 0;
  }
}

.gallery > .info > .text > .bold {
  font-weight: bold;
  color: #0CA750;
}

.gallery > .info > .btn {
  display: block;
  margin: 20px;
  float: right;
}

@media (max-width: 480px) {
  .gallery > .info > .btn {
    float: none;
  }
}

.gallery > .swiper-container {
  width: 100%;
  max-width: 800px;
  position: relative;
  /*
        background-color: lightgray;*/
  background-image: url(img/loading.gif);
  background-position: center;
  background-size: 100px;
  background-repeat: no-repeat;
}

.gallery > .swiper-container.loaded {
  background-image: none;
}

.gallery > .swiper-container > .swiper-wrapper > .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  max-height: 700px;
}

.gallery > .swiper-container > .swiper-wrapper > .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.gallery > .swiper-container > .swiper-pagination > .swiper-pagination-bullet-active {
  background-color: #0CA750;
}

.gallery > .swiper-container > .swiper-button-prev,
.gallery > .swiper-container .swiper-button-next {
  fill: #67CB60;
}

.gallery > .swiper-container > .swiper-button-disabled {
  display: none;
}

#whatwedo {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  width: 80%;
  margin: 30px auto;
  position: relative;
  background-color: #fff;
}

#whatwedo:before {
  content: '';
  height: 120%;
  width: 100vw;
  display: block;
  background-color: #F5FFF5;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 800px) {
  #whatwedo {
    width: 100%;
  }
}

#whatwedo > .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 20px;
  z-index: 1;
}

#whatwedo > .wrapper > .card {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 10px;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  #whatwedo > .wrapper > .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#whatwedo > .wrapper > .card > .icon {
  height: 200px;
  width: 200px;
  background-color: #F5FFF5;
  border-radius: 50%;
  border: solid 1px #0CA750;
  margin-right: -100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  z-index: 2;
}

@media (max-width: 480px) {
  #whatwedo > .wrapper > .card > .icon {
    margin-right: 0;
  }
}

#whatwedo > .wrapper > .card > .desc {
  height: 200px;
  width: 100%;
  max-width: 600px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 120px;
  padding-right: 20px;
  z-index: 1;
  border: solid 1px #0CA750;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 480px) {
  #whatwedo > .wrapper > .card > .desc {
    min-height: 250px;
    padding: 0 15px;
    margin-top: -50px;
    text-align: center;
    padding-top: 30px;
  }
}

#whatwedo > .wrapper > .card > .desc > .name {
  margin: 0;
  font-weight: 600;
}

#whatwedo > .wrapper > .card > .desc > .info {
  line-height: 1.3em;
  margin-bottom: 0;
  margin-top: 10px;
}

#whatwedo > .wrapper > .card > .desc > .info > .bold {
  font-weight: 600;
}

#whatwedo > .wrapper > .btn {
  margin-top: 30px;
  display: inline-block;
  text-align: center;
  text-align: center;
  font-weight: 600;
}

#portfolio .card {
  max-width: 80%;
  margin: 0 auto 50px;
  border-radius: 25px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
  #portfolio .card {
    max-width: 100%;
  }
}

#portfolio .card > .subtitle {
  text-align: center;
  padding: 40px 0 40px;
  margin: 0;
  color: white;
  font-size: 1.5em;
  font-weight: 600;
  font-style: italic;
  background-color: #67CB60;
}

#portfolio .card > .wrapper {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F5FFF5;
  padding: 30px 0;
}

#portfolio .card > .wrapper > a {
  background-color: #fff;
  margin: 0 10px 20px;
  padding: 10px;
  /*
                box-shadow: 0 0 3px rgba(black, .3);*/
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-transition: 100ms -webkit-transform linear;
  transition: 100ms -webkit-transform linear;
  transition: 100ms transform linear;
  transition: 100ms transform linear, 100ms -webkit-transform linear;
}

#portfolio .card > .wrapper > a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#portfolio .card > .wrapper > a {
  height: 200px;
  width: 200px;
}

@media (max-width: 480px) {
  #portfolio .card > .wrapper > a {
    width: 30vw;
    height: auto;
  }
}

#portfolio .card > .wrapper > a > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
/*# sourceMappingURL=main.css.map */