/*
  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: */
  --redLight: #ad1a23;
  --red: #7b0000;
  --redDark: #5e0000;
  --brown: #634636;
  --tan: #ece3d8;
  --greyDark: #393939;

  /* Font Variables: */
  --mainFont: 'Lato', sans-serif;
  --headingFont: 'Merriweather', sans-serif;
}

html {
  font-family: var(--mainFont);
}
h1, h2, h3 {
  font-family: var(--headingFont);
}

body {
  background: url(img/content-bg.jpg) center /cover no-repeat fixed;
}
@media only screen and (max-width: 767px) {
  body {
    background: gainsboro;
  }
}
/*============================ */
/* HEADER 09
============================== */
.hollow-header-09 {
  display: block;
  position: relative;
  z-index: 9000;
  background: var(--greyDark);
  color: #f6f6f6;
  width: 100%;
  box-shadow: 0 2px 5px -2px #000;
}
.hollow-header-09.sticky {
  position: fixed;
  top: 0;
}
.hollow-header-09 .logo img {
  max-width: 100%;
  transition: all .32s ease;
}
.hollow-header-09.sticky .logo img {
  /* display: none; */
  max-width: 6rem;
  padding: 0.6rem 1rem;
}
.hollow-header-09 .va-middle {
  float: left;
}
.hollow-header-09 .phone-wrap, .hollow-header-09 .email-wrap, .hollow-header-09 .oilprices-widget {
  text-align: left;
  font-size: 0;
  display: inline-block;
}
.hollow-header-09 .phone-wrap a, .hollow-header-09 .email-wrap a, .hollow-header-09 .oilprices-widget a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0.2rem 0;
  display: inline-block;
  transition: all 0.2s ease;
}
.hollow-header-09 .oilprices-widget .widget-popup {
  display: none;
}
.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(--tan);
}
.hollow-header-09 .social {
  display: inline-block;
}
.hollow-header-09 .social a {
  color: #999;
  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(--brown);
}
.hollow-header-09 .logo {
  text-align: center;
}
.hollow-header-09 .logo img {
  padding: 1rem;
  /* background: #000; */
}
.hollow-header-09 .meta-wrap-outer {
  font-size: 2rem;
  font-weight: 400;
  background: var(--redDark);
  margin: 0;
  padding: .25rem 0;
  /* display: none; */
}
.hollow-header-09 .meta-wrap-inner {
  display: block;
  position: relative;
  text-align: right;
}
.hollow-header-09 .meta-wrap-inner .spacer {
  padding: 0.25rem;
  font-size: 1.5rem;
  color: #999;
}
.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 {
  float: right;
  display: inline-block;
  background: none;
  font-size: 2rem;
  position: relative;
  z-index: 5000;
}
.hollow-header-09 nav a {
  padding: 0.3rem 0.6rem;
  display: block;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0px;
  text-transform: capitalize;
  font-family: var(--headingFont);
  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: #fff;
  background: var(--red);
  border-bottom-color: var(--redLight);
}
/* NAV LEVEL TWO */
.hollow-header-09 .dropdown-menu {
  margin-top: 0px;
  border-radius: 0;
  border: none;
  padding: 0;
  width: 12rem;
  display: none;
  min-width: max-content;
}
.hollow-header-09 nav .dropdown-menu .menu-item {
  float: none;
}
.hollow-header-09 nav .dropdown-menu a {
  background: #fff;
  color: #000;
}
.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(--redDark);
  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;
  float: right;
}
.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: #fff;
}
.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%;
  }
  .hollow-header-09 nav a {
    text-transform: capitalize;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-header-09 {
    background: #000;
  }
  .hollow-header-09 .logo {
    text-align: center;
    display: none;
  }
  .hollow-header-09 .logo img {
    margin: 50px auto 15px;
    box-shadow: none;
    max-width: 60%;
  }
  body:not(.home) .hollow-header-09 .logo {
    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: #272727;
  }
  .hollow-header-09 nav a {
    text-transform: uppercase;
    color: #000;
    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: #000;
  }
  .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: #000;
  }
  .hollow-header-09 .hamburger::before,
  .hollow-header-09 .hamburger::after {
    background: #272727;
  }
  .hollow-header-09 nav .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transition: opacity 0.25s;
    z-index: -1;
    background: #fff;
    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%;
  }
}
@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 16
============================== */
.hollow-hero-16 {
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px -2px #000;
  z-index: 10;
}
.hollow-hero-16::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  pointer-events: none;
}
.hollow-hero-16 .slider-wrap {
  visibility: hidden;
}
.hollow-hero-16 .slider-wrap.slick-initialized {
  visibility: visible;
}
.hollow-hero-16 .slide {
  height: 36rem;
  position: relative;
  overflow: hidden;
}
.hollow-hero-16 .slider-wrap img {
  /* position: absolute; */
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.hollow-hero-16 .flex-container {
  position: absolute;
  top: 50%;
  left: 50%;
  align-items: center;
  justify-content: center;
  transform: translate(-50%,-50%);
  z-index: 1;
}
.hollow-hero-16 .box {
  display: flex;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  background: rgba(94, 0, 0, 0.86);
}
.hollow-hero-16 .title {
  padding: 2rem;
  text-align: center;
}
.hollow-hero-16 .title img {
  width: 10rem;
  height: 7rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.hollow-hero-16 h1 {
  color: #FFF;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  font-size: 2.8rem;
}
.hollow-hero-16 h3 {
  font-size: 1.2rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
}
.hollow-hero-16 .detail {
  padding: 0.5rem 2rem;
  border-left: 3px solid var(--redLight);
  max-width: 30rem;
}
.hollow-hero-16 p {
  color: #FFF;
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 400;
}
.hollow-hero-16 .button-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.hollow-hero-16 .button-wrap a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #FFF;
  padding: .3rem 1rem;
  margin: 0 .4rem .5rem;
  border: 1px solid #FFF;
  text-transform: uppercase;
  letter-spacing: .1rem;
  transition: all .6s ease;
}
.hollow-hero-16 .button-wrap a::before {
  content: "";
  display: block;
  position: absolute;
  top: -20%;
  left: -230%;
  height: 300%;
  width: 200%;
  background: #FFF;
  z-index: -1;
  transition: all .3s ease;
  transform: rotate(20deg);
}
.hollow-hero-16 .button-wrap a:hover {
  color: #808080;
}
.hollow-hero-16 .button-wrap a:hover::before {
  left: -10%;
}
@media only screen and (max-width: 991px) {
  .hollow-hero-16 .box {
    flex-direction: column;
  }
  .hollow-hero-16 .title {
    /* display: none; */
  }
  .hollow-hero-16 .detail {
    width: 100%;
    border-left: none;
    border-top: 3px solid #fff;
    padding: 2rem;
  }
  .hollow-hero-16 .detail p {
    font-size: 1.2rem!important;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-hero-16 h1 {
    font-size: 2rem;
    font-weight: 400;
  }
  .hollow-hero-16 p {
    font-weight: 400;
  }
  .hollow-hero-16 .slide {
    height: 100vh;
    min-height: 55rem;
  }
}

.hollow-content-08 {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 0;
}
.hollow-content-08 .flex-container {
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.hollow-content-08 .left-wrap {
  width: 50%;
  background: var(--greyDark);
  padding: 4rem 1rem;
  margin-right: -2rem;
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.hollow-content-08 .title-wrap {
    width: 80%;
    margin: 0 auto 2rem;
}
.hollow-content-08 .left-wrap h2 {
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    text-align: center;
    white-space: nowrap;
    margin-bottom: 1rem;
}
.hollow-content-08 .left-wrap h3 {
  color: #fff;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.1rem;
  font-family: var(--mainFont);
}
.hollow-content-08 .left-wrap hr {
    margin: 1rem auto;
    border: none;
    height: 3px;
    width: 4rem;
    background: var(--redLight);
}
.hollow-content-08 .left-wrap p {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 400;
}
.hollow-content-08 .left-wrap ul {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.hollow-content-08 .left-wrap ul li {
  display: flex;
  align-items: center;
}
.hollow-content-08 .left-wrap ul li i {
/*   color: var(--redLight); */
  font-size: 3rem;
  margin-right: 1rem;
}
.hollow-content-08 .left-wrap ul li i::before {
  color: var(--tan);
}
.hollow-content-08 .left-wrap ul li i::after {
  color: var(--red);
  opacity: 1;
}
.hollow-content-08 .left-wrap ul li p {
  margin-bottom: 0;
  line-height: 1.3;
}
.hollow-content-08 .left-wrap ul li strong {
  font-size: 1.2rem;
  letter-spacing: 1px;
  line-height: 1.4;
  font-weight: 400;
  /* font-family: var(--headingFont); */
}
.mainWrap ul li img, .hollow-content-08 .features p img {
    width: 2.5rem;
    margin-right: .5rem;
    vertical-align: middle;
}
.hollow-content-08 .right-wrap {
  width: 53%;
  background: #fff;
  background: var(--tan);
  padding: 4rem 2rem 4rem 4rem;
  border-left: 4px solid var(--brown);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.hollow-content-08 .right-wrap h4 {
  color: var(--brown);
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .1rem;
  font-size: 1.5rem;
  font-family: var(--headingFont);
}
.hollow-content-08 .right-wrap p {
    color: #000;
    font-size: 1.1rem;
    font-weight: 400;
}
.hollow-content-08 .right-wrap .italic {
  /* font-style: italic; */
  /* font-family: var(--headingFont); */
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--red);
}
.hollow-content-08 .right-wrap p:last-of-type {
  margin-bottom: 2.5rem;
}
.hollow-content-08 .features {
    padding: 1rem 0 0;
}
.hollow-content-08 .features .set {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 2rem;
}
.hollow-content-08 .features .set:last-of-type {
    margin-bottom: 0;
}
.hollow-content-08 .button-wrap {
    margin-top: 1rem;
}
.hollow-content-08 .button-wrap a {
    display: inline-block;
    color: #000;
    font-weight: 400;
    padding: .75rem 0;
    font-size: 1.1rem;
    transition: all .3s ease;
}
.hollow-content-08 .button-wrap a i {
    margin-left: .5rem;
    color: #000;
    transition: all .3s ease;
}
.hollow-content-08 .button-wrap a:hover {
    color: var(--brown);
}
.hollow-content-08 .button-wrap a:hover i {
    color: var(--brown);
    margin-left: 1rem;
}
.hollow-content-08 .value ul li {
  display: list-item;
  list-style: disc outside;
  margin-left: 1.75rem;
  font-size: 1.1rem;
  font-weight: 400;
}
@media only screen and (min-width: 992px) {
  .hollow-content-08 .flex-container {
      padding: 0 4rem 4rem 0;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-08 .flex-container {
    flex-direction: column;
    padding: 0 2rem;
  }
  .hollow-content-08 .left-wrap {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .hollow-content-08 .right-wrap {
    width: 100%;
    padding: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-08 {
    padding: 2rem 0 0;
  }
  .hollow-content-08 .flex-container {
    padding: 0 1rem;
  }
  .hollow-content-08 .features {
      padding: 1rem 0;
  }
  .hollow-content-08 .features .set {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 0;
  }
  .hollow-content-08 .left-wrap {
    padding: 2rem 2rem 0;
  }
  .hollow-content-08 .left-wrap ul {
    flex-direction: column;
  }
  .hollow-content-08 .left-wrap ul li {
    margin-bottom: 2rem;
  }
  .hollow-content-08 .features p {
    line-height: 1.6;
  }
  .hollow-content-08 .right-wrap .italic {
    font-size: 1.1rem;
  }
  .hollow-content-08 .button-wrap a {
    font-size: 1.2rem;
  }
}

/*============================ */
/* Service Images 19
============================== */
.service-images-19 {
  padding: 0 0 4rem 4rem;
}
.service-images-19 .box {
  background: #fff;
  background: var(--tan);
  /* padding: 2rem 2rem 0; */
}
.service-images-19 .flex-container {
    width: 100%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.service-images-19 .header-wrap {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  padding: 2rem 2rem 0;
  background: var(--tan);
  border-bottom: 2px solid #fff;
}
body:not(.home) .service-images-19 .header-wrap {
  margin-bottom: 2rem;
}
.service-images-19 .header-wrap img {
  width: 30%;
  height: 18rem;
  object-fit: cover;
  margin-bottom: 2rem;
}
.service-images-19 .header-wrap h2 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1rem;
  color: #000;
}
.service-images-19 .header-wrap .info {
  width: 70%;
  padding: 4rem;
}
.service-images-19 .header-wrap .info p {
  /* font-family: var(--headingFont); */
  font-weight: 400;
  /* font-style: italic; */
  font-size: 1.2rem;
  line-height: 1.4;
  /* color: var(--redDark); */
}
body:not(.home) .service-images-19 .header-wrap .info p {
  margin-bottom: 0;
}
.service-images-19 .box-wrap {
  justify-content: space-between;
  display: flex;
  padding: 0;
  flex-wrap: wrap;
  background: var(--greyDark);
}
.service-images-19 .service-box {
  width: 25%;
  position: relative;
  display: flex;
  flex-flow: column;
  overflow: hidden;
  /* margin-bottom: 2rem; */
  padding: 2rem 1rem 2rem 2rem;
  transition: all .3s ease;
}
.service-images-19 .service-box:hover {
  background: rgba(0,0,0,.25);
}
.service-images-19 .service-box h3 {
  transition: all .3s ease;
}
.service-images-19 .service-box:hover h3 {
  letter-spacing: 3px;
  text-shadow: 1px 1px 3px #000;
}
body:not(.home) .service-images-19 .service-box {
  margin-bottom: 1rem;
}
.service-images-19 .service-box img {
  width: 100%;
}
.service-images-19 .text-wrap {
  position: relative;
  display: flex;
  flex-flow: column;
  height: 100%;
}
body:not(.home) .service-images-19 .text-wrap {
  margin-bottom: 1rem;
}
.service-images-19 .text-wrap h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 400;
  font-size: 1.3rem;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}
.service-images-19 .text-wrap p {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
}
.service-images-19 .text-wrap span {
  display: flex;
  align-items: center;
  padding-bottom: .2rem;
  color: dimgrey;
  border-bottom: 1px solid dimgrey;
}
.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;
}
.service-images-19 .title-bar {
  background: var(--redDark);
  width: 5.4%;
  z-index: 50;
  border-left: 2px solid #fff;
}
.service-images-19 .title-bar h2 {
  transform: rotate(90deg) translate(95%,0rem);
  color: #fff;
  white-space: nowrap;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}
@media only screen and (max-width: 1199px) {
  .service-images-19 .service-box:hover h3 {
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px #000;
  }
}
@media only screen and (max-width: 991px) {
  .service-images-19 {
    padding: 2rem;
  }
  .service-images-19 .service-box {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .service-images-19 {
    padding: 2rem;
  }
  .service-images-19 .flex-container {
    padding: 0;
    flex-direction: column;
  }
  .service-images-19 .title-bar {
    order: -1;
    width: 100%;
    padding: 1rem;
    text-align: center;
    border: none;
  }
  .service-images-19 .box-wrap {
    flex-flow: column;
  }
  .service-images-19 .title-bar h2 {
    transform: none;
    letter-spacing: 1px;
    white-space: normal;
  }
  .service-images-19 .header-wrap {
    padding: 0rem;
    flex-direction: column;
  }
  .service-images-19 .header-wrap h2 {
    margin-bottom: 2rem;
  }
  .service-images-19 .header-wrap img {
    width: 100%;
  }
  .service-images-19 .header-wrap .info {
    width: 100%;
    padding: 0 2rem;
  }
  .service-images-19 .header-wrap .info p {
    font-size: 1.2rem!important;
    margin-bottom: 2rem;
  }
  .service-images-19 .service-box {
    width: 100%;
  }
  .service-images-19 .service-box:nth-of-type(even) {
    background: #464646;
  }
  .service-images-19 .service-box:nth-of-type(even):hover {
    background: #242424;
  }
  .service-images-19 .text-wrap h3 {
    font-size: 1.7rem;
  }
  .service-images-19 .text-wrap p {
    font-size: 1.4rem!important;
  }
  .service-images-19 .text-wrap span {
    font-size: 1.3rem;
  }
}


/*============================ */
/* Service Icons 08
============================== */
.service-icons-08 {
  padding: 0 4rem 4rem 0;
  position: relative;
}
.service-icons-08 .flex-container {
  width: 100%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.service-icons-08 .title {
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 3rem;
}
.service-icons-08 .title h2 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.1rem;
}
.service-icons-08 .title hr {
    margin: 1rem auto;
    border: none;
    height: 3px;
    width: 4rem;
    background: var(--redLight);
}
.service-icons-08 .title-bar {
  width: 5.4%;
  background: var(--redDark);
  border-right: 2px solid #fff;
  z-index: 50;
}
.service-icons-08 .title-bar h3 {
  color: #fff;
  transform: rotate(-90deg) translate(-13rem,0rem);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.3rem;
}
.service-icons-08 .area-wrap {
  background: var(--greyDark);
  width: 100%;
  padding: 2rem 2rem 1.5rem;
}
.service-icons-08 .boxes {
  display: flex;
  justify-content: center;
}
.service-icons-08 .box-wrap {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 24.5%;
  background: var(--tan);
  margin-bottom: 1rem;
  padding: 1rem;
  transition: all .3s ease;
}
.service-icons-08 .box-wrap:nth-child(even) {
  box-shadow: 0px 2px 12px rgba(0,0,0,0.6);
  z-index: 10;
}
.service-icons-08 .box-wrap:hover {
  transform: translateY(-20px);
  background: #fff;
}
.service-icons-08 .text-wrap {
  text-align: center;
}
.service-icons-08 .text-wrap h3 {
  color: var(--greyDark);
  font-size: 1.3rem;
  letter-spacing: 1px;
  font-weight: 400;
}
.service-icons-08 .text-wrap p {
  font-size: 1.1rem;
}
.service-icons-08 .icon-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: 300;
}
.service-icons-08 .icon-wrap i {
  color: var(--red);
  font-size: 3rem;
  display: flex;
  justify-content: center;
  transition: all .3s ease;
}
.service-icons-08 .icon-wrap i.reflection {
  overflow: hidden;
  transform: rotate(180deg) matrix(1, 0, 0, 0.5, 0, 15) scaleX(-1);
}
.service-icons-08 .icon-wrap i.reflection span.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--bgColorToMatchReflections), 72%, rgba(255,255,255,0));
}

@media only screen and (max-width:1199px) {
  .service-icons-08 .flex-container {
    width: 100%;
  }
}
@media only screen and (max-width:991px) {
  .service-icons-08 {
    padding: 0 2rem 2rem;
  }
  .service-icons-08 .area-wrap {
    margin-right: 0;
  }
  .service-icons-08 .title-bar h3 {
    transform: rotate(-90deg) translate(-20rem,0rem);
  }
}
@media only screen and (max-width: 767px) {
  .service-icons-08 {
    padding: 0 2rem 2rem;
  }
  .service-icons-08 .flex-container {
    flex-direction: column;
    padding: 0;
  }
  .service-icons-08 .box-wrap {
    width: 100%;
    margin-bottom: 1rem;
  }
  .service-icons-08 .icon-wrap i {
    font-size: 5rem;
  }
  .service-icons-08 .title-bar {
    display: none;
  }
  .service-icons-08 .boxes {
    flex-direction: column;
  }
  .service-icons-08 .title h2 {
    font-size: 2rem;
  }
}


/*============================ */
/* Footer 05
============================== */
.hollow-footer-05 {
  background: rgba(0, 0, 0, 0.8);
}

/*Main Content*/
.hollow-footer-05 .main-content {
  padding: 2rem 0 0;
}
.hollow-footer-05 .main-content .flex-container {
  justify-content: space-between;
}
.hollow-footer-05 .box {
  flex-basis: 35%;
  display: flex;
  flex-flow: column;
  padding: 2rem 1rem 4rem;
}
.hollow-footer-05 .logo-box {
  flex-basis: 30%;
}
.hollow-footer-05 .box h3 {
  display: inline-flex;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: .25rem;
  padding-left: 0.5rem;
  font-size: 1.3rem;
  border-bottom: 2px dotted #fff;
}
.hollow-footer-05 .box img {
  margin: 0 auto 1rem;
  max-width: 85%;
}
.hollow-footer-05 .box p {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 400;
}
.hollow-footer-05 .box-item {
  padding: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}
.hollow-footer-05 .box-item.social {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  background: #131313;
  margin-top: 1rem;
}
.hollow-footer-05 .box-item .text {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.hollow-footer-05 .box-item:last-of-type {
  margin-bottom: 0;
}
.hollow-footer-05 .box-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--red);
  transition: 0.3s ease;
  transform: translateX(-110%);
  opacity: 0;
}
.hollow-footer-05 .box-item:hover:before {
  transform: none;
  opacity: 1;
}
.hollow-footer-05 .box-item i {
  position: relative;
  width: 3rem;
  display: flex;
  justify-content: center;
  line-height: 1;
  color: #fff;
  margin-right: .5rem;
  font-size: 1.5rem;
}
.hollow-footer-05 .box .box-item h4 {
  position: relative;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: .4rem;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0;
}
.hollow-footer-05 .box-item.links h4 {
  margin-bottom: 1rem;
}
.hollow-footer-05 .box h4 {
  position: relative;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: .4rem;
  font-family: var(--headingFont);
  text-align: center;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--tan);
}
.hollow-footer-05 .box-item p {
  position: relative;
  color: #fff;
  font-size: 1rem;
}
.hollow-footer-05 .box-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hollow-footer-05 .box-item.social a {
  position: relative;
  font-size: 1.1rem;
  color: #fff;
  transition: .3s ease;
  width: auto;
}
.hollow-footer-05 .box-item.social a:hover {
  color: var(--brown);
}
.hollow-footer-05 .box-item span {
  position: relative;
  color: #fff;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4;
}
.hollow-footer-05 .box-item.links a {
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 1px solid #fff;
  transition: .3s ease;
  width: max-content;
  margin: .5rem 0rem;
  padding-bottom: .2rem;
  font-style: italic;
}
.hollow-footer-05 .box-item.links a:hover {
  color: var(--brown);
}

/*Meta Footer*/
.hollow-footer-05 .meta-footer {
  position: relative;
  background: var(--redDark);
  padding: .75rem 0;
}
.hollow-footer-05 .meta-footer .flex-container {
  justify-content: space-between;
  align-items: center;
}
.hollow-footer-05 .meta-footer p {
  color: #fff;
  line-height: 1;
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
}
.hollow-footer-05 .meta-footer p a {
  font-weight: 700;
  transition: .3s ease;
  color: #fff;
  padding-left: .25rem;
}
.hollow-footer-05 .meta-footer p a:hover {
  color: var(--brown);
}
.hollow-footer-05 .top {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 0;
  left: 50%;
  background: transparent;
  transition: all .3s ease;
  transform: translate(-50%,-70%);
  cursor: pointer;
}
.hollow-footer-05 .top i {
  font-size: 1.25rem;
  color: #fff;
  transition: inherit;
  opacity: 0.5;
}
.hollow-footer-05 .top:hover i {
  transform: translateY(-10px);
  opacity: 1;
}
.hollow-footer-05 .top p {
  color: #fff;
  font-weight: 400;
  font-size: 1.1rem;
  transform: translateY(100%);
  opacity: 0;
  transition: .5s ease;
}
.hollow-footer-05 .top:hover p {
  opacity: 1;
  transform: none;
}
@media only screen and (max-width: 1199px) {
  .hollow-footer-05 .main-content .flex-container {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-footer-05 .main-content {
    padding-bottom: 1rem;
  }
  .hollow-footer-05 .main-content .flex-container {
    flex-flow: column;
  }
  .hollow-footer-05 .meta-footer .flex-container {
    flex-flow: column;
  }
  .hollow-footer-05 .meta-footer p {
    padding: .25rem 0;
  }
  .hollow-footer-05 .meta-footer .top {
    left: auto;
    right: 1rem;
    top: 50%;
    transform: translate(0, -50%);
  }
  .hollow-footer-05 .meta-footer .top p {
    transform: none;
    opacity: 1;
  }
  .hollow-footer-05 .box {
    padding: 1rem;
  }
  .hollow-footer-05 .box-item span {
    font-size: 1.4rem;
  }
}
/*============================ */


/* DEFAULT STYLE OVERWRITES */


/*============================ */
/* DEFAULT BLOG STYLES: 
============================== */
/*Search Form*/
.search-form-wrap button {
  background: var(--red);
}
.search-form-wrap button:hover {
  background: var(--redDark);
}
/*Blog Page*/
.blog-wrap .post-item-header h1 {
  background: var(--red);
}
.blog-wrap .post-item .post-item-header h1:hover {
  background: var(--redDark);
}
.blog-wrap .post-item .post-content a {
  background: var(--red);
}
.blog-wrap .post-item .post-content a:hover {
  background: var(--redDark);
}
.blog-wrap .post-item p {
  border-color: var(--red);
}
.blog-wrap .post-item .date-wrap i {
  color: var(--red);
}
/*Sidebars*/
.blog-sidebar {
  border-color: var(--red);
}
.blog-sidebar .post-item-header h2 {
  background: var(--red);
}
/*Post Content*/
.blog-post-content h1 {
  color: var(--red);
}
.blog-post-content h2 {
  color: var(--redDark);
}
.blog-post-content h3 {
  color: var(--red);
}
.blog-post-content p a {
  color: var(--red);
}
.blog-post-content p a:hover {
  color: var(--redDark);
}
/*Post Return Button*/
.blog-return a.blog-return-btn {
  background: var(--red);
}
.blog-return a.blog-return-btn:hover {
  background: var(--redDark);
}
/*Pagination*/
.pagination .page-numbers {
  background: var(--redDark);
}
.pagination .page-numbers:hover, 
.pagination .page-numbers:focus {
  background: var(--red);
}
.pagination span.page-numbers.current {
  background: var(--red);
}
/*============================ */
/* DEFAULT POPUP STYLES:
============================== */
.default-popup .form-wrap {
  background: var(--tan);
}
.default-popup .form-wrap h3 {
  color: var(--red);
}
.default-popup .wpcf7-form-control-wrap input, 
.default-popup .wpcf7-form-control-wrap select, 
.default-popup .wpcf7-form-control-wrap textarea {
  font-size: 1.1rem;
  font-weight: 400;
  font-family: var(--mainFont);
}
.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(--redDark);
}
.default-popup .wpcf7-form input[type="submit"] {
  background: var(--red);
}
.default-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--redDark);
}
.default-popup .loader-wrap {
  background: var(--red);
}
.default-popup .button-wrap i {
  background: var(--red);
}
/*============================ */
/* 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;
}
.default-popup .content-wrap h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
  text-align: center;
}
.default-popup .content-wrap p {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
}
.default-popup .location {
  margin-bottom: 1rem;
}
.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;
  margin: 0 1.5rem 0 0;
}
.default-popup .location ul li i {
  color: var(--red);
  padding-right: .5rem;
  padding-top: .3rem;
}
.default-popup .form-wrap .close {
  border: none;
  background: transparent;
  color: var(--red);
}
.default-popup .form-wrap .close:hover {
  background: var(--red);
  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(--red);
}
.content.seo i {
  color: #fff;
}
.content.seo p {
  font-size: 1.1rem;
}
.content.seo p a:hover {
  color: var(--tan);
}
/*============================ */
/* DEFAULT INTERIOR PLACEHOLDERS
============================== */
.interior-placeholder-header {
  border-color: var(--redDark);
  background: var(--red);
}
.interior-placeholder-header h1 {
  color: #FFF;
}
/*============================ */
/* PASSWORD-PROTECTED PAGE FORMS
============================== */
.post-password-required form p input[type="submit"] {
  background: var(--red);
}
.post-password-required form p input[type="submit"]:hover {
  background: var(--redDark);
}
/*============================ */


/*INTERIOR PAGES*/


/*============================ */
/* Interior Header 05
============================== */
.interior-header-05 {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 8rem 1rem;
  text-align: center;
  background: url(https://staging.bigtuna.com/infinity.well.control/site/wp-content/uploads/HOME-PAGE-hdr.jpg) center bottom no-repeat;
  background-size: cover;
  background-attachment: fixed;
  filter: grayscale(.5);
  box-shadow: 0 2px 5px -2px #000;
}
.interior-header-05::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* background: #482e0f; */
  /* opacity: 0.85; */
  background: rgba(0,0,0,0.6);
}
.interior-header-05 h1 {
  position: relative;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: .75rem;
  font-weight: 900;
  letter-spacing: .2rem;
}
.interior-header-05 h2 {
  position: relative;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .interior-header-05 {
    padding: 4rem 1rem;
  }
  .interior-header-05 h2 {
    max-width: 100%;
  }
}


/*============================ */
/* Content 04
============================== */
.hollow-content-04 {
  padding: 4rem 0 0;
}
.hollow-content-04 .flex-container {
  align-items: center;
  justify-content: center;
  width: 100%;
}
.page-id-330 .hollow-content-04 .text-wrap {flex-basis:95%}

.hollow-content-04 .text-wrap {
  flex-basis: 54%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--tan);
  padding: 2rem;
  border-left: 2px solid var(--brown);
  z-index: 10;
  position: relative;
}
.hollow-content-04 .title-wrap {
  margin-bottom: 1rem;
}
.hollow-content-04 .title-wrap h3 {
  color: var(--brown);
  font-weight: 700;
  text-transform: uppercase;
}
.hollow-content-04 .text-wrap p {
  color: #000;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 400;
}
.hollow-content-04 .text-wrap strong {
  font-weight: 700;
  color: var(--redDark);
}
#imgbox img{width:100%;margin: 10px auto;}
.hollow-content-04 .img-wrap {
  /* margin-right: 2rem; */
}
.hollow-content-04 img {
  width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  overflow: hidden;
}
.hollow-content-04 img.obj-con {
  object-fit: contain;
}
.hollow-content-04 .list-wrap ul {
  display: flex;
  flex-wrap: wrap;
}
.hollow-content-04 .list-wrap ul li {
  width: 44%;
  display: list-item;
  list-style: disc outside;
  margin-left: 1.5rem;
  font-size: 1.1rem;
  font-weight: 400;
}
@media only screen and (min-width: 992px) {
  .hollow-content-04 .flex-container {
      padding: 0 0 4rem 4rem;
  }
  .hollow-content-04 .text-wrap {
    margin-right: -2rem;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-04 {
    padding: 2rem ;
  }
  .hollow-content-04 .list-wrap ul li {
    width: 100%;
  }
  .hollow-content-04 .flex-container > * {
    flex-basis: 48%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-04 {
    padding: 2rem 1rem;
  }
  .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 .list-wrap ul li {
    font-size: 1.3rem;
  }
  .hollow-content-04 img {
    /* max-height: 55vh; */
    /* min-height: 16rem; */
  }
}

/*============================ */
/* Certifications
============================== */
.cert-wrap {
  padding: 2rem 0;
}
.cert-wrap .img-wrap {
  text-align: center;
}
.cert-wrap .img-wrap img {
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 1px 1px 8px #777;
}
/*============================ */
/* Interior Portfolio 01
============================== */
.interior-portfolio-01 {
  padding: 4rem 0;
}
/*.interior-portfolio-01 .flex-container {
  width: 100%;
}*/
.interior-portfolio-01 .content-wrap {
  background: #000;
  padding: 3rem 4rem 2rem;
  align-items: center;
}
.interior-portfolio-01 .content-wrap h3 {
  color: #fff;
  font-weight: 900;
  font-size: 2.75rem;
  letter-spacing: .2rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}
.interior-portfolio-01 .content-wrap p {
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}
.interior-portfolio-01 .content-wrap hr {
  margin: 1rem auto 3rem;
  border: none;
  height: 2px;
  width: 2rem;
  background: var(--brown);
}
.interior-portfolio-01 .box-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 2rem 0 0;
}
.interior-portfolio-01 .box-wrap .box {
  width: 80%;
  background: #fff;
  margin: 0 auto 2rem;
}
.interior-portfolio-01 .box-wrap .box .title-wrap {
  padding: 2rem 2rem 1rem;
}
.interior-portfolio-01 .box-wrap .box h4 {
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-size: 1.4rem;
  text-align-last: center;
}
.interior-portfolio-01 .box-wrap .box p {
  color: #000;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
}

/* Gallery Wraps */
.interior-portfolio-01 .gallery-wrap .dropdown {
  background: #e6e6e6;
}
/* Dropdown Titles: */
.interior-portfolio-01 .gallery-wrap .dropdown-title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  padding: 0.8rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  border-bottom: 2px solid rgba(0,0,0,.2);
  margin-bottom: 0;
  transition: all .2s ease;
}
.interior-portfolio-01 .gallery-wrap .dropdown-title span {
  font-size: 1.1rem;
}
.interior-portfolio-01 .gallery-wrap .dropdown:last-of-type .dropdown-title {
  border-bottom: none;
}
.interior-portfolio-01 .gallery-wrap .dropdown-title:hover {
  background: rgba(0,0,0,0.1);
}
.interior-portfolio-01 .gallery-wrap .dropdown-title i {
  padding-right: 0.75rem;
}
/* Dropdown Content: */
.interior-portfolio-01 .gallery-wrap .dropdown-content {
  background: #000;
  padding: 1rem 1rem 0;
  display: none;
}
@media only screen and (max-width: 767px) {
  .interior-portfolio-01 {
    padding: 2rem 0;
  }
  .interior-portfolio-01 .box-wrap {
    flex-direction: column;
  }
  .interior-portfolio-01 .box-wrap .box {
    width: 100%;
    margin-bottom: 2rem;
  }
}

/*============================ */
/* 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 {
  flex-basis: 54%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  background: #fff;
  border-left: 2px solid var(--brown);
}
.interior-maps-01 h4 {
  color: var(--red);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.4;
}
.interior-maps-01 h2 {
  color: var(--defaultGrey);
  line-height: 1;
  margin-bottom: 1rem;
  font-size: 2.75rem;
  font-weight: 600;
}
.interior-maps-01 p {
  color: dimgrey;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.interior-maps-01 .list-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.interior-maps-01 .list-wrap .list-1,
.interior-maps-01 .list-wrap .list-2 {
  width: 100%;
}
.interior-maps-01 .list-wrap ul {
  width: 48%;
}
.interior-maps-01 .list-wrap ul li {
  display: flex;
  margin-bottom: 1rem;
  font-weight: 400;
}
.interior-maps-01 .list-wrap ul li i {
  color: var(--brown);
  font-size: 1.2rem;
  padding: .2rem .5rem 0 0;
}
.interior-maps-01 .list-wrap ul li p {
  display: inline-block;
  max-width: 90%;
  vertical-align: top;
}
.interior-maps-01 .map-wrap {
  position: relative;
  overflow: hidden;
  flex-basis: 48%;
  align-self: stretch;
}
.interior-maps-01 .map-wrap:before {
  content: '';
  top: 50%;
  left: 50%;
  width: 50vh;
  transform: translate(-50%,-50%);
  height: 50vh;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--redDark);
  opacity: 0.4;
  z-index: 1000;
  position: absolute;
}
.interior-maps-01 .map-wrap iframe {
  flex-basis: 48%;
  display: flex;
  overflow: hidden;
  pointer-events: none;
  max-width: 100%;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .interior-maps-01 .flex-container > * {
    flex-basis: 48%;
  }
  .interior-maps-01 .list-wrap .list-1 {
    margin-right: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .interior-maps-01 {
    padding: 2rem 0;
  }
  .interior-maps-01 .flex-container {
    flex-direction: column;
  }
  .interior-maps-01 .flex-container > * {
    width: 100%;
  }
  .interior-maps-01 .text-wrap {
    margin-bottom: 1rem;
  }
  .interior-maps-01 .list-wrap {
    width: 100%;
  }
  .interior-maps-01 .list-wrap .list-1 {
    margin-right: 0rem;
  }
  .interior-maps-01 .list-wrap .list-1,
  .interior-maps-01 .list-wrap .list-2 {
    width: 50%;
  }
  .interior-maps-01 img {
    order: 2;
  }
  .interior-maps-01 .map-wrap iframe {
    height: 65vh;
  }
}


/*============================ */
/* Interior Careers 01
============================== */
.interior-careers-01 {
  padding: 4rem 0;
}
.interior-careers-01 .content-wrap {
  padding: 2rem;
  background: #fff;
/*   margin-bottom: 2rem; */
}
.interior-careers-01 .content-wrap h2 {
  margin-bottom: 1rem
}
.interior-careers-01 .form-wrap {
  width: 100%;
}
.interior-careers-01 .form-wrap form {
  background: #000;
  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(--brown);
}
.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(--brown);
  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: var(--red);
  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(--brown);
  border-color: var(--brown);
}
@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;
  }
}


/*============================ */
/* Testimonials
============================== */
.interior-testimonials {
  padding: 4rem 0 4rem 4rem;
}
.interior-testimonials .box {
  background: #fff;
  padding: 2rem 2rem 0;
}
.interior-testimonials .flex-container {
    width: 100%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.interior-testimonials .header-wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.interior-testimonials .header-wrap img {
  width: 26%;
  margin-bottom: 2rem;
}
.interior-testimonials .header-wrap h2 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1rem;
  color: #000;
}
.interior-testimonials .header-wrap .info {
  width: 70%;
}
.interior-testimonials .header-wrap .info p {
  font-family: var(--headingFont);
  font-weight: 900;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 0;
}
.interior-testimonials .box-wrap {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.interior-testimonials .review-box {
  width: 50%;
  padding: 1rem;
  position: relative;
  display: flex;
  flex-flow: column;
  overflow: hidden;
  margin-bottom: 1rem;
}
.interior-testimonials .review-box img {
  width: 100%;
}
.interior-testimonials .text-wrap {
  position: relative;
  display: flex;
  flex-flow: column;
  height: 100%;
}
.interior-testimonials .text-wrap {
  margin-bottom: 1rem;
}
.interior-testimonials .text-wrap h3 {
  color: var(--brown);
  margin-bottom: 0.25rem;
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .1rem;
}
.interior-testimonials .text-wrap h4 {
  margin-bottom: .75rem;
  font-size: 1.1rem;
}
.interior-testimonials .text-wrap p {
  color: #000;
  font-size: 1.1rem;
}
.interior-testimonials .text-wrap span {
  display: flex;
  align-items: center;
  padding-bottom: .2rem;
  color: dimgrey;
  border-bottom: 1px solid dimgrey;
}
.interior-testimonials .text-wrap span i {
  width: 0;
  transform: translateX(-100%);
  opacity: 0;
  transition: all .3s ease;
}
.interior-testimonials .review-box:hover .text-wrap span i {
  opacity: 1;
  width: 10px;
  margin-left: .5rem;
  transform: none;
}
.interior-testimonials .title-bar {
  background: #000;
  width: 5.4%;
  z-index: 50;
}
.interior-testimonials .title-bar h2 {
  transform: rotate(90deg) translate(95%,0rem);
  color: #fff;
  white-space: nowrap;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .1rem;
}
@media only screen and (max-width: 991px) {
  .interior-testimonials {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .interior-testimonials {
    padding: 2rem;
  }
  .interior-testimonials .flex-container {
    padding: 0;
    flex-direction: column;
  }
  .interior-testimonials .title-bar {
    order: -1;
    width: 100%;
    padding: 1rem;
    text-align: center;
  }
  .interior-testimonials .box-wrap {
    flex-flow: column;
  }
  .interior-testimonials .title-bar h2 {
    transform: none;
  }
  .interior-testimonials .header-wrap {
    padding: 0;
    flex-direction: column;
  }
  .interior-testimonials .header-wrap h2 {
    margin-bottom: 2rem;
  }
  .interior-testimonials .header-wrap img {
    width: 100%;
  }
  .interior-testimonials .header-wrap .info {
    width: 100%;
  }
  .interior-testimonials .header-wrap .info p {
    /*font-size: 1.1rem!important;*/
    margin-bottom: 2rem;
  }
  .interior-testimonials .review-box {
    width: 100%;
  }
  .interior-testimonials .text-wrap h3 {
    font-size: 1.3rem;
  }
  .interior-testimonials .text-wrap span {
    font-size: 1.3rem;
  }
}

/*============================ */
/* Contact 10
============================== */
.hollow-contact-10 {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  /*   background: url(http://staging.bigtuna.com/hollow.theme/site/wp-content/uploads/2018/01/contact-10-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed; */
}
.hollow-contact-10::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hollow-contact-10 .flex-container {
  position: relative;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hollow-contact-10 .form-wrap {
  padding: 2rem;
  background: rgba(29, 29, 29, 0.8);
  border-radius: 4px;
}
.hollow-contact-10 h3 {
  font-weight: 400;
  margin-bottom: 1rem;
  color: #fff;
  font-family: var(--headingFont);
}
.hollow-contact-10 hr {
  margin: 1rem auto;
  border: none;
  height: 3px;
  width: 4rem;
  background: var(--redLight);
}
.hollow-contact-10 p {
  margin-bottom: 2rem;
  color: #FFF;
  font-weight: 400;
  font-size: 1.1rem;
}
.hollow-contact-10 .your-email {
  float: left;
  width: 50%;
  padding-right: 15px;
}
.hollow-contact-10 .your-phone {
  float: left;
  width: 50%;
}
.hollow-contact-10 input:not([type="submit"]),
.hollow-contact-10 textarea {
  font-family: var(--mainFont);
  font-size: 1.1rem;
  font-weight: 400;
  width: 100%;
  border: 1px solid var(--redDark);
  padding: .6em;
  margin-bottom: 1rem;
  color: #FFF;
  background: var(--red);
}
.hollow-contact-10 textarea {
  height: 10rem;
}
.hollow-contact-10 .wpcf7-form-control.wpcf7-submit {
  background: var(--red);
  border: none;
  border-radius: var(--root--borderRadius);
  padding: .8rem 1rem;
  color: #FFF;
  cursor: pointer;
  font-weight: 300;
  font-size: 1.1rem;
  text-transform: capitalize;
  width: 100%;
  justify-content: center;
  transition: .3s ease;
}
.hollow-contact-10 .wpcf7-form-control.wpcf7-submit:hover {
  background: var(--redDark);
}
.hollow-contact-10 ::placeholder { 
  color: #FFF;
}
@media only screen and (min-width: 992px) {
  .hollow-contact-10 .flex-container {
  max-width: 40rem;
  }
}
@media only screen and (max-width: 991px) {
  .page-template-page-contact .hollow-contact-10 {
    padding: 3rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-contact-10 {
    padding: 2rem 0;
  }
  .page-template-page-contact .hollow-contact-10 {
    padding: 2rem 0;
  }
}





/*============================ */
/* Hollow Video 04
============================== */
.hollow-video-04 {
  display: block;
  position: relative;
  padding: 0 0 4rem 0;
  /* background: #efefef; */
}
.hollow-video-04 .flex-container-fluid {
  /* flex-flow: column; */
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
}
.hollow-video-04 .vid-title {
  border: 3px solid grey;
  text-align: center;
  border-top: none;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 1rem 0.5rem;
  font-style: italic;
  color: #fff;
  background: grey;
  width: 100%;
  max-width: 40rem;
}
.hollow-video-04 .vid-title p {
  font-weight: 400;
  margin-bottom: 0;
}
.hollow-video-04 .video-wrap {
  background-color: #000;
  position: relative;
  /* max-width: 40rem; */
  width: 48%;
  height: 25vw;
  border: 2px solid var(--redLight);
}
.hollow-video-04 .video-wrap img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  opacity: 0.85;
}
.hollow-video-04 .video-wrap .play-button {
  width: 90px;
  height: 60px;
  background-color: #333;
  box-shadow: 0 0 30px rgba( 0,0,0,0.6 );
  z-index: 1;
  opacity: 0.8;
  border-radius: 6px;
  transition: all .3s ease;
}
.hollow-video-04 .video-wrap:hover .play-button {
  background: #FF0000;
}
.hollow-video-04 .video-wrap .play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26.0px;
  border-color: transparent transparent transparent #fff;
}
.hollow-video-04 .video-wrap img,
.hollow-video-04 .video-wrap .play-button {
  cursor: pointer;
}
.hollow-video-04 .video-wrap .play-button,
.hollow-video-04 .video-wrap .play-button:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d( -50%, -50%, 0 );
}
@media only screen and (max-width: 991px) {
  .hollow-video-04 .flex-container-fluid {
    padding: 0 2rem;
    flex-wrap: wrap;
  }
  .hollow-video-04 {
    padding: 0 0 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-video-04 {
    padding: 0;
  }
  .hollow-video-04 .video-wrap {
    width: 100%;
    margin-bottom: 2rem;
    height: 14rem;
  }
}