@font-face {
  font-family: 'WorkSansLight';
  src: url(fonts/WorkSans-Light.ttf) format("truetype");
}

@font-face {
  font-family: 'WorkSansMed';
  src: url(fonts/WorkSans-Medium.ttf) format("truetype");
}

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

.body--active {
  overflow: hidden;
}

@media only screen and (min-width: 1024px) {
  .body--active {
    overflow: auto;
  }
}

.nav-bar {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
}

@media only screen and (min-width: 1024px) {
  .nav-bar {
    height: auto;
    background-color: transparent;
    position: absolute;
  }
  .nav-bar--sub {
    position: relative;
  }
}

.nav-bar__content {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  position: relative;
  background-color: #fff;
  max-width: 70rem;
  margin: 0 auto;
}

@media only screen and (min-width: 1024px) {
  .nav-bar__content {
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: transparent;
    margin: 0;
    padding: 0;
    max-width: none;
  }
}

.nav-bar__icon-container {
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
}

.nav-bar__logo {
  display: block;
  background-color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 10;
}

.nav-bar__logo-source {
  width: 100%;
  height: auto;
  max-width: 280px;
  margin: 0 auto;
  display: block;
}

@media only screen and (min-width: 1024px) {
  .nav-bar__logo-source {
    max-width: 600px;
  }
}

@media only screen and (min-width: 1024px) {
  .nav-bar__logo {
    width: 100%;
    padding: 2rem 0;
  }
}

.nav-bar__logo--sm {
  position: absolute;
  top: -100%;
  left: 0;
  height: 100%;
  padding: 0 1rem;
  display: block;
  background-color: transparent;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  margin-left: calc((100% - 1024px) / 2);
  opacity: 0;
  z-index: 0;
  max-width: 7rem;
  margin-right: auto;
}

.nav-bar__logo--sm .nav-bar__logo-source {
  height: 80%;
  width: auto;
  position: absolute;
  left: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.nav-bar__logo--show {
  top: 0;
  opacity: 1;
}

.nav-bar__links {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: .5rem 1rem;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  z-index: -1;
  background-color: #fff;
  width: 100%;
  max-height: 350px;
  overflow: auto;
}

.nav-bar__links--active {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

@media only screen and (min-width: 1024px) {
  .nav-bar__links {
    position: relative;
    bottom: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    z-index: 0;
    height: 100%;
    padding: 0 1rem;
    overflow: visible;
    width: 100%;
    background-color: #fff;
  }
}

.nav-bar__btn {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  text-indent: -1000000000px;
  outline: 0;
  cursor: pointer;
  background-color: #fff;
  border: none;
}

@media only screen and (min-width: 1024px) {
  .nav-bar__btn {
    display: none;
  }
}

.nav-bar__btn-ui {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
  width: 2.5rem;
  height: 4px;
  top: 50%;
  left: 50%;
  -webkit-transition: -webkit-transform .2s ease-out;
  transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
  display: block;
  border-radius: 1px;
  background: #4A3932;
  position: absolute;
}

.nav-bar__btn-ui::before {
  -webkit-transform: translateY(-10px) rotate(0);
          transform: translateY(-10px) rotate(0);
}

.nav-bar__btn-ui::after {
  -webkit-transform: translateY(10px) rotate(0);
          transform: translateY(10px) rotate(0);
}

.nav-bar__btn-ui::after, .nav-bar__btn-ui::before {
  content: "";
  -webkit-transition: -webkit-transform .2s ease-out;
  transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
  display: block;
  border-radius: 1px;
  background: #4A3932;
  position: absolute;
  height: 4px;
  width: 100%;
}

.nav-bar__btn-ui--active {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.nav-bar__btn-ui--active::before, .nav-bar__btn-ui--active::after {
  -webkit-transform: translateY(0) rotate(-90deg);
          transform: translateY(0) rotate(-90deg);
}

.nav-bar--fixed {
  position: fixed;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 57rem) {
  .nav-bar--fixed {
    top: auto;
    left: auto;
  }
}

.nav-links {
  list-style: none;
}

@media only screen and (min-width: 1024px) {
  .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100%;
    width: 100%;
  }
}

.nav-links__item {
  font-family: Arial, sans-serif;
  color: #4A3932;
  position: relative;
}

@media only screen and (min-width: 1024px) {
  .nav-links__item {
    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;
    padding: 0 1rem;
    /*&--ddl {
                &:hover {
                    .nav-links__ddl {
                        display: block;
                    }
                }
            }*/
  }
}

.nav-links__link {
  display: block;
  font-family: Arial, sans-serif;
  color: #4A3932;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 1rem 0;
  text-decoration: none;
  -webkit-transition: -webkit-transform .2s ease-out;
  transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}

@media only screen and (min-width: 1024px) {
  .nav-links__link {
    height: 100%;
    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;
  }
  .nav-links__link:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.nav-links__link--ddl {
  display: block;
  position: relative;
  padding-right: 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
}

@media only screen and (min-width: 1024px) {
  .nav-links__link--ddl {
    height: 100%;
    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;
  }
}

.nav-links__link--ddl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  width: 7px;
  height: 7px;
  -webkit-transform: translateY(-80%) rotate(45deg);
          transform: translateY(-80%) rotate(45deg);
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
}

@media only screen and (min-width: 1024px) {
  .nav-links__link {
    padding: 1rem;
  }
  .nav-links__link--ddl {
    padding-right: 1.5rem;
  }
}

.nav-ddl {
  list-style: none;
  padding-left: 1rem;
}

@media only screen and (min-width: 1024px) {
  .nav-ddl {
    padding: 0 1rem;
  }
}

.nav-ddl__item {
  font-family: Arial, sans-serif;
  color: #fff;
  text-transform: uppercase;
}

.nav-ddl__link {
  display: block;
  font-family: Arial, sans-serif;
  color: #fff;
  padding: .6rem 0;
  text-decoration: none;
  font-size: 1rem;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

@media only screen and (min-width: 1024px) {
  .nav-ddl__link {
    white-space: nowrap;
  }
  .nav-ddl__link:hover {
    color: #fff;
  }
}

.header__image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.header__image::before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75.01%;
}

@media only screen and (min-width: 1024px) {
  .header__image::before {
    padding-bottom: 769px;
  }
}

.header__image-source {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (min-width: 1270px) {
  .header__image-source {
    height: auto;
    width: 100%;
  }
}

.header__image-source--sub {
  height: 100%;
  width: auto;
}

@media only screen and (min-width: 650px) {
  .header__image-source--sub {
    width: 100%;
    height: auto;
  }
}

.header__image--sub::before {
  padding-bottom: 600px;
}

.header__image--sub::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.header__video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /*width: 100%;*/
  min-width: 100%;
  min-height: 100%;
}

.section {
  background: #fff;
  color: #4A3932;
  padding: 4rem 0;
  position: relative;
}

.section--light-br {
  background: #EDE9E6;
  color: #4A3932;
}

.section--dark-br {
  background-color: #4A3932;
  color: #fff;
}

.section__container {
  color: inherit;
  max-width: 64rem;
  margin: 0 auto;
  padding: 1rem;
}

.section__container--full {
  padding: 0;
  max-width: 75rem;
}

.section__title {
  color: inherit;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-family: "WorkSansLight", sans-serif;
  font-size: 300;
}

.section__title--padding {
  margin: 0;
  padding: 3rem;
}

@media only screen and (min-width: 1024px) {
  .section__title {
    font-size: 2.5rem;
  }
}

.section__content--two-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section__content--wysiwyg {
  overflow: auto;
  font-family: Arial, sans-serif;
}

.section__content--wysiwyg p {
  margin-bottom: 1.5rem;
}

.section__content--wysiwyg ul {
  margin-bottom: 1.5rem;
  list-style: none;
}

.section__content--wysiwyg img.alignright {
  margin: 1rem auto;
}

@media only screen and (min-width: 750px) {
  .section__content--wysiwyg img.alignright {
    float: right;
    margin-left: 1rem;
    margin-bottom: 1rem;
  }
}

.section__content--wysiwyg img.alignleft {
  margin: 1rem auto;
}

@media only screen and (min-width: 750px) {
  .section__content--wysiwyg img.alignleft {
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem;
  }
}

.section__content--wysiwyg img {
  display: block;
  width: initial;
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.section__subtitle {
  font-family: "WorkSansMed", sans-serif;
  margin-bottom: 1rem;
}

.section__text {
  font-family: "WorkSansLight", sans-serif;
  font-size: 200;
}

.section__text--centered {
  text-align: center;
}

.section__col {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  margin: 1rem;
}

.section__col--first-at-mobile {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media only screen and (min-width: 40rem) {
  .section__col--first-at-mobile {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media only screen and (min-width: 40rem) {
  .section__col {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}

.section__col--narrow {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
}

.section__col--wide {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}

.section__col-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.section__col-image::before {
  content: '';
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 70%;
  width: 100%;
}

@media only screen and (min-width: 40rem) {
  .section__col-image::before {
    padding-bottom: 100%;
  }
}

.section__col-image-source {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
}

@media only screen and (min-width: 40rem) {
  .section__col-image {
    margin-bottom: 0;
  }
}

.section__col-image--rect::before {
  padding-bottom: 56.25%;
}

.section__col-content {
  font-family: "WorkSansLight", sans-serif;
}

.section__col-content p {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 40rem) {
  .section__col-content {
    padding-right: 3rem;
  }
}

.section__address {
  font-style: normal;
  margin-bottom: 2rem;
}

.section__link {
  display: inline;
  text-decoration: none;
  color: #4A3932;
}

.section__link:hover {
  text-decoration: underline;
}

.section__link--fax:hover {
  text-decoration: none;
}

.section--full {
  padding-top: 0;
}

.section__grid {
  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;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.section__grid-item {
  background-color: #4A3932;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 100%;
  cursor: pointer;
}

.section__grid-item:hover .project-card__image-source {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}

@media only screen and (min-width: 767px) {
  .section__grid-item {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}

@media only screen and (min-width: 1024px) {
  .section__grid-item {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    margin: 1rem;
  }
}

.section--footer-sub {
  background-color: #EDE9E6;
}

.project-card {
  width: 100%;
  position: relative;
}

.project-card__image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.project-card__image::before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  height: 0;
}

.project-card__image-source {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  z-index: 5;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.project-card__image-source-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: auto;
  width: 100%;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  z-index: 1;
}

.project-card__caption {
  background-color: #4A3932;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
  z-index: 10;
  color: #fff;
  font-family: Arial, sans-serif;
  width: 100%;
  min-height: 80px;
}

.card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.card-list__item {
  width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin: 0;
  background-color: #fff;
  position: relative;
  -webkit-transition: -webkit-transform .4s ease-out;
  transition: -webkit-transform .4s ease-out;
  transition: transform .4s ease-out;
  transition: transform .4s ease-out, -webkit-transform .4s ease-out;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media only screen and (min-width: 550px) {
  .card-list__item {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    margin: .5rem;
  }
}

@media only screen and (min-width: 912px) {
  .card-list__item {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    max-width: 30%;
    margin: .5rem;
  }
  .card-list__item:hover:after, .card-list__item:focus:after {
    opacity: 1;
  }
  .card-list__item:hover .card__image, .card-list__item:focus .card__image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.card {
  height: 100%;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 1024px) {
  .card {
    display: block;
  }
}

.card__image {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: -webkit-transform .4s ease-out;
  transition: -webkit-transform .4s ease-out;
  transition: transform .4s ease-out;
  transition: transform .4s ease-out, -webkit-transform .4s ease-out;
}

.card__image::before {
  content: "";
  display: block;
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 250px;
}

.card__image-source {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.card__content {
  padding: 1.5rem 1.5rem;
  background-color: #4A3932;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}

@media only screen and (min-width: 1024px) {
  .card__content {
    min-height: auto;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 12rem;
    -webkit-transform: translateY(8.5rem);
            transform: translateY(8.5rem);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    /*&::before {
                content: "";
                bottom: 0;
                left: 0;
                z-index: 10;
                width: 100%;
                height: 1rem;
                position: absolute;
                background: rgb(255,255,255);
                padding-bottom: 1rem;
                background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 62%);
    
            }*/
  }
}

.card__text-content {
  overflow: auto;
  position: relative;
  padding-bottom: 1rem;
}

.card__title {
  color: #fff;
  font-family: "WorkSansLight", sans-serif;
  text-align: center;
  margin-bottom: 1rem;
}

.card__text {
  color: #fff;
  font-family: "WorkSansLight", sans-serif;
  text-align: center;
  overflow: auto;
}

.logo-grid {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

.logo-grid__item {
  -ms-flex-preferred-size: 150px;
      flex-basis: 150px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  margin: 1rem 2rem;
}

.logo-grid__image {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.logo-grid__link {
  display: block;
  color: inherit;
  text-decoration: none;
  -webkit-transition: -webkit-transform .2s ease-out;
  transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}

.logo-grid__link:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.map {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.form {
  max-width: 912px;
  margin: 0 auto;
}

.form__sub-title {
  font-family: "WorkSansMed", sans-serif;
  font-weight: 900;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: .2rem;
}

.form__sub-title::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #4A3932;
}

.form__group {
  margin-bottom: 3rem;
}

.form__group-col {
  width: 100%;
}

@media only screen and (min-width: 850px) {
  .form__group-col {
    max-width: 400px;
  }
}

@media only screen and (min-width: 850px) {
  .form__group--wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form__input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1.2rem;
}

.form__input-group br {
  display: none;
}

.form__label {
  display: block;
  font-family: "WorkSansMed", sans-serif;
  margin-bottom: .2rem;
}

.form__input {
  display: block;
  padding: .5rem;
  width: 100%;
  min-width: 100%;
  font-family: "WorkSansMed", sans-serif;
  font-size: 1rem;
  position: relative;
  outline: none;
}

@media only screen and (min-width: 850px) {
  .form__input {
    max-width: 320px;
  }
}

.form__desc {
  margin-bottom: 1rem;
  font-family: "WorkSansMed", sans-serif;
  font-size: 1.2rem;
}

.form__ddl {
  width: 100%;
  font-size: 1rem;
  padding: .5rem;
  height: 39px;
  display: block;
  outline: none;
  border: solid 2px #eeeeee;
}

.form__submit {
  display: block;
  margin-right: auto;
  margin-left: auto;
  background-color: #4A3932;
  color: #fff;
  padding: .5rem;
  font-family: "WorkSansMed", sans-serif;
  font-size: 16px;
  border: solid 2px transparent;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  text-transform: uppercase;
  padding: .5rem 1.5rem;
}

.form__submit:hover {
  background-color: #fff;
  color: #4A3932;
  border: solid 2px #4A3932;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-not-valid-tip {
  font-family: "WorkSansMed", sans-serif;
  margin-top: .25rem;
}

.wpcf7-validation-errors {
  color: #ff0000;
  border: none !important;
  font-family: "WorkSansMed", sans-serif;
  text-align: center;
}

.wpcf7-mail-sent-ok {
  color: #27620e;
  font-family: "WorkSansMed", sans-serif;
  border: none !important;
  text-align: center;
}

.floating-icon {
  display: block;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  height: 55px;
  width: 55px;
  border-radius: 50%;
  background-color: #4a3932;
  z-index: 50;
}

.floating-icon__container {
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.floating-icon__icon {
  fill: #fff;
}

.floating-icon__icon--phone {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media only screen and (min-width: 1024px) {
  .floating-icon {
    display: none;
  }
}

.modal {
  height: 100vh;
  width: 100%;
  z-index: 200;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal__container {
  max-width: 57rem;
  margin: 0 auto;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100vw;
  height: 100vh;
  position: relative;
}

.modal__main-image {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  max-width: 700px;
}

.modal__main-image::before {
  content: "";
  display: block;
  position: relative;
  padding-bottom: 100%;
  width: 100%;
  height: 0;
}

.modal__main-image-source {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
}

.modal__thumbnails {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
}

.modal__control {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50px;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: transparent;
  font-size: 0;
  outline: none;
  cursor: pointer;
}

.modal__control--prev {
  left: 0;
}

.modal__control--prev::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
  border-right: solid 5px #fff;
  border-bottom: solid 5px #fff;
}

.modal__control--next {
  right: 0;
}

.modal__control--next::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  border-right: solid 5px #fff;
  border-bottom: solid 5px #fff;
}

.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  color: transparent;
  font-size: 0;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}

.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 4px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  z-index: 100;
}

.modal__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}

.modal--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.swiper-button-next, .swiper-button-prev {
  color: rgba(255, 255, 255, 0.9);
}

.swiper-pagination-bullet {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
  width: 20px;
  height: 20px;
  margin: 0 .4rem !important;
}

@media only screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    display: none;
  }
}

.swiper-pagination-bullet-active {
  background-color: white;
}
/*# sourceMappingURL=style.css.map */