/*
  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: #151515;
  --defaultMainDark: #000;
  --defaultMainAccent: #A9C6D9;
  --defaultGrey: #646464;
  
  /* Font Variables */
  --headingFont: 'Montserrat', sans-serif;
  --mainFont: 'Montserrat', sans-serif;
  --accentFont: 'Dancing Script', cursive;
}

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


/*============================ */
/* Header 13
============================== */
.hollow-header-13 {
  z-index: 9999999;
  background: #fff;
  color: #f6f6f6;
  top: 0;
  width: 100%;
  position: sticky;
}
.hollow-header-13 .flex-container {
  justify-content: center;
  align-items: center;
}
.hollow-header-13-logo {
  display: none;
}
.home .hollow-header-13-logo {
  display: block;
  padding: 2rem 0;
  position: relative;
  z-index: 100;
}
.hollow-header-13-logo .logo {
  text-align: center;
  width: 18rem;
  height: 6rem;
}
.hollow-header-13-logo .flex-container {
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hollow-header-13-logo a {
  display: inline-block;
  width: 100%;
  height: 100%;
  /* background: #fff; */
  /* box-shadow: 0px -8px 18px -10px #000; */
}
.hollow-header-13-logo img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all .3s ease;
}
.hollow-header-13 .nav-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #151515;
  padding: 0.7rem 0;
  /* border-top: .5rem solid var(--defaultMainAccent); */
  border-top: 0.5rem solid #e3e2dd;
  border-bottom: 1px solid #e3e2dd;
  z-index: 999999;
}
.hollow-header-13 .meta-wrap {
  position: absolute;
  right: 1rem;
}
.hollow-header-13 .meta-wrap a {
  color: var(--defaultMainColor);
  padding: .25rem;
  font-size: 0.9rem;
  transition: all .3s ease;
}
.hollow-header-13 .meta-wrap a:hover {
  color: var(--defaultMainAccent)
}
.hollow-header-13 nav {
  display: inline-block;
  margin: 0 auto;
  transition: all .3s ease;
}
.hollow-header-13 nav ul {
  text-align: left;
}
.hollow-header-13 nav a {
  padding: .4rem 1rem;
  display: block;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
.hollow-header-13 nav .menu-item {
  margin-bottom: 0;
}
.hollow-header-13.sticky nav a {
  padding: 0.3rem 1rem;
}
.hollow-header-13 .mobile-toolbar nav a.mobile-icon {
  font-size: 2rem;
}
/* NAV LEVEL ONE */
.hollow-header-13 .menu-item.open>a, 
.hollow-header-13 .menu-item:hover>a, 
.hollow-header-13 .menu-item.active a, 
.hollow-header-13 .menu-item.active:hover>a {
  color: var(--defaultMainAccent);
}
/* NAV LEVEL TWO */
.hollow-header-13 .dropdown-menu {
  margin-top: 0px;
  border-radius: 0;
  border: none;
  padding: 0;
  width: 18rem;
  display: none;
}
.hollow-header-13 nav .dropdown-menu .dropdown-menu {
  left: 100%;
  top: 0;
}
.hollow-header-13 nav .dropdown-menu .menu-item {
  float: none;
}
.hollow-header-13 nav .dropdown-menu a {
  background: var(--defaultMainColor);
  color: #fff;
  display: flex;
  justify-content: space-between;
}
.hollow-header-13 .dropdown-menu>li:hover>a, 
.hollow-header-13 .dropdown-menu>li.active>a, 
.hollow-header-13 .dropdown-menu>.active>a:hover, 
.hollow-header-13 .dropdown-menu>.active>a:focus {
  background: var(--defaultMainDark);
  color: #fff;
}
.hollow-header-13 .dropdown .caret {
  display: none;
}
.hollow-header-13 .dropdown > a::after {
  padding-left: 0.35rem;
  content: '\f0d7';
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
}
/* NAV MOBILE */
.hollow-header-13 nav #mobile {
  position: relative;
  height: 2rem;
  width: 2rem;
  background: none;
  outline: none;
  border: none;
  float: right;
}
.hollow-header-13 .hamburger {
  display: block;
  position: absolute;
  width: 2rem;
  height: 1.5rem;
  background: #FFF;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2
}
.hollow-header-13 .hamburger:hover {
  cursor: pointer;
}
.hollow-header-13 .hamburger:before,
.hollow-header-13 .hamburger:after {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 20%;
  background: var(--defaultMainColor);
  transition-property: transform, top;
  transition-duration: .2s;
  transition-timing-function: ease;
  transform: translateZ(0);
}
.hollow-header-13 .hamburger:after {
  top: 60%
}
header.hollow-header-13.header-menu-open #mobile,
header.hollow-header-13.header-menu-open #mobile .hamburger {
  background: transparent;
}
header.hollow-header-13.header-menu-open #mobile>.hamburger:before,
header.hollow-header-13.header-menu-open #mobile>.hamburger:after {
  top: 40%;
  background: #FFF;
}
header.hollow-header-13.header-menu-open #mobile>.hamburger:before {
  transform: rotate(45deg);
}
header.hollow-header-13.header-menu-open #mobile>.hamburger:after {
  transform: rotate(-45deg);
}
/* MOBILE TOOLBAR */
.hollow-header-13 .mobile-toolbar {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.hollow-header-13 .mobile-toolbar a {
  color: #fff;
  padding: .5rem 1rem;
}
.hollow-header-13 .mobile-toolbar a:hover {
  color: #252525;
}
.hollow-header-13 .mobile-toolbar>* {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-header-13 .main-content .flex-container {
    width: calc(100% - 4rem);
  }
  .hollow-header-13 nav a {
    text-transform: capitalize;
  }
}
@media only screen and (min-width: 992px) {
  .hollow-header-13 nav #mobile,
  .hollow-header-13 .mobile-toolbar {
    display: none;
  }
  .hollow-header-13 .menu {
    float: right;
  }
  .hollow-header-13 nav .menu-item {
    float: left;
    position: relative;
  }
  .hollow-header-13 nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 10rem;
    min-width: max-content;
    display: none;
  }
  .hollow-header-13 nav .menu-item-has-children:hover>ul.dropdown-menu {
    /* display: block; */
  }
  .hollow-header-13 .mobile-toolbar{
    display: none;
  } 
}
@media only screen and (max-width: 991px) {
  .hollow-header-13 {
    border: none;
  }
  .home .hollow-header-13-logo {
    background: #000;
  }
  .hollow-header-13-logo .logo {
      text-align: center;
      width: 18rem;
      height: 9rem;
    }
  .hollow-header-13 .nav-wrap {
    border-top: none;
    /* display: none; */
    padding: 0;
    height: 46px;
  }
  .hollow-header-13 .meta-wrap {
    display: none;
  }
  .hollow-header-13-logo a {
    margin: 0;
    padding: 1rem 0 0;
    box-shadow: none;
    background: transparent;
  }
  body:not(.home) .hollow-header-13-logo,
  body:not(.home) .hollow-header-13 .main-content {
    display: none;
  }
  header.hollow-header-13.header-menu-open nav .menu {
    pointer-events: auto;
    opacity: 1;
    max-height: 85vh;
    overflow-y: auto;
  }
  .hollow-header-13 nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: .7rem;
    width: 100%;
    background: var(--defaultMainColor);
  }
  .hollow-header-13 nav a {
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
  }
  .hollow-header-13 .hamburger::before,
  .hollow-header-13 .hamburger::after {
    background: var(--defaultMainColor);
  }
  .hollow-header-13 nav .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transition: opacity 0.25s;
    z-index: -1;
    background: var(--defaultMainColor);
    box-shadow: 0 3px 3px -2px #000;
    pointer-events: none;
    opacity: 0;
  }
  .hollow-header-13 nav .menu-item-has-children.open .dropdown-menu {
    display: block;
  }
  .hollow-header-13 nav .dropdown-menu .dropdown-menu {
    left: 0;
  }
  .hollow-header-13 .dropdown-menu {
    position: relative;
    box-shadow: none;
    width: 100%;
  }
  .hollow-header-13 .dropdown-menu>li>a {
    padding-left: 2.5rem;
  }
  .hollow-header-13 .menu-item.open>a, 
  .hollow-header-13 .menu-item:hover>a, 
  .hollow-header-13 .menu-item.active a, 
  .hollow-header-13 .menu-item.active:hover>a {
    background: var(--defaultMainDark);
    color: #fff;
  }
  .hollow-header-13 .dropdown-menu .dropdown-menu>li>a {
    padding-left: 4rem;
  }
  .hollow-header-13 .mobile-toolbar>* {
    display: inline-block;
  }
  .hollow-header-13 .mobile-toolbar a {
    font-size: 2rem;
    padding: .2rem .7rem;
    float: left;
  }
  .hollow-header-13 .mobile-toolbar a i {
    padding: 0;
    font-weight: 200;
  }
}
@media only screen and (orientation: portrait) and (max-width:991px) {
  .hollow-header-13 nav a {
    font-size: 1.6rem;
    padding: .6rem;
  }
}
@media only screen and (max-width:767px) {
  .hollow-header-13 .meta-wrap-outer {
    display: none;
  }
  .hollow-header-13 {
    box-shadow: 0 0 10px -4px #000;
  }
}
@media only screen and (orientation: portrait) and (max-width:767px) {
  .hollow-header-13 nav a {
    font-size: 1.4rem;
    padding: .45rem .6rem;
  }
}


/*HOMEPAGE COMPONENTS*/


/*============================ */
/* Hero 16
============================== */
.hollow-hero-16 {
  position: relative;
  overflow: hidden;
}
.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: 50rem;
  min-height: 36rem;
  position: relative;
  overflow: hidden;
}
.hollow-hero-16 .slide img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hollow-hero-16 .caption-wrap {
  position: absolute;
  top: 80%;
  left: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translate(-50%,-50%);
  z-index: 1;
}
.hollow-hero-16 .caption-wrap h1 {
  color: #FFF;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  font-size: 6rem;
}
.hollow-hero-16 .caption-wrap h3 {
  color: #FFF;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .15rem;
  text-align: center;
  font-size: 1.8rem;
}
.hollow-hero-16 .caption-wrap hr {
  width: 4rem;
  margin: 1rem auto;
  border-color: #FFF;
  border-width: .5px;
}
.hollow-hero-16 .caption-wrap p {
  color: #FFF;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.5rem;
  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;
  font-size: 1.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 (min-width: 992px) {
  .hollow-hero-16 {
    top: -12rem;
    margin-bottom: -12rem;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-hero-16 .caption-wrap h1 {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 767px){
  .hollow-hero-16 .slide {
    height: 25rem;
    min-height: 25rem;
  }
  .hollow-hero-16 .caption-wrap {
    top: 70%;
  }
  .hollow-hero-16 .caption-wrap h1 {
    font-size: 3rem;
  }
  .hollow-hero-16 .caption-wrap h3 {
    font-weight: 400;
    font-size: 1.5rem;
  }
}

.hollow-content-001 {
  padding: 4rem 0;
}
.hollow-content-001 .flex-container {
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hollow-content-001 .title-wrap h2 {
  font-size: 1rem;
  line-height: 1.8;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
  max-width: 80rem;
  letter-spacing: 4px;
}
.hollow-content-001 .content-wrap p {
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: 0;
  text-align: center;
  max-width: 60rem;
}
@media only screen and (max-width: 767px) {
  .hollow-content-001 .title-wrap h2 {
    font-size: 1.5rem;
  }
}

/*============================ */
/* Interior Content 04
============================== */
.interior-content-04 {
  padding: 6rem 0 2rem;
  background: #ecebe8;
}
.interior-content-04.top {
  padding: 2rem 0 0;
}
.interior-content-04 .title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 4rem;
}
.interior-content-04 .title-wrap h2 {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.interior-content-04 .title-wrap h3 {
  font-size: 3rem;
  font-weight: 200;
  color: #000;
  text-transform: uppercase;
}
.interior-content-04 .flex-container {
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.interior-content-04 .number-wrap h4 {
  font-size: 6rem;
  margin-right: -2rem;
  position: relative;
  z-index: 1000;
  font-weight: 700;
  font-family: var(--accentFont);
  color: #A9C6D9;
}
.interior-content-04 .flex-container.reverse .number-wrap h4 {
  margin-left: -2rem;
}
.interior-content-04 .text-wrap {
  width: 53%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 2rem;
}
.interior-content-04.bottom .text-wrap {
  background: var(--defaultMainDark);
}
.interior-content-04 .text-wrap h3 {
  color: #000;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
}
.interior-content-04 .text-wrap p {
  color: #000;
  font-size: .82rem;
  line-height: 1.9;
  font-weight: 400;
}
.interior-content-04 .text-wrap .btn-wrap {
  margin-top: 1rem;
}
.interior-content-04 .text-wrap .btn-wrap a {
  color: #000;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  border: 2px solid #000;
  padding: .7rem 2rem;
  transition: all .3s ease;
  display: flex;
}
.interior-content-04 .text-wrap .btn-wrap a:hover {
  background: #000;
  color: #fff;
}
.interior-content-04 .full-width {
  width: 100%;
  margin: 2rem 0 0;
}
.interior-content-04 .img-wrap {
  position: relative;
  width: 50%;
}
.interior-content-04 .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .interior-content-04 .flex-container {
    width: 100%;
    padding: 0 2rem;
  }
}
@media only screen and (min-width: 992px) {
  .interior-content-04 .flex-container.reverse {
    flex-direction: row-reverse;
  }
  .interior-content-04 .text-wrap {
    padding: 2rem;
    z-index: 10;
    margin: 2rem -2rem 2rem 0;
  }
  .interior-content-04 .flex-container.reverse .text-wrap {
    margin: 2rem 0rem 2rem -2rem;
  }
  .interior-content-04 .img-wrap img {
    position: absolute;
  }
}
@media only screen and (max-width: 991px) {
  .interior-content-04 {
    padding: 2rem 0 1rem;
  }
  .interior-content-04.bottom .text-wrap {
    margin: 0;
  }
  .interior-content-04 .flex-container {
    flex-wrap: wrap;
  }
  .interior-content-04 .text-wrap {
    width: 100%;
    margin-top: -3rem;
  }
  .interior-content-04 .flex-container.reverse .number-wrap h4 {
    margin-left: 0;
  }
  .interior-content-04 .img-wrap {
    width: 100%;
    max-height: 40rem;
  }
}
@media only screen and (max-width: 767px) {
  .interior-content-04 {
    padding: 2rem 0 0;
  }
  .interior-content-04 .img-wrap {
    max-height: 24rem;
  }
  .interior-content-04 .title-wrap h2 {
    font-size: 1.5rem;
  }
  .interior-content-04 .text-wrap h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

/*============================ */
/* Action 20
============================== */
.hollow-action-20 {
  padding: 4rem 0 3.5rem;
  background: #A9C6D9;
}
.hollow-action-20 .flexbox {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hollow-action-20 .text-wrap {
  width: 60%;
  padding: 0 2rem;
}
.hollow-action-20 .text-wrap h2 {
  color: #000;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.hollow-action-20 .text-wrap h3 {
  color: var(--defaultMainDark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 3px;
}
.hollow-action-20 .text-wrap p {
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.9;
  width: 30rem;
  color: var(--defaultMainDark);
  max-width: 100%;
}
.hollow-action-20 .btn-wrap {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 40%;
}
.hollow-action-20 .btn-wrap a {
  color: #000;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  background: #fff;
  padding: 0.7rem 2rem;
  transition: all .3s ease;
  display: flex;
}
.hollow-action-20 .btn-wrap a:hover {
  background: var(--defaultMainDark);
  color: #fff;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-action-20 .flexbox {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 767px) {
  .hollow-action-20 {
    padding: 2rem 0;
  }
  .hollow-action-20 .flexbox {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hollow-action-20 .text-wrap {
    width: 100%;
    padding: 2rem 1rem 1rem;
  }
  .hollow-action-20 .btn-wrap {
    margin-bottom: 2rem;
  }
}



/*============================ */
/* Footer 07
============================== */
.hollow-footer-07 {
  background: #151515;
}

/*Main Content*/
.hollow-footer-07 .main-content {
  padding: 2rem 0 0;
}
.hollow-footer-07 .main-content .flex-container {
  justify-content: space-between;
  align-items: center;
}
.hollow-footer-07 .box {
  flex: 1;
  flex-basis: 33%;
  display: flex;
  flex-flow: column;
  padding: 2rem 2rem 4rem;
}
.hollow-footer-07 .box h3 {
  display: inline-flex;
  color: #fff;
  font-weight: 700;
  padding-bottom: .25rem;
  padding-left: 1rem;
  font-size: 1.1rem;
  text-transform: uppercase;
}
.hollow-footer-07 .box-item {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.hollow-footer-07 .box-item.credit {
  padding: 0 1rem 1rem;
}
.hollow-footer-07 .box-item .text {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
}
.hollow-footer-07 .box-item .icon-wrap {
  display: flex;
  margin-bottom: 1rem;
}
.hollow-footer-07 .box-item i {
  position: relative;
  font-size: 1.5rem;
  padding: 0 0.25rem;
  display: flex;
  justify-content: center;
  line-height: 1;
  color: #fff;
  margin-right: .5rem;
}
.hollow-footer-07 .box-item .icon-wrap i {
  font-size: 2.5rem;
}
.hollow-footer-07 .box-item h4 {
  position: relative;
  color: #fff;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: .4rem;
  font-weight: 600;
}
.hollow-footer-07 .box-item.links h4 {
  margin-bottom: 1rem;
}
.hollow-footer-07 .box-item p {
  position: relative;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 400;
}
.hollow-footer-07 .box-item.social {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hollow-footer-07 .box-item.social a {
  position: relative;
  color: #fff;
  transition: .3s ease;
  width: unset;
}
.hollow-footer-07 .box-item.social a i {
  font-size: 1.5rem;
}
.hollow-footer-07 .box-item.social a:hover {
  color: var(--defaultMainAccent);
}
.hollow-footer-07 .box-item.social a:hover i {
  color: var(--defaultMainAccent);
}
.hollow-footer-07 .box-item span {
  position: relative;
  color: #fff;
  font-weight: 400;
  font-size: .8rem;
  display: block;
  margin-bottom: .25rem;
}
.hollow-footer-07 .box-item.links a {
  position: relative;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 400;
  transition: .3s ease;
  width: max-content;
  margin: .25rem 0rem;
}
.hollow-footer-07 .box-item.links a:hover {
  color: var(--defaultMainAccent);
}

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


/*DEFAULT STYLE OVERWRITES*/

/*============================ */
/* DEFAULT BLOG STYLES: 
============================== */
/*Search Form*/
.search-form-wrap button {
  background: var(--defaultMainColor);
}
.search-form-wrap button:hover {
  background: var(--defaultMainDark);
}
/*Blog Page*/
.blog-wrap .post-item-header h1 {
  background: var(--defaultMainColor);
}
.blog-wrap .post-item .post-item-header h1:hover {
  background: var(--defaultMainDark);
}
.blog-wrap .post-item .post-content a {
  background: var(--defaultMainColor);
}
.blog-wrap .post-item .post-content a:hover {
  background: var(--defaultMainDark);
}
.blog-wrap .post-item p {
  border-color: var(--defaultMainColor);
}
.blog-wrap .post-item .date-wrap i {
  color: var(--defaultMainColor);
}
/*Sidebars*/
.blog-sidebar {
  border-color: var(--defaultMainColor);
}
.blog-sidebar .post-item-header h2 {
  background: var(--defaultMainColor);
}
/*Post Content*/
.blog-post-content h1 {
  color: var(--defaultMainColor);
}
.blog-post-content h2 {
  color: var(--defaultMainDark);
}
.blog-post-content h3 {
  color: var(--defaultMainColor);
}
.blog-post-content p a {
  color: var(--defaultMainColor);
}
.blog-post-content p a:hover {
  color: var(--defaultMainDark);
}
/*Post Return Button*/
.blog-return a.blog-return-btn {
  background: var(--defaultMainColor);
}
.blog-return a.blog-return-btn:hover {
  background: var(--defaultMainDark);
}
/*Pagination*/
.pagination .page-numbers {
  background: var(--defaultMainDark);
}
.pagination .page-numbers:hover, 
.pagination .page-numbers:focus {
  background: var(--defaultMainColor);
}
.pagination span.page-numbers.current {
  background: var(--defaultMainColor);
}
/*============================ */
/* DEFAULT POPUP STYLES:
============================== */
.default-popup .form-wrap {
  background: #ecebe8;
}
.default-popup .form-wrap h3 {
  color: var(--defaultMainColor);
}
.default-popup div.wpcf7-response-output {
  display: block;
}
.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(--defaultMainDark);
}
.default-popup .wpcf7-form input[type="submit"] {
  background: var(--defaultMainColor);
}
.default-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--defaultMainDark);
}
.default-popup .loader-wrap {
  background: var(--defaultMainColor);
}
.default-popup .button-wrap i {
  background: var(--defaultMainColor);
}
/*============================ */
/* DEFAULT POPUP V2:
============================== */
.default-popup .form-wrap {
  width: 70%;
  max-width: 36rem;
  padding: 1.5rem 1.5rem 0.5rem;
}
.default-popup .your-email,
.default-popup [data-name="your-email"] {
  width: 50%;
  float: left;
  padding-right: 1rem;
}
.default-popup .your-phone,
.default-popup [data-name="your-phone"] {
  width: 50%;
  float: left;
}
.default-popup .wpcf7-form-control-wrap input, 
.default-popup .wpcf7-form-control-wrap select, 
.default-popup .wpcf7-form-control-wrap textarea,
.default-popup .wpcf7-form input[type="submit"] {
  font-size: 1rem;
  font-family: var(--mainFont);
  font-weight: 400;
}
.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;
}
.default-popup .location {
  margin-bottom: 2rem;
}
.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: 300;
  margin: 0 1.5rem 0 0;
}
.default-popup .location ul li i {
  color: var(--defaultMainColor);
  padding-right: .5rem;
  padding-top: .3rem;
}
.default-popup .form-wrap .close {
  border: none;
  background: transparent;
  color: var(--defaultMainColor);
}
.default-popup .form-wrap .close:hover {
  background: var(--defaultMainColor);
  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;
  }
}
/*============================ */
/* CUSTOM SUBMIT FORM BUTTONS:
============================== */
.wpcf7 .wpcf7-form .hollow-file {
  padding: 0;
  margin-bottom: 1rem;
}
.wpcf7 .wpcf7-form .hollow-file .hollow-file-btn {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 10rem;
  height: calc(100% - 2px);
  /*   top: 3px;
  left: 3px;
  width: calc(10rem - 3px);
  height: calc(100% - 6px);
  border-radius: 4px; */
  font-size: 1rem;
  display: flex;
  align-items: center;
  background: var(--defaultMainColor);
  color: #fff;
  font-family: var(--mainFont);
  padding: .25rem;
  z-index: 1200;
  transition: all .3s ease;
}
.wpcf7 .wpcf7-form .hollow-file:hover .hollow-file-btn {
  background: var(--defaultMainAccent);
}
.wpcf7 .wpcf7-form .hollow-file .hollow-file-btn::before {
  content: '\f0ee';
  font-family: 'Font Awesome 6 Pro', 'Font Awesome 6', 'Font Awesome 5 Pro', 'Font Awesome 5';
  margin-right: .5rem;
  font-size: 1.5rem;
  padding: .25rem;
  font-weight: 300;
}
.wpcf7 .wpcf7-form .hollow-file .hollow-file-name {
  position: absolute;
  top: 1px;
  left: 1px;
  height: calc(100% - 2px);
  font-size: 1rem;
  display: flex;
  align-items: center;
  background: #fff;
  color: var(--defaultMainDark);
  font-family: var(--mainFont);
  padding: .25rem 1rem .25rem 11rem;
  min-width: calc(100% - 2px);
  z-index: 1000;
}
.wpcf7 .wpcf7-form .hollow-file input[type="file"] {
  color: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.wpcf7 .wpcf7-form .hollow-file input[type="file"]:hover {
  color: transparent;
  background: #fff;
}
/*============================ */
/* DEFAULT SEO STYLES:
============================== */
.content.seo {
  font-family: var(--mainFont);
  background: var(--defaultMainDark);
}
.content.seo i {
  color: #fff;
}
.content.seo p a:hover {
  color: var(--defaultMainAccent);
}
/*============================ */
/* DEFAULT INTERIOR PLACEHOLDERS
============================== */
.interior-placeholder-header {
  border-color: var(--defaultMainDark);
  background: var(--defaultMainColor);
}
.interior-placeholder-header h1 {
  color: #FFF;
}
/*============================ */
/* PASSWORD-PROTECTED PAGE FORMS
============================== */
.post-password-required form p input[type="submit"] {
  background: var(--defaultMainColor);
}
.post-password-required form p input[type="submit"]:hover {
  background: var(--defaultMainDark);
}
/*============================ */



/*INTERIOR PAGES*/




/*============================ */
/* Interior Header 05
============================== */
.interior-header-05 {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  padding: 30vh 0 0;
  background: url(img/h1.jpg) center center no-repeat;
  background-size: cover;
}
.page-id-354 .interior-header-05 {
  background: url(img/h2.jpg) center center no-repeat;
  background-size: cover;
  padding: 30vh 0 0;
}
.page-id-275 .interior-header-05 {
  background: url(img/h3.jpg) center center no-repeat;
  background-size: cover;
  padding: 30vh 0 0;
}
.page-id-279 .interior-header-05,
.page-id-718 .interior-header-05 {
  background: url(img/h4.jpg) center bottom no-repeat;
  background-size: cover;
  padding: 28vh 0;
}
.interior-header-05::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0, 0.3);
}
.interior-header-05 h1 {
  position: relative;
  color: #fff;
  margin-bottom: .25rem;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.interior-header-05 h2 {
  position: relative;
  color: #fff;
  font-size: 3rem;
  font-weight: 200;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.interior-header-05 p {
  position: relative;
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.9;
  max-width: 35rem;
}
.interior-header-05 .btn-wrap {
  position: relative;
    display: flex;
    margin-top: 6rem;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    padding: 4rem 0 1rem;
    border-right: 2px solid #fff;
}
.interior-header-05 a {
  position: relative;
  color: #fff;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  padding: .5rem;
  transition: all .3s ease;
  display: flex;
}
.interior-header-05 a:hover {
  color: #dfd08b;
}

@media only screen and (max-width: 991px) {
  .page-id-279 .interior-header-05 {
    padding: 17vh 0;
  }
  .interior-header-05,
  .page-id-354 .interior-header-05,
  .page-id-275 .interior-header-05 {
    padding: 15vh 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .interior-header-05,
  .page-id-354 .interior-header-05,
  .page-id-275 .interior-header-05,
  .page-id-279 .interior-header-05 {
    padding: 4rem 1rem;
  }
  .interior-header-05 h2 {
    max-width: 100%;
  }
}

/*============================ */
/* Action 20
============================== */
.interior-action-20 {
  padding: 4rem 0 3.5rem;
  background: #fff;
}
.interior-action-20 .flexbox {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.interior-action-20 .text-wrap {
  width: 60%;
  padding: 0 2rem;
}
.interior-action-20 .text-wrap h2 {
  color: #000;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.interior-action-20 .text-wrap h3 {
  color: var(--defaultMainDark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 3px;
}
.interior-action-20 .text-wrap p {
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.9;
  width: 30rem;
  color: var(--defaultMainDark);
  max-width: 100%;
}
.interior-action-20 .btn-wrap {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 40%;
}
.interior-action-20 .btn-wrap a {
  color: #000;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  border: 2px solid #000;
  padding: 0.7rem 2rem;
  transition: all .3s ease;
  display: flex;
  white-space: nowrap;
}
.interior-action-20 .btn-wrap a:hover {
  background: var(--defaultMainDark);
  color: #fff;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .interior-action-20 .flexbox {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 767px) {
  .interior-action-20 {
    padding: 2rem 0;
  }
  .interior-action-20 .flexbox {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .interior-action-20 .text-wrap {
    width: 100%;
    padding: 2rem 1rem 1rem;
  }
  .interior-action-20 .btn-wrap {
    margin-bottom: 2rem;
  }
}


/*============================ */
/* Team 05
============================== */
.hollow-team-05 {
  padding: 6rem 0 4rem;
  background: #ecebe8;
  position: relative;
}
.hollow-team-05 .flex-container {
  position: relative;
  flex-direction: column;
}
.hollow-team-05 .title-wrap {
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}
.hollow-team-05 .title-wrap h3 {
  color: #000;
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 200;
}
.hollow-team-05 .tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.hollow-team-05 .tabs li {
  text-align: center;
  margin-bottom: 1rem;
}
.hollow-team-05 .img-plus{width:250px;display:table;margin:0 auto}
.hollow-team-05 .tabs li img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  box-shadow: 0px 1px 10px rgba(0,0,0,0.35);
  margin-bottom: 1rem;
}
.hollow-team-05 .tabs li a:hover {
  transform: translateY(-10px);
}
.hollow-team-05 .tabs li a .img-plus {
  position: relative;
  display: inline-block;
}
.hollow-team-05 .tabs li a .img-plus i {
  position: absolute;
  bottom: 2.75rem;
  right: 1.5rem;
  color: var(--defaultMainAccent);
  pointer-events: none;
  font-size: 1.75rem;
  transition: all .5s ease;
}
.hollow-team-05 .tabs li a:hover .img-plus i {
  transform: rotate(360deg);
}
.hollow-team-05 .tabs li a p {
  position: relative;
  margin-bottom: 0;
  margin: 0 auto;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}
.hollow-team-05 .tabs li a h3 {
  font-size: 1.1rem;
  color: var(--defaultMainColor);
  font-family: var(--headingFont);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: .25rem;
}
.hollow-team-05 .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  display: none;
  cursor: pointer;
  z-index: 1000;
}
.hollow-team-05 .tabs-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 7px;
  width: 52rem;
  box-shadow: 0px 0px 7px #000;
  max-width: 90%;
  max-height: 72vh;
  overflow-y: auto;
  display: none;
  z-index: 2000;
  overscroll-behavior-y: contain;
}
.hollow-team-05 .tabs-popup .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--defaultMainAccent);
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 0 9px;
  cursor: pointer;
  transition: all .3s ease;
}
.hollow-team-05 .tabs-popup .close-btn:hover {
  opacity: .3;
}
.hollow-team-05 .tabs-content {
  background: #fff;
  padding: 2rem;
}
.hollow-team-05 .tabs-content .icon {
  margin: 0;
}
.hollow-team-05 .tabs-panel {
  position: relative;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: all .8s ease;
}
.hollow-team-05 .tabs-panel.active {
  max-height: unset;
  opacity: 1;
}
.hollow-team-05 .tabs-panel h2 {
  width: 100%;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--defaultMainColor);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.hollow-team-05 .tabs-panel h3 {
  width: 100%;
  color: var(--defaultMainColor);
  margin-bottom: 1rem;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}
.hollow-team-05 .tabs-panel p {
  margin-bottom: 1rem;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.8;
  color: #000;
}
.hollow-team-05 .tabs-panel .text-wrap {
  width: 70%;
}
.hollow-team-05 .tabs-panel .img-wrap {
  width: 25%;
}
.hollow-team-05 .tabs-panel .img-wrap img {
  width: 100%;
  object-fit: contain;
  margin: 0 auto 1rem;
}
.hollow-team-05 .tabs-panel .contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.hollow-team-05 .tabs-panel .contact-info a {
  font-size: 1.5rem;
  color: var(--defaultMainAccent);
  padding: .5rem;
  transition: all .3s ease;
}
.hollow-team-05 .tabs-panel .contact-info a:hover {
  color: var(--defaultMainDark);
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-team-05 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 767px) {
  .hollow-team-05 {
    padding: 3rem 0 2rem;
  }
  .hollow-team-05 .title-wrap {
    margin-bottom: 0;
  }
  .hollow-team-05 .tabs-content {
    padding: 1.75rem;
  }
  .hollow-team-05 .tabs li {
    width: 100%;
  }
  .hollow-team-05 .tabs li a {
    padding: 1rem;
    font-size: 1.4rem;
  }
  .hollow-team-05 .tabs-panel .img-wrap {
    width: 85%;
    display: flex;
    align-items: flex-end;
    padding: 1rem 0 0;
  }
  .hollow-team-05 .tabs-panel .img-wrap img {
    width: 100%;
    max-width: 100%;
    margin: 0 0 2rem;
  }
  .hollow-team-05 .tabs-panel .contact-info {
    width: 30%;
    margin: 0 1rem 0 -1rem;
    padding: .5rem;
    background: var(--defaultMainColor);
    flex-direction: column;
    align-items: center;
  }
  .hollow-team-05 .tabs-panel .contact-info a {
    margin-bottom: .5rem;
    font-size: 2rem;
    color: #fff;
  }
  .hollow-team-05 .tabs-panel .text-wrap {
    width: 100%;
    padding: 1rem 0;
  }
}

/*============================ */
/* Content 07
============================== */
.hollow-content-07 {
  position: relative;
  overflow: hidden;
  background: grey;
  padding: 12rem 0;
}
.hollow-content-07 img {
  position: absolute;
  min-height: 100%;
  min-width: 100%;
  max-width: initial;
  top: 63%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hollow-content-07 .number-wrap {
  position: relative;
  margin-top: -2rem;
}
.hollow-content-07 .number-wrap i {
    font-size: 6rem;
    margin-right: -4rem;
    position: relative;
    z-index: 1000;
    font-weight: 700;
    font-family: var(--accentFont);
    color: #A9C6D9;
}
.hollow-content-07 .caption {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  position: relative;
  background: #fff;
  padding: 2rem 2rem 1rem;
}
.hollow-content-07 .caption h1 {
  color: #FFF;
  margin-bottom: .5rem;
  font-weight: 700;
}
.hollow-content-07 .caption h3 {
  color: #000;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 4px;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.hollow-content-07 .caption p {
  color: #000;
  font-size: .82rem;
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 1rem;
  margin-bottom: 1rem;
}
.hollow-content-07 .caption p.sub-caption {
  color: #FFB600;
  font-weight: 400;
  font-size: 1.2rem;
}
.hollow-content-07 .caption p:last-of-type {
  margin-bottom: 2rem;
}
.hollow-content-07 a {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.hollow-content-07 a:before {
  background: #FFB600;
}
@media only screen and (min-width:768px) {
  .hollow-content-07 .caption {
    width: calc(100vw / 2);
  }
}
@media only screen and (min-width:1200px) {
  .hollow-content-07 .caption {
    width: calc(100vw / 2.5);
  }
}
@media only screen and (max-width:767px) {
  .hollow-content-07 {
    padding: 2rem 0;
  }
  .hollow-content-07 .caption h3 {
    font-size: 1.5rem;
  }
  .hollow-content-07 .number-wrap i {
    margin-right: -3rem;
  }
}

/*============================ */
/* Interior Content 02
============================== */
.interior-content-02 {
  padding: 6rem 0;
  background: #ecebe8;
}
.interior-content-02 .flex-container {
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.interior-content-02 .text-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-basis: 54%;
  background: #fff;
  z-index: 10;
  padding: 2rem;
}
.interior-content-02 .reverse .text-wrap {
  border-left: none;
  border-right: 2px solid var(--defaultMainAccent);
}
.interior-content-02 .title-wrap {
  margin-bottom: 1rem;
}
.interior-content-02 .title-wrap h3 {
  width: 100%;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--defaultMainColor);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.interior-content-02 .title-wrap h4 {
  width: 100%;
  color: var(--defaultMainColor);
  margin-bottom: 1rem;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}
.interior-content-02 .text-wrap h5 {
  margin-bottom: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  border-left: 4px solid var(--defaultMainAccent);
  padding: 0.25rem 0 0.25rem 0.5rem;
  line-height: 1.4;
}
.interior-content-02 .text-wrap p {
  color: #000;
  font-size: .82rem;
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 1rem;
}
.interior-content-02 .text-wrap ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}
.interior-content-02 .text-wrap ul li {
    display: list-item;
    list-style: disc;
    font-weight: 400;
    font-size: .82rem;
}
.interior-content-02 .text-wrap strong {
  font-weight: 700;
}
.interior-content-02 img {
  flex-basis: 50%;
  display: flex;
  object-fit: cover;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .interior-content-02 .flex-container {
    padding: 0 0 0 2rem;
    flex-direction: row-reverse;
  }
  .interior-content-02 .reverse {
    padding: 0 2rem 0 0;
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 992px) {
  .interior-content-02 .text-wrap {
    margin-left: -2rem;
  }
}
/*@media only screen and (max-width: 991px) {

}*/
@media only screen and (max-width: 767px) {
  .interior-content-02 {
    padding: 2rem 0;
  }
  .interior-content-02 .flex-container {
    flex-direction: column;
  }
  .interior-content-02 .flex-container > * {
    width: 100%;
  }
  .interior-content-02 .text-wrap, 
  .interior-content-02 .reverse .text-wrap {
    margin-bottom: 2rem;
    border: none;
  }
  .interior-content-02 img {
    max-height: 55vh;
    min-height: 16rem;
  }
  .interior-content-02 .text-wrap ul li {
    font-size: 1.3rem;
  }
  .interior-content-02 .text-wrap h5 {
    font-size: 1.5rem;
  }
}

/*============================ */
/* Tabs 01
============================== */
.hollow-tabs-01 {
  padding: 6rem 0 5rem;
  background: #ecebe8;
}
.hollow-tabs-01 .flex-container {
  flex-direction: column;
}
.hollow-tabs-01 .tabs {
  align-items: flex-start;
  background: var(--defaultMainAccent);
}
.hollow-tabs-01 .tabs li {
  margin: 0;
}
.hollow-tabs-01 .tabs li a {
  width: 100%;
  display: block;
  line-height: 1;
  padding: 1.5rem 1rem;
  border-radius: 2px 2px 0 0;
  background: var(--defaultMainAccent);
  color: #000;
  border-bottom: 1px solid #eee;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1rem;
  transition: all 0.1s ease-in-out;
}
.hollow-tabs-01 .tabs li.active a,
.hollow-tabs-01 .tabs li a:hover {
  opacity: 1;
  background: #fff;
}
.hollow-tabs-01 .tabs-content {
  position: relative;
  z-index: 2;
  padding: 2rem 2rem;
  border-radius: 0 4px 4px 4px;
  background: #fff;
  border: none;
}
.hollow-tabs-01 .tabs-content img {
  margin-bottom: 1rem;
  margin-right: 1rem;
  max-width: 100%;
 }
.hollow-tabs-01 .tabs-content .image-wrapper img {
  margin: 0;
}
.hollow-tabs-01 .tabs-content .icon {
  margin: 0;
}
.hollow-tabs-01 .tabs-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all .8s ease;
}
.hollow-tabs-01 .tabs-panel.active {
  max-height: unset;
  opacity: 1;
}
.hollow-tabs-01 .tabs-panel h3 {
  font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.5rem;
    justify-content: center;
    text-align: center;
}
.hollow-tabs-01 .tabs-panel h4 {
  color: #000;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: flex;
  margin: 0 auto 2rem;
  line-height: 1.4;
  text-align: center;
  justify-content: center;
}
.hollow-tabs-01 .tabs-panel p {
  margin-bottom: 1rem;
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.9;
}
.hollow-tabs-01 .tabs-panel ul {
  margin-bottom: 1rem;
}
.hollow-tabs-01 .tabs-panel ul li {
  font-weight: 400;
}
.hollow-tabs-01 .tabs-panel ul li i {
  color: var(--defaultMainAccent);
  padding: .15rem .5rem 0 0;
}
.hollow-tabs-01 .tabs-panel ul li p {
  display: inline-block;
  max-width: 90%;
  vertical-align: middle;
}
.hollow-tabs-01 .tabs-panel .nextgen_pro_thumbnail_grid {
  text-align: left;
}
.hollow-tabs-01 .form-wrap input, 
.hollow-tabs-01 .form-wrap textarea {
  font-family: 'Lato';
  font-size: 1rem;
  width: 100%;
  border: 1px solid #fff;
  background: rgba(0, 127, 255, 0.5);
  padding: .6rem;
  margin-bottom: 1rem;
  color: #FFF;
  font-weight: 300;
}
.hollow-tabs-01 .form-wrap .submit-wrapper input {
  background: #007FFF;
  border: none;
  padding: .5rem 1.5rem;
  color: #FFF;
  font-family: 'Lato';
  cursor: pointer;
  font-weight: 300;
  font-size: 1rem;
  width: unset;
  transition: all .3s ease;
} 
.hollow-tabs-01 .form-wrap .submit-wrapper input:hover {
  background: #006dda;
}
.hollow-tabs-01 ::-webkit-input-placeholder {
  color: #fff;
}
.hollow-tabs-01 ::-moz-placeholder {
  color: #fff;
}
.hollow-tabs-01 :-ms-input-placeholder {
  color: #fff;
}
.hollow-tabs-01 :-moz-placeholder {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .hollow-tabs-01 .flex-container {
    flex-direction: row;
  }
  .hollow-tabs-01 .tabs {
    flex: 1;
  }
   .hollow-tabs-01 .tabs-content {
    flex: 2;
   }
}
@media only screen and (max-width: 767px) {
  .hollow-tabs-01 {
    padding: 2rem 0;
  }
  .hollow-tabs-01 .tabs-content {
    padding: 1rem;
  }
  .hollow-tabs-01 .tabs-content img {
    max-width: 100%;
  }
  .hollow-tabs-01 .tabs li a {
    padding: 1rem;
    font-size: 1.4rem;
  }
  .hollow-tabs-01 .tabs-panel h4,
  .hollow-tabs-01 .tabs-panel ul li {
    font-size: 1.3rem;
  }
  .hollow-tabs-01 .tabs-panel ul li i {
    padding-right: .5rem;
  }
}


/*============================ */
/* Tabs 02
============================== */
.hollow-tabs-02,
.hollow-tabsz {
  padding: 6rem 0 5rem;
  background: #ecebe8;
}
.hollow-tabs-02 .flex-container,
.hollow-tabsz .flex-container {
  flex-direction: column;
}
.hollow-tabs-02 .tabs,
.hollow-tabsz .tabs {
  align-items: flex-start;
  background: var(--defaultMainAccent);
}
.hollow-tabs-02 .tabs li,
.hollow-tabsz .tabs li {
  margin: 0;
}
.hollow-tabs-02 .tabs li a,
.hollow-tabsz .tabs li a {
  width: 100%;
  display: block;
  line-height: 1;
  padding: 1.5rem 1rem;
  border-radius: 2px 2px 0 0;
  background: var(--defaultMainAccent);
  color: #000;
  border-bottom: 1px solid #eee;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1rem;
  transition: all 0.1s ease-in-out;
}
.hollow-tabs-02 .tabs li.active a,
.hollow-tabs-02 .tabs li a:hover,
.hollow-tabsz .tabs li.active a,
.hollow-tabsz .tabs li a:hover {
  opacity: 1;
  background: #fff;
}
.hollow-tabs-02 .tabs-content,
.hollow-tabsz .tabs-content {
  position: relative;
  z-index: 2;
  padding: 2rem 2rem;
  border-radius: 0 4px 4px 4px;
  background: #fff;
  border: none;
}
.hollow-tabs-02 .tabs-content img,
.hollow-tabsz .tabs-content img {
  margin-bottom: 1rem;
  margin-right: 1rem;
  max-width: 100%;
 }
.hollow-tabs-02 .tabs-content .image-wrapper img,
.hollow-tabsz .tabs-content .image-wrapper img {
  margin: 0;
}
.hollow-tabs-02 .tabs-content .icon
.hollow-tabsz .tabs-content .icon {
  margin: 0;
}
.hollow-tabs-02 .tabs-panel,
.hollow-tabsz .tabs-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all .8s ease;
}
.hollow-tabs-02 .tabs-panel.active,
.hollow-tabsz .tabs-panel.active {
  max-height: unset;
  opacity: 1;
}
.hollow-tabs-02 .tabs-panel h3,
.hollow-tabsz .tabs-panel h3 {
  font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.5rem;
    justify-content: center;
    text-align: center;
}
.hollow-tabs-02 .tabs-panel h4,
.hollow-tabsz .tabs-panel h4 {
  color: #000;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: flex;
  margin: 0 auto 2rem;
  line-height: 1.4;
  text-align: center;
  justify-content: center;
}
.hollow-tabs-02 .tabs-panel p,
.hollow-tabsz .tabs-panel p {
  margin-bottom: 1rem;
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.9;
}
.hollow-tabs-02 .tabs-panel ul,
.hollow-tabsz .tabs-panel ul {
  margin-bottom: 1rem;
}
.hollow-tabs-02 .tabs-panel ul li,
.hollow-tabsz .tabs-panel ul li {
  font-weight: 400;
}
.hollow-tabs-02 .tabs-panel ul li i,
.hollow-tabsz .tabs-panel ul li i {
  color: var(--defaultMainAccent);
  padding: .15rem .5rem 0 0;
}
.hollow-tabs-02 .tabs-panel ul li p,
.hollow-tabsz .tabs-panel ul li p {
  display: inline-block;
  max-width: 90%;
  vertical-align: middle;
}
.hollow-tabs-02 .tabs-panel .nextgen_pro_thumbnail_grid,
.hollow-tabsz .tabs-panel .nextgen_pro_thumbnail_grid {
  text-align: left;
}
.hollow-tabs-02 .form-wrap input, 
.hollow-tabs-02 .form-wrap textarea {
  font-family: 'Lato';
  font-size: 1rem;
  width: 100%;
  border: 1px solid #fff;
  background: rgba(0, 127, 255, 0.5);
  padding: .6rem;
  margin-bottom: 1rem;
  color: #FFF;
  font-weight: 300;
}
.hollow-tabs-02 .form-wrap .submit-wrapper input {
  background: #007FFF;
  border: none;
  padding: .5rem 1.5rem;
  color: #FFF;
  font-family: 'Lato';
  cursor: pointer;
  font-weight: 300;
  font-size: 1rem;
  width: unset;
  transition: all .3s ease;
} 
.hollow-tabs-02 .form-wrap .submit-wrapper input:hover {
  background: #006dda;
}
.hollow-tabs-02 ::-webkit-input-placeholder {
  color: #fff;
}
.hollow-tabs-02 ::-moz-placeholder {
  color: #fff;
}
.hollow-tabs-02 :-ms-input-placeholder {
  color: #fff;
}
.hollow-tabs-02 :-moz-placeholder {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .hollow-tabs-02 .flex-container,
  .hollow-tabsz .flex-container {
    flex-direction: row;
  }
  .hollow-tabs-02 .tabs,
  .hollow-tabsz .tabs {
    flex: 1;
  }
   .hollow-tabs-02 .tabs-content,
   .hollow-tabsz .tabs-content {
    flex: 2;
   }
}
@media only screen and (max-width: 767px) {
  .hollow-tabs-02,
  .hollow-tabsz {
    padding: 2rem 0;
  }
  .hollow-tabs-02 .tabs-content,
  .hollow-tabsz .tabs-content {
    padding: 1rem;
  }
  .hollow-tabs-02 .tabs-content img,
  .hollow-tabsz .tabs-content img {
    max-width: 100%;
  }
  .hollow-tabs-02 .tabs li a,
  .hollow-tabsz .tabs li a {
    padding: 1rem;
    font-size: 1.4rem;
  }
  .hollow-tabs-02 .tabs-panel h4,
  .hollow-tabs-02 .tabs-panel ul li,
  .hollow-tabsz .tabs-panel h4,
  .hollow-tabsz .tabs-panel ul li {
    font-size: 1.3rem;
  }
  .hollow-tabs-02 .tabs-panel ul li i,
  .hollow-tabsz .tabs-panel ul li i {
    padding-right: .5rem;
  }
}

/*============================ */
/* Hollow Content 19
============================== */
.hollow-content-19 {
  padding: 2rem 0;
}
.hollow-content-19 .flex-container,
.hollow-content-19 .flex-container-fluid {
  position: relative;
  /* background: white; */
  /* border-radius: 2rem; */
  overflow: hidden;
  /* box-shadow: 0 1px 4px rgba(0,0,0,.04); */
}
.hollow-content-19 .text-wrap {
  position: relative;
  padding: 2rem 2rem 3rem;
  background: var(--defaultMainDark);
  display: flex;
  flex-flow: column;
  flex: 1;
}
.hollow-content-19 .text-wrap h2 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 3rem;
}
.hollow-content-19 .text-wrap span.accent {
  font-weight: 700;
  color: var(--defaultMainColor);
}
.hollow-content-19 .text-wrap h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: var(--headingFont);
}
.hollow-content-19 .text-wrap h4 {
  color: var(--defaultMainColor);
  font-size: 1.2rem;
  width: 80%;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hollow-content-19 .text-wrap p {
  font-size: 1.1rem;
  font-weight: 300;
  color: #fff;
}
.hollow-content-19 .text-wrap ul {
  display: block;
}
.hollow-content-19 .text-wrap ul li i {
  color: var(--defaultMainAccent);
  vertical-align: top;
  padding-right: .75rem;
}
.hollow-content-19 .text-wrap ul li p {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 0;
}
.hollow-content-19 .link-wrap {
  position: absolute;
  bottom: 1rem;
  transform: translateX(35%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1;
  z-index: 1;
}
.hollow-content-19 .link-wrap a {
  display: flex;
  align-items: center;
}
.hollow-content-19 .text-wrap a span {
  color: #fff;
  transition: all .3s ease;
  padding: 1rem;
}
.hollow-content-19 .text-wrap a:hover span {
  color: var(--defaultMainColor);
}
.hollow-content-19 .text-wrap a hr {
  border: none;
  margin: 0;
  height: 2px;
  background: white;
  width: 100px;
  transition: all .3s ease;
}
.hollow-content-19 .text-wrap a:hover hr {
  width: 115px;
  color: var(--defaultMainColor);
  margin-left: .75rem;
}
.hollow-content-19 .img-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.hollow-content-19 .img-wrap img {
  display: flex;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}
.hollow-content-19 .btn-wrap a {
  padding: .4rem 1rem;
  background: var(--defaultMainAccent);
  border-radius: 6px;
  margin: 1rem 0 0;
  display: inline-block;
  transition: all .2s ease;
}
.hollow-content-19 .btn-wrap a:hover {
  background: var(--defaultMainDark);
}
@media only screen and (min-width: 992px) {
  .hollow-content-19 .img-wrap {
    max-width: 500px;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-content-19 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-19 .flex-container,
  .hollow-content-19 .flex-container-fluid {
    flex-flow: column;
  }
  .hollow-content-19 .img-wrap {
    height: 30rem;
    order: 2;
  }
  .hollow-content-19 .img-wrap img {
    position: relative;
  }
  .hollow-content-19 .text-wrap {
    padding: 2rem;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-19 {
    padding: 2rem 0;
  }
  .hollow-content-19 .flex-container, .hollow-content-19 .flex-container-fluid {
    border-radius: 0;
  }
  .hollow-content-19 .text-wrap {
    padding: 2rem 2rem 1rem;
    /*     border-radius: 2rem 2rem 0 0; */
  }
  .hollow-content-19 .text-wrap h2 {
    font-size: 2.75rem;
  }
  .hollow-content-19 .text-wrap h3 {
    font-size: 1.75rem;
  }
  .hollow-content-19 .text-wrap h4 {
    font-size: 1.5rem;
  }
  .hollow-content-19 .text-wrap a span {
    font-size: 1.3rem;
  }
  .hollow-content-19 .link-wrap {
    position: relative;
    bottom: 0;
  }
  .hollow-content-19 .link-wrap a {
    margin-top: 0;
  }
  .hollow-content-19 .img-wrap {
/*     border-radius: 0 0 2rem 2rem; */
  }
}


.interior-content-002 {
  padding: 0 0 2rem;
}
.interior-content-002 .box {
  padding: 2rem;
  background: var(--defaultMainColor);
/*   border-radius: 2rem; */
}
.interior-content-002 h3 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: var(--headingFont);
  color: #fff;
}
.interior-content-002 p {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 300;
}
.interior-content-002 p.accent {
  font-family: var(--headingFont);
  font-weight: 700;
  font-size: 1.2rem;
  background: var(--defaultMainColor);
  padding: .2rem .5rem;
  border-radius: 3rem;
  text-align: center;
}
.interior-content-002 strong {
  font-family: var(--headingFont);
  font-size: 1.4rem;
  color: var(--defaultMainAccent);
}
.interior-content-002 ul {
  display: block;
}
.interior-content-002 ul li i {
  color: var(--defaultMainAccent);
  vertical-align: top;
  font-size: 1.2rem;
  padding-right: .75rem;
}
.interior-content-002 ul.options li i {
  font-size: 3rem;
  color: #fff;
}
.interior-content-002 ul li p {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 0;
}
.interior-content-002 ul.options li p {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .interior-content-002 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 767px) {
  .interior-content-002 {
    padding: 0 0 2rem;
  }
  .interior-content-002 ul.options li {
    flex-wrap: wrap;
  }
  .interior-content-002 ul.options li i {
    width: 100%;
    margin-bottom: .5rem;
  }
  .interior-content-002 ul.options li:last-of-type p {
    margin-bottom: 1rem;
  }
  .interior-content-002 p.accent {
    border-radius: 1rem;
  }
}



/*============================ */
/* Interior Portfolio
============================== */
.interior-portfolio {
  padding: 0 0 2rem;
}
.interior-portfolio a img {
  transition: all .3s ease;
}
.interior-portfolio a img:hover {
  opacity: .85;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .interior-portfolio .container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 767px) {
  .interior-portfolio {
    padding: 0 0 2rem;
  }
}

/*============================ */
/* Interior Testimonials 03
============================== */
.interior-testimonials-03 {
  padding: 3rem 0 1rem;
}
.interior-testimonials-03 .flex-container,
.interior-testimonials-03 .flex-container-fluid {
  flex-wrap: wrap;
}
.interior-testimonials-03 h2 {
  font-size: 2rem;
  color: var(--defaultMainColor);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}
.interior-testimonials-03 .box-wrap {
  width: 30%;
  text-align: center;
  margin: 0 1.5% 2rem;
  padding: 1.5rem;
  border: 5px solid #ececec;
  border-radius: 12px;
}
.interior-testimonials-03 .box-wrap p {
  color: dimgrey;
  font-weight: 400;
  font-size: 1.1rem;
}
.interior-testimonials-03 .box-wrap i {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--defaultMainAccent);
}
.interior-testimonials-03 .box-wrap p.client-name {
  color: var(--defaultMainColor);
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--headingFont);
  margin-bottom: .5rem;
}
.interior-testimonials-03 .box-wrap p.client-city {
  color: var(--defaultMainColor);
  font-weight: 400;
  font-size: 1.1rem;
}
.interior-testimonials-03 .btn-wrap {
  text-align: center;
}
.interior-testimonials-03 .btn-wrap a {
  display: inline-block;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background: var(--defaultMainColor);
  border-radius: 25px;
  padding: .6rem 1rem;
  transition: all .3s ease;
}
.interior-testimonials-03 .btn-wrap a:hover {
  background: var(--defaultMainDark);
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .interior-testimonials-03 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width:991px) {
  .interior-testimonials-03 .box-wrap {
    width: 48%;
    margin: 0 1% 2rem;
  }
}
@media only screen and (max-width:767px) {
  .interior-testimonials-03 {
    padding: 2rem 0 0;
  }
  .interior-testimonials-03 h2 {
    margin-bottom: 2rem;
  }
  .interior-testimonials-03 .box-wrap {
    width: 100%;
    margin: 0 0 2rem;
  }
}


/*============================ */
/* Interior Maps 01
============================== */
.interior-maps-01 {
  padding: 6rem 0 4rem;
}
.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(--defaultMainAccent);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.4;
  font-family: var(--headingFont);
  font-weight: 700;
}
.interior-maps-01 h2 {
  color: var(--defaultMainColor);
  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;
  color: dimgrey;
}
.interior-maps-01 .list-wrap ul li i {
  color: dimgrey;
  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: rgba(0,0,0,.3);
  border: 2px solid var(--defaultMainAccent);
  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: 1199px) and (min-width: 992px) {
  .interior-maps-01 .flex-container {
    width: calc(100% - 4rem);
  }
}
@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: 3rem 0 2rem;
  }
  .interior-maps-01 .flex-container {
    flex-direction: column;
  }
  .interior-maps-01 .flex-container > * {
    width: 100%;
  }
  .interior-maps-01 .text-wrap {
    margin-bottom: 1rem;
  }
  .interior-maps-01 .list-wrap {
    width: 100%;
  }
  .interior-maps-01 .list-wrap ul li {
    font-size: 1.2rem;
  }
  .interior-maps-01 .list-wrap .list-1 {
    margin-right: 0rem;
  }
  .interior-maps-01 .list-wrap .list-1,
  .interior-maps-01 .list-wrap .list-2 {
    width: 50%;
  }
  .interior-maps-01 img {
    order: 2;
  }
  .interior-maps-01 .map-wrap iframe {
    height: 65vh;
  }
}

/*============================ */
/* Interior 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(--defaultMainColor);
  margin-bottom: 1rem;
}
.interior-careers-01 .content-wrap h4 {
  color: var(--defaultMainAccent);
}
.interior-careers-01 .content-wrap hr {
  width: 10%;
  margin: 1rem auto 2rem;
  border: 2px solid var(--defaultMainDark);
}
.interior-careers-01 .content-wrap p {
  margin-bottom: 1rem;
}
.interior-careers-01 .form-wrap {
  width: 100%;
}
.interior-careers-01 .form-wrap form {
  background: #dedede;
  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(--defaultMainDark);
}
.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;
  border-radius: 4px;
}
.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(--defaultMainDark);
  color: var(--defaultMainDark);
}
.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(--defaultMainDark);
  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(--defaultMainAccent);
  padding: .5rem 2.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all .3s ease;
}
.interior-careers-01 .submit-wrapper input[type="submit"]:hover {
  background: var(--defaultMainDark);
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .interior-careers-01 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 767px) {
  .interior-careers-01 {
    padding: 3rem 0 2rem;
  }
  .interior-careers-01 .content-wrap {
    margin-bottom: 2rem;
  }
  .interior-careers-01 .form-wrap form {
    padding: 1.5rem 1rem;
  }
}

/*============================ */
/* Contact 17
============================== */
.hollow-contact-17 {
  position: relative;
}
/* Image & Contact Form Block */
.hollow-contact-17 .contact-wrap {
  background: #ecebe8;
  position: relative;
}
.hollow-contact-17 .flexbox {
  justify-content: center;
  flex-wrap: wrap;
  width: calc(100% - 4rem);
}
.hollow-contact-17 .img-wrap {
  position: relative;
  width: 46%;
  padding: 0 4rem;
}
.hollow-contact-17 .img-wrap img {
  position: relative;
  width: 90%;
  height: unset;
  object-fit: cover;
  z-index: 300;
  margin: -2rem 0 0;
}
.hollow-contact-17 .form-wrap {
  position: relative;
  width: 54%;
  max-width: 52rem;
  padding: 6rem 4rem 7rem 0;
  background: #ecebe8;
  z-index: 100;
}
.hollow-contact-17 .text-wrap {
  margin-bottom: 2rem;
}
.hollow-contact-17 .text-wrap h2 {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.hollow-contact-17 .text-wrap h3 {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom:1rem;
  text-transform: uppercase;
}
.hollow-contact-17 .text-wrap p {
  color: #000;
  font-size: 1.1rem;
}
.hollow-contact-17 .form-wrap form {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.hollow-contact-17 .form-wrap .wpcf7-form-control-wrap {
  width: 100%;
}
.hollow-contact-17 .form-wrap .your-email,
.hollow-contact-17 .form-wrap .your-phone {
  width: 49%;
}
.hollow-contact-17 .form-wrap form input,
.hollow-contact-17 .form-wrap form select,
.hollow-contact-17 .form-wrap form textarea {
  margin-bottom: 1rem;
  padding: .75rem;
  font-size: .84rem;
}
.hollow-contact-17 .form-wrap form textarea {
  height: 9rem;
}
.hollow-contact-17 .form-wrap form .wpcf7-form-control-wrap[data-name="how-involved"] .wpcf7-list-item {
	width:100%;
}
.hollow-contact-17 .form-wrap form .wpcf7-form-control-wrap[data-name="project-type"] .wpcf7-list-item,
.hollow-contact-17 .form-wrap form .wpcf7-form-control-wrap[data-name="design-type"] .wpcf7-list-item,
.hollow-contact-17 .form-wrap form .wpcf7-form-control-wrap[data-name="how-hear"] .wpcf7-list-item,
.hollow-contact-17 .form-wrap form .wpcf7-form-control-wrap[data-name="money-design"] .wpcf7-list-item {
	width:50%;
}
.hollow-contact-17 .form-wrap [data-class="wpcf7cf_group"] { width:100%; }
.hollow-contact-17 .form-wrap form input[type="submit"] {
  width: 100%;
  justify-content: center;
  text-align: center;
  background: transparent;
  border: none;
  color: #000;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  border: 2px solid #000;
  padding: 0.7rem 2rem;
  max-width: max-content;
  margin: 0;
  transition: all .3s ease;
}
.hollow-contact-17 .form-wrap form input[type="submit"]:hover {
  background: #000;
  color: #fff;
  border-color: #ooo;
}
/* Associate Logos & Reviews Block */
.hollow-contact-17 .associate-wrap {
  position: relative;
  background: linear-gradient(90deg, #fff 50%, #ededed 50%);
  margin: -2rem 0 0;
  z-index: 200;
}
.hollow-contact-17 .associate-wrap .flexbox {
  width: 100%;
}
.hollow-contact-17 .associate-logos {
  width: 47%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
}
.hollow-contact-17 .associate-logos .logo-wrap {
  width: 25%;
  height: 8rem;
  padding: 1rem;
}
.hollow-contact-17 .associate-logos .logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hollow-contact-17 .testimonial-wrap {
  width: 53%;
  padding: 4rem;
  background: #ededed;
  margin: -4rem 0 0;
  border-radius: 2rem 0 0 0;
}
.hollow-contact-17 .title-wrap {
  margin-bottom: 1.5rem;
}
.hollow-contact-17 .title-wrap h2 {
  font-size: 1.3rem;
  color: var(--defaultMainAccent);
}
.hollow-contact-17 .title-wrap h3 {
  font-size: 2rem;
  color: var(--defaultMainColor);
  margin-bottom: 1rem;
  font-weight: 600;
}
.hollow-contact-17 .slider-wrap {
  visibility: hidden;
}
.hollow-contact-17 .slider-wrap.slick-initialized {
  visibility: visible;
}
.hollow-contact-17 .slider-wrap .slide {

}
.hollow-contact-17 .slider-wrap .slick-prev,
.hollow-contact-17 .slider-wrap .slick-next {
  top: unset;
  bottom: -2rem;
  left: unset;
  right: 0;
  transform: none;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all .3s ease;
}
.hollow-contact-17 .slider-wrap .slick-prev::before,
.hollow-contact-17 .slider-wrap .slick-next::before {
  color: var(--defaultMainColor);
  font-size: 1.5rem;
  font-family: 'Font Awesome 5 Pro', 'FontAwesome';
  line-height: 0;
  content: '\f061';
}
.hollow-contact-17 .slider-wrap .slick-prev::before {
  content: '\f060';
}
.hollow-contact-17 .slider-wrap .slick-prev:hover,
.hollow-contact-17 .slider-wrap .slick-next:hover {
  background: #fff;
  box-shadow: 0 3px 15px rgba(0,0,0,.1);
}
.hollow-contact-17 .slider-wrap .slick-prev {
  right: 3.5rem;
}
.hollow-contact-17 .slider-wrap .review {
  margin-bottom: 1.5rem;
}
.hollow-contact-17 .slider-wrap .review p {
  color: #000;
  font-size: 1.1rem;
}
.hollow-contact-17 .slider-wrap .client {

}
.hollow-contact-17 .slider-wrap .client .name {
  display: block;
  margin-bottom: .25rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.hollow-contact-17 .slider-wrap .client .position {
  display: block;
  font-size: .9rem;
  line-height: 1.3;
}
@media only screen and (max-width: 1600px){
  .hollow-contact-17 .associate-logos .logo-wrap {
    width: 47%;
    height: 8rem;
  }
}
@media only screen and (max-width: 991px){
  .hollow-contact-17 .bg-overlay {
    height: 50%;
  }
  .hollow-contact-17 .img-wrap {
    padding: 0 1rem;
  }
  .hollow-contact-17 .img-wrap img {
    width: 85%;
    height: 50vw;
  }
  .hollow-contact-17 .img-wrap .accentbox {
    top: 7.2rem;
  }
}
@media only screen and (max-width: 767px){
  .hollow-contact-17 .contact-wrap {
    padding: 2rem 0 0;
  }
  .hollow-contact-17 .flexbox {
    flex-direction: column-reverse;
  }
  .hollow-contact-17 .flexbox,
  .hollow-contact-17 .form-wrap,
  .hollow-contact-17 .img-wrap,
  .hollow-contact-17 .associate-logos,
  .hollow-contact-17 .testimonial-wrap {
    width: 100%;
  }
  .hollow-contact-17 .bg-overlay {
    height: 50%;
    width: 100%;
  }
  .hollow-contact-17 .form-wrap {
    padding: 2rem;
  }
  .hollow-contact-17 .form-wrap form input,
  .hollow-contact-17 .form-wrap form select,
  .hollow-contact-17 .form-wrap form textarea {
    font-size: 1.2rem;
  }
  .hollow-contact-17 .img-wrap img {
    top: 0;
    height: 36rem;
    width: 100%;
    margin: 0rem 0 1rem;
  }
  .hollow-contact-17 .associate-wrap {
    background: #fff;
  }
  .hollow-contact-17 .associate-wrap .flexbox {
    padding: 0;
  }
  .hollow-contact-17 .associate-logos {
    padding: 1rem;
  }
  .hollow-contact-17 .associate-logos .logo-wrap {
    width: 50%;
    height: 8rem;
  }
  .hollow-contact-17 .testimonial-wrap {
    margin: 0;
    border-radius: 0;
    padding: 2rem 2rem 4rem;
  }
  .hollow-contact-17 .title-wrap h2 {
    font-size: 1.5rem;
  }
  .hollow-contact-17 .text-wrap h3 {
    font-size: 1.5rem;
  }
  .hollow-contact-17 .slider-wrap .slick-prev, 
  .hollow-contact-17 .slider-wrap .slick-next {
    bottom: -3rem;
  }
  .hollow-contact-17 .slider-wrap .client .name {
    font-size: 1.3rem;
  }
  .hollow-contact-17 .slider-wrap .client .position {
    font-size: 1.2rem;
  }
}
.review-btn-wrap {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  max-width: 100%;
 /*  width: 650px;  */
  z-index: 9999;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translate3d(-100%, 0, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  transition: transform 0.2s;
  box-shadow: 0 2px 5px -2px #000;
  -webkit-font-smoothing: antialiased;
}
.review-btn-wrap .review-btn {
  position: absolute;
  left: 100%;
  bottom: 0;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  cursor: pointer;
  background: #000;
  color: #fff;
  box-shadow: 0 2px 5px -2px #000;
  transition: background 0.2s;
  font-size: 20px;
  padding: 5px 15px;
  white-space: nowrap;
  text-decoration: none;
}
.review-btn-wrap .review-btn:hover {background:#252525;}
.review-btn-wrap .review-btn span {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  text-align: center;
}
.review-btn-wrap .review-btn .stars {text-align: center;}
.review-btn-wrap .review-btn .stars i.fa {font-size: 16px; color: #ffff00; line-height: 1.5;}

.big-tuna-review-plus li.review button.button.review-toggle {
	background: #000!important;
}
.big-tuna-review-plus li.review button.button.review-toggle:hover {
    background: #252525!important;
}