/*
  Theme Name: Hollow
  Theme URI: http://bigtuna.com
  Description: BigTuna WordPress Theme
  Version: 1.0.0
  Author: BigTuna
  Author URI: http://bigtuna.com
  Tags: HTML5, CSS3
*/
@charset "utf-8";

/*============================ */
/* VARIABLES
============================== */

:root {
  /* Color Variables: */
  --defaultMainColor: #999991;
  --defaultMainDark: #101010;
  --defaultMainAccent: #d5b66f;
  --accentDark: #ad8042;
  --defaultGrey: #646464;
  
  /* Font Variables */
  --mainFont: 'Catamaran', sans-serif;
}

html {
  font-family: var(--mainFont);
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
h1, h2 {
  letter-spacing: .2rem;
}
h3, h4, p, li, a {
  letter-spacing: .1rem;
}

/*============================ */
/* HEADER 04
============================== */
.hollow-header-04 {
  position: relative;
  z-index: 9000;
  background: var(--defaultMainDark);
  color: #f6f6f6;
  width: 100%;
}
.hollow-header-04.sticky {
  position: fixed;
  top: 0;
}
.hollow-header-04.sticky .main-content {
  display: none;
}
.hollow-header-04 .meta-wrap-outer {
  font-size: 2rem;
  font-weight: 400;
  background: var(--defaultMainAccent);
  margin: 0;
}
.hollow-header-04.sticky .meta-wrap-outer {
  display: none;
}
.hollow-header-04 .meta-wrap-inner {
  display: block;
  position: relative;
  text-align: right;
  font-size: 2rem;
}
.hollow-header-04 .meta-wrap-inner a {
  display: inline-block;
  position: relative;
  float: right;
  line-height: 1;
  color: #FFF;
  padding: .3rem 0;
  font-size: 1rem;
}
.hollow-header-04 .meta-wrap-inner a:hover {
  color: rgba(255,255,255,.7);
}
.hollow-header-04 .meta-wrap-inner .spacer {
  position: relative;
  display: inline-block;
  margin: 0 .5rem;
}
.hollow-header-04 .logo {
  text-align: center;
}
.hollow-header-04 .logo img {
  margin: .5rem auto;
  max-height: 15rem;
  max-width: 100%;
  transition: all .32s ease;
  margin-bottom: -7rem;
  background: var(--defaultMainDark);
  border-radius: 50%;
}
.hollow-header-04.sticky .logo img {
  max-width: 110px;
  margin: .2rem auto;
}
.hollow-header-04 .va-middle {
  float: left;
}
.hollow-header-04 .phone {
  text-align: left;
  font-size: 0;
  display: inline-block;
}
.hollow-header-04 .phone a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  margin: .4rem 0;
  display: inline-block;
border: 1px solid var(--accentDark);
padding: 3px 5px;
}
.hollow-header-04 .phone a:hover {
  color: var(--defaultMainAccent);
}
.hollow-header-04 .social {
  display: block;
  text-align: right;
}
.hollow-header-04 .social a {
  color: #fff;
  font-size: 1.2rem;
  display: inline-block;
  vertical-align: middle;
  padding: 0 .5rem;
	border: 1px solid var(--accentDark);
padding: 3px 5px;
}
.hollow-header-04 .social a:hover {
  color: var(--defaultMainAccent);
}
.hollow-header-04 .nav-wrap {
  display: block;
  position: relative;
  width: 100%;
  background: var(--defaultMainDark);
  padding: .5rem 0;
  z-index: 10;
}
.hollow-header-04 .nav-wrap .col-xs-12 {
  text-align: center;
}
.hollow-header-04 nav {
  display: inline-block;
  float: none;
  vertical-align: top;
}
.hollow-header-04 nav ul {
  text-align: left;
}
.hollow-header-04 nav a {
  padding: .4rem .6rem;
  display: block;
  color: #FFF;
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
}
.hollow-header-04 nav .menu-item {
  margin-bottom: 0;
}
.hollow-header-04.sticky nav a {
  padding: .2rem .6rem;
}
.hollow-header-04 .mobile-toolbar nav a.mobile-icon {
  font-size: 2rem;
}
/* NAV LEVEL ONE */
.hollow-header-04 .menu-item.open>a, .hollow-header-04 .menu-item:hover>a, .hollow-header-04 .menu-item.active a, .hollow-header-04 .menu-item.active:hover>a {
  color: var(--defaultMainAccent);
}
/* NAV LEVEL TWO */
.hollow-header-04 .dropdown-menu {
  margin-top: 0px;
  border-radius: 0;
  border: none;
  padding: 0;
  display: none;
}
.hollow-header-04 nav .dropdown-menu .menu-item {
  float: none;
}
.hollow-header-04 nav .dropdown-menu a {
  background: var(--defaultMainAccent);
  color: var(--defaultMainDark);
}
.hollow-header-04 .dropdown-menu>li:hover>a, .hollow-header-04 .dropdown-menu>li.active>a, .hollow-header-04 .dropdown-menu>.active>a:hover, .hollow-header-04 .dropdown-menu>.active>a:focus {
  background: var(--accentDark);
  color: var(--defaultMainDark);
}
.hollow-header-04 .dropdown .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0 0 3px 5px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
/* NAV MOBILE */
.hollow-header-04 nav #mobile {
  position: relative;
  height: 2rem;
  width: 2rem;
  background: none;
  outline: none;
  border: none;
  float: right;
}
.hollow-header-04 .hamburger {
  display: block;
  position: absolute;
  width: 2rem;
  height: 1.5rem;
  background: #FFF;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2
}
.hollow-header-04 .hamburger:hover {
  cursor: pointer;
}
.hollow-header-04 .hamburger:before,
.hollow-header-04 .hamburger:after {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 20%;
  background: var(--defaultMainColor);
  transition-property: transform, top;
  transition-duration: .2s;
  transition-timing-function: ease;
  transform: translateZ(0);
}
.hollow-header-04 .hamburger:after {
  top: 60%
}
header.hollow-header-04.header-menu-open #mobile,
header.hollow-header-04.header-menu-open #mobile .hamburger {
  background: transparent;
}
header.hollow-header-04.header-menu-open #mobile>.hamburger:before,
header.hollow-header-04.header-menu-open #mobile>.hamburger:after {
  top: 40%;
  background: #FFF;
}
header.hollow-header-04.header-menu-open #mobile>.hamburger:before {
  transform: rotate(45deg);
}
header.hollow-header-04.header-menu-open #mobile>.hamburger:after {
  transform: rotate(-45deg);
}
/* MOBILE TOOLBAR */
.hollow-header-04 .mobile-toolbar {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.hollow-header-04 .mobile-toolbar a {
  color: #fff;
  padding: .5rem 1rem;
}
.hollow-header-04 .mobile-toolbar a:hover {
  color: #252525;
}
.hollow-header-04 .mobile-toolbar>* {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (min-width: 992px) {
  .hollow-header-04 nav #mobile,
  .hollow-header-04 .mobile-toolbar {
    display: none;
  }
  .hollow-header-04 .menu {
    float: right;
  }
  .hollow-header-04 nav .menu-item {
    float: left;
    position: relative;
  }
  .hollow-header-04 nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 12rem;
    min-width: max-content;
  }
  .hollow-header-04 nav .menu-item-has-children:hover>ul.dropdown-menu {
    display: block;
  }
  .hollow-header-04 .mobile-toolbar {
    display: none;
  } 
  .hollow-header-04 nav .dropdown-menu li:first-of-type a {
    border-radius: 4px 4px 0 0;
  /*   margin-bottom: 3px; */
  }
  .hollow-header-04 nav .dropdown-menu li:last-of-type a {
    border-radius: 0 0 4px 4px;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-header-04 .logo {
    text-align: center;
  }
  .hollow-header-04 .logo img {
    margin: 60px auto 15px;
  }
  body:not(.home) .hollow-header-04 .logo {
    display: none;
  }
  header.hollow-header-04.header-menu-open nav .menu {
    pointer-events: auto;
    opacity: 1;
    max-height: 85vh;
    overflow-y: auto;
  }
  .hollow-header-04 nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: .7rem;
    width: 100%;
    background: var(--defaultMainAccent);
  }
  .hollow-header-04 nav a {
    font-size: 1rem;
    text-transform: uppercase;
  }
  .hollow-header-04 .hamburger::before,
  .hollow-header-04 .hamburger::after {
    background: var(--defaultMainAccent);
  }
  .hollow-header-04 nav .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transition: opacity 0.25s;
    z-index: -1;
    background: var(--defaultMainDark);
    box-shadow: 0 3px 3px -2px #000;
    pointer-events: none;
    opacity: 0;
  }
  .hollow-header-04 nav .menu-item-has-children.open .dropdown-menu {
    display: block;
  }
  .hollow-header-04 .dropdown-menu {
    position: relative;
    box-shadow: none;
    width: 100%;
  }
  .hollow-header-04 .dropdown-menu>li>a {
    padding-left: 2.5rem;
  }
  .hollow-header-04 .mobile-toolbar>* {
    display: inline-block;
  }
  .hollow-header-04 .mobile-toolbar a {
    font-size: 2rem;
    padding: .2rem .7rem;
    float: left;
  }
  .hollow-header-04 .mobile-toolbar a i {
    padding: 0;
  }
}
@media screen and (orientation: portrait) and (max-width:991px) {
  .hollow-header-04 nav a {
    font-size: 1.6rem;
    padding: .6rem;
  }
}
@media screen and (orientation: portrait) and (max-width:767px) {
  .hollow-header-04 nav a {
    font-size: 1.4rem;
    padding: .45rem .6rem;
  }
}

/*HOMEPAGE COMPONENTS*/


/*============================ */
/* Hero 16
============================== */
.hollow-hero-16 {
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px -2px #000;
  z-index: 10;
}
.hollow-hero-16::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(43 43 43 / 40%);
  pointer-events: none;
}
.hollow-hero-16 .slider-wrap {
  visibility: hidden;
}
.hollow-hero-16 .slider-wrap.slick-initialized {
  visibility: visible;
}
.hollow-hero-16 .slide {
  height: 76vh;
  min-height: 43rem;
  position: relative;
  overflow: hidden;
}
.hollow-hero-16 img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hollow-hero-16 .flex-container {
  position: absolute;
  top: 48%;
  left: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translate(-50%,-50%);
  z-index: 1;
}
.hollow-hero-16 h1 {
  color: #FFF;
  font-weight: 300;
  text-align: center;
  text-shadow: 1px 1px 4px #000000;
  font-size: 3rem;
}
.hollow-hero-16 hr {
  width: 5%;
  margin: 1rem auto 2rem;
  border-color: #FFF;
  border-width: .5px;
}
.hollow-hero-16 p {
  color: #FFF;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  width: 60%;
  text-shadow: 1px 1px 4px #000000;
}
.hollow-hero-16 ul{color:#fff}
.hollow-hero-16 > a {
    font-size: 1.2rem;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    z-index: 10;
    font-weight: 300;
    text-shadow: 1px 1px 4px #000000;
}
.hollow-hero-16 > a span {
    color: #fff;
    margin-bottom: .5rem;
    letter-spacing: .2rem;
    text-transform: uppercase;
    font-size: .9rem;
    line-height: 1.4;
}
.hollow-hero-16 > a span.bar {
  font-size: 1.5rem;
  line-height: 1;
}
.hollow-hero-16 > a i {
    color: #fff;
    transition: all .3s ease;
    font-size: 1.3rem;
}
.hollow-hero-16 > a:hover i {
  transform: translateY(12px);
}
@media only screen and (max-width: 767px){
  .hollow-hero-16 h1 {
    font-size: 2rem;
    font-weight: 400;
  }
  .hollow-hero-16 p {
    font-weight: 400;
    width: 100%;
  }
}


.hollow-content-07 .content-container {
    position: relative;
    background: white;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.hollow-content-07 .content-text {
  flex: 1;
  padding: 2rem;
  background: var(--defaultMainDark);
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  position: relative;
}
.hollow-content-07 .content-text h1 {
  color: #bc8e4d;
  font-weight: 200;
  font-size: 3rem;
}
.hollow-content-07 .content-text span.orange {
  color: var(--defaultMainAccent);
}
.hollow-content-07 .content-text h2 {
  color: #fff;
  font-weight: 200;
  /*font-family: var(--mainFont);*/
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hollow-content-07 .content-text h3 {
  color: var(--defaultMainAccent);
  font-size: 1.2rem;
  width: 80%;
  margin-bottom: 1rem;
  /*font-family: var(--mainFont);*/
}
.hollow-content-07 .content-text p {
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--mainFont);
  color: #fff;
}
.hollow-content-07 .content-text p:last-of-type {
  margin-bottom: 3rem;
}
.hollow-content-07 .content-text a {
  position: absolute;
  font-family: var(--mainFont);
  bottom: 1rem;
  right: 0;
  transform: translateX(30%);
  display: flex;
  align-items: center;
  line-height: 1;
  z-index: 1;
}
.hollow-content-07 .content-text a span {
  color: #fff;
  transition: all .3s ease;
  padding: 1rem;
  text-transform: uppercase;
}
.hollow-content-07 .content-text a:hover span {
  color: var(--defaultMainAccent);
}
.hollow-content-07 .content-text a hr {
  border: none;
  margin: 0;
  height: 2px;
  background: white;
  width: 100px;
  transition: all .3s ease;
}
.hollow-content-07 .content-text .btn-wrap a {
  position: relative;
  bottom: unset;
  transform: none;
  padding: .5rem 1rem;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  transition: all .3s ease;
}
.hollow-content-07 .content-text .btn-wrap a i {
  color: #fff;
  padding-right: .5rem;
  transition: all .3s ease;
}
.hollow-content-07 .content-text .btn-wrap a:hover {
  color: var(--defaultMainAccent);
}
.hollow-content-07 .content-text .btn-wrap a:hover i {
  color: var(--defaultMainAccent);
}
.content-text a:hover hr {
  width: 115px;
  color: var(--defaultMainAccent);
  margin-left: .75rem;
}
.hollow-content-07 .content-img {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.hollow-content-07 .content-img img {
  display: flex;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .hollow-content-07 .content-img {
    max-width: 500px;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-content-07 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media (max-width: 991px) {
  .hollow-content-07 .content-text p:last-of-type {
    margin-bottom: 1rem;
  }
  .hollow-content-07 .content-container {
    flex-flow: column;
  }
  .hollow-content-07 .content-text {
    padding: 2rem;
  }
  .hollow-content-07 .content-img {
    order: 2;
  }
  .hollow-content-07 .content-text a {
    position: relative;
    transform: none;
    padding: 0;
    margin-top: 1rem;
  }
  .hollow-content-07 .content-text a span {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .hollow-content-07 .content-text {
    padding: 2rem;
  }
  .hollow-content-07 .content-text h3 {
    font-size: 1.5rem;
  }
  .hollow-content-07 .content-text a span {
    font-size: 1.3rem;
  }
}


/*============================ */
/* Service Images 11
============================== */
.hollow-icon-11 {
  padding: 3rem 0 0;
  position: relative;
}
.hollow-icon-11 .flex-container {
  justify-content: space-between;
}
.hollow-icon-11 .box {
  position: relative;
  display: flex;
  flex-flow: column;
  width: 31%;
  transition: all .3s ease;
  margin-bottom: 2rem;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  background: #f1f1f1;
  padding: 1.5rem;
}
.hollow-icon-11 .box:hover {
  box-shadow: 2px 2px 12px rgba(0,0,0,0.6);
  transform: translateY(-10px);
}
.hollow-icon-11 .img-wrap {
  position: relative;
  overflow: hidden;
  height: 14rem;
  border-radius: 50%;
  width: 14rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
}
.hollow-icon-11 .text-wrap {
  flex-grow: 1;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 1rem;
  text-align: center;
  z-index: 10;
}
.hollow-icon-11 h3 {
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  margin-top: 1rem;
  text-align: center;
  z-index: 10;
  align-items: center;
  color: var(--accentDark);
  font-weight: 300;
}
.hollow-icon-11 p {
  font-size: 1rem;
  font-weight: 400;
  margin: 1rem 0;
  line-height: 1.3;
  color: var(--defaultMainDark);;
  font-family: var(--mainFont);
}
.hollow-icon-11 a.main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hollow-icon-11 a.corner {
  width: auto;
  color: #666766;
  font-family: var(--mainFont);
  position: relative;
  overflow: hidden;
  font-weight: 400;
  display: flex;
  align-items: center;
  align-self: flex-end;
}
.hollow-icon-11 a.corner:hover {
  transform: translateX(0);
  color: #fbad18;
}
.hollow-icon-11 a.corner i {
  padding-left: .5rem;
  transition: all .2s ease;
  will-change: transform;
}
.hollow-icon-11 a.corner:hover i {
  opacity: 1;
  transform: translateX(0);
  color: #fbad18;
}
@media only screen and (min-width: 992px) {
  .hollow-icon-11 a.corner {
    transition: all .3s ease;
    transform: translateX(30px);
  }
  .hollow-icon-11 a.corner i {
    opacity: 0;
    transform: translateX(-100%);
  }
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-icon-11 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 767px) {
  .hollow-icon-11 {
    padding: 2rem 0 0;
  }
  .hollow-icon-11 .flex-container {
    flex-flow: column;
  }
  .hollow-icon-11 .box {
    width: 100%;
    margin-bottom: 1rem;
  }
  .hollow-icon-11 .img-wrap {
    height: 16rem;
    width: 16rem;
  }
}


/*============================ */
/* Service Icons 06
============================== */
.service-icons-06 {
  padding: 4rem 0;
}
.service-icons-06 .title-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.service-icons-06 .title-wrap h2 {
  text-align: center;
  color: var(--defaultMainDark);
  font-weight: 300;
  font-size: 3rem;
}
.service-icons-06 .flex-container {
  justify-content: space-evenly;
}
.service-icons-06 .box-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  z-index: 1;
  padding: 1rem;
  width: 25%;
  border: 2px dashed transparent;
  transition: all .3s ease;
}
.service-icons-06 .box-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background: var(--defaultMainDark);
  border-radius: 50%;
  margin-bottom: 2rem;
}
.service-icons-06 .box-icon:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--defaultMainAccent);
  transition: all .3s ease;
  transform: scale(1.07);
  z-index: -1;
}
.service-icons-06 .box-icon i {
  color: var(--defaultMainAccent);
  font-size: 2.25rem;
  transition: all .3s ease;
}
.service-icons-06 .box-wrap h3 {
  color: var(--accentDark);
  font-size: 1.3rem;
  text-transform: uppercase;
}
.service-icons-06 .box-wrap p {
  color: var(--defaultMainDark);
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .service-icons-06 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media (max-width: 767px) {
  .service-icons-06 {
    padding: 3rem 0 1rem;
  }
  .service-icons-06 .flex-container {
    flex-flow: column;
  }
  .service-icons-06 .title-wrap h2 {
    font-size: 2rem;
  }
  .service-icons-06 .box-wrap {
    margin-bottom: 1rem;
    width: 100%;
  }
}




/*============================ */
/* Contact 02
============================== */
.hollow-contact-02 {
  position: relative;
  z-index: 10;
  padding: 3rem 0 6rem;
  background: #f1f1f1;
}
.hollow-contact-02 h2 {
  color: var(--accentDark);
  font-weight: 300;
  /*font-family: var(--mainFont);*/
  margin-bottom: 1rem;
}
.hollow-contact-02 p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--defaultMainDark);
  margin: 0;
  font-family: var(--mainFont);
}
.hollow-contact-02 .grid-container {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
}
.hollow-contact-02 .grid-item {
  align-items: start;
}
.page-template-page-contact .hollow-contact-02 .location {
  align-self: flex-end;
  margin-bottom: 1rem;
}
.hollow-contact-02 .map-wrap iframe {
  height: 100%;
  width: 100%;
  pointer-events: none;
  border-radius: 5px;
}
.hollow-contact-02 .map-wrap iframe.clicked {
  pointer-events: auto;
}
.hollow-contact-02 ul li {
  color: var(--defaultMainDark);
  font-family: var(--mainFont);
  line-height: 1.4;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}
.hollow-contact-02 .your-email {
  float: left;
  width: 50%;
  padding-right: 15px;
  z-index: 5;
}
.hollow-contact-02 .your-phone {
  float: left;
  width: 50%;
  z-index: 10;
}
.hollow-contact-02 .form-wrap {
  position: relative;
}
.hollow-contact-02 input:not([type="submit"]),
.hollow-contact-02 textarea {
  font-size: 1rem;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(72,81,103,0.5);
  color: var(--defaultMainDark);
  border-radius: 5px;
  padding: .4rem .7rem;
  margin-bottom: 1rem;
  font-weight: 300;
  font-family: var(--mainFont);
}
.hollow-contact-02 textarea {
  font-family: var(--mainFont);
  z-index: 0;
  height: 15rem;
  max-height: 215px;
  margin: 0;
  font-family: var(--mainFont);
}
.hollow-contact-02 .wpcf7-form-control.wpcf7-submit {
  background: var(--defaultMainAccent);
  border-radius: 5px;
  font-family: var(--mainFont);
  border: none;
  padding: 0.3rem 1.5rem;
  margin: 1rem 0 0;
  color: var(--defaultMainDark);
  text-transform: uppercase;
  letter-spacing: .1rem;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 400;
  width: unset;
  transition: .3s ease;
}
.hollow-contact-02 .wpcf7-form-control.wpcf7-submit:hover {
  background: var(--accentDark);
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .hollow-contact-02 .grid-container {
    /*grid-template-columns: repeat(4, 1fr);*/
    grid-template-columns: repeat(2, 1fr);
  }
  .hollow-contact-02 .wpcf7-form-control.wpcf7-submit {
    position: absolute;
    left: 0;
  }
  /*MS EDGE BUTTON LOCATION*/
  @supports (-ms-ime-align: auto) {
    .hollow-contact-02 .wpcf7-form-control.wpcf7-submit {
      bottom: -50px;
    } 
  }
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-contact-02 .flex-container,
  .hollow-contact-02 .grid-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width:767px) {
  .hollow-contact-02 {
    padding: 2rem 0;
  }
  .page-template-page-contact .hollow-contact-02 {
    padding-top: 3rem;
  }
  .hollow-contact-02 .map-wrap iframe {
    height: 350px;
  }
  .hollow-contact-02 input:not([type="submit"]),
  .hollow-contact-02 textarea {
    font-size: 1.3rem;
    font-weight: 400;
  }
  .hollow-contact-02 ul li {
    font-size: 1.3rem;
  }
}

/*============================ */
/* Footer 04
============================== */
.hollow-footer-04 {
  position: relative;
  overflow: hidden;
  background: var(--defaultMainDark);
  /*font-family: var(--mainFont);*/
}
.hollow-footer-04 .main .flex-container {
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
}
.hollow-footer-04 img {
  margin-bottom: 1rem;
  max-width: 60%;
}
.hollow-footer-04 h3 {
  color: #FFF;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: center;
  display: none;
}
.hollow-footer-04 .social {
  display: flex;
  border-top: 2px dotted #FFF;
  padding-top: .5rem;
  justify-content: center;
}
.hollow-footer-04 .main a {
  padding: .5rem;
  width: 3rem;
  margin: 0 .25rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 6px;
}
.hollow-footer-04 .main a i {
  color: #FFF;
  font-size: 1.3rem;
  transition: all .3s ease;
}
.hollow-footer-04 .main a:hover i {
  color: var(--defaultMainAccent);
}

/* Meta */
.hollow-footer-04 .meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 1rem 0;
}
.hollow-footer-04 .meta .flex-container {
  justify-content: space-between;
  align-items: center;
}
.hollow-footer-04 .meta span {
  color: #FFF;
  font-weight: 300;
  padding: 0 2rem;
}
.hollow-footer-04 .meta span a {
  color: #FFF;
  transition: all .3s ease;
}
.hollow-footer-04 .meta span a:hover {
  color: var(--defaultMainAccent);
}
.hollow-footer-04 .meta i.top {
  position: absolute;
  margin-right: 1rem;
  right: 0;
  top: 0;
  color: #FFF;
  padding: .5rem;
  opacity: 0.5;
  background: var(--defaultMainAccent);
  cursor: pointer;
  transition: all .3s ease;
}
.hollow-footer-04 .meta i.top:hover {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .hollow-footer-04 img {
    max-width: 90%;
  }
  .hollow-footer-04 .meta {
    flex-direction: column;
  }
  .hollow-footer-04 .meta .flex-container {
    flex-flow: column;
  }
  .hollow-footer-04 .meta span:first-of-type {
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
}

/*DEFAULT STYLE OVERWRITES*/

/*============================ */
/* DEFAULT BLOG STYLES: 
============================== */
/*Search Form*/
.search-form-wrap button {
  background: #fbad18;
  font-family: var(--mainFont);
  text-transform: uppercase;
}
.search-form-wrap button:hover {
  background: #ca8c16;
}
/*Blog Page*/
.blog-wrap .post-item-header h1 {
  background: #666766;
  /*font-family: var(--mainFont);*/
  text-transform: uppercase;
  font-weight: 200;
}
.blog-wrap .post-item .post-item-header h1:hover {
  background: #444441;
}
.blog-wrap .post-item .post-content a {
  background: #9e9e9e;
  font-family: var(--mainFont);
  text-transform: uppercase;
}
.blog-wrap .post-item .post-content a:hover {
  background: #666766;
}
.blog-wrap .post-item p {
  border-color: #666766;
  font-family: var(--mainFont);
}
.blog-wrap .post-item .date-wrap i {
  color: #666766;
}
/*Sidebars*/
.blog-sidebar {
  border-color: #666766;
}
.blog-sidebar .post-item-header h2 {
  background: #666766;
  font-weight: 200;
  /*font-family: var(--mainFont);*/
  text-transform: uppercase;
}
/*Post Content*/
.blog-post-content h1 {
  color: #666766;
  font-weight: 200;
  /*font-family: var(--mainFont);*/
  text-transform: uppercase;
}
.blog-post-content h2 {
  color: #fbad18;
  font-weight: 200;
  /*font-family: var(--mainFont);*/
  text-transform: uppercase;
}
.blog-post-content h3 {
  color: #9e9e9e;
  font-weight: 200;
  font-family: var(--mainFont);
  text-transform: uppercase;
}
.blog-post-content p {
  font-size: 1.1rem;
  font-family: var(--mainFont);
  color: #666766;
}
.blog-post-content p a {
  color: #9e9e9e;
  font-family: var(--mainFont);
}
.blog-post-content p a:hover {
  color: #666766;
}
/*Post Return Button*/
.blog-return a.blog-return-btn {
  background: #9e9e9e;
  font-family: var(--mainFont);
  text-transform: uppercase;
}
.blog-return a.blog-return-btn:hover {
  background: #666766;
}
/*============================ */
/* DEFAULT POPUP STYLES:
============================== */
.default-popup .form-wrap {
  background: #fff;
  width: 80%;
  padding: 1.4rem 2rem;
}
.default-popup .content {
  display: flex;
  flex-direction: column;
}
.default-popup .form-wrap h1 {
  /*font-family: var(--mainFont);*/
  font-weight: 300;
  color: var(--accentDark);
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
.default-popup .form-wrap h3 {
  color: var(--accentDark);
  font-size: 1.2rem;
  margin-bottom: .25rem;
  font-weight: 300;
  /*font-family: var(--mainFont);*/
}
.default-popup .form-wrap p {
  color: #000;
  font-family: var(--mainFont);
  font-size: 1.1rem;
  font-weight: 400;
}
.default-popup .content .location {
  margin-bottom: 1rem;
}
.default-popup .content ul {
  display: flex;
  justify-content: flex-start;
}
.default-popup .content ul li {
  color: #000;
  line-height: 1.4;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
  margin-right: 2.5rem;
  font-family: var(--mainFont);
}

.default-popup .content ul li i {
  padding-right: .25rem;
}
.default-popup .wpcf7-form-control-wrap input,
.default-popup .wpcf7-form-control-wrap select,
.default-popup .wpcf7-form-control-wrap textarea {
  font-family: var(--mainFont);
  padding: 0.25rem .5rem;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-weight: 400;
  letter-spacing: 1px;
}
.default-popup .wpcf7-form-control-wrap textarea {
  height: 5.25rem;
}
.default-popup .wpcf7-form-control-wrap input:focus,
.default-popup .wpcf7-form-control-wrap select:focus,
.default-popup .wpcf7-form-control-wrap textarea:focus {
  border-color: var(--defaultMainAccent);
}
.default-popup .wpcf7-form input[type="submit"] {
  background: var(--defaultMainAccent);
  color: #000;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--mainFont);
  letter-spacing: 2px;
  padding: 0.3rem 1.5rem;
  border-radius: 6px;
}
.default-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--accentDark);
}
.default-popup .loader-wrap {
  background: var(--defaultMainAccent);
}
.default-popup .button-wrap i {
  background: var(--defaultMainAccent);
}
.default-popup .form-wrap .close {
  background: #fff;
  color: #000;
}
.default-popup .form-wrap .close:hover {
  background: var(--defaultMainAccent);
  color: #fff;
}
.default-popup .form-wrap form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.default-popup .form-wrap .wpcf7-form-control-wrap {
  width:  49%;
}
.default-popup .form-wrap .message {
  width:  100%;
}
@media only screen and (max-width: 767px) {
  .default-popup .form-wrap {
    width: 95%;
  }
  .default-popup .form-wrap h1 {
    margin-bottom: 1rem;
  }
  .default-popup .content p {
    display: none;
  }
  .default-popup .content ul {
    flex-direction: column;
  }
  .default-popup .content ul li {
    width: 100%;
    margin: 0 0 .5rem;
  }
  .default-popup .form-wrap .wpcf7-form-control-wrap {
    width: 100%;
  }
}
/*============================ */
/* DEFAULT SEO STYLES:
============================== */
.content.seo {
  font-family: var(--mainFont);
  background: #000;
}
.content.seo i {
  color: #fff;
}
.content.seo p a:hover {
  color: var(--defaultMainAccent);
}

/*INTERIOR PAGES*/

/*============================ */
/* Interior Header 05
============================== */
.interior-header-05 {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 11rem 1rem 4rem;
  text-align: center;
  background: url(img/h1.jpg) center center no-repeat;
  background-size: cover;
  box-shadow: 0 2px 5px -2px #000;
}
.interior-header-05::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(43 43 43 / 40%);
}
.interior-header-05 h1 {
  position: relative;
  color: #fff;
  /*font-family: var(--mainFont);*/
  margin-bottom: .75rem;
  font-weight: 300;
  font-size: 4rem;
  text-shadow: 1px 1px 4px #000000;
}
.interior-header-05 h2 {
  position: relative;
  color: #fff;
  /*font-family: var(--mainFont);*/
  font-size: 1.2rem;
  text-shadow: 1px 1px 4px #000000;
}
@media only screen and (max-width: 767px) {
  .page-template-page-contact {
    margin-top: 0;
  }
  .interior-header-05 {
    padding: 4rem 1rem;
  }
  .interior-header-05 h2 {
    max-width: 100%;
  }
}


body:not(.home) .hollow-content-07 {
  padding-top: 4rem;
}
body:not(.home) .hollow-content-07 .content-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
body:not(.home) .hollow-content-07 .content-text p {
  font-size: 1.1rem;
}
body:not(.home) .hollow-industry .flex-container {
  padding: 6rem 0 4rem;
}
body:not(.home) .hollow-industry .pill-wrapper {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  body:not(.home) .hollow-industry .flex-container {
    padding: 3rem 0 0rem;
  }
}


.interior-content-07 {
  padding: 2rem 0 4rem;
}
.interior-content-07 h2 {
  color: var(--accentDark);
  font-weight: 200;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}
.interior-content-07 .box {
  background: #f1f1f1;
  padding: 2rem;
  border-radius: 3px;
}
.interior-content-07 h3 {
  color: #fbad18;
  /*font-family: var(--mainFont);*/
  text-transform: uppercase;
}
.interior-content-07 .box p {
  color: #000;
  font-family: var(--mainFont);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .interior-content-07 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 767px) {
  body:not(.home) .hollow-content-07 {
    padding-top: 2rem;
  }
  .interior-content-07 {
    padding: 2rem 0 1rem;
  }
  .interior-content-07 .box {
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  .interior-content-07 .box img {
    width: 35%;
    margin-bottom: 1rem;
  }
  .interior-content-07 .box .content {
    width: 100%;
  }
  .interior-content-07 h2 {
    margin-bottom: 2rem;
  }
  .page-id-276 .interior-content-07 .nextgen_pro_thumbnail_grid .image-wrapper {
    width: calc(46% - 1rem)!important;
    margin: 1rem!important;
  }
  .page-id-277 .interior-content-07 .main:last-of-type,
  .page-id-276 .interior-content-07 .main {
    margin-bottom: 1rem;
  }
  .page-id-281 .interior-content-07 .main {
    margin-bottom: 2rem;
  }
  .page-id-277 .interior-content-07 .main:last-of-type .nextgen_pro_thumbnail_grid .image-wrapper {
    width: calc(46% - 1rem)!important;
    margin: 1rem!important;
  }
  .interior-content-07 .main p {
    margin-bottom: 1rem;
  }
  .interior-content-07 hr {
    margin: 2rem 0;
  }
}
/*============================ */
/* Content 08
============================== */
.hollow-content-08 {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
.hollow-content-08 .flex-container {
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.hollow-content-08 .title-wrap,
.hollow-content-08 .content-wrap {
  width: 80%;
  margin: 0 auto 1rem;
}
.hollow-content-08 h1 {
  color: #666766;
  font-weight: 200;
  /*font-family: var(--mainFont);*/
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 1rem;
}
.hollow-content-08 span.orange {
  font-weight: 600;
  color: #fbad18;
}
.hollow-content-08 hr {
  border-color: #FFF;
  width: 100%;
  height: 0;
}
.hollow-content-08 .title-wrap p {
  color: #fbad18;
  font-family: var(--mainFont);
  font-weight: 700;
}
.hollow-content-08 p {
  color: #666766;
  font-family: var(--mainFont);
  font-weight: 400;
  font-size: 1.1rem;
}
.hollow-content-08 .list-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
  width: 80%;
}
.hollow-content-08 .list-wrap ul {
  display: inline-flex;
  flex-flow: column;
  width: 50%;
  padding: 0 1rem;
}
.hollow-content-08 .list-wrap ul li {
  color: #666766;
  font-family: var(--mainFont);
  /* line-height: 1; */
  font-weight: 400;
  font-size: 1.2rem;
}
.hollow-content-08 .list-wrap ul li i {
  color: #fbad18;
  /*margin-right: .5rem;*/
  font-weight: 700;
}
.hollow-content-08 .content-wrap .btn-wrap a {
  display: inline-block;
  padding: .5rem 1rem;
  color: #666766;
  border: 1px solid #666766;
  border-radius: 5px;
  transition: all .3s ease;
}
.hollow-content-08 .content-wrap .btn-wrap a i {
  color: #666766;
  padding-left: 0.6rem;
  transition: all .3s ease;
}
.hollow-content-08 .content-wrap .btn-wrap a:hover {
  color: #fbad18;
}
.hollow-content-08 .content-wrap .btn-wrap a:hover i {
  color: #fbad18;
}
.img-center-wrap {
  justify-content: center;
  padding: 4rem 0 0;
}
.nextgen_pro_thumbnail_grid {
  margin: 2rem 0;
}
.main {
  text-align: center;
}
.wilson-link {
  background: #666766;
  border-radius: 5px;
  font-family: var(--mainFont);
  border: none;
  padding: .5rem 1.5rem;
  margin: 0 auto;
  color: #FFF;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 300;
  width: unset;
  transition: .3s ease;
}
.wilson-link:hover {
  background: #fbad18;
}
.interior-page img {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .hollow-content-08 .flex-container {
      padding: 0 4rem;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-08 {
    background-attachment: unset;
  }
  .hollow-content-08 h1 {
    white-space: normal;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-08 {
    padding: 2rem 0 0;
  }
  .hollow-content-08 .title-wrap,
  .hollow-content-08 .content-wrap {
    width: 100%;
  }
  .hollow-content-08 .list-wrap {
    flex-flow: column;
    width: 85%;
  }
  .hollow-content-08 .list-wrap ul {
    width: 100%;
    padding: 0;
  }
  .hollow-content-08 .list-wrap ul li {
    font-size: 1.3rem;
  }
  .hollow-content-08 .button-wrap {
    margin-top: 0;
  }
}

/*============================ */
/* Interior Careers 01
============================== */
.interior-careers-01 {
  padding: 4rem 0;
}
.interior-careers-01 .content-wrap {
  text-align: center;
  margin-bottom: 4rem;
}
.interior-careers-01 .content-wrap h1 {
  color: #666766;
  margin-bottom: 1rem;
}
.interior-careers-01 .content-wrap h4 {
  color: #fbad18;
}
.interior-careers-01 .content-wrap hr {
  width: 10%;
  margin: 1rem auto 2rem;
  border: 2px solid #fbad18;
}
.interior-careers-01 .content-wrap p {
  margin-bottom: 1rem;
}
.interior-careers-01 .form-wrap {
  width: 100%;
}
.interior-careers-01 .form-wrap form {
  background: #efefef;
  padding: 2rem;
  border-radius: 4px;
}
.interior-careers-01 .group-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.interior-careers-01 .group-wrap p {
  margin: 0.5rem 0;
}
.interior-careers-01 .group-wrap h3 {
  margin-bottom: 1rem;
  color: #fbad18;
}
.interior-careers-01 ::-webkit-input-placeholder {
  color: #777!important;
}
.interior-careers-01 ::-moz-placeholder {
  color: #777!important;
}
.interior-careers-01 :-ms-input-placeholder {
  color: #777!important;
}
.interior-careers-01 :-moz-placeholder {
  color: #777!important;
}
.interior-careers-01 .wpcf7-form-control-wrap select {
  -webkit-appearance: none;
}
.interior-careers-01 .wpcf7-form-control-wrap input,
.interior-careers-01 .wpcf7-form-control-wrap select,
.interior-careers-01 .wpcf7-form-control-wrap textarea {
  font-size: 1.1rem;
  font-weight: 300;
  color: #000;
  width: 100%;
  padding: .5rem;
  margin-bottom: 1rem;
  outline: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--mainFont);
}
.interior-careers-01 .wpcf7-form-control-wrap input:focus,
.interior-careers-01 .wpcf7-form-control-wrap select:focus,
.interior-careers-01 .wpcf7-form-control-wrap textarea:focus {
  border-color: #fbad18;
  color: #fbad18;
}
.interior-careers-01 .wpcf7-form-control-wrap textarea {
  height: 6rem;
}
.interior-careers-01 .wpcf7-form-control-wrap input[type="file"] {
  border: 1px solid #ccc;
  background: #fff;
  font-size: 1rem;
  line-height: 1;
}
.interior-careers-01 .wpcf7-form-control-wrap input[type="file"]:hover {
  color: #fbad18;
  background: rgba(255,255,255,0.8);
}
.interior-careers-01 .submit-wrapper {
  text-align: center;
}
.interior-careers-01 .submit-wrapper input[type="submit"] {
  font-family: var(--mainFont);
  font-size: 1.2rem;
  color: #fff;
  background: #666766;
  padding: 0.3rem 2.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 300;
  cursor: pointer;
  transition: all .3s ease;
}
.interior-careers-01 .submit-wrapper input[type="submit"]:hover {
  background: #fbad18;
}
@media only screen and (max-width: 767px) {
  .interior-careers-01 {
    padding: 2rem 0;
  }
  .interior-careers-01 .content-wrap {
    margin-bottom: 2rem;
  }
  .interior-careers-01 .form-wrap form {
    padding: 1.5rem 1rem;
  }
}

/*============================ */
/* Interior Maps 01
============================== */
.interior-maps-01 {
  padding: 4rem 0;
  font-family: var(--mainFont);
}
.interior-maps-01 .flex-container {
  align-items: center;
  justify-content: space-between;
}
.interior-maps-01 .text-wrap {
  flex-basis: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.interior-maps-01 h4 {
  color: #fbad18;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.4;
}
.interior-maps-01 h2 {
  color: #666766;
  line-height: 1;
  margin-bottom: 1rem;
  font-size: 2.75rem;
  font-weight: 600;
}
.interior-maps-01 p {
  color: #666766;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.interior-maps-01 .list-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.interior-maps-01 .list-wrap .list-1,
.interior-maps-01 .list-wrap .list-2 {
  width: 100%;
}
.interior-maps-01 .list-wrap ul {
  width: 48%;
}
.interior-maps-01 .list-wrap ul li {
  display: flex;
  margin-bottom: 1rem;
  font-weight: 400;
}
.interior-maps-01 .list-wrap ul li i {
  color: #fbad18;
  font-size: 1.2rem;
}
.interior-maps-01 .list-wrap ul li p {
  display: inline-block;
  max-width: 90%;
  vertical-align: top;
}
.interior-maps-01 .map-wrap {
  position: relative;
  overflow: hidden;
  flex-basis: 48%;
  align-self: stretch;
}
.interior-maps-01 .map-wrap:before {
  content: '';
  top: 50%;
  left: 50%;
  width: 50vh;
  transform: translate(-50%,-50%);
  height: 50vh;
  border-radius: 50%;
  background: rgba(251, 173, 24, 0.2);
  border: 2px solid #fbad18;
  z-index: 1000;
  position: absolute;
}
.interior-maps-01 .map-wrap iframe {
  flex-basis: 48%;
  display: flex;
  overflow: hidden;
  pointer-events: none;
  max-width: 100%;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .interior-maps-01 .flex-container > * {
    flex-basis: 48%;
  }
  .interior-maps-01 .list-wrap .list-1 {
    margin-right: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .interior-maps-01 {
    padding: 2rem 0;
  }
  .interior-maps-01 .flex-container {
    flex-direction: column;
  }
  .interior-maps-01 .flex-container > * {
    width: 100%;
  }
  .interior-maps-01 .text-wrap {
    margin-bottom: 1rem;
  }
  .interior-maps-01 .list-wrap {
    width: 100%;
  }
  .interior-maps-01 .list-wrap .list-1 {
    margin-right: 0rem;
  }
  .interior-maps-01 .list-wrap .list-1,
  .interior-maps-01 .list-wrap .list-2 {
    width: 50%;
  }
  .interior-maps-01 img {
    order: 2;
  }
  .interior-maps-01 .map-wrap iframe {
    height: 65vh;
  }
}

/*============================ */
/* Testimonials 08
============================== */
.testimonials-08 {
  padding: 2rem 0 1rem;
  font-family: var(--mainFont);
}
.testimonials-08 .flex-container {
  justify-content: center;
}
.testimonials-08 .box-wrap {
  padding: 2rem;
  margin-bottom: 2rem;
}
.testimonials-08 .box-a {
  background: #fff;
}
.testimonials-08 .box-b {
  background: #efefef;
}
.testimonials-08 .quote {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.testimonials-08 .box-wrap i {
  color: #fbad18;
  font-size: 2rem;
  text-align: center;
  margin-bottom: .5rem;
}
.testimonials-08 .box-wrap p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.testimonials-08 .box-wrap p.client-name {
  font-family: var(--mainFont);
  font-size: 1.6rem;
  font-weight: 400;
  color: #fbad18;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .testimonials-08 {
    padding: 2rem 0 0;
  }
  .testimonials-08 .box-a {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .testimonials-08 .box-b {
    padding: 2rem 1rem;
  }
}
