/*
  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 {
  --teal: #00afae;
  --tealDark: #006363;
  --orange: #e27d42;
  --grey: #bcbdbd;
  --greyDark: #6d6d6d;
}



.wpcf7-contact-page .submit-wrapper input {
  background: var(--teal);
}
.wpcf7-contact-page .submit-wrapper input:hover {
  background: var(--orange);
}

.hollow-header-02 {
  display: block;
  position: relative;
  z-index: 9000;
  background: #FFF;
  color: #f6f6f6;
  width: 100%;
  box-shadow: 2px 2px 2px var(--greyDark);
}
.hollow-header-02.sticky {
  position: fixed;
  top: 0;
  background: #fff;
}
.hollow-header-02 .logo img {
  max-width: 100%;
  -webkit-transition: all .32s ease;
  -o-transition: all .32s ease;
  transition: all .32s ease;
}
.hollow-header-02.sticky .logo img {
  display: none;
}
.hollow-header-02 .va-middle {
  float: left;
}
.hollow-header-02 .phone {
  text-align: left;
  font-size: 0;
  display: inline-block;
}
.hollow-header-02 .phone a {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 400;
  margin: .4rem 0;
  display: inline-block;
}
.hollow-header-02 .social {
  display: inline-block;
}

.hollow-header-02 .social a {
  color: #FFF;
  font-size: 1.3rem;
  display: inline-block;
  vertical-align: middle;
  padding: .3rem;
}
.hollow-header-02 .phone a:hover,
.hollow-header-02 .social a:hover {
  color: var(--teal);
}
.hollow-header-02 .logo img {
  padding: 1rem 0;
}
.hollow-header-02 #header-border {
  margin: 0;
  opacity: 0.5;
}
.hollow-header-02 .meta-wrap-outer {
  font-size: 2rem;
  font-family: 'Lato';
  font-weight: 400;
  background: var(--tealDark);
  margin: 0;
  padding: .25rem 0;
}
.hollow-header-02 .meta-wrap-inner {
  display: block;
  position: relative;
  text-align: right;
}
.hollow-header-02 .meta-wrap-inner .spacer {
  padding: 0.25rem;
  font-size: 1.5rem;
}
.hollow-header-02 .mobile-toolbar nav a.mobile-icon {
  font-size: 34px;
}
.hollow-header-02.sticky .meta-wrap-outer {
  display: none;
}
.hollow-header-02 .social {
  text-align: right;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
/* NAVIGATION */
.hollow-header-02 nav {
  float: right;
  display: inline-block;
  background: none;
  font-family: 'Lato';
  font-size: 2rem;
  position: relative;
  z-index: 5000;
}
.hollow-header-02 nav a {
  padding: .1rem .6rem;
  display: block;
  color: var(--greyDark);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}
.hollow-header-02 nav a:focus {
  color: var(--greyDark);
}
.hollow-header-02 nav a i {
  padding-right: .4rem;
}
/* NAV LEVEL ONE */
.hollow-header-02 .menu-item.open>a, 
.hollow-header-02 .menu-item:hover>a, 
.hollow-header-02 .menu-item.active a, 
.hollow-header-02 .menu-item.active:hover>a {
  background: transparent;
  color: var(--orange);
}
/* NAV LEVEL TWO */
.hollow-header-02 .dropdown-menu {
  margin-top: 0px;
  border-radius: 0;
  border: none;
  padding: 0;
  width: 12rem;
  display: none;
}
.hollow-header-02 nav .dropdown-menu .menu-item {
  float: none;
}
.hollow-header-02 nav .dropdown-menu a {
  background: var(--tealDark);
  color: #fff;
}
.hollow-header-02 .dropdown-menu>li:hover>a, 
.hollow-header-02 .dropdown-menu>li.active>a, 
.hollow-header-02 .dropdown-menu>.active>a:hover, 
.hollow-header-02 .dropdown-menu>.active>a:focus {
  background: var(--teal);
  color: #fff;
}
.hollow-header-02 .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-02 nav #mobile {
  position: relative;
  height: 48px;
  width: 30px;
  background: none;
  outline: none;
  border: none;
  float: right;
}
.hollow-header-02 .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-02 .hamburger:hover {
  cursor: pointer;
}
.hollow-header-02 .hamburger:before,
.hollow-header-02 .hamburger:after {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 20%;
  background: var(--tealDark);
  -webkit-transition-property: -webkit-transform, top;
  -moz-transition-property: -moz-transform, top;
  -o-transition-property: -o-transform, top;
  -ms-transition-property: -ms-transform, top;
  transition-property: transform, top;
  -webkit-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -o-transition-duration: .2s;
  -ms-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -o-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0)
}
.hollow-header-02 .hamburger:after {
  top: 60%;
}
header.hollow-header-02.header-menu-open #mobile,
header.hollow-header-02.header-menu-open #mobile .hamburger {
  background: transparent;
}
header.hollow-header-02.header-menu-open #mobile>.hamburger:before,
header.hollow-header-02.header-menu-open #mobile>.hamburger:after {
  top: 40%;
  background: #FFF;
}
header.hollow-header-02.header-menu-open #mobile>.hamburger:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}
header.hollow-header-02.header-menu-open #mobile>.hamburger:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}
body.transparent header {
  position: absolute;
  width: 100%;
  background: rgba(25, 25, 25, 0.5);
}
/* MOBILE TOOLBAR */
.hollow-header-02 .mobile-toolbar {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.hollow-header-02 .mobile-toolbar a {
  color: #fff;
  padding: .5rem 1rem;
}
.hollow-header-02 .mobile-toolbar a:hover,
.hollow-header-02 .mobile-toolbar a:focus {
  color: var(--teal);
}
.hollow-header-02 .mobile-toolbar>* {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (min-width: 992px) {
  .hollow-header-02 .mobile-toolbar {
    display: none;
  }
  .hollow-header-02 .menu {
    float: right;
  }
  .hollow-header-02 nav .menu-item {
    float: left;
    position: relative;
  }
  .hollow-header-02 nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
  }
  .hollow-header-02 nav .menu-item-has-children:hover>ul.dropdown-menu {
    display: block;
  }
  .hollow-header-02 .mobile-toolbar{
    display: none;
  } 
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-header-02 nav a {
    /*font-size: 1rem;*/
  }
}
@media only screen and (max-width: 991px) {
  .hollow-header-02 .logo {
    text-align: center;
  }
  .hollow-header-02 .logo img {
    margin: 60px auto 15px;
  }
  header.hollow-header-02.header-menu-open nav .menu {
    pointer-events: auto;
    opacity: 1;
  }
  .hollow-header-02 nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 15px;
    width: 100%;
    background: var(--tealDark);
  }
  .hollow-header-02 nav a {
    font-size: 1rem;
    text-transform: uppercase;
    /*color: var(--greyDark);*/
    color: #fff;
  }
  .hollow-header-02 .menu-item.open>a, 
  .hollow-header-02 .menu-item:hover>a, 
  .hollow-header-02 .menu-item.active a, 
  .hollow-header-02 .menu-item.active:hover>a {
    background: var(--teal);
    color: #fff;
  }
  .hollow-header-02 nav .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    -webkit-transition: opacity 0.25s;
    -o-transition: opacity 0.25s;
    transition: opacity 0.25s;
    z-index: -1;
    /*background: #fff;*/
    background: var(--tealDark);
    box-shadow: 0 3px 3px -2px #000;
    pointer-events: none;
    opacity: 0;
  }
  .hollow-header-02 nav .menu-item-has-children.open .dropdown-menu {
    display: block;
  }
  .hollow-header-02 .dropdown-menu {
    position: relative;
    box-shadow: none;
    width: 100%;
  }
  .hollow-header-02 .dropdown-menu>li>a {
    padding-left: 2.5em;
  }
  .hollow-header-02 .mobile-toolbar>* {
    display: inline-block;
  }
  .hollow-header-02 .mobile-toolbar a {
    font-size: 34px;
    float: left;
  }
}
@media screen and (orientation: portrait) and (max-width:991px) {
  .hollow-header-02 nav a {
    font-size: 1.6rem;
    padding: .6rem;
  }
}
@media screen and (orientation: portrait) and (max-width:767px) {
  .hollow-header-02 nav a {
    font-size: 1.4rem;
    padding: .45rem .6rem;
  }
}


/*============================ */
/* Hero 11
============================== */
.hollow-hero-11 {
  position: relative;
  overflow: hidden;
  /*background: grey;*/
  padding: 4rem 0;
}
.hollow-hero-11 .flex-container {
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .hollow-hero-11 .flex-container {
    flex-flow: column;
  }
}

/*Img Slider*/
.hollow-hero-11 .img-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.hollow-hero-11 .img-slider:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(109,109,109,.5);
    pointer-events: none;
}
.hollow-hero-11 .img-slider.slick-initialized {
  visibility: visible;
}
.hollow-hero-11 .img-slider .slick-list,
.hollow-hero-11 .img-slider .slick-track {
  height: 100%;
}
.hollow-hero-11 .img-slider img {
  object-fit: cover;
  width: 100%;
  min-height: 100%;
}

/*Caption Slider*/
.hollow-hero-11 .cap-slider {
  position: relative;
  width: 50%;
  visibility: hidden;
}
.hollow-hero-11 .cap-slider.slick-initialized {
  visibility: visible;
}
.hollow-hero-11 .cap-slider .slick-track {
  display: flex;
  align-items: center;
}
.hollow-hero-11 .caption h1 {
  color: #fff;
  font-weight: 700;
  margin-bottom: .5rem;
}
.hollow-hero-11 .caption h3 {
  color: #fff;
  margin-bottom: 1rem;
}
.hollow-hero-11 .caption p {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #fff;
}
.hollow-hero-11 .caption a {
  display: inline-flex;
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
  transition: all .3s ease;
}

.hollow-hero-11 .caption a:hover {
  border-color: var(--orange);
  background: var(--teal)
}
.hollow-hero-11 .caption a:before {
  background: var(--orange);
}
.hollow-hero-11 .slick-dots {
  display: flex;
  bottom: -3rem;
}
.hollow-hero-11 .slick-dots li button:before {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .hollow-hero-11 .cap-slider {
    width: 100%;
  }
}

/*Form Wrap*/
.hollow-hero-11 .form-wrap {
  width: 40%;
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: 5px;
  text-align: center;
}
.hollow-hero-11 .form-wrap .wpcf7 {
  /*padding: 0 .5rem;*/
}
.hollow-hero-11 .form-wrap h3 {
  background: rgba(0, 99, 99, 0.8);
  font-weight: 500;
  padding: 1rem;
  border-radius: 3px;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: .5rem;
}
.hollow-hero-11 .form-wrap .flex-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hollow-hero-11 .form-wrap .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  height: 100%;
}
.hollow-hero-11 .form-wrap input,
.hollow-hero-11 .form-wrap textarea {
  border-radius: 3px;
  display: block;
  font-size: 1rem;
  padding: .5rem;
  border: none;
  color: grey;
  font-weight: 300;
  font-family: Arial;
}
.hollow-hero-11 .form-wrap .wpcf7 input:not([type="submit"]) {
  border-radius: 3px;
  margin-bottom: .5rem;
}
.hollow-hero-11 .form-wrap textarea {
  height: 100%;
  resize: none;
  border-radius: 3px 0 0 3px;
  height: 5rem;
}
.hollow-hero-11 .form-wrap .wpcf7 input[type="text"]::-webkit-input-placeholder,
.hollow-hero-11 .form-wrap .wpcf7 input[type="email"]::-webkit-input-placeholder,
.hollow-hero-11 .form-wrap .wpcf7 input[type="tel"]::-webkit-input-placeholder,
.hollow-hero-11 .form-wrap .wpcf7 textarea::-webkit-input-placeholder {
  color: grey;
}
.hollow-hero-11 .form-wrap .message-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.hollow-hero-11 .message-wrap .wpcf7-form-control-wrap {
  flex: 6;
}
.hollow-hero-11 .message-wrap .submit-wrap {
  flex: 1;
}
.hollow-hero-11 .submit-wrap {
  position: relative;
  height: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFF;
  overflow: hidden;
  background: var(--teal);
  transition: all .3s ease;
  border-radius: 0 3px 3px 0;
}
.hollow-hero-11 .submit-wrap:hover {
  background: var(--orange);
}
.hollow-hero-11 .submit-wrap i {
  color: #FFF;
  font-size: .8rem;
  margin: .25rem 0;
}
.hollow-hero-11 input[type="submit"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  border: none;
  cursor: pointer;
  background: transparent;
}
@media screen and (min-width: 768px) {
  .hollow-hero-11 .form-wrap .flex-wrap .wpcf7-form-control-wrap {
    width: calc(51% - .5rem);
  }
}
@media only screen and (max-width: 991px) {
  .hollow-hero-11 .form-wrap 
}
@media only screen and (max-width: 767px) {
  .hollow-hero-11 .form-wrap {
    display: none;
  }
  .hollow-hero-11 .form-wrap .flex-wrap {
    flex-direction: column;
  }
  .hollow-hero-11 .form-wrap .flex-wrap .wpcf7-form-control-wrap,
  .hollow-hero-11 .form-wrap .message-wrap * {
    width: 100%;
  }
  .hollow-hero-11 .form-wrap .message-wrap {
    flex-direction: column;
  }
  .hollow-hero-11 textarea {
    margin-bottom: 1rem;
    border-radius: var(--borderRadius);
  }
  .hollow-hero-11 .submit-wrap {
    height: 3rem;
    border-radius: var(--borderRadius);
  }
  .hollow-hero-11 .message-wrap .submit-wrap {
    flex-direction: row-reverse;
    align-items: center;
    height: 2.5rem;
  }
  .hollow-hero-11 .message-wrap .submit-wrap i {
    font-size: 1.2rem;
    width: unset;
    padding: 0 0.4rem;
  }
}


/*============================ */
/* Service Images 09
============================== */
.hollow-service-images-09 {
  padding: 4rem 0 2rem;
}
.hollow-service-images-09 .flex-container {
  justify-content: space-between;
  border-bottom: 2px solid var(--teal);
}
.hollow-service-images-09 figure {
  position: relative;
  display: flex;
  width: 32%;
  height: 12rem;
  background: grey;
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
}
.hollow-service-images-09 figure * {
  transition: all 0.25s ease;
}
.hollow-service-images-09 figure:before {
  position: absolute;
  top: 100%;
  bottom: 10px;
  left: 10px;
  right: 10px;
  content: '';
  background: rgba(0, 99, 99, 0.8);
  transition: all 0.25s ease;
  transition-delay: 0.25s;
}
.hollow-service-images-09 figure:hover:before,
.hollow-service-images-09 figure.hover:before {
  top: 10px;
  transition-delay: 0s;
}
.hollow-service-images-09 img {
  display: flex;
  object-fit: cover;
  width: 100%;
}
.hollow-service-images-09 figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.hollow-service-images-09 h3 {
  transform: translateY(-100%);
  transition-delay: 0.05s;
  margin-bottom: .25rem;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0;
}
.hollow-service-images-09 figure:hover h3,
.hollow-service-images-09 figure.hover h3 {
  transition-delay: 0.3s;
  transform: translateY(0);
  opacity: 1;
}
.hollow-service-images-09 h5 {
  font-weight: normal;
  background: var(--teal);
  padding: .25rem 1rem;
  transform: translateY(-100%);
  opacity: 0;
  transition-delay: 0s;
}
.hollow-service-images-09 figure:hover h5,
.hollow-service-images-09 figure.hover h5 {
  transition-delay: 0.2s;
  transform: translateY(0);
  opacity: 1;
}
.hollow-service-images-09 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .hollow-service-images-09 {
    padding: 2rem 0 1rem;
  }
  .hollow-service-images-09 .flex-container {
    border-bottom: none;
  }
  .hollow-service-images-09 {
    padding-bottom: 0;
  }
  .hollow-service-images-09 figure:before {
    top: 10px;
    transition-delay: 0s;
  }
  .hollow-service-images-09 figure h3 {
    transition-delay: 0.3s;
    transform: translateY(0);
    opacity: 1;
  }
  .hollow-service-images-09 figure h5 {
    transition-delay: 0.2s;
    transform: translateY(0);
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-service-images-09 {
    padding: 2rem 0 0;
  }
  .hollow-service-images-09 .flex-container {
    flex-flow: column;
  }
  .hollow-service-images-09 figure {
    width: 100%;
    margin-bottom: 2rem;
    height: 16rem;
  }
}



/*============================ */
/* Content 02
============================== */
.hollow-content-02 {
  position: relative;
  overflow: hidden;
  padding: 2rem 0rem 4rem;
}

/*About*/
.hollow-content-02 #about {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}
.hollow-content-02 #about img {
  width: 46%;
  object-fit: cover;
}
.hollow-content-02 #about_content {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  width: 46%;
}
.hollow-content-02 #about_content h1 {
  color: var(--greyDark);
  margin-bottom: 1rem;
}
.hollow-content-02 #about_content hr {
  border: none;
  height: 2px;
  background: var(--teal);
  width: 100px;
  padding: 0;
  margin: 0 0 2rem;
}
.hollow-content-02 #about_content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #757575;
}
.hollow-content-02 #about_content p strong {
  color: var(--teal);
}
.hollow-content-02 #about_content a {
  margin-top: 1rem;
  color: var(--orange);
  border-color: var(--orange);
}
.hollow-content-02 #about_content a:hover {
  color: #fff;
}
.hollow-content-02 #about_content a:before {
  background: var(--orange);
}

/*Features*/
.hollow-content-02 #features {
  align-items: flex-start;
  justify-content: space-between;
}
.hollow-content-02 #features_content {
  width: 64%;
}
.hollow-content-02 #features_content h1 {
  color: var(--greyDark);
  margin-bottom: 1rem;
}
.hollow-content-02 #features_content hr {
  border: none;
  height: 2px;
  background: var(--teal);
  width: 100px;
  padding: 0;
  margin: 0 0 2rem;
}
.hollow-content-02 #features_content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #757575;
}
.hollow-content-02 #features_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1rem;
}
.hollow-content-02 #features_list li {
  display: flex;
}
.hollow-content-02 #features_list li i {
  padding-right: .75rem;
  font-size: 1.75rem;
  color: var(--teal);
}
.hollow-content-02 #features_list svg {
  height: 2rem;
  width: 4rem;
  fill: var(--teal);
  padding-right: .75rem;
}
.hollow-content-02 #features_list li span {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
}
.hollow-content-02 #features_list li span h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
  text-transform: uppercase;
  color: var(--greyDark);
}
.hollow-content-02 #features_list li span p {
  margin-bottom: 1rem;
}
.hollow-content-02 img {
  width: 34%;
  object-fit: cover;
}
@media only screen and (max-width: 1199px) {
  .hollow-content-02 #features {
    align-items: center;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-02 #about {
    /* margin-bottom: 0; */
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-02 {
    position: relative;
    overflow: hidden;
    padding: 0 0 2rem;
  }
  .hollow-content-02 #about {
    flex-flow: column;
    margin-bottom: 2rem;
  }
  .hollow-content-02 #about img {
    width: 100%;
    order: 2;
    margin: 2rem 0 0;
    max-height: 50vh;
  }
  .hollow-content-02 #about_content {
    width: 100%;
  }
  .hollow-content-02 #features {
    flex-flow: column;
  }
  .hollow-content-02 #features_content {
    width: 100%;
  }
  .hollow-content-02 #features_list {
    width: 100%;
    grid-template-rows: unset;
    grid-template-columns: unset;
  }
  .hollow-content-02 #features img {
    width: 100%;
    margin: 1rem 0 0;
    max-height: 50vh;
  }
}



/*============================ */
/* Action 11
============================== */
.hollow-action-11 {
  padding: 2rem 0;
  background: var(--tealDark);
  margin-bottom: 4rem;
}
.hollow-action-11 .flex-container {
  justify-content: center;
  align-items: center;
}
.hollow-action-11 h3 {
  color: #FFF;
  font-weight: 300;
  font-size: 1.75rem;
}
.hollow-action-11 h3 span {
  border-bottom: 2px solid var(--teal);
  font-weight: 400;
  margin-right: .25rem;
  padding-bottom: .25rem;
}
.hollow-action-11 h3#phone {
  font-weight: 400;
  color: var(--teal);
  padding: 0 1.5rem;
}
.hollow-action-11 a {
  color: #fff;
  border-color: #fff;
  background: transparent;
}
.hollow-action-11 a:hover {
  border-color: var(--orange);
}
.hollow-action-11 a::before {
  background: var(--orange);
}
.hollow-action-11 h3#phone a {
  transition: all .3s ease;
}
.hollow-action-11 h3#phone a:hover {
  color: #fff;
  border: none;
}
@media only screen and (max-width: 991px) {
  .hollow-action-11 .flex-container {
    flex-flow: column;
  }
  .hollow-action-11 h3 {
    margin-bottom: 1rem;
  }
  .hollow-action-11 h3 span {
    border: none;
    padding: none;
    font-weight: 300;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-action-11 h3 {
    text-align: center;
    padding-right: 0;
  }
  .hollow-action-11 {
    margin-bottom: 2rem;
  }
}

/*============================ */
/* Action 14
============================== */
.hollow-action-14 {
  padding: 4rem 0;
  background: var(--grey);
}
.hollow-action-14.hidden * {
  opacity: 0;
}
.cls-1 {
  fill: #fff;
}
.hollow-action-14 svg {
  width: 40%;
}
.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: var(--tealDark);
  font-weight: 400;
  margin-bottom: .5rem;
}
.hollow-action-14:not(.hidden) .content h2 {
  animation: fadeUpNormal 1s linear .6s 1 forwards;
}
.hollow-action-14 .content p {
  opacity: 0;
  color: #FFF;
  font-weight: 400;
  margin-bottom: 2rem;
}
.hollow-action-14:not(.hidden) .content p {
  animation: fadeUpNormal 1s linear .8s 1 forwards;
}
.hollow-action-14 .content a {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
  opacity: 0;
}
.hollow-action-14:not(.hidden) .content a {
  animation: fadeUpNormal 1s linear 1s 1 forwards;
}
.hollow-action-14 .content a:hover {
  border-color: var(--orange);
  background: var(--teal);
}
.hollow-action-14 .content a:before {
  background: var(--orange);
}
@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 03
============================== */
.hollow-contact-03 {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: url(img/contact-03-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.hollow-contact-03::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 99, 99,0.8);
}
.hollow-contact-03 .flex-container {
  position: relative;
}
.hollow-contact-03 .container {
  position: relative;
  text-align: center;
}
.hollow-contact-03 h1 {
  color: #fff;
  margin-bottom: 1rem;
}
.hollow-contact-03 p {
  color: #fff;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #8df9f9;
}

/*Content*/
.hollow-contact-03 .content-wrap {
  width: 48%;
  display: flex;
  flex-flow: column;
}
.hollow-contact-03 ul li.data {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: .75rem 1rem;
  font-size: 1.4rem;
  font-weight: 300;
}
.hollow-contact-03 ul li.data:hover {
  background: rgba(0, 99, 99, 0.6);
}
.hollow-contact-03 ul li.data i {
  margin-right: 1rem;
  line-height: 1.5;
  color: #8df9f9;
  transition: all .3s ease;
  font-size: 1.5rem;
}
.hollow-contact-03 ul li.data:hover i {
  color: var(--orange);
}
.hollow-contact-03 ul li.data span {
  color: #fff;
  line-height: 1.5;
}
.hollow-contact-03 ul li.data a.full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hollow-contact-03 ul li.social {
  display: flex;
  margin-top: 1rem;
  margin-left: 2rem;
}
.hollow-contact-03 ul li.social a {
  position: relative;
  display: inline-flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 3rem;
}
.hollow-contact-03 ul li.social a:hover {
  background: rgba(0, 99, 99, 0.6);
}
.hollow-contact-03 ul li.social a i {
  color: #fff;
  transition: all .3s ease;
  font-size: 1.5rem;
  padding: .5rem;
}
.hollow-contact-03 ul li.social a:hover i {
  color: var(--orange);
}
.hollow-contact-03 ul li.social a hr {
  margin: 0;
  width: 100%;
  border: none;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transition: all .3s ease;
}
.hollow-contact-03 ul li.social a:hover hr {
  transform: scaleX(1);
}
.hollow-contact-03 .flex-container {
  align-items: flex-start;
  justify-content: space-between;
}

/*Form*/
.hollow-contact-03 .form-wrap {
  position: relative;
  overflow: hidden;
  width: 48%;
}
.hollow-contact-03 .form-wrap .input-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hollow-contact-03 .form-wrap .input-wrap span {
  width: 49%;
}
.hollow-contact-03 .form-wrap input:not([type="submit"]),
.hollow-contact-03 .form-wrap textarea {
  border: none;
  color: grey;
  font-family: Lato;
  font-size: 1.1rem;
  padding: .5rem 1rem;
  margin-bottom: .5rem;
  background: rgba(255,255,255,0.8);
}
.hollow-contact-03 .form-wrap textarea {
  height: 12rem;
}
.hollow-contact-03 .form-wrap input[type="submit"] {
  border: none;
  background: var(--teal);
  color: #fff;
  padding: .5rem 1rem;
  transition: all .3s ease;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: 400;
}
.hollow-contact-03 .form-wrap input[type="submit"]:hover {
  background: var(--orange);
}

@media only screen and (max-width: 991px) {
  .hollow-contact-03 {
    background-attachment: unset;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-contact-03 {
    padding: 3rem 0;
  }
  /*.page-template-page-contact .hollow-contact-03 {
    padding-top: 4rem;
  }*/
  .hollow-contact-03 .flex-container {
    flex-flow: column;
  }
  .hollow-contact-03 .content-wrap {
    margin-bottom: 1rem;
    width: 100%;
  }
  .hollow-contact-03 p {
    margin-bottom: 1rem;
  }
  .hollow-contact-03 .form-wrap {
    width: 100%;
  }
}


/*============================ */
/* Contact 01
============================== */
.hollow-contact-01 {
  position: relative;
  overflow: hidden;
}
.hollow-contact-01 iframe {
  width: 100%;
  height: 50vh;
  pointer-events: none;
}
.hollow-contact-01 iframe.clicked {
  pointer-events: auto;
}
.hollow-contact-01 .card {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFF;
  padding: 1rem;
  transition: all .3s ease;
}
.hollow-contact-01 .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: .25rem;
}
.hollow-contact-01 h1 {
  color: var(--teal);
  padding-right: 4rem;
}
.hollow-contact-01 .card a {
  padding: .5rem 1rem;
  color: var(--orange);
  border: 1px solid var(--orange);
  transition: all .3s ease;
}
.hollow-contact-01 .card a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #FFF;
}
.hollow-contact-01 ul li {
  color: #747474;
  line-height: 1.75rem;
  font-weight: 300;
  font-size: 1.1rem;
}
@media only screen and (min-width: 992px) {
  .hollow-contact-01 .card {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  .hollow-contact-01 .card:hover {
    transform: translateY(-53%);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  }
}
@media only screen and (max-width: 991px) {
  .hollow-contact-01 {
    display: flex-reverse;
    flex-direction: column;
  }
  .hollow-contact-01 .card {
    display: flex;
    align-items: initial;
  }
}

.hollow-web-design-01 {
  display:block;
}
.hollow-web-design-01 .top-half {
  padding:3rem 0 0;
}
.hollow-web-design-01 .top-half h1 {
  color:var(--greyDark);
  text-align:center;
  font-size:2rem;
  font-weight:500;
  margin-bottom:1rem;
}
.hollow-web-design-01 .top-half h2 {
  color:var(--tealDark);
  text-align:center;
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: none;
  line-height: 24px;
  letter-spacing: 0px;
  margin:0 12rem 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--orange);
}
.hollow-web-design-01 .top-half p {
  font-size:1rem;
  color:#000;
  font-weight:500;
  width:75%;
  margin:0 auto 1rem;
}
.hollow-web-design-01 .bottom-half {
  padding:2rem 0 3rem;
}
.hollow-web-design-01 .bottom-half .form-wrap {
  width:50%;
  margin:0 auto;
  text-align: -webkit-center;
}
.hollow-web-design-01 .bottom-half .form-wrap input:not([type="submit"]),
.hollow-web-design-01 .bottom-half .form-wrap textarea {
  border: 1px solid var(--orange);
  color: grey;
  font-family: Lato;
  font-size: 1.1rem;
  padding: .5rem 1rem;
  margin-bottom: .5rem;
  background: rgba(255, 255, 255, 0.8);
}
.hollow-web-design-01 .bottom-half .form-wrap textarea { height:9em; }
.hollow-web-design-01 .bottom-half .form-wrap textarea::placeholder { color:#000; }
.hollow-web-design-01 .bottom-half .form-wrap input[type="submit"] {
  border: none;
  background: var(--teal);
  color: #fff;
  padding: .5rem 1rem;
  transition: all .3s ease;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: 400;margin-top: .3rem;
}
.page-id-7247 .wpcf7-spinner{
	display: none;
}
@media only screen and (max-width:767px) {
  .hollow-web-design-01 .top-half h2 {
    margin:0 3rem 1rem;
  }
  .hollow-web-design-01 .top-half p {
    font-size:1rem !important;
  }
  .hollow-web-design-01 .bottom-half .form-wrap {
    width:80%;
  }
}

/* FOOTER
-------------------------*/
.footer-01 {
  background: var(--greyDark);
  font-weight: 300;
  text-align: center;
  padding: 4rem 0 0;
}
.footer-01 h1 {
  font-weight: 300;
  margin-bottom: 1rem;
  color: #FFF;
}
.footer-01 .text-wrap h3 {
  font-weight: 300;
  color: #FFF;
}
.footer-01 p {
  color: #FFF;
}
.footer-01 span {
  color: #FFF;
}
.footer-01 .cred-wrap {
  border-top: 1px solid var(--teal);
  width: 75vw;
  padding: .5rem;
  margin: 3rem auto 3rem auto;
}
.footer-01 .design {
  display: inline-block;
}
.footer-01 .copyright {
  display: inline-block;
}
.footer-01 .social {
  display: inline-block;
}
.footer-01 .design span a {
    padding: 0 1px;
}
.footer-01 .design span a strong {
  font-weight: 600;
}
.footer-01 .social .fa-stack-2x {
  color: var(--orange);
}
.footer-01 .social .fa-stack-1x {
    color: #FFF;
}
.footer-01 .social a:hover .fa-stack-2x {
  color: #FFF;
}
.footer-01 .social a:hover .fa-stack-1x {
  color: var(--orange);
}
.footer-01 nav a {
  padding: 5px;
  display: inline-block;
}
.footer-01 a, .footer-01 a:hover, .footer-01 a:focus {
  color: #f6f6f6;
}
@media (min-width: 768px) {
  .footer-01 {
    text-align: center;
  }
  .footer-01 nav a {
    display: block;
  }
  .footer-01 .menu-item {
    display: inline-block;
  }
  .footer-01 .col-sm-6 {
    text-align: right;
  }
  .footer-01 .design {
    float: left;
    text-align: left;
    margin: .5rem 0;
  }
  .footer-01 .social {
    float: right;
    text-align: right;
  }
}
@media only screen and (max-width: 767px) {
   .footer-01 .design {
    margin: 1rem 0;
  }
    .footer-01 .copyright {
    margin-bottom: 1rem;
  }
}

/* DEFAULT PAGE HEADER
-------------------------*/
.default-page-header {
  font-family: 'Lato';
  font-size: 2rem;
  font-weight: 300;
  margin-top: 2rem;
}
.default-page-header h1, .default-page-header h2, .default-page-header h3 {
  line-height: 1;
  margin: .2em 0;
}
.default-page-header p {
  line-height: 1.4em;
}
.default-page-header h1 {
  font-size: 1.5em;
  font-weight: 400;
}
.default-page-header h2 {
  font-size: 1em;
  font-weight: 400;
}
.default-page-header p {
  font-size: .6em;
}
.main-row {
  margin-bottom: 1em;
}


/*INTERIOR*/

.interior-page {
  margin-bottom: -1rem;
}

/*============================ */
/* Content 04
============================== */
.hollow-content-04 {
  padding: 4rem 0;
}
.hollow-content-04.second {
  padding: 0 0 4rem;
}
.hollow-content-04 .flex-container {
  align-items: center;
  justify-content: space-between;
}
.hollow-content-04 .text-wrap {
  flex-basis: 58%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hollow-content-04 h1 {
  color: var(--greyDark);
  margin-bottom: .25rem;
}
.hollow-content-04 h3 {
  color: var(--tealDark);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.hollow-content-04 hr {
  border: none;
  height: 2px;
  background: var(--orange);
  width: 100px;
  padding: 0;
  margin: 0 0 2rem;
}
.hollow-content-04 p {
  color: #757575;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.hollow-content-04 h4 {
  font-size: 1.1rem;
  color: var(--teal);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.hollow-content-04 a {
  color: #525865;
  border-color: #525865;
}
.hollow-content-04 a:before {
  background: #525865;
}
.hollow-content-04 img {
  flex-basis: 38%;
  display: flex;
  object-fit: cover;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .hollow-content-04 .flex-container.reverse {
    flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-04 .flex-container > * {
    flex-basis: 48%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-04 {
    padding: 2rem 0;
  }
  .hollow-content-04.second {
    padding: 0 0 2rem;
  }
  .hollow-content-04 .flex-container {
    flex-direction: column;
  }
  .hollow-content-04 .flex-container > * {
    width: 100%;
  }
  .hollow-content-04 .text-wrap {
    margin-bottom: 1rem;
  }
}

/*============================ */
/* Interior Content 01
============================== */
.interior-content-01 {
  padding: 0 0 4rem;
  text-align: center;
}
.interior-content-01.first {
  padding: 4rem 0;
}
.interior-content-01 h1 {
  color: var(--greyDark);
  margin-bottom: 1rem;
}
.interior-content-01 hr {
  width: 10%;
  margin: 1rem auto 2rem;
  border: 1px solid var(--orange);
}
.interior-content-01 h4 {
   color: var(--tealDark);
   margin-bottom: 1rem;
   line-height: 1.4;
   font-size: 1.3rem;
   font-weight: 700;
}
.interior-content-01 p {
  color: #747474;
  font-size: 1.1rem;
}
@media only screen and (max-width: 767px) {
  .interior-content-01 {
    padding: 0 0 2rem;
  }
  .interior-content-01.first {
    padding: 2rem 0;
  }
  .interior-content-01 p {
    margin-bottom: 1rem;
  }
}

/*============================ */
/* Interior Career
============================== */
.interior-career {
  padding: 0 0 4rem;
}
.interior-career .wpcf7-apply-form-header h1 {
    color: #36352a;
    text-transform: uppercase;
    padding: 15px;
    font-size: 1em;
    margin: 0px;
}
.interior-career .wpcf7- {
    color: #252525;
    padding-bottom: 15px;
    width: 100%;
    font-size: 15px;
    line-height: 30px;
}
.interior-career .wpcf7-apply-form p {
  margin-bottom: 0;
  margin-top: .7rem;
}
.interior-career .wpcf7-apply-form input,
.interior-career .wpcf7-apply-form textarea {
  padding: 10px;
  width: 100%;
  border: transparent;
  border-bottom: 1px solid;
  display: block;
  transition: border-color 0.5s;
  -webkit-transition: border-color 0.5s;
  background: #fff;
  color: #333;
  font-size: 16px;
}
.interior-career .wpcf7-apply-form input[type="text"],
.interior-career .wpcf7-apply-form input[type="email"],
.interior-career .wpcf7-apply-form textarea {
    font-size: 16px;
}
.interior-career .wpcf7-apply-form textarea {
    height: 216px;
}
.interior-career .wpcf7-apply-form input:focus,
.interior-career .wpcf7-apply-form textarea:focus {
    border-color: #333;
}
.interior-career .wpcf7-apply-form span.wpcf7-form-control-wrap {
    display: block;
    font-size: 20px;
    margin-bottom: .7rem;
}
.interior-career .wpcf7-apply-form .contact-captcha > img {
    height: 62px;
    width: 174px;
    float: left;
    margin-right: 15px;
}
.interior-career .wpcf7-apply-form .contact-captcha > span {
    overflow: auto;
}
.interior-career .wpcf7-apply-form .contact-captcha > span > input {
    width: 100%;
}
.interior-career .wpcf7-apply-form img.ajax-loader {
    display: inline-block;
}
.interior-career .wpcf7-apply-form .submit-wrapper {
    text-align: right;
    margin-top: 20px;
}
.interior-career .wpcf7-apply-form .submit-wrapper input {
    width: auto;
    display: inline-block;
    background: transparent;
    transition: background 0.5s, color 0.5s;
    -webkit-transition: background 0.5s, color 0.5s;
    padding: 10px 30px;
    color: #fff;
    background: var(--teal);
    border: none;
    transition: background 0.25s;
    font-size: 18px;
}
.interior-career .wpcf7-apply-form .submit-wrapper input:hover {
    background: var(--orange);
    color: #fff;
}
.interior-career .wpcf7-apply-form input[type="text"]::-webkit-input-placeholder, .wpcf7-apply-form input[type="email"]::-webkit-input-placeholder {
    color: #999999;
}
.interior-career .wpcf7-apply-form ::-webkit-input-placeholder {
    color: #999999;
}
.interior-career .wpcf7-apply-form :-moz-placeholder {
    color: #999999;
}
.interior-career .wpcf7-apply-form ::-moz-placeholder {
    color: #999999;
}
.interior-career .wpcf7-apply-form :-ms-input-placeholder {
    color: #999999;
}

/*============================ */
/* Careers Form v2
============================== */
.interior-career .form-wrap {
  width: 55vw;
  margin: 0 auto;
  border: 1px solid #0000001f;
  padding: 3rem 2rem 2rem;
  box-shadow: 0 0 16px rgba(0,0,0,.29);
  max-width: 100%;
}
.interior-career .form-wrap .group-wrap:first-of-type {
  margin-bottom: 3rem;
}
.interior-career .form-wrap .group-wrap {
  padding: 1rem 1.5rem;
  position: relative;
}
.interior-career .form-wrap .wpcf7-apply-form p {
  margin: 1rem 0 .8rem .5rem;
  color: #757575;
  font-size: 1rem;
  font-weight: 400;
}
.interior-career .form-wrap .min-header {
  display: inline-block;
}
.interior-career .form-wrap .min-header h3 {
  color: var(--teal);
  font-size: 1.5rem;
  margin: 0px;
  position: absolute;
  display: block;
  top: -30px;
}
@media only screen and (max-width: 991px) {
  .interior-career .form-wrap {
    width: 90vw;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .interior-career {
    padding: 0 0 3rem;
  }
  .interior-career .form-wrap {
    padding: 1rem;
  }
  .interior-career .form-wrap .min-header h3 {
    font-size: 1.2rem;
    margin: 0 1rem 1rem;
    position: relative;
    top: unset;
    text-transform: capitalize;
    background: transparent;
  }
  .interior-career .form-wrap .group-wrap {
    padding: 1rem .5rem;
  }
  .interior-career .wpcf7-apply-form .submit-wrapper {
    margin-top: 0;
  }
  .interior-career .wpcf7-apply-form .submit-wrapper input {
    padding: .5rem 1rem;
    font-size: 14px;
  }
  .interior-career .form-wrap .group-wrap:first-of-type {
    margin-bottom: -2px;
  }
}
@media only screen and (max-width: 425px) {
  .interior-career .form-wrap .min-header h3 {
    font-size: 1.5rem;
    margin: 0rem;
    padding: 0 .5rem .5rem;
  }
  .interior-career .form-wrap .wpcf7-apply-form p {
    font-size: 1.1rem;
    font-weight: 400;
  }
  .interior-career .wpcf7-apply-form input[type="text"], 
  .interior-career .wpcf7-apply-form input[type="email"] {
    font-size: 14px;
  }
}
/*============================ */
/* Content 04
============================== */
.interior-map-04 {
  padding: 4rem 0;
}
.interior-map-04 .flex-container {
  align-items: center;
  justify-content: space-between;
}
.interior-map-04 .text-wrap {
  flex-basis: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.interior-map-04 h4 {
  color: var(--teal);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 700;
}
.interior-map-04 h1 {
  color: var(--greyDark);
  line-height: 1;
  margin-bottom: .25rem;
  font-size: 2.75rem;
}
.interior-map-04 hr {
  height: 2px;
  width: 5rem;
  background: var(--orange);
  margin: 1rem 0 2rem;
  border: none;
}
.interior-map-04 h3 {
  color: var(--tealDark);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.interior-map-04 p {
  color: #757575;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.interior-map-04 .list-wrap {
  display: flex;
  justify-content: space-between;
  width: 90%;
}
.interior-map-04 .list-wrap .list-1,
.interior-map-04 .list-wrap .list-2 {
  /* margin-right: 8rem; */
  width: 100%;
}
.interior-map-04 .list-wrap ul {
  display: block;
}
.interior-map-04 .list-wrap ul li {
  display: flex;
}
.interior-map-04 .list-wrap ul li i {
  color: #757575;
  vertical-align: top;
  margin-top: .3rem;
  padding-right: .75rem;
  font-size: 1.2rem;
}
.interior-map-04 .list-wrap ul li p {
  display: inline-block;
  max-width: 90%;
  vertical-align: top;
}
.interior-map-04 .map-wrap {
  position: relative;
  overflow: hidden;
  flex-basis: 48%;
}
.interior-map-04 .map-wrap:before {
  content: '';
  top: 50%;
  left: 50%;
  width: 50vh;
  transform: translate(-50%,-50%);
  height: 50vh;
  border-radius: 50%;
  background: rgba(0,0,0,.3);
  border: 2px solid #333;
  z-index: 1000;
  position: absolute;
  display: none;
}
.interior-map-04 .map-wrap iframe {
  flex-basis: 48%;
  display: flex;
  overflow: hidden;
  pointer-events: none;
  max-width: 100%;
}
@media only screen and (max-width: 991px) {
  .interior-map-04 .flex-container > * {
    flex-basis: 48%;
  }
  .interior-map-04 .list-wrap .list-1 {
    margin-right: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .interior-map-04 {
    padding: 2rem 0;
  }
  .interior-map-04 .flex-container {
    flex-direction: column;
  }
  .interior-map-04 .flex-container > * {
    width: 100%;
  }
  .interior-map-04 .text-wrap {
    margin-bottom: 1rem;
  }
  .interior-map-04 .list-wrap {
    width: 100%;
  }
  .interior-map-04 .list-wrap .list-1 {
    margin-right: 0rem;
  }
  .interior-map-04 .list-wrap .list-1,
  .interior-map-04 .list-wrap .list-2 {
    width: 50%;
  }
  .interior-map-04 img {
    order: 2;
  }
  .interior-map-04 .map-wrap iframe {
    max-height: 80vh;
  }
}


/*============================ */
/* Testimonials 04
============================== */

.hollow-testimonial-04 {
  position: relative;
  padding-bottom: 4rem;
  padding-top: 0rem;
}
.hollow-testimonial-04 h2 {
  color: #0085ab;
  text-transform: uppercase; 
  margin-bottom: 1rem;
  font-size: 1.7rem;
}
.hollow-testimonial-04 p {
  color: #3f4d5a;
  margin-bottom: 2rem;
}
.hollow-testimonial-04 span.num-span {
  font-weight: 400;
  white-space: nowrap;
}
.hollow-testimonial-04 .testimonial-wrap {
  display: block;
  position: relative;
}
.hollow-testimonial-04 .text-wrap {
  display: inline-block;
  position: relative;
  padding: 0 9rem 3.5rem 9rem;
  background: #fff;
  /*margin: 0 1rem;*/
  /*border: 2px solid #0085ab;*/
}
.hollow-testimonial-04 .col5 {
  width: 5%;
  float: left;
  display: inline-block;
  font-size: 2rem;
}
.hollow-testimonial-04 .col90 {
  width: 100%;
  float: left;
  display: inline-block;
  font-size: 2rem;
}
.hollow-testimonial-04 .text-wrap p {
  margin: 0;
  color: #757575;
  font-size: 1.1rem;
  -webkit-margin-before: 1rem;
}
.hollow-testimonial-04 .right {
  float: right;
}
.hollow-testimonial-04 i {
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-family: 'IM Fell French Canon';
  font-size: 4rem;
  line-height: 0.9;
  color: var(--teal);
}
.hollow-testimonial-04 i.left {
  -webkit-transform: translate(-40px,82px);
  -ms-transform: translate(-40px,82px);
  -o-transform: translate(-40px,82px);
  transform: translate(-40px,82px);
}
.hollow-testimonial-04 i.quote-right {
  -webkit-transform: rotate(180deg) translate(-42px,60px);
  -ms-transform: rotate(180deg) translate(-42px,60px);
  -o-transform: rotate(180deg) translate(-42px,60px);
  transform: rotate(180deg) translate(-42px,60px);
}
.hollow-testimonial-04 .name {
  display: block;
  position: relative;
  text-align: center;
  margin-top: -1rem;
}
.hollow-testimonial-04 .name h3 {
  color: var(--tealDark);
}
.hollow-testimonial-04 ul {
  display: inline-block;
  position: relative;
  font-size: 2rem;
}
.hollow-testimonial-04 ul li {
  display: inline-block;
  position: relative;
  float: left;
  font-size: 1.3rem;
  padding: .3rem;
  color: var(--orange);
}
.hollow-testimonial-04 .text-wrap-a {
  background: var(--teal);  
  display: inline-block;
  position: relative;
  padding: 0 9rem 3.5rem 9rem;
  /*margin: 0 1rem;*/
}
.hollow-testimonial-04 .text-wrap-a p {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  -webkit-margin-before: 1rem;
}
.hollow-testimonial-04 .text-wrap-a .name h3 {
  color: #fff;
}
.hollow-testimonial-04 .text-wrap-a i {
  color: var(--tealDark);
}
@media only screen and (max-width: 767px) {
  .hollow-testimonial-04 {
    padding: 0;
  }
  .hollow-testimonial-04 .text-wrap {
    padding: 2rem 1rem;
    margin: 0;
  }
  .hollow-testimonial-04 .text-wrap-a {
    padding: 2rem 1rem;
    margin: 0;
  }
  .hollow-testimonial-04 p {
    margin-bottom: 2rem;
  }
  .hollow-testimonial-04 .text-wrap p,
  .hollow-testimonial-04 .text-wrap-a p {
    margin: 0 1rem 2rem;
  }
  .hollow-testimonial-04 .col5 {
    display: none;
  }
  .hollow-testimonial-04 .name {
    margin-top: 0;
  }
}


.hollow-action-06 {
  padding: 4rem 0;
  background: var(--grey);
  -webkit-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  -o-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
.hollow-action-06 .flex-wrap {
  flex-direction: column;
  justify-content: center;
  /*height: 12rem;*/
}
.hollow-action-06 h2 {
  line-height: 1.4;
  margin-bottom: .5rem;
  color: var(--tealDark);
}
.hollow-action-06 p {
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 400;
}
.hollow-action-06 a#number {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 400;
  background: var(--teal);
  border-color: var(--teal);
  padding: .5rem 1rem;
  display: inline-block;
  transition: all .3s ease;
}
.hollow-action-06 a#number i {
  padding-left: .5rem;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.hollow-action-06 a#number:hover {
  border-color: var(--orange);
}
.hollow-action-06 a#number::before {
  background: var(--orange);
}
.hollow-action-06 svg {
  height: 12rem;
  display: block;
  margin: auto;
}
.hollow-action-06 .cls-1 {
  -webkit-animation: one 1s cubic-bezier(0,0.23,1,.1) forwards;
  animation: one 1s cubic-bezier(0,0.23,1,.1) forwards;
}
@keyframes one {
  0% {
    opacity: 0;
    fill: none;
  }
  30% {
    fill: rgba(255, 255, 255, 0);
  }
  100% {
    fill: rgba(255, 255, 255, 1);
  }
}
.hollow-action-06 .cls-3 {
  opacity: 0;
  -webkit-animation: three 2s forwards;
  animation: three 2s forwards;
  -webkit-animation-iteration-count: 3;
          animation-iteration-count: 3;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@keyframes three {
  0% {
    opacity: 0;
    fill: rgba(255, 255, 255 ,0);
  }
  100% {
    fill: rgba(255, 255, 255 ,1);
    opacity: 1;
  }
}
.hollow-action-06 .cls-2 {
  opacity: 0;
  -webkit-animation: two 2s forwards;
  animation: two 2s forwards;
  -webkit-animation-iteration-count: 3;
          animation-iteration-count: 3;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
@keyframes two {
  0% {
    opacity: 0;
    fill: rgba(255, 255, 255 ,0);
  }
  100% {
    fill: rgba(255, 255, 255 ,1);
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-action-06 {
    padding: 2rem 0;
  }
  .hollow-action-06 .flex-wrap {
    text-align: center;
    margin-top: 2rem;
  }
  .hollow-action-06 a#number {
    /*padding-top: 1.5rem;*/
    /*border-top: 1px solid grey;*/
    margin-top: .5rem;
  }
}

/*============================ */
/* Hollow Corner Popup
============================== */
.hollow-corner-popup .form-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 11000;
}
.hollow-corner-popup .form-wrap {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 40rem;
  padding: 2rem;
  background: var(--tealDark);
  z-index: 12000;
  border-radius: 7px;
  transform: translate(-50%, -50%);
}
.hollow-corner-popup .form-wrap h3 {
  color: #fff;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.hollow-corner-popup .form-wrap .close {
  display: flex;
  position: absolute;
  top: -7px;
  right: -7px;
  padding: .5rem .6rem;
  border-radius: 6px;
  color: #fff;
  font-size: 1.2rem;
  background: red;
  border: 2px solid #fff;
  cursor: pointer;
  transition: all .3s ease;
}
.hollow-corner-popup .form-wrap .close:hover {
  background: darkred;
  /*transform: scale(1.15);*/
}
.hollow-corner-popup ::-webkit-input-placeholder {
  color: #555;
}
.hollow-corner-popup ::-moz-placeholder {
  color: #555;
}
.hollow-corner-popup :-ms-input-placeholder {
  color: #555;
}
.hollow-corner-popup :-moz-placeholder {
  color: #555;
}
.hollow-corner-popup .wpcf7-form-control-wrap select {
  -webkit-appearance: none;
}
.hollow-corner-popup .wpcf7-form-control-wrap input,
.hollow-corner-popup .wpcf7-form-control-wrap select,
.hollow-corner-popup .wpcf7-form-control-wrap textarea {
  font-family: Lato;
  font-size: 1.1rem;
  font-weight: 300;
  color: #000;
  width: 100%;
  padding: .5rem;
  margin-bottom: 1rem;
  outline: none;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.hollow-corner-popup .wpcf7-form-control-wrap input:focus,
.hollow-corner-popup .wpcf7-form-control-wrap select:focus,
.hollow-corner-popup .wpcf7-form-control-wrap textarea:focus {
  border-color: var(--orange);
}
.hollow-corner-popup .wpcf7-form-control-wrap textarea {
  height: 6rem;
}
.hollow-corner-popup .wpcf7-form input[type="submit"] {
  font-family: Lato;
  font-size: 1.1rem;
  color: #fff;
  background: var(--teal);
  padding: .5rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all .3s ease;
}
.hollow-corner-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--orange);
  /*transform: scale(1.15);*/
}
.hollow-corner-popup .wpcf7 .ajax-loader {
  display: none;
}
.hollow-corner-popup .wpcf7-validation-errors {
  display: none !important;
}
.hollow-corner-popup div.wpcf7-mail-sent-ok {
  display: none !important;
}
.hollow-corner-popup div.wpcf7-response-output {
  display: none !important;
}
.hollow-corner-popup .form-wrap div.wpcf7-response-wrap {
  display: none!important;
}
.hollow-corner-popup .form-wrap .message-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}
.hollow-corner-popup .form-wrap .message-wrap .message {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.9);
  opacity: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.hollow-corner-popup .form-wrap.sent .message.success-message {
  opacity: 1;
  pointer-events: auto;
}
.hollow-corner-popup .form-wrap .message-wrap h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.hollow-corner-popup .form-wrap .success-message h3 {
  color: green;
}
.hollow-corner-popup .form-wrap .error-message h3 {
  color: red;
}
.hollow-corner-popup .form-wrap .message-wrap p {
  font-size: 1.4rem;
  color: grey;
}
.hollow-corner-popup .form-wrap.error .message.error-message {
  opacity: 1;
  pointer-events: auto;
}
.hollow-corner-popup .form-wrap.sent .success {
  display: flex;
}
.hollow-corner-popup .wpcf7-not-valid-tip {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: .5rem;
  color: red;
  z-index: 15;
  background: rgba(255,255,255,0.9);
  border: 1px solid #d8d8d8;
  border-radius: 3px;
}
.hollow-corner-popup .loader-wrap {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--orange);
  transform: translate(-50%,-50%);
}
.hollow-corner-popup .loader-wrap i.fa {
  font-size: 1.5rem;
  color: #fff;
}
.hollow-corner-popup .form-wrap.sending .loader-wrap {
  display: flex;
}
.hollow-corner-popup .button-wrap {
  position: fixed;
  z-index: 10000;
  bottom: 1.25rem;
  left: 1.25rem;
  color: #fff;
}
.page-template-page-contact .hollow-corner-popup .button-wrap {
  display: none;
}
.hollow-corner-popup .button-wrap i {
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all .3s ease;
}
.hollow-corner-popup .button-wrap i:hover {
  transform: scale(1.2);
}
@media only screen and (max-width: 991px) {
  .hollow-corner-popup .form-wrap {
    width: 75%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-corner-popup .form-wrap {
    width: 90%;
  }
  .hollow-corner-popup .wpcf7-form-control-wrap input,
  .hollow-corner-popup .wpcf7-form-control-wrap textarea {
    margin-bottom: 1rem;
  }
  .hollow-corner-popup .form-wrap .message-wrap h3 {
    font-size: 1.8rem;
  }
  .hollow-corner-popup .form-wrap .message-wrap p {
    font-size: 1.2rem;
  }
}
.hollow-team-03 {
  position: relative;
  overflow: hidden;
  padding: 2rem 1rem 0 1rem;
}
.hollow-team-03 .modal {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.9);
  padding: 4rem;
  text-align: center;
  z-index: 999;
}
.hollow-team-03 .modal-content {
  display: inline-block;
  position: relative;
  color: #FFF;
}
.hollow-team-03 .team-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  height: 24rem;
  margin-bottom: 2rem;
}
.hollow-team-03 .team-img-wrap::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,99,99,0.7);
  z-index: 99;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.hollow-team-03 .team-img-wrap img {
  display: block;
  position: absolute;
  min-height: 100%;
  min-width: 100%;
  max-width: initial;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.hollow-team-03 h2 {
  color: #FFF;
  z-index: 199;
  margin: 0 0 -10px 0;
  font-weight: 300;
}
.hollow-team-03 ul {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  text-align: center;
  z-index: 199;
  font-size: 2rem;
  transform: translateX(-50%);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.hollow-team-03 ul li {
  display: inline-block;
  font-size: 1rem;
  padding: .4rem;
  color: #FFF;
  background: #e27d42;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.hollow-team-03 .sub-bio {
  display: block;
  position: absolute;
  width: 100%;
  padding: 2rem;
  top: 0;
  left:50%;
  z-index: 199;
  transform: translateX(-150%);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.hollow-team-03 .sub-bio p {
  margin: 0;
  color: #FFF;
  z-index: 199;
}
.hollow-team-03 .sub-bio button {
  font-family: 'Lato';
  display: inline-block;
  font-size: 1rem;
  padding: .4rem;
  color: #FFF;
  background: #e27d42;
  border: none;
  font-weight: 300;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.hollow-team-03 button:hover {
  background: #00afae;
}
.hollow-team-03 .team-img-wrap:hover::before {
  background: rgba(0,99,99,1);
}
.hollow-team-03 .team-img-wrap:hover ul {
  transform: translate(-50%,100%);
}
.hollow-team-03 .team-img-wrap:hover .sub-bio {
  transform: translateX(-50%);
}
.hollow-team-03 .popup {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
}
.hollow-team-03 .popup-close {
  width: 30px;
  height: 30px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  transition: all .3s ease;
  -webkit-transform:translate(50%,-50%);
  transform: translate(50%,-50%);
  background: rgba(0,0,0,0.8);
  font-size: 20px;
  padding-top: 3px;
  text-align: center;
  line-height: 100%;
  color: #FFF;
}
.hollow-team-03 .popup-close:hover {
  -webkit-transorm:translate(50%,-50%) rotate(180deg);
  transform:translate(50%,-50%) rotate(180deg);
  background: rgba(0,0,0,1);
  text-decoration: none;
}
.hollow-team-03 .bio {
  display: block;
  position: absolute;
  background: #FFF;
  max-width: 800px;
  width: 90%;
  padding: 2rem;
  top: 50%;
  left: 50%;
  z-index: 9999;
  -webkit-transform:translate(-50%,-50%);
  transform: translate(-50%,-50%);
  box-shadow: 0px 2px 6px rgba(0,0,0,1);
}
.hollow-team-03 .bio h3 {
  margin-bottom: 1rem;
}
.hollow-team-03 .bio p {
  color: #000;
}
.hollow-team-03 .bio-image-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  height: 20rem;
}
@media only screen and (max-width: 991px) {
  .hollow-team-03 ul li {
    font-size: 1rem;
  }
  .hollow-team-03 .sub-bio p {
    font-size: 1rem;
  }
}
/*============================ */
/* Main Revisions
============================== */
span.nowrap {
  white-space: nowrap;
}
span.nowrap a,
span.num-span a,
.hollow-contact-03 ul li.data span a,
.hollow-action-11 h3#phone a {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}
input, textarea {
  outline: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}
input[type="checkbox"] {
  -webkit-appearance: checkbox;
}
input[type="radio"] {
  -webkit-appearance: radio;
}
.content.seo {
  background: var(--greyDark);
}
.content.seo p a:hover {
  color: var(--teal);
}
/*============================ */
/* Additional Revisions
============================== */
#fancybox-title {
  display: none!important;
}
.page-template-page-contact .hollow-contact-01 .card {
  display: none;
}
/*============================ */
/* Responsive Revisions
============================== */
@media only screen and (min-width: 768px) {
  .nextgen_pro_thumbnail_grid .image-wrapper {
    max-height: 185px!important;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .nextgen_pro_thumbnail_grid .image-wrapper {
    max-height: 195px;
  }
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
  .nextgen_pro_thumbnail_grid .image-wrapper {
    max-height: 230px;
  }
}
@media only screen and (max-width: 991px) {
  body:not(.home) .hollow-header-02 .logo {
    display: none;
  }
  .interior-page {
    margin-top: 2rem;
  }
}