/* SASS */
@import url("https://use.typekit.net/ujh4anb.css");
@media (min-width: 1500px) {
  .container {
    max-width: 1400px;
  }
}
@media (min-width: 2140px) {
  .container {
    max-width: 1900px;
  }
}
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-bold {
  font-weight: 700;
}

.bg-primary {
  background: #362f2a !important;
}

.bg-secondary {
  background: #bca890 !important;
}

.bg-tertiary {
  background: #ddd1c3 !important;
}

.color-primary {
  color: #362f2a;
}

.color-secondary {
  color: #bca890;
}

.color-tertiary {
  color: #ddd1c3;
}

.color-white {
  color: white;
}

.color-type {
  color: #000000;
}

.img-responsive {
  width: 100%;
  max-width: 100%;
}

.w-33 {
  width: 33.333333%;
}

.flex-column-reverse .split-item:first-child {
  margin-bottom: 0;
}
.flex-column-reverse .split-item:nth-child(2) {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .flex-column-reverse .split-item:nth-child(2) {
    margin-bottom: 0px;
  }
}

hr {
  margin: 30px 0;
}

html, body {
  font-family: "lato", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.75em;
  color: #000000;
  -webkit-font-feature-settings: "lnum";
  -moz-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
}
@media (min-width: 2140px) {
  html, body {
    font-size: 130%;
  }
}

p {
  margin: 15px 0;
}

a {
  color: #362f2a;
  transition: all 0.25s ease;
  text-decoration: none !important;
}
a:hover, a:focus a:active {
  color: #bca890;
}

ul li, ol li {
  padding: 5px 0;
}

ul a, li a {
  text-decoration: underline !important;
  font-weight: bold;
}

ol {
  font-weight: 700;
}
ol span {
  font-weight: 300;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "futura-pt", sans-serif;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
}

h1, .h1 {
  font-size: 36px;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  h1, .h1 {
    font-size: 60px;
  }
}

h2, .h2 {
  font-size: 24px;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  h2, .h2 {
    font-size: 48px;
  }
}

h3, .h3 {
  font-size: 20px;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 36px;
  }
}

h4, .h4 {
  font-size: 18px;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  h4, .h4 {
    font-size: 24px;
  }
}

h5, .h5 {
  font-size: 16px;
}

h6, .h6 {
  font-size: 14px;
}

.page-container {
  overflow: hidden;
  position: relative;
  border: 15px solid white;
}
@media (min-width: 992px) {
  .page-container {
    border: 30px solid white;
  }
}

.sub-heading {
  font-weight: 300 !important;
  display: block;
  width: 100%;
}

.title {
  margin-top: 0;
}
.title-secondary {
  font-family: "futura-pt", sans-serif;
  font-weight: 800;
}

.title-sub {
  font-weight: 300;
  text-transform: capitalize !important;
  font-size: 75%;
  display: block;
}

.margin-none, .no-margin {
  margin: 0 !important;
}

.padding-none, .no-padding {
  padding: 0 !important;
}

.btn-grouping {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.btn {
  border-radius: 0px;
  transition: all 0.25s ease;
  padding: 10px 20px;
  border: 1px solid;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 18px;
  font-family: "futura-pt", sans-serif;
}
.btn .fa {
  padding: 0;
  margin: 0 0 0 8px;
}
.btn-primary {
  background-color: #362f2a;
  border-color: #362f2a;
  color: white !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: white;
  color: #362f2a !important;
  border-color: #362f2a !important;
}
.btn-secondary {
  background-color: #bca890;
  border-color: #bca890;
  color: #000000;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
  background-color: white;
  color: #bca890 !important;
  border-color: #bca890 !important;
}
.btn-tertiary {
  background-color: #ddd1c3;
  border-color: #ddd1c3;
  color: #000000;
}
.btn-tertiary:hover, .btn-tertiary:focus, .btn-tertiary:active {
  background-color: white;
  color: #ddd1c3 !important;
  border-color: #ddd1c3 !important;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-outline {
  border-color: white;
  color: white !important;
  background-color: transparent;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active {
  background-color: #362f2a;
  border-color: #362f2a;
  color: white !important;
}

.backToTop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border: 1px solid lightgray;
  background-color: white;
  color: #202020;
  font-size: 18px;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
  z-index: 5001;
}
@media (min-width: 992px) {
  .backToTop {
    bottom: 30px;
    right: 30px;
  }
}

@keyframes animateDown {
  0% {
    top: -100px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animateDown {
  animation: animateDown 0.5s 1;
}

.fadeIn {
  animation: fadeIn 0.75s 1;
}

.dropdown-toggle::after {
  display: none !important;
}

.dropdown-menu {
  width: 220px;
  padding: 15px;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}
.dropdown-menu a {
  text-decoration: none !important;
}

.nav-wrapper {
  background-color: white;
}
.nav-wrapper .navbar {
  background-color: white;
  padding: 0 0 15px 0;
  transition: background-color 0.25s ease;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100%;
  border: 15px solid white;
  border-bottom: 0 !important;
}
@media (min-width: 992px) {
  .nav-wrapper .navbar {
    padding: 15px 30px 30px 30px;
  }
}
.nav-wrapper .navbar-toggler {
  outline: none !important;
  border: none !important;
  background-color: #362f2a;
  padding: 15px 10px;
  width: 60px;
  border-radius: 500px;
  margin: 0;
  right: 0;
  height: 60px;
  width: 60px;
  position: relative;
}
.nav-wrapper .navbar-toggler.collapsed .toggler-icon:nth-child(1), .nav-wrapper .navbar-toggler.collapsed .toggler-icon:nth-child(2), .nav-wrapper .navbar-toggler.collapsed .toggler-icon:nth-child(3) {
  width: 30px !important;
}
.nav-wrapper .navbar-toggler .toggler-icon {
  background-color: white;
  height: 3px;
  left: 15px;
  position: absolute;
  transition: all 0.25s ease;
}
.nav-wrapper .navbar-toggler .toggler-icon:nth-child(1) {
  top: 33%;
  transform: translateY(-50%);
  width: 15px;
}
.nav-wrapper .navbar-toggler .toggler-icon:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
}
.nav-wrapper .navbar-toggler .toggler-icon:nth-child(3) {
  bottom: 28%;
  transform: translateY(-50%);
  width: 20px;
}
.nav-wrapper .navbar-nav .nav-item {
  color: #362f2a;
  font-weight: 800;
  font-family: "futura-pt", sans-serif;
  text-transform: uppercase;
  transition: all 0.25s ease;
  text-decoration: none !important;
  text-align: center;
  font-size: 20px;
}
.nav-wrapper .navbar-nav .nav-item:hover, .nav-wrapper .navbar-nav .nav-item:focus, .nav-wrapper .navbar-nav .nav-item:active, .nav-wrapper .navbar-nav .nav-item.active {
  color: #bca890 !important;
}
.nav-wrapper .navbar-nav .nav-item.btn-quote {
  color: white !important;
  padding: 10px 15px;
}
@media (min-width: 1200px) {
  .nav-wrapper .navbar-nav li:last-child .nav-item {
    margin-right: 0;
  }
}
.nav-wrapper .logo-container {
  max-width: 200px;
}
@media (min-width: 576px) {
  .nav-wrapper .logo-container {
    max-width: unset;
  }
}
.nav-wrapper .logo-container .logo-circle {
  width: 66px;
  transition: all 0.25s ease;
  position: absolute;
  top: 0px;
}
@media (min-width: 992px) {
  .nav-wrapper .logo-container .logo-circle {
    width: 99px;
  }
}
@media (min-width: 1200px) {
  .nav-wrapper .logo-container .logo-circle {
    width: 260px;
  }
}
.nav-wrapper .logo-container .logo-word {
  transition: all 0.25s ease;
  margin-left: 75px;
  width: 240px;
}
@media (min-width: 992px) {
  .nav-wrapper .logo-container .logo-word {
    width: 285px;
    margin-right: 117px;
  }
}
@media (min-width: 1200px) {
  .nav-wrapper .logo-container .logo-word {
    width: 345px;
    margin-left: 280px;
  }
}
.nav-wrapper .header-inner-container .header-phone {
  font-weight: 800;
  font-family: "futura-pt", sans-serif;
}
.nav-wrapper .header-inner-container .header-social {
  width: 75px;
  font-size: 24px;
}
.nav-wrapper .header-inner-container .header-social a {
  color: #bca890;
}
.nav-wrapper .header-inner-container .header-social a:hover, .nav-wrapper .header-inner-container .header-social a:focus, .nav-wrapper .header-inner-container .header-social a:active {
  color: #362f2a;
}
.nav-wrapper .navbar-brand {
  max-width: 170px;
  width: 100%;
  margin: 0;
  transition: all 0.25s ease;
}
.nav-wrapper .navbar-brand img {
  width: 100%;
}
@media (min-width: 1200px) {
  .nav-wrapper .navbar-brand {
    max-width: 270px;
  }
}
.nav-wrapper .navbar-btn-group {
  position: absolute;
  right: 8px;
  top: 12px;
}
@media (min-width: 1200px) {
  .nav-wrapper .navbar-btn-group {
    position: relative;
    top: unset;
    right: unset;
  }
}
.nav-wrapper .navbar-btn-group .btn {
  font-size: 11px;
  padding: 7px 12px;
}
@media (min-width: 576px) {
  .nav-wrapper .navbar-btn-group .btn {
    font-size: 14px;
    padding: 5px 14px;
  }
}
@media (min-width: 1200px) {
  .nav-wrapper .navbar-btn-group .btn {
    padding: 7px 20px;
  }
}
@media (min-width: 1500px) {
  .nav-wrapper .navbar-btn-group .btn {
    font-size: 16px;
  }
}
@media (min-width: 1680px) {
  .nav-wrapper .navbar-btn-group .btn {
    font-size: 18px;
  }
}
.nav-wrapper .navbar-btn-group .btn:first-child {
  margin-right: 5px;
  padding: 9px;
}
@media (min-width: 576px) {
  .nav-wrapper .navbar-btn-group .btn:first-child {
    padding: 8px;
  }
}
@media (min-width: 1200px) {
  .nav-wrapper .navbar-btn-group .btn:first-child {
    margin-right: 10px;
    padding: 10px;
  }
}
@media (min-width: 1500px) {
  .nav-wrapper .navbar-btn-group .btn:first-child {
    margin-right: 15px;
  }
}
.nav-wrapper .navbar-social {
  margin-right: 40px;
}
.nav-wrapper .navbar-social .social-item {
  color: white;
  font-size: 24px;
  margin-right: 10px;
  transition: all 0.25s ease;
  margin-right: 15px;
}
.nav-wrapper .navbar-social .social-item:hover, .nav-wrapper .navbar-social .social-item:focus, .nav-wrapper .navbar-social .social-item:active, .nav-wrapper .navbar-social .social-item.active {
  color: #bca890;
}
.nav-wrapper .navbar-social .social-item:last-child {
  margin-right: 0;
}

.section {
  padding: 45px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.row-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .row-bg {
    background-attachment: fixed;
  }
}
@media (min-width: 992px) {
  .row-bg {
    margin-top: 30px;
  }
}

.content-block {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  width: 100%;
  color: white;
}
.content-block .btn {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .content-block {
    padding: 80px 60px;
    max-width: 700px;
  }
  .content-block.add-border-left {
    border-left: 30px solid white;
  }
  .content-block.add-border-right {
    border-right: 30px solid white;
  }
}

.split-item {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .split-item {
    margin-bottom: 0;
  }
}
.split-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .add-border-split .split-item:first-child {
    border-right: 15px solid white;
  }
  .add-border-split .split-item:last-child {
    border-left: 15px solid white;
  }
}

.full-width {
  width: 100%;
  max-width: 100%;
}

.add-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-block-wrapper {
  margin-bottom: 15px;
  padding-right: 5px;
}
@media (min-width: 576px) {
  .image-block-wrapper:nth-child(3), .image-block-wrapper:nth-child(4) {
    margin-bottom: 0;
  }
}
.image-block-wrapper:nth-child(4) {
  margin-bottom: 0;
}
.image-block-wrapper:nth-child(2), .image-block-wrapper:nth-child(4) {
  padding-right: 0;
}
@media (min-width: 768px) {
  .image-block-wrapper {
    margin-bottom: 0;
    padding-right: 5px;
  }
  .image-block-wrapper:nth-child(2) {
    padding-right: 5px;
  }
}
@media (min-width: 992px) {
  .image-block-wrapper {
    padding-right: 15px;
  }
  .image-block-wrapper:nth-child(2) {
    padding-right: 15px;
  }
  .image-block-wrapper:nth-child(4) {
    padding-right: 0;
  }
}

.image-block {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.image-block img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: auto;
  transition: transform 20s ease;
}

.carousel .carousel-item {
  width: 100%;
}
.carousel .carousel-item .carousel-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 450px;
}

.modal-backdrop {
  z-index: 9999;
  border: 15px solid white;
}
@media (min-width: 992px) {
  .modal-backdrop {
    border: 30px solid white;
  }
}

.modal {
  z-index: 10000;
  padding: 0 !important;
}
.modal .close {
  background: transparent;
  position: absolute;
  top: 30px;
  right: 30px;
  color: white;
  font-size: 24px;
  transition: all 0.25s ease;
  z-index: 8000;
  opacity: 1;
}
.modal .close .fa {
  transform: rotate(0);
  transition: all 0.25s ease;
}
.modal .close:hover .fa, .modal .close:focus .fa, .modal .close:active .fa {
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .modal .close {
    top: 60px;
    right: 60px;
  }
}
.modal .modal-dialog {
  max-width: 750px;
  margin: 15px;
}
@media (min-width: 768px) {
  .modal .modal-dialog {
    margin: 60px auto;
  }
}
@media (min-width: 992px) {
  .modal .modal-dialog {
    margin: 120px auto;
  }
}
.modal .modal-content {
  border: none;
}

a.bg-primary:focus, a.bg-primary:hover, button.bg-primary:focus, button.bg-primary:hover {
  background-color: #bca890 !important;
}

.project-btn:hover, .project-btn:focus, .project-btn:active {
  background-color: #bca890 !important;
  color: white;
}

.section-top {
  position: relative;
}
.section-top .header-image {
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 450px;
  position: relative;
  height: 96vh;
}
.section-top .header-image .vid-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.7;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-top .header-image #vid1 {
  width: auto;
  height: 100%;
  display: flex;
  /*@include breakpoint(sm){
  	height:125%;
  	width:auto;
  }*/
}
@media (min-width: 1500px) {
  .section-top .header-image #vid1 {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 768px) {
  .section-top .header-image {
    height: 94vh;
    background-attachment: fixed;
  }
}
@media (min-width: 1200px) {
  .section-top .header-image {
    min-height: 650px;
  }
}
.section-top .header-image-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
}
@media (min-width: 768px) {
  .section-top .header-image-overlay {
    display: none;
  }
}
.section-top .header-image-caption {
  color: white;
  position: relative;
  max-width: 450px;
  width: 100%;
  padding: 15px;
  z-index: 250;
}
@media (min-width: 768px) {
  .section-top .header-image-caption {
    margin-top: 90px;
  }
}
@media (min-width: 992px) {
  .section-top .header-image-caption {
    margin-top: 200px;
  }
}
@media (min-width: 2140px) {
  .section-top .header-image-caption {
    max-width: 750px;
  }
}
.section-top .header-image-caption p {
  font-size: 15px;
  line-height: 1.3em;
}
@media (min-width: 576px) {
  .section-top .header-image-caption p {
    font-size: 16px;
    line-height: 1.35em;
  }
}
@media (min-width: 768px) {
  .section-top .header-image-caption p {
    font-size: 18px;
  }
}
.section-top .header-image-home {
  background: #000;
  overflow: hidden;
  width: 100%;
  height: 550px !important;
}
@media (min-width: 768px) {
  .section-top .header-image-home {
    height: 800px !important;
  }
}
@media (min-width: 1200px) {
  .section-top .header-image-home {
    height: 900px !important;
  }
}
@media (min-width: 1500px) {
  .section-top .header-image-home {
    height: auto !important;
    aspect-ratio: 16/8;
  }
}
@keyframes bounce {
  0% {
    bottom: 30px;
  }
  50% {
    bottom: 45px;
  }
  100% {
    bottom: 30px;
  }
}
.section-top .header-image .scroll-down {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  border-radius: 500px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 250;
  cursor: pointer;
  transition: all 0.25s ease;
  animation-name: bounce;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.section-top .header-image .scroll-down .fa {
  margin: 0;
  padding: 0;
  font-size: 20px;
}
.section-top .header-image .scroll-down:hover, .section-top .header-image .scroll-down:focus {
  transform: translateX(-50%) scale(1.35);
}

.section-image-wrapper {
  align-self: stretch;
}

.section-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-self: stretch;
  justify-self: stretch;
  min-height: 300px;
}
@media (min-width: 768px) {
  .section-image {
    min-height: 500px;
  }
}
@media (min-width: 992px) {
  .section-image {
    min-height: 600px;
  }
}

.carousel-item {
  height: 100%;
}

.section-padding {
  padding-top: 45px;
  padding-bottom: 45px;
}
@media (min-width: 992px) {
  .section-padding {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.section-margin {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .section-margin {
    margin-top: 30px;
  }
}

.add-padding {
  padding: 30px;
}
@media (min-width: 768px) {
  .add-padding {
    padding: 30px;
  }
}
@media (min-width: 992px) {
  .add-padding {
    padding: 60px;
  }
}

@media (min-width: 768px) {
  .offset-margin-left {
    margin-left: -90px;
  }
}
@media (min-width: 992px) {
  .offset-margin-left {
    margin-left: -60px;
  }
}
@media (min-width: 768px) {
  .offset-margin-right {
    margin-right: -90px;
  }
}
@media (min-width: 992px) {
  .offset-margin-right {
    margin-right: -60px;
  }
}

.banner-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
}
@media (min-width: 768px) {
  .banner-image {
    background-attachment: fixed;
  }
}
@media (min-width: 992px) {
  .banner-image {
    min-height: 480px;
  }
}
@media (min-width: 1200px) {
  .banner-image {
    min-height: 500px;
  }
}

@media (min-width: 768px) {
  .add-border-left {
    border-left: 8px solid white;
  }
}
@media (min-width: 992px) {
  .add-border-left {
    border-left: 18px solid white;
  }
}
@media (min-width: 768px) {
  .add-border-right {
    border-right: 15px solid white;
  }
}
@media (min-width: 992px) {
  .add-border-right {
    border-right: 30px solid white;
  }
}

.page-content-block {
  padding: 60px 30px;
}
@media (min-width: 1200px) {
  .page-content-block {
    padding: 80px 40px;
  }
}
@media (min-width: 1500px) {
  .page-content-block {
    padding: 120px 60px;
  }
}
.page-content-block-inner {
  max-width: 900px;
}

.services-items {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .services-items {
    margin-top: 30px;
  }
}

.services-item:nth-child(1) {
  padding-left: 0;
  padding-right: 7.5px;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .services-item:nth-child(1) {
    padding-right: 15px;
    margin-bottom: 0;
  }
}
.services-item:nth-child(1) .services-item-inner {
  background-image: url("images/img-core-boxes.jpg");
}
.services-item:nth-child(2) {
  padding-right: 0;
  padding-left: 7.5px;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .services-item:nth-child(2) {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 0;
  }
}
.services-item:nth-child(2) .services-item-inner {
  background-image: url("images/img-coreracks-2.jpg");
}
.services-item:nth-child(3) {
  padding-left: 0;
  padding-right: 7.5px;
}
@media (min-width: 992px) {
  .services-item:nth-child(3) {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.services-item:nth-child(3) .services-item-inner {
  background-image: url("images/img-displayboxes.jpg");
}
.services-item:nth-child(4) {
  padding-right: 0;
  padding-left: 7.5px;
}
@media (min-width: 992px) {
  .services-item:nth-child(4) {
    padding-left: 15px;
  }
}
.services-item:nth-child(4) .services-item-inner {
  background-image: url("images/img-other-products.jpg");
}
.services-item:hover .services-item-text, .services-item:focus .services-item-text, .services-item:active .services-item-text {
  background-color: #bca890;
  color: #362f2a;
}

.services-item-inner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 220px;
}
@media (min-width: 768px) {
  .services-item-inner {
    min-height: 385px;
  }
}
.services-item-inner .services-item-text {
  padding: 15px;
  color: white;
  font-family: "futura-pt", sans-serif;
  font-weight: 800;
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  background-color: #362f2a;
  transition: all 0.25s ease;
}
@media (min-width: 768px) {
  .services-item-inner .services-item-text {
    padding: 30px;
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .services-item-inner .services-item-text {
    font-size: 36px;
  }
}

form .field-group {
  display: flex;
  flex-wrap: nowrap;
}
form .field-group input:first-child {
  margin-right: 7.5px;
}
form .field-group input:last-child {
  margin-left: 7.5px;
}
form input, form textarea {
  padding: 10px 15px;
  border-radius: 0px;
  width: 100%;
  display: block;
  margin-bottom: 15px;
  border: 1px solid lightgray;
  transition: all 0.25s ease;
}
form input:focus, form textarea:focus {
  outline: none !important;
  border-color: lightgray;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

#contactForm .split-item:first-child span {
  display: block;
}
#contactForm .split-item:first-child span .fa {
  margin-right: 10px;
  text-align: center;
  min-width: 20px;
}
#contactForm .split-item:first-child a {
  color: white;
}
#contactForm .split-item:first-child a:hover, #contactForm .split-item:first-child a:focus, #contactForm .split-item:first-child a:active {
  color: #bca890;
}

form ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
form .hide {
  display: none;
}
form .form-control {
  display: block;
  padding: 0;
  border: 0;
  margin-bottom: 15px;
  height: auto !important;
}
@media (min-width: 992px) {
  form .form-control {
    margin-bottom: 30px;
  }
}
form .form-control label {
  display: none;
}
form .form-control input, form .form-control select, form .form-control textarea {
  padding: 10px;
  border: 1px solid lightgray;
  border-radius: 0;
  font-weight: 300;
  width: 100%;
}
form .btn {
  box-shadow: none !important;
  outline: 0 !important;
  border: 1px solid #362f2a !important;
  margin-bottom: 0;
}

#footerTestimonials {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  #footerTestimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
#footerTestimonials .carousel-control {
  z-index: 120;
}
#footerTestimonials .carousel-inner .fa-quote-left {
  position: absolute;
  z-index: 50;
  font-size: 78px;
  top: 0;
  left: 21%;
  color: rgba(221, 209, 195, 0.2);
  display: none;
}
@media (min-width: 992px) {
  #footerTestimonials .carousel-inner .fa-quote-left {
    display: block;
  }
}
@media (min-width: 2140px) {
  #footerTestimonials .carousel-inner .fa-quote-left {
    left: 14%;
  }
}
#footerTestimonials .carousel-inner .carousel-item {
  position: relative;
  z-index: 100;
}
#footerTestimonials .carousel-inner .carousel-item .carousel-item-inner {
  display: flex;
  flex-direction: column;
  color: white;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}
@media (min-width: 992px) {
  #footerTestimonials .carousel-inner .carousel-item .carousel-item-inner {
    max-width: 50%;
  }
}
@media (min-width: 2140px) {
  #footerTestimonials .carousel-inner .carousel-item .carousel-item-inner {
    max-width: 70%;
  }
}
#footerTestimonials .carousel-inner .carousel-item .carousel-item-inner p {
  font-style: italic;
  text-align: center;
  font-size: 18px;
}
@media (min-width: 992px) {
  #footerTestimonials .carousel-inner .carousel-item .carousel-item-inner p {
    font-size: 21px;
  }
}
#footerTestimonials .carousel-inner .carousel-item .carousel-item-inner span {
  text-align: right;
}

footer {
  background: #362f2a;
  color: white;
  padding: 30px;
  margin-top: 15px;
}
@media (min-width: 992px) {
  footer {
    margin-top: 30px;
  }
}
footer a {
  color: white;
}
footer a:hover, footer a:focus, footer a:active {
  color: #bca890;
}
footer hr {
  background-color: white;
}
footer .footer-logo {
  width: 100%;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  footer .footer-logo {
    max-width: 370px;
    margin-bottom: 0;
  }
}
footer .footer-menu a, footer .footer-contact a {
  display: block;
  font-size: 14px;
}
@media (min-width: 992px) {
  footer .footer-menu a, footer .footer-contact a {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  footer .footer-menu a, footer .footer-contact a {
    font-size: 18px;
  }
}

.footer-social a:nth-child(2) {
  margin: 0 10px;
}

.copyright {
  color: white;
  font-size: 14px;
}

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