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

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

:root {
  /* Color Variables: */
  --defaultMainColor: #f29832;
  --defaultMainDark: #e26f32;
  --defaultMainAccent: #777771;
  --defaultGrey: #393a37;
  
  /* Font Variables */
  --headingFont: 'Aleo', serif;
  --mainFont: 'Catamaran', sans-serif;
  --accentFont: 'Playfair Display', cursive;
}

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

/*============================ */
/* HEADER 08
============================== */
.hollow-header-08 {
  position: relative;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 2px 5px -2px #000;
}
.hollow-header-08.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  visibility: visible!important;
}
.hollow-header-08 .flex-container {
  justify-content: space-between;
}
.hollow-header-08.sticky .flex-container {
  justify-content: flex-end;
}

/*LOGO*/
.hollow-header-08 .logo {
  display: flex;
  align-items: center;
  padding: 0;
  width: 65%;
}
.hollow-header-08.sticky .logo {
  display: none;
}
.hollow-header-08 .logo img {
  display: flex;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

/*CONTENT*/
.hollow-header-08 .content-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
/*Meta*/
.hollow-header-08 .meta-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(98%);
  display: none;
}
/*.hollow-header-08 .meta-wrap a {*/
.hollow-header-08 .meta-wrap .meta-link {
  display: inline-block;
  background: #fff;
  white-space: nowrap;
  padding: .5rem 1rem;
  margin-right: .25rem;
  box-shadow: 0 3px 3px -2px #2f2f2f;
  color: var(--defaultGrey);
  font-family: var(--mainFont);
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1.1rem;
  border-radius: 0 0 3px 3px;
  transition: all 0.4s ease;
}
.hollow-header-08.sticky .meta-wrap .social {
  padding: .5rem .6rem;
}
.hollow-header-08 .meta-wrap .social a {
  padding: 0 0.3rem;
}
.hollow-header-08 .meta-wrap a:last-of-type {
  margin-right: 0;
}
.hollow-header-08 .meta-wrap a:hover {
  color: var(--defaultMainColor);
}
.hollow-header-08 .meta-wrap a i {
  color: var(--defaultGrey);
  transition: all 0.4s ease;
}
.hollow-header-08 .meta-wrap a:hover i {
  color: var(--defaultMainColor);
}
.hollow-header-08 .meta-wrap a span {
  display: inline;
  width: unset;
  font-family: var(--mainFont);
  overflow: hidden;
  padding-left: 0.75rem;
  transition: all 0.4s ease;
}
.hollow-header-08.sticky .meta-wrap a span {
  display: inline-block;
  max-width: 0;
  max-height: 0;
  padding-left: 0;
}
/*Nav Level One*/
.hollow-header-08 nav {
  display: flex;
  width: 100%;
}
.hollow-header-08.sticky nav {
  visibility: visible!important;
}
.hollow-header-08 nav .menu {
  align-self: flex-end;
  display: inline-flex;
  justify-content: flex-end;
  width: 100%;
}
.hollow-header-08 ul li {
  position: relative;
  margin-bottom: 0;
}
.hollow-header-08 nav li a {
  display: flex;
  align-items: center;
  color: var(--defaultGrey);
  padding: .4rem .6rem;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--mainFont);
  text-transform: uppercase;
  white-space: nowrap;
}
.hollow-header-08 nav .menu-item-has-children:last-of-type > ul {
  right: 0;
  left: auto;
}
.hollow-header-08 nav .dropdown .caret {
  margin-left: .5rem;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
/*Nav Level Two*/
.hollow-header-08 nav .menu-item-has-children ul li a {
  background: #9e9e9e;
  color: #fff;
}
.hollow-header-08 .menu-item-has-children .dropdown-menu {
  display: none;
  overflow: hidden;
  top: 100%;
  left: 0;
  min-width: 100%;
  z-index: 9999;
}
.hollow-header-08 .menu-item-has-children.open .dropdown-menu {
  display: flex;
  flex-direction: column;
}
/*Nav Mobile*/
.hollow-header-08 button#mobile {
  position: relative;
  width: 30px;
  background: none;
  outline: none;
  border: none;
  float: right;
}
.hollow-header-08 .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-08 .hamburger:hover {
  cursor: pointer;
}
.hollow-header-08 .hamburger:before,
.hollow-header-08 .hamburger:after {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 20%;
  background: var(--defaultGrey);
  transition: transform .2s ease;
}
.hollow-header-08 .hamburger:after {
  top: 60%
}
header.header-menu-open.hollow-header-08 #mobile,
header.header-menu-open.hollow-header-08 #mobile .hamburger {
  background: transparent;
}
header.header-menu-open.hollow-header-08 #mobile>.hamburger:before,
header.header-menu-open.hollow-header-08 #mobile>.hamburger:after {
  top: 40%;
  background: #FFF;
}
header.header-menu-open.hollow-header-08 #mobile>.hamburger:before {
  transform: rotate(45deg)
}
header.header-menu-open.hollow-header-08 #mobile>.hamburger:after {
  transform: rotate(-45deg)
}

/*MOBILE TOOLBAR*/
.hollow-header-08 .mobile-toolbar {
  width: 100%;
  display: flex;
  padding: .4rem 1rem;
  background: var(--defaultGrey);
  justify-content: space-between;
  position: relative;
  top: 0;
  left: 0;
  z-index: 9999;
}
.hollow-header-08 .mobile-toolbar .icon-wrap * {
  font-size: 26px;
  color: #FFF;
  padding: 0.5rem 0.75rem .5rem 0;
}

@media screen and (min-width:992px) {
  .hollow-header-08 .logo {
    margin-right: 1rem;
    padding: 2rem 0;
  }
  .hollow-header-08 .menu-item-has-children .dropdown-menu {
    position: absolute;
    flex-direction: column;
  }
  .hollow-header-08 .menu-item-has-children:hover > .dropdown-menu {
    display: inline-flex;
  }
  .hollow-header-08 .menu-item.open>a,
  .hollow-header-08 .menu-item:hover>a,
  .hollow-header-08 .menu-item.active a,
  .hollow-header-08 .menu-item.active:hover>a {
    background: var(--defaultGrey);
    color: #fff;
  }
  .hollow-header-08 nav .menu-item-has-children ul li.active a,
  .hollow-header-08 nav .menu-item-has-children ul li.active:hover a,
  .hollow-header-08 nav .menu-item-has-children ul li:hover a {
    background: var(--defaultGrey);
    color: #fff;
  }
  .hollow-header-08 .mobile-logo,
  .hollow-header-08 .mobile-toolbar {
    display: none;
  }
  .hollow-header-08 #mobile {
    display: none;
  }
}
@media only screen and (max-width:1199px) and (min-width:992px) {
  .hollow-header-08 nav li a {
    text-transform: capitalize;
  }
}
@media only screen and (max-width:991px) {
  .hollow-header-08 .flex-container {
    flex-direction: column-reverse;
  }
  .hollow-header-08 .logo {
    justify-content: center;
    padding: calc(1rem + 15px) 0 2rem;
    margin: 0 auto;
  }
  .hollow-header-08 .desktop-logo {
    display: none;
  }
  body:not(.home) .hollow-header-08 .logo {
    display: none;
  }
  .hollow-header-08 .content-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: block;
  }
  .hollow-header-08 .meta-wrap {
    display: none;
  }
  .hollow-header-08 .menu {
    background: #9e9e9e;
    flex-direction: column;
    max-height: 0;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
  }
  .hollow-header-08 nav {
    overflow: hidden;
  }
  .hollow-header-08 nav .menu {
    justify-content: flex-start;
  }
  .hollow-header-08 .menu a {
    color: #fff;
  }
  .hollow-header-08 nav li a:hover,
  .hollow-header-08 nav li.active a:hover,
  .hollow-header-08 nav li.active a {
    background: var(--defaultGrey);
  }
  .hollow-header-08 nav .menu-item-has-children ul li.active a,
  .hollow-header-08 nav .menu-item-has-children ul li.active:hover a,
  .hollow-header-08 nav .menu-item-has-children ul li:hover a {
    background: var(--defaultGrey);
  }
  header.header-menu-open.hollow-header-08 .menu {
    opacity: 1;
    max-height: 85vh;
    overflow-y: auto;
  }
  .hollow-header-08 .menu-item-has-children .dropdown-menu li a {
    padding: 1rem 1.5rem;
  }
}
@media screen and (orientation: portrait) and (max-width:991px) {
  .hollow-header-08 .menu a {
    font-size: 1.5rem;
    padding: 1rem;
  }
  .hollow-header-08 .menu-item-has-children .dropdown-menu li a {
    padding: 1rem 2.5rem;
  }
}
@media screen and (orientation: portrait) and (max-width:767px) {
  .hollow-header-08 .menu a {
    font-size: 1.4rem;
    padding: 1rem;
  }
  .hollow-header-08 .menu-item-has-children .dropdown-menu li a {
    padding: 1rem 2.5rem;
  }
}


.notification-bar {
  background: red;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}
.notification-bar p, .notification-bar p a {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
}
.notification-bar p a {
  text-decoration: underline;
  font-weight: 700;
}
@media only screen and (max-width:991px) {
  .notification-bar {
    padding-top: 4.75rem;
  }
  .interior-page {
    margin-top: 0;
  }
}
/*HOMEPAGE COMPONENTS*/

/*============================ */
/* Hero 03
============================== */
.hollow-hero-03 {
  position: relative;
  overflow: hidden;
  padding:8rem 0;
}

/*Slider*/
.hollow-hero-03 .img-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.hollow-hero-03 .img-slider.slick-initialized {
  visibility: visible;
}
.hollow-hero-03 .img-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(14 14 14 / 63%);
}
.hollow-hero-03 .img-slider .slick-list {
  height: 100%;
} 
.hollow-hero-03 .img-slider .slick-track {
  height: 100%;
}
.hollow-hero-03 .img-slider img {
  height: 100%;
  object-fit: cover;
}

.hollow-hero-03 .text-wrap {
  position: relative;
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hollow-hero-03 .text-wrap h3 {
  color: var(--defaultMainColor);
  margin-bottom: .5rem;
}
.hollow-hero-03 .text-wrap ul li {
  text-align: left;
  color: #FFF;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}
.hollow-hero-03 .text-wrap ul li i {
  font-size: .75rem;
  padding-right: .75rem;
  align-self: flex-start;
  padding-top: 0.85rem;
}
.hollow-hero-03 .text-wrap a {
  display: inline-block;
  padding: .5rem 1.5rem;
  line-height: 1.5;
  color: #FFF;
  text-transform: uppercase;
  border-radius: 5px;
  background: var(--defaultMainColor);
  transition: all .3s ease;
}
.hollow-hero-03 .text-wrap a:hover {
  background: var(--defaultMainDark);
}
.hollow-hero-03 .form-wrap {
  position: relative;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.8);
  flex: 1;
  border-radius: 5px;
  text-align: center;
}
.hollow-hero-03 .form-wrap h3 {
  color: var(--defaultGrey);
  margin-bottom: 1.5rem;
}
.hollow-hero-03 .form-wrap .flex-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hollow-hero-03 .form-wrap .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  height: 100%;
}
.hollow-hero-03 .form-wrap input,
.hollow-hero-03 .form-wrap textarea {
  font-family: var(--mainFont);
  font-size: 1rem;
  padding: .5rem;
  border: none;
  color: grey;
  font-weight: 300;
}
.hollow-hero-03 .form-wrap .wpcf7 input:not([type="submit"]) {
  border-radius: 5px;
  margin-bottom: 0.75rem;
}
.hollow-hero-03 textarea {
  height: 100%;
  resize: none;
  border-radius: 5px 0 0 5px;
  height: 5rem;
  margin: 0;
}
.hollow-hero-03 .form-wrap .wpcf7 input[type="text"]::-webkit-input-placeholder,
.hollow-hero-03 .form-wrap .wpcf7 input[type="email"]::-webkit-input-placeholder,
.hollow-hero-03 .form-wrap .wpcf7 input[type="tel"]::-webkit-input-placeholder,
.hollow-hero-03 .form-wrap .wpcf7 textarea::-webkit-input-placeholder {
  color: grey;
}
.hollow-hero-03 .form-wrap .message-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.hollow-hero-03 .message-wrap .wpcf7-form-control-wrap {
  flex: 6;
}
.hollow-hero-03 .message-wrap .submit-wrap {
  flex: 1;
}
.hollow-hero-03 .submit-wrap {
  position: relative;
  height: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFF;
  overflow: hidden;
  background: var(--defaultMainColor);
  transition: all .3s ease;
  border-radius: 0 5px 5px 0;
}
.hollow-hero-03 .submit-wrap:hover {
  background: var(--defaultMainDark);
}
.hollow-hero-03 .submit-wrap i {
  color: #FFF;
  font-size: .8rem;
  margin: .25rem 0;
}
.hollow-hero-03 input[type="submit"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  border: none;
  cursor: pointer;
  background: transparent;
}
.hollow-hero-03 input[type="submit"]:hover {
  background: transparent;
}
@media screen and (min-width: 768px) {
  .hollow-hero-03 .form-wrap .flex-wrap .wpcf7-form-control-wrap {
    width: calc(50% - .5rem);
  }
}
@media only screen and (max-width: 767px) {
  .hollow-hero-03 {
    text-align: center;
    padding: 4rem 0;
  }
  .hollow-hero-03 .flex-container {
    flex-direction: column;
  }
  .hollow-hero-03 .text-wrap {
    margin-bottom: 4rem;
    text-align: center;
    align-items: center;
  }
  .hollow-hero-03 .form-wrap .flex-wrap {
    flex-direction: column;
  }
  .hollow-hero-03 .form-wrap .flex-wrap .wpcf7-form-control-wrap,
  .hollow-hero-03 .form-wrap .message-wrap * {
    width: 100%;
  }
  .hollow-hero-03 .form-wrap .message-wrap {
    flex-direction: column;
  }
  .hollow-hero-03 textarea {
    margin-bottom: 1rem;
    border-radius: 5px;
  }
  .hollow-hero-03 .submit-wrap {
    height: 3rem;
    border-radius: 5px;
  }
}


/*============================ */
/* Action 11
============================== */
.hollow-action-11 {
  padding: 1rem 0;
  background: var(--defaultGrey);
}
.hollow-action-11 .flex-container {
  justify-content: center;
  align-items: center;
}
.hollow-action-11 h3 {
  color: #FFF;
  font-weight: 100;
  font-family: var(--mainFont);
  font-size: 1.5rem;
  text-transform: uppercase;
  text-align: center;
  padding-right: 2rem;
}
.hollow-action-11 h3 span {
  font-weight: 600;
  font-size: 1.8rem;
  margin-right: .25rem;
  padding-bottom: .25rem;
}
.hollow-action-11 h3#phone a {
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--defaultMainColor);
  padding: 0;
  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 {
    padding: 2rem 0 1rem;
  }
  .hollow-action-11 .flex-container {
    flex-flow: column;
  }
  .hollow-action-11 h3 {
    margin-bottom: 1rem;
    padding: 0;
  }
  .hollow-action-11 h3 span {
    border: none;
    padding: none;
    font-weight: 300;
  }
}


/*============================ */
/* Service Images 16
============================== */
.hollow-service-images-16 {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 0;
  background: #fff;
  transform-style: preserve-3d;
}
.hollow-service-images-16 .flex-container {
  justify-content: space-between;
}
.hollow-service-images-16 .box {
  width: 23.5%;
  margin-bottom: 2rem;
}
.hollow-service-images-16 h3 {
  text-transform: uppercase;
  color: #FFF;
  transition: all .3s ease;
  /*font-family: var(--mainFont);*/
  font-size: 1.2rem;
  font-weight: 300;
  background: #9e9e9e;
  border-bottom: 3px solid #9e9e9e;
  border-radius: 5px 5px 0 0;
  padding: .5rem;
  text-align: center;
  margin-bottom: .3rem;
}
.hollow-service-images-16 .box:hover h3 {
  border-bottom: 3px solid var(--defaultGrey);
}
.hollow-service-images-16 .content {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 5px 5px;
}
.hollow-service-images-16 img {
  object-fit: cover;
  width: 100%;
  transform: scale(1.2);
  transition: all .5s;
}
.hollow-service-images-16 .box:hover img {
  transform: scale(1);
}
.hollow-service-images-16 a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 37, 37, 0.5);
  transition: all .5s;
}
.hollow-service-images-16 .box:hover a {
  background: rgba(37, 37, 37, 0.9);
}
.hollow-service-images-16 .burger {
  display: inline-block;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  transition: all .5s;
  pointer-events: none;
}
.hollow-service-images-16 .box:hover .burger {
  bottom: 50%;
  transform: translate(-50%, 50%);
}
.hollow-service-images-16 .bar {
  width: 50px;
  height: 4px;
  margin: 8px 0;
  background: var(--defaultMainColor);
  opacity: 0.7;
  transition: all .5s;
}
.hollow-service-images-16 .box:hover .arrow-top {
  transform: rotateZ(45deg) translate(24px,-19px);
  width: 25px;
  opacity: 1;
}
.hollow-service-images-16 .box:hover .arrow-middle {
  opacity: 1;
}
.hollow-service-images-16 .box:hover .arrow-bottom {
  transform: rotateZ(-45deg) translate(24px,19px);
  width: 25px;
  opacity: 1;
}
@media only screen and (max-width: 991px) {
  .hollow-service-images-16 {
    background-attachment: unset;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-service-images-16 {
    padding: 2rem 0 0;
  }
  .hollow-service-images-16 .flex-container {
    flex-direction: column;
  }
  .hollow-service-images-16 .box {
    width: 100%;
  }
  .hollow-service-images-16 .burger {
    /*display: none;*/
  }
  .hollow-service-images-16 a {
    background: rgba(37, 37, 37, 0.5);
  }
}


.hollow-industry {
  padding: 0 0 2rem;
}
.hollow-industry .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;text-align: center;
}
.hollow-industry .flex-container {
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
  border-radius: 5px;
}
.hollow-industry h1 {
  color: var(--defaultMainColor);
  /* font-family: var(--mainFont); */
  font-weight: 200;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 3rem;
}
.hollow-industry p {
  text-align: center;
  width: 80%;
  margin-bottom: 3rem;
  color: var(--defaultGrey);
  font-weight: 400;
}
.hollow-industry span.orange {
  color: var(--defaultMainColor);
  font-weight: 600;
}
.hollow-industry .pill-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
}
.hollow-industry .pill {
  display: flex;
}
.hollow-industry .pill h3 {
  font-family: var(--mainFont);
  text-transform: uppercase;
  font-weight: 300;
  color: var(--defaultGrey);
  font-size: 1.5rem;
}
.hollow-industry .pill i {
  color: var(--defaultGrey);
  font-size: 2rem;
  margin-right: 1rem;
}
.hollow-industry .button {
  margin-top: 4rem;
}
.hollow-industry .btn-wrap {
  background: var(--defaultMainColor);
  border: none;
  padding: .75rem 1rem;
  border-radius: 5px;
  transition: all .3s ease;
}
.hollow-industry .btn-wrap:hover {
  background: var(--defaultMainDark); 
}
.hollow-industry a {
  color: #fff;
  /*font-family: var(--mainFont);*/
  text-transform: uppercase;
  font-size: 1.1rem;
  transition: all .3s ease;
}
body:not(.home) .hollow-industry .pill {
  padding: 1rem 3rem;
}
body:not(.home) .hollow-industry .pill-wrapper {
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-industry .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 991px) {
  .hollow-industry .pill {
    display: block;
    text-align: center;
  }
  .hollow-industry .pill i {
    margin: 0;
  }
  .hollow-industry .pill h3 {
    padding: .5rem;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-industry {
    padding: 2rem 0;
  }
  .hollow-industry .flex-container {
    padding: 1rem 0;
  }
  .hollow-industry h1 {
    margin-bottom: 2rem;
  }
  .hollow-industry .title {
    padding: 0 1rem;
  }
  .hollow-industry p {
    width: 100%;
  }
  .hollow-industry .pill-wrapper {
    /*flex-direction: column;*/
    /*display: block;*/
    width: 100%;
    flex-wrap: wrap;
  }
  .hollow-industry .pill {
    width: 49%;
    margin-bottom: 1rem;
  }
  .hollow-industry .button {
    margin-top: 1rem;
  }
}


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


/*============================ */
/* Testimonial 06
============================== */
.hollow-testimonial-06 {
  padding: 4rem 0;
}
.hollow-testimonial-06 h1 {
  color: var(--defaultGrey);
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
}
.hollow-testimonial-06 hr {
  border: none;
  height: 2px;
  background: var(--defaultMainDark);
  width: 0;
  margin: 0;
}
.hollow-testimonial-06 .flex-container {
  flex-direction: column;
}
.hollow-testimonial-06 .testimonial-slider-wrap {
  padding: 1rem;
  box-shadow: 0 3px 32px rgba(0,0,0,0.1);
  background: var(--defaultMainColor);
  border-radius: 5px;
}
.hollow-testimonial-06 .text p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  font-style: italic;
}
.hollow-testimonial-06 .creds {
  padding: 0 1rem;
}
.hollow-testimonial-06 .creds .arrow {
  display: block;
  width: 0px;
  height: 0px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--defaultMainColor);
  margin: 0 2rem 1rem;
}
.hollow-testimonial-06 .creds h3 {
  font-size: 1.3rem;
  color: var(--defaultGrey);
  margin-bottom: .25rem;
}
.hollow-testimonial-06 .creds p {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--defaultGrey);
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-testimonial-06 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 767px) {
  .hollow-testimonial-06 {
    padding: 2rem 0;
  }
}


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



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

.hollow-web-design-01 {
  display:block;
}
.hollow-web-design-01 .top-half {
  background:#fff;
  padding:4rem 0 2rem;
}
.hollow-web-design-01 .top-half h1 {
  color:var(--defaultMainDark);
  text-align:center;
  font-size:2rem;
  font-weight:500;
  margin-bottom:1rem;
}
.hollow-web-design-01 .top-half h2 {
  color:#000;
  text-align:center;
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: none;
  line-height: 24px;
  letter-spacing: 0px;
  margin:0 12rem 1rem;  
}
.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 {
  background:#F6F6F6;
  padding:4rem 0 2rem;
}
.hollow-web-design-01 .bottom-half .form-wrap {
  width:50%;
  margin:0 auto;
}
.hollow-web-design-01 .bottom-half .form-wrap input:not([type="submit"]),
.hollow-web-design-01 .bottom-half .form-wrap textarea {
  padding: 10px 0px 10px 15px;
  border-radius:10px;
  border-color: #DCDCDC;
}
.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"] {
  background:var(--defaultMainAccent);
  border-radius:35px;
  text-transform:uppercase;
  border:none;
  font-weight:500;
}
@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 04
============================== */
.hollow-footer-04 {
  position: relative;
  overflow: hidden;
  background: #252525;
  /*font-family: var(--mainFont);*/
}
.hollow-footer-04 .main .flex-container {
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
}
.hollow-footer-04 img {
  margin-bottom: 1rem;
  max-width: 90%;
}
.hollow-footer-04 h3 {
  color: #FFF;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: center;
  display: none;
}
.hollow-footer-04 .social {
  display: flex;
  border-top: 2px dotted #FFF;
  padding-top: .5rem;
  justify-content: center;
}
.hollow-footer-04 .main a {
  padding: .5rem;
  width: 3rem;
  margin: 0 .25rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;

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

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

/*DEFAULT STYLE OVERWRITES*/

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

.default-popup .content ul li i {
  padding-right: .25rem;
}
.default-popup .wpcf7-form-control-wrap input,
.default-popup .wpcf7-form-control-wrap select,
.default-popup .wpcf7-form-control-wrap textarea {
  font-family: var(--mainFont);
  padding: 0.25rem .5rem;
  font-size: 1rem.1rem;
  margin-bottom: 0.6rem;
}
.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(--defaultMainColor);
}
.default-popup .wpcf7-form input[type="submit"] {
  background: var(--defaultGrey);
}
.default-popup .wpcf7-form input[type="submit"]:hover {
  background: #333333;
}
.default-popup .loader-wrap {
  background: var(--defaultMainColor);
}
.default-popup .button-wrap i {
  background: var(--defaultMainColor);
}
.default-popup .form-wrap .close {
  background: var(--defaultMainColor);
}
.default-popup .form-wrap .close:hover {
  background: #d09015;
}
@media only screen and (max-width: 767px) {
  .default-popup .form-wrap {
    width: 95%;
  }
  .default-popup .form-wrap h1 {
    margin-bottom: 1rem;
  }
  .default-popup .content p {
    display: none;
  }
  .default-popup .details li {
    width: 100%;
    justify-content: flex-start;
  }
}
/*============================ */
/* DEFAULT SEO STYLES:
============================== */
.content.seo {
  font-family: var(--mainFont);
  background: var(--defaultMainDark);
}
.content.seo i {
  color: #fff;
}
.content.seo p a:hover {
  color: var(--defaultGrey);
}

/*INTERIOR PAGES*/

/*============================ */
/* Interior Header 05
============================== */
.interior-header-05 {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 5rem 1rem;
  text-align: center;
  background: url(img/h1.jpg) center bottom no-repeat;
  background-size: cover;
}
.interior-header-05::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 65%);
}
.interior-header-05 h1 {
  position: relative;
  color: #fff;
  /*font-family: var(--mainFont);*/
  margin-bottom: .75rem;
  font-weight: 200;
}
.interior-header-05 .orange {
  font-weight: 700;
}
.interior-header-05 h2 {
  position: relative;
  color: #fff;
  font-family: var(--mainFont);
  font-size: 1.2rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .interior-header-05 {
    background-attachment: unset!important;
  }
}
@media only screen and (max-width: 767px) {
  .interior-header-05 {
    padding: 4rem 1rem;
  }
  .interior-header-05 h2 {
    max-width: 100%;
  }
}


/*============================ */
/* Split Boxes 01
============================== */
.split-boxes-01 .flex-container {
  position: relative;
  width: 100%;
}
.split-boxes-01 .left-box {
  width: 50%;
  background: grey;
  padding: 4rem 4rem 5rem;
}
.split-boxes-01 .left-box h1 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 2rem;
}
.split-boxes-01 .left-box p {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
}
.split-boxes-01 .left-box .link-1 {
  color: #fff;
  font-weight: 400;
}
.split-boxes-01 .left-box .link-1:hover {
  color: darkgrey;
}
.split-boxes-01 .left-box  ul {
  display: block;
}
.split-boxes-01 .left-box  ul li i {
  color: darkgrey;
  vertical-align: top;
  margin-top: .3rem;
  padding-right: .75rem;
}
.split-boxes-01 .left-box  ul li p {
  display: inline-block;
  max-width: 90%;
  vertical-align: top;
  font-weight: 400;
}
.split-boxes-01 .left-box .btn-wrap {
  margin-top: 2rem;
}
.split-boxes-01 .left-box .btn-wrap a {
  background: var(--defaultMainColor);
  padding: .5rem 1rem;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.split-boxes-01 .left-box .btn-wrap a:hover {
  background: var(--defaultMainDark);
}
.split-boxes-01 .right-box {
  width: 50%;
  background: #fff;
  padding: 4rem 4rem 3rem;
}
.split-boxes-01 .right-box h1 {
  color: var(--defaultGrey);
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 2rem;
}
.split-boxes-01 .right-box p {
  color: #707070;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}
.split-boxes-01 .right-box  ul {
  display: block;
}
.split-boxes-01 .right-box  ul li i {
  color: lightgrey;
}
@media only screen and (max-width: 991px) {
  .split-boxes-01 .left-box {    
    padding: 4rem 3rem;
  }
  .split-boxes-01 .right-box {
    padding: 4rem 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .split-boxes-01 .flex-container {
    flex-direction: column;
    padding: 0;
  }
  .split-boxes-01 .left-box {
    width: 100%;
    padding: 2rem 2rem 1rem;
  }
  .split-boxes-01 .right-box {
    width: 100%;
    padding: 2rem 2rem 1rem;
  }
  .split-boxes-01 .left-box .btn-wrap {
    margin: 2rem 0;
  }
}

/*============================ */
/* Service Text 04
============================== */
.hollow-service-text-04 {
  padding: 4rem 0 3rem;
  background: whitesmoke;
}
.hollow-service-text-04 .title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hollow-service-text-04 .title-wrap h2 {
  color: var(--defaultMainColor);
  font-weight: 200;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 3rem; 
}
.hollow-service-text-04 .flex-container {
  justify-content: space-between;
}
.hollow-service-text-04 .box {
  width: 31.5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  padding: 2rem 2rem 1.3rem;
  margin: 1rem 0;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.hollow-service-text-04 i.icon {
  color: var(--defaultGrey);
  margin-bottom: 1rem;
  font-size: 2rem;
}
.hollow-service-text-04 h3 {
  color: var(--defaultMainColor);
  margin-bottom: 1rem;
}
.hollow-service-text-04 p {
  color: #707070;
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.hollow-service-text-04 ul {
  display: block;
}
.hollow-service-text-04 ul li i {
  color: lightgrey;
  vertical-align: top;
  margin-top: .45rem;
  padding-right: .75rem;
  font-size: .5rem;
  width: 1.25rem;
}
.hollow-service-text-04 ul li p {
  display: inline-block;
  max-width: calc(100% - 1.25rem);
  vertical-align: top;
  margin-bottom: 0;
}
.hollow-service-text-04 a {
  display: flex;
  align-items: center;
  color: #FFF;
  margin-bottom: 2rem;
  text-transform: uppercase;
  transition: all .3s ease;
}
.hollow-service-text-04 a:hover {
  color: #E0A78C;
}
.hollow-service-text-04 a i {
  padding-left: .5rem;
  transition: all .3s ease;
  text-transform: uppercase;
}
.hollow-service-text-04 a:hover i {
  padding-left: 1rem;
  color: #E0A78C;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-service-text-04 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 767px) {
  .hollow-service-text-04 {
    padding: 2rem 0 1rem;
  }
  .hollow-service-text-04 .flex-container {
    flex-direction: column;
  }
  .hollow-service-text-04 .title-wrap h2 {
    margin-bottom: 1rem;
  }
  .hollow-service-text-04 .box {
    width: 100%;
  }
}


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


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

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

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

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


/*============================ */
/* recaptcha css
============================== */
.grecaptcha-badge{
  visibility: collapse !important;  
}