/*
  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: */
  --green: #12713d;
  --greenDark: #1c4527;
  --yellow: #fae45e;
  --yellowDark: #faa629;

  --mainFont: 'Lato', sans-serif;
  --headingFont: 'Oswald', sans-serif;
}

html {
  font-family: var(--mainFont);
}
h1, h2, h3 {
  font-family: var(--headingFont);
}
/*============================ */
/* HEADER 09
============================== */
.hollow-header-09 {
  display: block;
  position: relative;
  z-index: 9000;
  background: var(--green);
  color: #f6f6f6;
  width: 100%;
  box-shadow: 0 2px 5px -2px #000;
}
.hollow-header-09.sticky {
  position: fixed;
  top: 0;
}
.hollow-header-09 .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 0;
}
.hollow-header-09 .logo span {
  background: -webkit-linear-gradient(var(--yellow), var(--yellowDark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--headingFont);
  line-height: 1.2;
  font-size: 2rem;
  margin-left: .5rem;
  text-transform: uppercase;
  /* text-align: left; */
}
.hollow-header-09 .logo img {
  max-width: 100%;
  width: 6rem;
  transition: all .32s ease;
}
.hollow-header-09.sticky .logo {
  display: none;
}
.hollow-header-09 .va-middle {
  float: left;
}
.hollow-header-09 .phone-wrap,
.hollow-header-09 .email-wrap {
  text-align: left;
  font-size: 0;
  display: inline-block;
}
.hollow-header-09 .phone-wrap a,
.hollow-header-09 .email-wrap a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  margin: .4rem 0;
  display: inline-block;
  transition: all 0.2s ease;
}
.hollow-header-09 .phone-wrap i,
.hollow-header-09 .email-wrap i {
  padding-right: 0.35rem;
}
.hollow-header-09 .phone-wrap a:hover,
.hollow-header-09 .email-wrap a:hover {
  color: var(--yellow);
}
.hollow-header-09 .social {
  display: inline-block;
}
.hollow-header-09 .social a {
  color: #fff;
  font-size: 1.3rem;
  display: inline-block;
  vertical-align: middle;
  padding: .3rem;
  transition: all 0.2s ease;
}
.hollow-header-09 .social a:hover {
  color: var(--yellow);
}
/*.hollow-header-09 .logo img {
  padding: 1rem;
  background: #fff;
  margin-bottom: -6rem;
  border-radius: 0 0 3px 3px;
}*/
.hollow-header-09 .meta-wrap-outer {
  font-size: 2rem;
  font-weight: 400;
  background: #fff;
  margin: 0;
  padding: 0rem 0;
}
.hollow-header-09 .meta-wrap-inner {
  display: block;
  position: relative;
  text-align: right;
  font-family: var(--headingFont);
  margin-bottom: 1.5rem;
}
.hollow-header-09.sticky .meta-wrap-inner {
  display: none;
}
.hollow-header-09 .meta-wrap-inner .spacer {
  padding: 0.25rem;
  font-size: 1.5rem;
  color: #fff;
}
.hollow-header-09 .mobile-toolbar nav a.mobile-icon {
  font-size: 26px;
}
.hollow-header-09.sticky .meta-wrap-outer {
  display: none;
}
.hollow-header-09 .social {
  text-align: right;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
/* NAVIGATION */
.hollow-header-09 nav {
  /* display: flex; */
  background: none;
  font-size: 2rem;
  position: relative;
  z-index: 5000;
  font-family: var(--headingFont);
  /* text-align: center; */
  /* justify-content: center; */
}
.hollow-header-09 nav a {
  padding: 0.3rem 0.6rem;
  display: block;
  color: #fff;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all .2s ease;
}
.hollow-header-09 nav a:focus {
  color: #fff;
}
.hollow-header-09 nav a i {
  padding-right: .4rem;
}
.hollow-header-09 nav .menu-item {
  margin-bottom: 0;
}
/* NAV LEVEL ONE */
.hollow-header-09 .menu-item.open>a, .hollow-header-09 .menu-item:hover>a, .hollow-header-09 .menu-item.active a, .hollow-header-09 .menu-item.active:hover>a {
  color: var(--yellowDark);
  border-color: var(--yellowDark);
}
/* NAV LEVEL TWO */
.hollow-header-09 .dropdown-menu {
  margin-top: 0px;
  border-radius: 0;
  border: none;
  padding: 0;
  display: none;
  width: 12rem;
  min-width: max-content;
}
.hollow-header-09 nav .dropdown-menu .menu-item {
  float: none;
}
.hollow-header-09 nav .dropdown-menu a {
  background: var(--green);
  color: #fff;
  text-align: left;
}
.hollow-header-09 .dropdown-menu>li:hover>a,
.hollow-header-09 .dropdown-menu>li.active>a,
.hollow-header-09 .dropdown-menu>.active>a:hover,
.hollow-header-09 .dropdown-menu>.active>a:focus {
  background: var(--greenDark);
  color: #fff;
  border-color: transparent;
}
.hollow-header-09 .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-09 nav #mobile {
  position: relative;
  height: 48px;
  width: 30px;
  background: none;
  outline: none;
  border: none;
  margin-left: auto;
}
.hollow-header-09 .hamburger {
  display: block;
  position: absolute;
  width: 30px;
  height: 20px;
  background: #FFF;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}
.hollow-header-09 .hamburger:hover {
  cursor: pointer;
}
.hollow-header-09 .hamburger:before,
.hollow-header-09 .hamburger:after {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 20%;
  /*transition-property: transform, top;
  transition-duration: .2s;
  transition-timing-function: ease;*/
  transition: all .2s ease;
  transform: translateZ(0);
}
.hollow-header-09 .hamburger:after {
  top: 60%;
}
header.hollow-header-09.header-menu-open #mobile,
header.hollow-header-09.header-menu-open #mobile .hamburger {
  background: transparent;
}
header.hollow-header-09.header-menu-open #mobile>.hamburger:before,
header.hollow-header-09.header-menu-open #mobile>.hamburger:after {
  top: 40%;
  background: #FFF;
}
header.hollow-header-09.header-menu-open #mobile>.hamburger:before {
  transform: rotate(45deg);
}
header.hollow-header-09.header-menu-open #mobile>.hamburger:after {
  transform: rotate(-45deg);
}
body.transparent header {
  position: absolute;
  width: 100%;
  background: rgba(25, 25, 25, 0.5);
}
/* MOBILE TOOLBAR */
.hollow-header-09 .mobile-toolbar {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.hollow-header-09 .mobile-toolbar a {
  color: #fff;
  padding: .5rem .6rem;
}
.hollow-header-09 .mobile-toolbar a:hover,
.hollow-header-09 .mobile-toolbar a:focus {
  color: #f6f6f6;
}
.hollow-header-09 .mobile-toolbar>* {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (min-width: 992px) {
  .hollow-header-09 .mobile-toolbar {
    display: none;
  }
  .hollow-header-09 .menu {
    float: right;
  }
  .hollow-header-09 nav .menu-item {
    float: left;
    position: relative;
  }
  .hollow-header-09 nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
  }
  .hollow-header-09 nav .menu-item-has-children:hover>ul.dropdown-menu {
    display: block;
  }
  .hollow-header-09 .mobile-toolbar {
    display: none;
  } 
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-header-09 > .container {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-header-09 {background: var(--greenDark);}
  .hollow-header-09 .logo {
    text-align: center;
    /* padding: 4rem 0 0.5rem; */
  }
  .hollow-header-09 .logo a {
    padding: 5rem 0 1rem;
  }
  .hollow-header-09 .logo img {
    /* margin: 55px auto 10px; */
    box-shadow: none;
    /*max-width: 60%;*/
    width: 7rem;
  }
  body:not(.home) .hollow-header-09 .logo {
    display: none;
  }
  .hollow-header-09 .meta-wrap-inner {
    display: none;
  }
  header.hollow-header-09.header-menu-open nav .menu {
    pointer-events: auto;
    opacity: 1;
    max-height: 85vh;
    overflow-y: auto;
  }
  .hollow-header-09 nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 15px;
    width: 100%;
    background: var(--green);
    display: flex;
  }
  .hollow-header-09 nav a {
    text-transform: uppercase;
    color: #FFF;
    border: none;
    padding: 0.6rem;
  }
  .hollow-header-09 .menu-item.open>a, 
  .hollow-header-09 .menu-item:hover>a, 
  .hollow-header-09 .menu-item.active a, 
  .hollow-header-09 .menu-item.active:hover>a {
    color: #fff;
    background: var(--greenDark);
  }
  .hollow-header-09 .dropdown-menu>li:hover>a, 
  .hollow-header-09 .dropdown-menu>li.active>a, 
  .hollow-header-09 .dropdown-menu>.active>a:hover, 
  .hollow-header-09 .dropdown-menu>.active>a:focus {
    color: #fff;
    background: var(--greenDark);
  }
  .hollow-header-09 .hamburger::before,
  .hollow-header-09 .hamburger::after {
    background: var(--green);
  }
  .hollow-header-09 nav .menu {
    position: absolute;
    top: 100%;
    left: 0;
    text-align: left;
    right: 0;
    transition: opacity 0.25s;
    z-index: -1;
    background: var(--green);
    box-shadow: 0 3px 3px -2px #000;
    pointer-events: none;
    opacity: 0;
  }
  .hollow-header-09 nav .menu-item-has-children.open .dropdown-menu {
    display: block;
  }
  .hollow-header-09 .dropdown-menu {
    position: relative;
    box-shadow: none;
    width: 100%;
  }
  .hollow-header-09 .dropdown-menu>li>a {
    padding-left: 2.5rem;
  }
  .hollow-header-09 .mobile-toolbar>* {
    display: inline-block;
  }
  .hollow-header-09 .mobile-toolbar a {
    font-size: 26px;
    float: left;
  }
}
@media screen and (orientation: portrait) and (max-width:991px) {
  .hollow-header-09 nav a {
    font-size: 1.75rem;
    padding: 0.75rem;
  }
}
@media screen and (max-width:767px) {
  .hollow-header-09 .logo img {
    max-width: 90%;
    margin-bottom: 0.5rem;
  }
  .hollow-header-09 .logo a {
    flex-direction: column;
  }
  .hollow-header-09 .logo span {
    margin-bottom: 0.5rem;
  }
}
@media screen and (orientation: portrait) and (max-width:767px) {
  .hollow-header-09 nav a {
    font-size: 1.5rem;
    padding: 0.75rem;
  }
}
@media screen and (orientation: landscape) and (max-width:767px) {
  .default-popup .form-wrap,
  header.hollow-header-09.header-menu-open nav .menu {
    max-height: 74vh;
    overflow-y: auto;
  }
}

/*HOMEPAGE COMPONENTS*/

/*============================ */
/* Hero 13
============================== */
.hollow-hero-13 {
  position: relative;
  overflow: hidden;
}

/*Image Slider*/
.hollow-hero-13 .img-slider {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.hollow-hero-13 .img-slider.slick-initialized {
  visibility: visible;
}
.hollow-hero-13 .img-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}
.hollow-hero-13 .img-slider .slick-list,
.hollow-hero-13 .img-slider .slick-track {
  height: 100%;
  overflow: visible;
}
.hollow-hero-13 .img-slider img {
  object-fit: cover;
}
.hollow-hero-13 .img-slider .slick-arrow {
  font-size: 1rem;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 1;
  color: #fff;
  cursor: pointer;
  transition: all .3s ease;
  padding: .6rem;
  background: rgba(0,0,0,0.2);
}
.hollow-hero-13 .img-slider .slick-arrow:hover {
  background: rgba(0,0,0,0.7);
}
.hollow-hero-13 .img-slider .next {
  right: 1rem;
}
.hollow-hero-13 .img-slider .prev {
  left: 1rem;
}

/*Caption Slider*/
.hollow-hero-13 .cap-slider {
  width: 100%;
  padding: 25vh 0;
  visibility: hidden;
}
.hollow-hero-13 .cap-slider.slick-initialized {
  visibility: visible;
}
.hollow-hero-13 .cap-slider .slick-track {
  display: flex;
  align-items: center;
}
.hollow-hero-13 .caption {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  padding: 0 4rem;
}
.hollow-hero-13 .caption h1 {
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
  opacity: 0;
  background: -webkit-linear-gradient(var(--yellow), var(--yellowDark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hollow-hero-13 .caption.slick-active h1 {
  animation: hollowHeroSlide .5s ease-out forwards;
}
.hollow-hero-13 .caption h3 {
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0;
}
.hollow-hero-13 .caption.slick-active h3 {
  animation: hollowHeroSlide .5s ease-out .2s forwards;
}
.hollow-hero-13 .caption p {
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0;
  max-width: 60%;
}
.hollow-hero-13 .caption.slick-active p {
  animation: hollowHeroSlide .5s ease-out .4s forwards;
}
.hollow-hero-13 .caption a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 1.1rem;
  /* border: 1px solid #fff; */
  background: var(--green);
  transition: all .3s ease;
  opacity: 0;
  font-weight: 600;
}
.hollow-hero-13 .caption.slick-active a {
  animation: hollowHeroSlide .5s ease-out .6s forwards;
}
.hollow-hero-13 .caption a:hover {
  background: var(--yellowDark);
  border-color: var(--yellowDark);
}
.hollow-hero-13 .caption a i {
  font-size: 1rem;
  padding-right: .5rem;
  color: #fff;
}
@media (max-width: 767px) {
  /* Image Slider */
  .hollow-hero-13 .img-slider .slick-arrow {
    bottom: 1rem;
    transform: none;
  }
  .hollow-hero-13 .img-slider .next {
    right: 40%;
  }
  .hollow-hero-13 .img-slider .prev {
    left: 40%;
  }
  /* Caption Slider */
  .hollow-hero-13 .caption {
    padding: 0 1rem;
  }
  .hollow-hero-13 .cap-slider {
    padding: 7rem 0 5rem;
  }
  .hollow-hero-13 .caption h1 {
    font-size: 2.2rem;
  }
  .hollow-hero-13 .caption h3 {
    margin-bottom: 1rem;
  }
  .hollow-hero-13 .caption p {
    max-width: 100%;
  }
}

@keyframes hollowHeroSlide {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}

/*============================ */
/* Service Images 19
============================== */
.service-images-19 {
  /* background: whitesmoke; */
  padding: 2rem 0 0;
}
.service-images-19 .header-wrap {
  padding: 4rem 2rem;
  align-items: center;
}
.service-images-19 .header-wrap h1 {
  color: var(--greenDark);
  /*font-family: var(--mainFont);*/
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 700;
  margin-right: 1rem;
}
.service-images-19 .header-wrap hr {
  flex: 1;
  margin: 0;
  border: none;
  height: 2px;
  background: var(--greenDark);
}
.service-images-19 .box-wrap {
  justify-content: center;
  flex-wrap: wrap;
/*   width: 100%;
  padding: 0 1rem; */
}
.service-images-19 .service-box {
  width: calc(100% / 3 - 2rem);
  position: relative;
  display: flex;
  flex-flow: column;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  overflow: hidden;
  margin: 0 1rem 2rem;
  transition: all .2s ease;
}
.service-images-19 .service-box:hover {
  box-shadow: 0px 2px 7px rgba(0,0,0,.7);
}
.service-images-19 .service-box img {
  width: 100%;
}
.service-images-19 .text-wrap {
  background: var(--green);
  position: relative;
  padding: 1rem;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  display: flex;
}
.service-images-19 .text-wrap h3 {
  /* color: var(--green); */
  margin-bottom: 0.5rem;
  background: -webkit-linear-gradient(var(--yellow), var(--yellowDark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  line-height: 1.4;
}
.service-images-19 .text-wrap p {
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--mainFont);
  font-weight: 400;
}
.service-images-19 .text-wrap span {
  display: flex;
  align-items: flex-end;
  padding: 0.6rem 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
  /* border: 1px solid #fff; */
  background: var(--greenDark);
  font-size: 1rem;
  font-weight: 600;
  transition: all .3s ease;
}
.service-images-19 .text-wrap span:hover {
  background: var(--yellowDark);
  border-color: var(--yellowDark);
}
/* .service-images-19 .text-wrap span i {
  width: 0;
  transform: translateX(-100%);
  opacity: 0;
  transition: all .3s ease;
} */
/* .service-images-19 .service-box:hover .text-wrap span i {
  opacity: 1;
  width: 10px;
  margin-left: .5rem;
  transform: none;
} */
@media (max-width: 767px) {
  .service-images-19 {
    padding: 2rem 0 0;
  }
  .service-images-19 .box-wrap {
    /* flex-flow: column; */
  }
  .service-images-19 .header-wrap {
    padding: 2rem 1rem;
  }
  .service-images-19 .header-wrap h1 {
    margin: 0;
  }
  .service-images-19 .header-wrap hr {
    display: none;
  }
  .service-images-19 .service-box {
    width: 100%;
  }
  .service-images-19 .text-wrap span {
    font-size: 1.3rem;
  }
}

/*============================ */
/* Action 11
============================== */
.hollow-action-11 {
  padding: 2rem 0;
  background: var(--green);
}
.hollow-action-11 .flex-container,
.hollow-action-11 .flex-container-fluid {
  justify-content: center;
  align-items: center;
}
.hollow-action-11 h3 {
  color: #FFF;
  font-weight: 300;
  font-size: 1.75rem;
  text-align: center;
}
.hollow-action-11 h3 span {
  border-bottom: 2px solid var(--yellow);
  font-weight: 400;
  margin-right: .25rem;
  padding-bottom: .25rem;
}
.hollow-action-11 h3#phone a {
  font-weight: 400;
  color: var(--yellow);
  padding: 0 1.5rem;
  transition: all .3s ease;
}
.hollow-action-11 h3#phone a:hover {
  color: #fff;
  border: none;
}
.hollow-action-11 a {
  color: #fff;
  border-color: transparent;
  background: transparent;
  border-width: 1px;
  font-weight: 600;
}
.hollow-action-11 a::before {
  background: var(--yellowDark);
}
.hollow-action-11 a.default-popup-ctrl {
  padding: .6rem 1rem;
  background: var(--greenDark);
  transition: all .3s ease;
}
.hollow-action-11 a:hover {
  border-color: var(--yellowDark);
}
.hollow-action-11 a.default-popup-ctrl:hover {
  background: var(--yellowDark);
}
@media only screen and (max-width: 991px) {
  .hollow-action-11 {
    padding: 2rem 0;
  }
  .hollow-action-11 .flex-container,
  .hollow-action-11 .flex-container-fluid {
    flex-flow: column;
  }
  .hollow-action-11 h3 {
    margin-bottom: 1rem;
    padding: 0;
  }
  .hollow-action-11 h3 span {
    border: none;
    padding: none;
    font-weight: 300;
  }
}
/*============================ */
/* Action 01
============================== */
.hollow-action-01 {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  text-align: center;
  background: var(--green);
}
.hollow-action-01 .flex-container {
  align-items: center;
}
.hollow-action-01 h1 {
  color: var(--greenDark);
  margin-bottom: 0.5rem;
  background: -webkit-linear-gradient(var(--yellow), var(--yellowDark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.25rem;
  line-height: 1.4;
}
.hollow-action-01 p {
  color: #fff;
  margin-bottom: 2rem;
  max-width: 50rem;
  font-size: 1.2rem;
  font-weight: 400;
}
.hollow-action-01 a {
  color: #fff;
  border-color: #fff;
  background: transparent;
  background: var(--greenDark);
  color: #fff;
  border-color: var(--greenDark);
  border-width: 1px;
  font-weight: 600;
  transition: all .3s ease;
  padding: .6rem 1rem;
}
.hollow-action-01 a:hover {
  background: var(--yellowDark);
}
.hollow-action-01 a::before {
  background: var(--yellowDark);
}
@media screen and (max-width:767px) {
  .hollow-action-01 {
    padding: 3rem 0;
  }
  .hollow-action-01 p {
    max-width: 90%;
  }
}
/*============================ */
/* Content 11
============================== */
.hollow-content-11 {
  padding: 0rem 0;
}
.hollow-content-11 .flex-container {
  justify-content: space-between;
}
.hollow-content-11 .slider-wrap {
  flex-basis: 48.5%;
  position: relative;
  overflow: hidden;
  visibility: hidden;
}
.hollow-content-11 .slider-wrap.slick-initialized {
  visibility: visible;
}
.hollow-content-11 .slide {
  position: relative;
  overflow: hidden;
  /* height: 44rem; */
  width: 48%;
}
.hollow-content-11 img {
  position: absolute;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.hollow-content-11 .slide:nth-of-type(odd) {
  background: black;
}
.hollow-content-11 .slick-dots {
  display: inline-flex;
  bottom: 0;
  left: 0;
  height: 6rem;
  align-items: flex-end;
  padding-bottom: 1rem;
  justify-content: center;
  }
.hollow-content-11 .slick-dots li button::before {
  color: #FFF;
}
.hollow-content-11 .text-wrap {
  flex-basis: 48.5%;
}
.hollow-content-11 .title-wrap {
  padding-bottom: .5rem;
  margin-bottom: 1rem;
  border-bottom: 2px dotted rgba(109,111,101,0.3);
  width: 100%;
}
.hollow-content-11 h1 {
  line-height: 1.5;
  /* margin-bottom: .5rem; */
  /* color: dimgrey; */
  background: -webkit-linear-gradient(var(--yellow), var(--yellowDark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.25rem;
}
.hollow-content-11 h3 {
  color: var(--green);
}
.hollow-content-11 p {
  margin-bottom: 1rem;
  color: dimgrey;
  font-size: 1.2rem;
  font-weight: 400;
}
.hollow-content-11 p:last-of-type {
  margin-bottom: 2rem;
}
.hollow-content-11 a {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  border-width: 1px;
  font-weight: 600;
  transition: all .3s ease;
  padding: .6rem 1rem;
}
.hollow-content-11 a:before {
  background: var(--yellowDark);
}
.hollow-content-11 a:hover {
  background: var(--yellowDark);
}
.hollow-content-11 .text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3rem 0;
}
@media only screen and (min-width: 992px) {
  .hollow-content-11 .flex-container {
    align-items: stretch;
  }
  .hollow-content-11 .slider-wrap {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-11 {
    padding: 2rem 0;
  }
  .hollow-content-11 .flex-container {
    flex-direction: column-reverse;
  }
  .hollow-content-11 .text-wrap {
    margin-bottom: 2rem;
    padding: 0;
  }
  .hollow-content-11 .slide {
    width: 100%;
  }
  .hollow-content-11 .slide img {
    position: relative;
  }
  .hollow-content-11 {
    padding: 2rem 0;
  }
}

/*============================ */
/* Action 14
============================== */
.hollow-action-14 {
  padding: 3rem 0;
  background: #fff;
}
.hollow-action-14 .flex-container {
  align-items: center;
}
.hollow-action-14.hidden * {
  opacity: 0;
}
.cls-1 {
  fill: var(--green);
}
.hollow-action-14 svg {
  width: 40%;
  max-height: 16rem;
}
.hollow-action-14:not(.hidden) #map1 {
  opacity: 0;
  animation: fadeUpBounce 1s ease-in 1 forwards;
}
.hollow-action-14:not(.hidden) #map2 {
  opacity: 0;
  animation: fadeUpBounce 1s ease-in .2s 1 forwards;
}
.hollow-action-14:not(.hidden) #map3 {
  opacity: 0;
  animation: fadeUpBounce 1s ease-in .4s 1 forwards;
}
.hollow-action-14:not(.hidden) #marker {
  opacity: 0;
  animation: fadeDown 1s ease-in .9s 1 forwards;
}

@keyframes fadeUpBounce {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  50% {
    opacity: 0.2;
  }
  90% {
    transform: translateY(-10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUpNormal{
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: .5;
    transform: translateY(-100%) scale(0);
  }
  50% {
    transform: translateY(-100%) scale(1.5);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hollow-action-14 .content {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hollow-action-14 .content h2 {
  opacity: 0;
  color: #FFF;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: .5rem;
  background: -webkit-linear-gradient(var(--yellow), var(--yellowDark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hollow-action-14:not(.hidden) .content h2 {
  animation: fadeUpNormal 1s linear .6s 1 forwards;
}
.hollow-action-14 .content p {
  opacity: 0;
  color: dimgrey;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
.hollow-action-14:not(.hidden) .content p {
  animation: fadeUpNormal 1s linear .8s 1 forwards;
}
.hollow-action-14 .content a {
  color: dimgrey;
  border-color: dimgrey;
  background: transparent;
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  opacity: 0;
  border-width: 1px;
  font-weight: 600;
  transition: all .3s ease;
  padding: .6rem 1rem;
}
.hollow-action-14:not(.hidden) .content a {
  animation: fadeUpNormal 1s linear 1s 1 forwards;
}
.hollow-action-14 .content a:before {
  background: var(--yellowDark);
}
.hollow-action-14 .content a:hover {
  color: #fff;
  background: var(--yellowDark);
}
/*@media only screen and (max-width: 991px) {
  .hollow-action-14 {
    background-attachment: unset;
  }
}*/
@media only screen and (max-width: 767px) {
  .hollow-action-14 {
    padding: 2rem 0;
  }
  .hollow-action-14 .flex-container {
    flex-direction: column;
    align-items: center;
  }
  .hollow-action-14 svg {
    margin-bottom: 2rem;
    width: 50%;
  }
  .hollow-action-14 .content {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .hollow-action-14 .content a {
    /* padding: .5rem 1rem; */
    /* border: 2px dotted #FFF; */
  }
  .hollow-action-14 .content a i {
    opacity: 1;
    padding-left: .75rem;
  }
}

/*============================ */
/* Contact 02
============================== */
.hollow-contact-02 {
  padding: 3rem 0;
  background: whitesmoke;
}
.hollow-contact-02 h2 {
  color: var(--green);
  background: -webkit-linear-gradient(var(--yellow), var(--yellowDark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.hollow-contact-02 p {
  font-size: 1.2rem;
  color: dimgrey;
  margin: 0;
  font-weight: 400;
}
.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;
  padding-bottom: 3.5rem;
}
.hollow-contact-02 .map-wrap iframe.clicked {
  pointer-events: auto;
}
.hollow-contact-02 ul li {
  color: dimgrey;
  line-height: 1.4;
  font-size: 1.2rem;
  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: 1.1rem;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(72,81,103,0.5);
  color: dimgrey;
  padding: 0.5rem .7rem;
  margin-bottom: 1rem;
  font-weight: 400;
  font-family: var(--mainFont);
}
.hollow-contact-02 textarea {
  font-family: var(--mainFont);
  z-index: 0;
  height: 15rem;
  max-height: 215px;
  margin: 0;
}
.hollow-contact-02 .wpcf7-form-control.wpcf7-submit {
  background: var(--green);
  border: none;
  border-radius: var(--root--borderRadius);
  padding: 0.6rem 1.5rem;
  margin: 1rem 0 0;
  color: #FFF;
  cursor: pointer;
  font-family: var(--mainFont);
  font-size: 1.1rem;
  font-weight: 400;
  width: unset;
  transition: .3s ease;
}
.hollow-contact-02 .wpcf7-form-control.wpcf7-submit:hover {
  background: var(--yellowDark);
}
@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:767px) {
  .hollow-contact-02 {
    padding: 2rem 0;
  }
  .page-template-page-contact .hollow-contact-02 {
    /* padding-top: 0; */
  }
  .hollow-contact-02 .map-wrap iframe {
    height: 350px;
    padding-bottom: 0;
  }
  .hollow-contact-02 input:not([type="submit"]),
  .hollow-contact-02 textarea {
    font-size: 1.3rem;
    font-weight: 400;
  }
  .hollow-contact-02 .wpcf7-form-control.wpcf7-submit {
    font-size: 1.3rem;
  }
  .hollow-contact-02 ul li {
    font-size: 1.3rem;
  }
}

/*============================ */
/* Footer 04
============================== */
.hollow-footer-04 {
  position: relative;
  overflow: hidden;
  background: var(--greenDark);
}
.hollow-footer-04 .main .flex-container {
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
}
.hollow-footer-04 img {
  margin-bottom: 1rem;
  max-width: 8rem;
  /* filter: brightness(0) invert(1); */
}
.hollow-footer-04 h2 {
  margin-bottom: .75rem;
  color: var(--yellow);
  background: -webkit-linear-gradient(var(--yellow), var(--yellowDark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.4;
}
.hollow-footer-04 h3 {
  color: #FFF;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: center;
}
.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(--yellow);
}

/* Meta */
.hollow-footer-04 .meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.3);
  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;
  font-size: 1.1rem;
  font-family: var(--headingFont);
}
.hollow-footer-04 .meta span a {
  color: #FFF;
  transition: all .3s ease;
}
.hollow-footer-04 .meta span a:hover {
  color: var(--green);
}
.hollow-footer-04 .meta i.top {
  position: absolute;
  margin-right: 1rem;
  right: 0;
  top: 0;
  color: #FFF;
  padding: .5rem;
  opacity: 0.5;
  background: var(--yellow);
  cursor: pointer;
  transition: all .3s ease;
}
.hollow-footer-04 .meta i.top:hover {
  opacity: 1;
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
  .page-template-page-contact .hollow-footer-04 .main .flex-container {
    padding: 5rem 0;
  }
}
@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: var(--green);
}
.search-form-wrap button:hover {
  background: var(--greenDark);
}
/*Blog Page*/
.blog-wrap .post-item-header h1 {
  background: var(--green);
}
.blog-wrap .post-item .post-item-header h1:hover {
  background: var(--greenDark);
}
.blog-wrap .post-item .post-content a {
  background: var(--green);
}
.blog-wrap .post-item .post-content a:hover {
  background: var(--greenDark);
}
.blog-wrap .post-item p {
  border-color: var(--green);
}
.blog-wrap .post-item .date-wrap i {
  color: var(--green);
}
/*Sidebars*/
.blog-sidebar {
  border-color: var(--green);
}
.blog-sidebar .post-item-header h2 {
  background: var(--green);
}
/*Post Content*/
.blog-post-content h1 {
  color: var(--green);
}
.blog-post-content h2 {
  color: var(--greenDark);
}
.blog-post-content h3 {
  color: var(--green);
}
.blog-post-content p a {
  color: var(--green);
}
.blog-post-content p a:hover {
  color: var(--greenDark);
}
/*Post Return Button*/
.blog-return a.blog-return-btn {
  background: var(--green);
}
.blog-return a.blog-return-btn:hover {
  background: var(--greenDark);
}
/*Pagination*/
.pagination .page-numbers {
  background: var(--greenDark);
}
.pagination .page-numbers:hover, 
.pagination .page-numbers:focus {
  background: var(--green);
}
.pagination span.page-numbers.current {
  background: var(--green);
}
/*============================ */
/* DEFAULT POPUP STYLES:
============================== */
.default-popup .form-wrap {
  background: var(--greenDark);
}
.default-popup .form-wrap h3 {
  color: var(--green);
}
.default-popup .wpcf7-form-control-wrap input,
.default-popup .wpcf7-form-control-wrap select,
.default-popup .wpcf7-form-control-wrap textarea {
  font-weight: 400;
}
.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(--greenDark);
}
.default-popup .wpcf7-form input[type="submit"] {
  background: var(--green);
}
.default-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--yellowDark);
}
.default-popup .loader-wrap {
  background: var(--green);
}
.default-popup .button-wrap i {
  background: var(--green);
}
/*============================ */
/* DEFAULT POPUP V2:
============================== */
.default-popup .form-wrap {
  width: 70%;
  padding: 1.5rem;
}
.default-popup .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.default-popup .content-wrap h2 {
  font-size: 1.3rem;
  color: #fff;
}
.default-popup .content-wrap h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
  text-align: center;
  background: -webkit-linear-gradient(var(--yellow), var(--yellowDark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .5rem;
}
.default-popup .content-wrap p {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
}
.default-popup .location {
  margin-bottom: 1.5rem;
}
.default-popup .location ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.default-popup .location ul li {
  display: flex;
  line-height: 1.4;
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  margin: 0 1.5rem 0 0;
}
.default-popup .location ul li i {
  color: var(--yellowDark);
  padding-right: .5rem;
  padding-top: .3rem;
}
.default-popup .form-wrap .close {
  border: none;
  background: transparent;
  color: var(--green);
}
.default-popup .form-wrap .close:hover {
  background: var(--green);
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .default-popup .form-wrap {
    width: 95%;
  }
  .default-popup .content-wrap {
    align-items: flex-start;
  }
  .default-popup .content-wrap p {
    display: none;
  }
  .default-popup .content-wrap h2 {
    display: none;
  }
  .default-popup .content-wrap h3 {
    text-align: left;
    padding-right: 1rem;
  }
  .default-popup .location {
    width: 100%;
    text-align: left;
    margin-bottom: 0;
  }
  .default-popup .location ul li {
    width: 100%;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
  }
}
/*============================ */
/* DEFAULT SEO STYLES:
============================== */
.content.seo {
  background: var(--greenDark);
}
.content.seo i {
  color: #fff;
}
.content.seo p a:hover {
  color: var(--yellow);
}
/*============================ */
/* DEFAULT INTERIOR PLACEHOLDERS
============================== */
.interior-placeholder-header {
  border-color: var(--greenDark);
  background: var(--green);
}
.interior-placeholder-header h1 {
  color: #FFF;
}
/*============================ */
/* PASSWORD-PROTECTED PAGE FORMS
============================== */
.post-password-required form p input[type="submit"] {
  background: var(--green);
}
.post-password-required form p input[type="submit"]:hover {
  background: var(--greenDark);
}
/*============================ */


/*INTERIOR PAGES*/


/*============================ */
/* Interior Header 05
============================== */
.interior-header-05 {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 3rem 0 2rem;
  text-align: center;
  background: whitesmoke;
}
.interior-header-05 h1 {
  position: relative;
  color: var(--green);
  margin-bottom: .75rem;
  font-weight: 700;
}
.interior-header-05 h2 {
  position: relative;
  color: dimgrey;
  font-size: 1.2rem;
  /*font-family: var(--mainFont);*/
  margin-bottom: 2rem;
}
.interior-header-05 p {
  font-size: 1.2rem;
  color: dimgrey;
  max-width: 50rem;
  /* margin-bottom: 0; */
}
@media only screen and (max-width: 991px) {
  .interior-header-05 {
    padding: 4rem 1rem 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .interior-header-05 h2 {
    max-width: 100%;
  }
  .interior-header-05 p {
    max-width: 100%;
  }
}

/*============================ */
/* Content 04
============================== */
.hollow-content-04 {
  padding: 2rem 0;
}
.hollow-content-04.top {
  padding: 2rem 0 0;
}
.hollow-content-04 .flex-container {
  align-items: stretch;
  justify-content: space-between;
}
.hollow-content-04 .text-wrap {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--green);
  padding: 2rem;
}
.hollow-content-04.bottom .text-wrap {
  background: var(--greenDark);
  width: 100%;
  /* margin-top: 2rem; */
  /* z-index: -1; */
}
.hollow-content-04 .title-wrap {
  margin-bottom: 1rem;
}
.hollow-content-04 .title-wrap h1 {
  color: var(--green);
  font-weight: 700;
  margin-bottom: .25rem;
}
.hollow-content-04 .title-wrap h3 {
  color: #fff;
  font-weight: 700;
  border-left: 4px solid var(--yellow);
  padding: .25rem 0 .25rem 1rem;
}
.hollow-content-04 .text-wrap p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 400;
}
.hollow-content-04 img {
  width: 53%;
  display: flex;
  object-fit: cover;
  margin: 2rem 0;
}
@media only screen and (min-width: 992px) {
  .hollow-content-04 .flex-container.reverse {
    flex-direction: row-reverse;
  }
  .hollow-content-04.left .text-wrap {
    padding: 2rem 2rem 2rem 4rem;
  }
  .hollow-content-04.right .text-wrap {
    padding: 2rem 4rem 2rem 2rem;
  }
  .hollow-content-04.left img {
    margin-right: -2rem;
    z-index: 10;
  }
  .hollow-content-04.right img {
    margin-left: -2rem;
    z-index: 10;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-04 .flex-container > * {
    flex-basis: 48%;
  }
  .hollow-content-04 .flex-container {
    flex-direction: column;
  }
  .hollow-content-04 .flex-container > * {
    width: 100%;
  }
  .hollow-content-04 img {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-04 {
    padding: 2rem 0;
  }
  .hollow-content-04.bottom {
    padding-bottom: 0;
  }
  .hollow-content-04 .flex-container {
    flex-direction: column;
  }
  .hollow-content-04 .flex-container > * {
    width: 100%;
  }
  .hollow-content-04 .text-wrap {
    margin-bottom: 2rem;
  }
  .hollow-content-04 img {
    max-height: 55vh;
    min-height: 16rem;
  }
}


/*============================ */
/* Interior Careers 01
============================== */
.interior-careers-01 {
  padding: 1rem 0 3rem;
}
.interior-careers-01 .form-wrap {
  width: 100%;
}
.interior-careers-01 .form-wrap form {
  background: var(--greenDark);
  padding: 2rem;
}
.interior-careers-01 .group-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.interior-careers-01 .group-wrap p {
  margin: 0.5rem 0;
  color: #fff;
}
.interior-careers-01 .group-wrap h3 {
  margin-bottom: 1rem;
  color: #fff;
}
.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-family: var(--mainFont);
  font-size: 1.1rem;
  font-weight: 300;
  color: #000;
  width: 100%;
  padding: .5rem;
  margin-bottom: 1rem;
  outline: none;
  border: 1px solid #ccc;
}
.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: var(--yellow);
}
.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: var(--yellow);
  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: transparent;
  padding: .5rem 2.5rem;
  border: 1px solid #fff;
  cursor: pointer;
  transition: all .3s ease;
}
.interior-careers-01 .submit-wrapper input[type="submit"]:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}
@media only screen and (max-width: 767px) {
  .interior-careers-01 {
    padding: 2rem 0 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;
}
.interior-maps-01 .flex-container {
  align-items: center;
  justify-content: space-between;
}
.interior-maps-01 .text-wrap {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 4rem 2rem 2rem;
  background: var(--green);
}
.interior-maps-01 h3 {
  color: #fff;
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 700;
}
.interior-maps-01 p {
  color: #fff;
  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;
  color: #fff;
}
.interior-maps-01 .list-wrap ul li i {
  color: var(--yellow);
  font-size: 1.2rem;
  padding-right: .5rem;
  margin-top: .3rem;
}
.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; */
  width: 53%;
  align-self: stretch;
}
.interior-maps-01 .map-wrap:before {
  content: '';
  top: 50%;
  left: 50%;
  width: 40vh;
  transform: translate(-50%,-50%);
  height: 40vh;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--greenDark);
  z-index: 1000;
  position: absolute;
  opacity: 0.4;
}
.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 (min-width: 992px) {
  .interior-maps-01 .map-wrap {
    margin-left: -2rem;
  }
  .interior-maps-01 .text-wrap {
    margin-bottom: -2rem;
    margin-top: -2rem;
  }
}
@media only screen and (max-width: 991px) {
  .interior-maps-01 {
    padding: 2rem 0;
  }
  .interior-maps-01 .flex-container {
    justify-content: center;
  }
  .interior-maps-01 .flex-container > * {
    flex-basis: 48%;
  }
  .interior-maps-01 .list-wrap .list-1 {
    margin-right: 2rem;
  }
  .interior-maps-01 .map-wrap {
    margin: 0;
  }
  .interior-maps-01 .map-wrap:before {
    display: none;
  }
  /*.interior-maps-01 .map-wrap iframe {
  }*/
  .interior-maps-01 .text-wrap {
    margin: 0;
    padding: 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 ul li {
    font-size: 1.2rem;
  }
  .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;
  }
}

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



/*============================ */
/* recaptcha css
============================== */
.grecaptcha-badge{
  visibility: collapse !important;  
}
.post-content span.date-wrap { display:none; }
