/*
  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: #303332;
  --defaultMainDark: #212423;
  --defaultMainAccent: #d0171d;
  --accentLight: #ff171f;
  --defaultGrey: #646464;
  
  /* Font Variables */
  --headingFont: "Poppins", sans-serif;
  --mainFont: "Poppins", sans-serif;
}

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

@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .flex-container {
    width: calc(100% - 4rem);
  }
}
/*============================ */
/* Header-12
============================== */
.hollow-header-12 {
  position: relative;
  z-index: 9000;
  color: #f6f6f6;
  width: 100%;
  background: linear-gradient(#ffffff, #fffc, transparent);
}
.hollow-header-12.sticky {
  position: fixed;
  top: 0;
  border: none;
  background: #fff;
}
.hollow-header-12 .logo img {
  position: relative;
  max-width: 100%;
  padding: 1rem 0 0;
  transition: all .3s ease;
}
.hollow-header-12.sticky .logo img {
  max-width: 110px;
  margin: .2rem auto;
}
.hollow-header-12 .nav-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 1rem 0;
}
.hollow-header-12.sticky .nav-wrap {
  padding: 0;
}
.hollow-header-12 nav {
  display: inline-block;
  transition: all .3s ease;
}
.hollow-header-12 nav ul {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hollow-header-12 nav a {
  padding: .4rem 1rem;
  display: block;
  color: #000;
  font-size: .9rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2rem;
  transition: all 0.3s ease;
}
/* .hollow-header-12 nav .phone-number a {
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--defaultMainColor);
  color: #fff;
} */
.hollow-header-12 nav .phone-number i {
  padding-right: .5rem;
}
.hollow-header-12 nav .menu-item {
  margin-bottom: 0;
}
.hollow-header-12.sticky nav a {
  padding: 0.3rem 1rem;
}
.hollow-header-12 .mobile-toolbar nav a.mobile-icon {
  font-size: 2rem;
}
/* NAV LEVEL ONE */
.hollow-header-12 .menu-item.open>a, 
.hollow-header-12 .menu-item:hover>a, 
.hollow-header-12 .menu-item.active a, 
.hollow-header-12 .menu-item.active:hover>a {
  color: var(--defaultMainAccent);
}
.hollow-header-12 .menu-item .siteLogo,
.hollow-header-12 .menu-item.open>a.siteLogo, 
.hollow-header-12 .menu-item:hover>a.siteLogo, 
.hollow-header-12 .menu-item.active a.siteLogo, 
.hollow-header-12 .menu-item.active:hover>a.siteLogo {
  padding: 0 0.5rem;
  margin: 0;
  background: transparent;
}
.hollow-header-12 .menu-item .siteLogo img {
  display: block;
  max-width: 100%;
  width: 16rem;
  /* height: 7rem; */
  object-fit: contain;
  transition: all .3s ease;
  background: #fff;
  padding: 1rem;
}
.hollow-header-12.sticky .menu-item .siteLogo img {
  height: 4.5rem;
  /* margin-bottom: -3rem; */
  /* margin-top: 1rem; */
  /* padding: .5rem; */
}
/* NAV LEVEL TWO */
.hollow-header-12 .dropdown-menu {
  margin-top: 0px;
  border-radius: 0;
  border: none;
  padding: 0;
  display: none;
}
.hollow-header-12 nav .dropdown-menu a {
  background: #eee;
}
.hollow-header-12 .dropdown-menu>li:hover>a, 
.hollow-header-12 .dropdown-menu>li.active>a, 
.hollow-header-12 .dropdown-menu>.active>a:hover, 
.hollow-header-12 .dropdown-menu>.active>a:focus {
  color: var(--defaultMainDark);
}
.hollow-header-12 .dropdown .caret {
  padding-left: .35rem;
}
.hollow-header-12 .dropdown .caret::before {
  content: '\f0d7';
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
}
/* NAV MOBILE */
.hollow-header-12 nav #mobile {
  position: relative;
  height: 2rem;
  width: 2.5rem;
  text-align: center;
  background: none;
  outline: none;
  border: none;
  margin-right: 1rem;
}
.hollow-header-12 .hamburger {
  display: block;
  position: relative;
  width: 2.25rem;
  height: 100%;
  background: #FFF;
  z-index: 2;
}
.hollow-header-12 .hamburger:hover {
  cursor: pointer;
}
.hollow-header-12 .hamburger:before,
.hollow-header-12 .hamburger:after {
  content: '';
  position: absolute;
  top: calc(100% / 3 - 4px);
  left: -2px;
  width: calc(100% + 4px);
  height: 6px;
  background: var(--defaultMainColor);
  transition-property: transform, top;
  transition-duration: .2s;
  transition-timing-function: ease;
  transform: translateZ(0);
}
.hollow-header-12 .hamburger:after {
  bottom: calc(100% / 3 - 4px);
  top: unset;
}
header.hollow-header-12.header-menu-open #mobile,
header.hollow-header-12.header-menu-open #mobile .hamburger {
  background: transparent;
}
header.hollow-header-12.header-menu-open #mobile>.hamburger:before,
header.hollow-header-12.header-menu-open #mobile>.hamburger:after {
  top: 40%;
  background: #FFF;
}
header.hollow-header-12.header-menu-open #mobile>.hamburger:before {
  transform: rotate(45deg);
}
header.hollow-header-12.header-menu-open #mobile>.hamburger:after {
  transform: rotate(-45deg);
}
/* MOBILE TOOLBAR */
.hollow-header-12 .mobile-toolbar {
  display: flex;
  align-items: center;
  width: 100%;
  padding-right: 0.7rem;
}
.hollow-header-12 .mobile-toolbar a {
  color: #fff;
  padding: .5rem 1rem;
}
.hollow-header-12 .mobile-toolbar a:hover {
  color: var(--defaultMainAccent);
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-header-12 .main-content .flex-container {
    width: calc(100% - 4rem);
  }
  .hollow-header-12 nav a {
    /* text-transform: capitalize; */
  }
}
@media screen and (min-width: 992px) {
  .hollow-header-12 .js-only {
    display: none;
  }
  .hollow-header-12:not(.sticky) {
    min-height: 8rem;
  }
  .hollow-header-12 nav #mobile,
  .hollow-header-12 .mobile-toolbar {
    display: none;
  }
  .hollow-header-12 nav .menu-item {
    position: relative;
  }
  .hollow-header-12 nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 16rem;
    max-width: max-content;
    display: none;
  }
  .hollow-header-12 nav .dropdown-menu .menu-item a {
    padding-right: 2rem;
  }
  .hollow-header-12 nav .dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0;
  }
  .hollow-header-12 nav .dropdown-menu .dropdown > a::after {
    content: '\f0da';
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    font-weight: 900;
    right: 1rem;
  }
  .hollow-header-12 nav .menu-item-has-children:hover>ul.dropdown-menu {
    display: block;
  }
  .hollow-header-12 .mobile-toolbar{
    display: none;
  } 
}
@media only screen and (max-width: 991px) {
  .hollow-header-12 {
    border: none;
  }
  .home .hollow-header-12 {
    padding-top: 3rem;
  }
  .hollow-header-12 .logo a {
    margin: 0;
    padding: 1rem 0 0;
    box-shadow: none;
    background: transparent;
  }
  body:not(.home) .hollow-header-12 .logo,
  body:not(.home) .hollow-header-12 .main-content {
    display: none;
  }
  .hollow-header-12 .phone-number {
    color: var(--defaultMainColor);
    text-align: center;
    list-style: none;
    font-size: 1.5rem;
    display: none;
  }
  .hollow-header-12 .phone-number i {
    padding-right: .75rem;
  }
  header.hollow-header-12.header-menu-open nav .menu {
    pointer-events: auto;
    opacity: 1;
    max-height: 85vh;
    overflow-y: auto;
  }
  .hollow-header-12 nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0.5rem;
    width: 100%;
    background: var(--defaultMainAccent);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .hollow-header-12 nav a {
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
  }
  .hollow-header-12 .menu-item.open>a, 
  .hollow-header-12 .menu-item:hover>a, 
  .hollow-header-12 .menu-item.active a, 
  .hollow-header-12 .menu-item.active:hover>a {
    color: #fff;
    background: var(--defaultMainColor);
  }
  .hollow-header-12 .dropdown-menu>li:hover>a, 
  .hollow-header-12 .dropdown-menu>li.active>a, 
  .hollow-header-12 .dropdown-menu>.active>a:hover, 
  .hollow-header-12 .dropdown-menu>.active>a:focus {
    color: #fff;
    background: var(--defaultMainColor);
  }
  .hollow-header-12 .hamburger::before,
  .hollow-header-12 .hamburger::after {
    background: var(--defaultMainAccent);
  }
  .hollow-header-12 nav .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transition: opacity 0.25s;
    z-index: -1;
    background: var(--defaultMainDark);
    box-shadow: 0 3px 3px -2px #000;
    pointer-events: none;
    opacity: 0;
    display: block;
  }
  .hollow-header-12 .dropdown .caret {
    padding-left: 1rem;
  }
  .hollow-header-12 nav .dropdown-menu .dropdown > a::after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    position: relative;
    padding-left: 1rem;
  }
  .hollow-header-12 nav .menu-item {
    width: 100%;
  }
  .hollow-header-12 nav .menu-item-has-children.open > .dropdown-menu {
    display: block;
  }
  .hollow-header-12 nav .menu-item-has-children .dropdown-menu .open .dropdown-menu {
    display: block;
  }
  .hollow-header-12 .dropdown-menu {
    position: relative;
    box-shadow: none;
    width: 100%;
  }
  .hollow-header-12 nav .dropdown-menu a {
    background: var(--defaultMainDark);
  }
  .hollow-header-12 .dropdown-menu>li>a {
    padding-left: 2.5rem;
  }
  .hollow-header-12 nav .dropdown-menu .dropdown-menu a {
    padding-left: 5rem;
  }
  .hollow-header-12 nav a {
    border-radius: 0;
  }
  .hollow-header-12 .mobile-toolbar>* {
    display: inline-block;
  }
  .hollow-header-12 .mobile-toolbar .social {
    display: flex;
  }
  .hollow-header-12 .mobile-toolbar a {
    font-size: 2rem;
    padding: 0.4rem 1rem;
    position: relative;
  }
  .hollow-header-12 .mobile-toolbar a i {
    padding: 0;
    font-weight: 200;
  }
}
@media only screen and (orientation: portrait) and (max-width:991px) {
  .hollow-header-12 nav a {
    font-size: 1.6rem;
    padding: .6rem;
  }
}
@media screen and (max-width:767px) {
  .pushNav.header-menu-open nav #menu-main-navigation-menu,
  .pushNav nav #menu-main-navigation-menu {
    width: 100%!important;
  }
  .pushNav.header-menu-open .pushNavBodyOverlay {
    display: none!important;
  }
  .hollow-header-12 .mobile-toolbar .social {
    display: none;
  }
  .hollow-header-12 .logo img {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
  }
}
@media only screen and (orientation: portrait) and (max-width:767px) {
  .hollow-header-12 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: 40rem;
  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: 89%;
  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: 300;
  text-transform: uppercase;
  letter-spacing: .5rem;
  text-align: center;
}
.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;
  background: var(--defaultMainAccent);
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  border: 2px solid #fff;
  margin: 0 .4rem .5rem;
  text-transform: uppercase;
  font-size: .9rem;
  transition: all .3s ease;
}
.hollow-hero-16 .button-wrap a:hover {
  background: var(--accentLight);
}
.hollow-hero-16 .button-wrap a:hover::before {
  left: -10%;
}
@media only screen and (max-width: 767px){
  .hollow-hero-16 .slide {
    height: 25rem;
    min-height: 25rem;
  }
  .hollow-hero-16 .caption-wrap {
    top: 85%;
  }
  .hollow-hero-16 .caption-wrap h1 {
    font-size: 2rem;
    font-weight: 400;
  }
  .hollow-hero-16 .caption-wrap p {
    font-weight: 400;
  }
}

/*============================ */
/* Corner Item 08
============================== */
.hollow-corner-item-08 {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 999999;
}
.pushNavBody.pushNavBodyNavOpen .hollow-corner-item-08 {
  display: none!important;
}
.hollow-corner-item-08[data-active="false"] {
  display: none!important;
}
.hollow-corner-item-08[data-alignment="left"] {
  left: 1rem;
  right: unset;
  align-items: flex-start;
}
.hollow-corner-item-08 .side-item {
  position: fixed;
  left: 0;
  bottom: 45%;
  opacity: 0;
  animation: 1s popup08slideout 3s forwards;
}
.hollow-corner-item-08 .side-item {
  display: none;
}
@keyframes popup08slideout {
  0% {
    opacity: 0;
    left: -100%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.hollow-corner-item-08 .side-item-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  border-radius: 0 0 0.5rem 0.5rem;
  background: #fff;
  border: 1px solid #000;
  padding: 1.5rem 1rem .6rem 1rem;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg) translateY(-80%);
  width: max-content;
  transition: all .3s ease;
}
.hollow-corner-item-08 .side-item-wrap span {
  color: #000;
  line-height: 1.5;
  padding: 0 0 0 0.75rem;
  text-transform: uppercase;
  font-weight: 400;
  transition: all .3s ease;
}
.hollow-corner-item-08 .side-item-wrap i {
  font-size: 1.2rem;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  transition: all .3s ease;
}
.hollow-corner-item-08 .side-item-wrap:hover i,
.hollow-corner-item-08 .side-item-wrap:hover span {
  color: #fff;
}
.hollow-corner-item-08 .side-item-wrap:hover {
  background: var(--defaultMainDark);
}
.hollow-corner-item-08.active .side-item-wrap i:before {
  content: "\f00d";
}
.hollow-corner-item-08 .corner-item-wrap {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  border-radius: 2rem;
  background: var(--defaultMainAccent);
  padding: 0.5rem 0.9rem;
  z-index: 100;
  transition: all .3s ease;
}
.hollow-corner-item-08 .corner-item-wrap span {
  color: #fff;
  line-height: 1.2;
  padding: 0 0 0 .5rem;
  font-size: 0.9rem;
  font-weight: 400;
}
.hollow-corner-item-08 .corner-item-wrap i {
  font-size: 1.2rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  transition: all .3s ease;
}
.hollow-corner-item-08 .corner-item-wrap:hover {
  background: var(--defaultMainColor);
}
.hollow-corner-item-08.active .icon-wrap i:before {
  content: "\f00d";
}
.hollow-corner-item-08 .message-bubble {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: .5rem;
  background: #fff;
  border-radius: 0.7rem;
  filter: drop-shadow(1px 7px 40px rgba(0,0,0,.3));
  margin-bottom: 0.5rem;
  width: 16rem;
  max-height: 7rem;
  transition: all .3s ease;
}
.hollow-corner-item-08.active .message-bubble .close-bubble {
  display: none;
}
.hollow-corner-item-08 .message-bubble .close-bubble {
  position: absolute;
  left: -1.85rem;
  top: .25rem;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}
.hollow-corner-item-08 .message-bubble .close-bubble i {
  font-size: 1rem;
  color: #000;
  /* border: 2px solid rgba(0,0,0,.15); */
  border-radius: 50%;
  opacity: .7;
  background: #d5d5d5;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s ease;
}
.hollow-corner-item-08 .message-bubble .close-bubble i:hover {
  background: #fff;
  opacity: 1;
}
.hollow-corner-item-08[data-show-bubble="false"] .message-bubble {
  display: none!important;
}
.hollow-corner-item-08.active[data-show-bubble="false"] .message-bubble {
  display: flex!important;
}
.hollow-corner-item-08.active .message-bubble {
  width: 23rem;
  padding: 0;
  max-height: 40rem;
  display: flex!important;
  visibility: visible!important;
  opacity: 1!important;
  z-index: 99999;
}
.hollow-corner-item-08 .heading-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
}
.hollow-corner-item-08.active .heading-wrap {
  padding: .5rem;
  background: var(--defaultMainDark);
  border-radius: 0.5rem .5rem 0 0;
  justify-content: space-between;
}
.hollow-corner-item-08 .message-bubble .caret {
  position: absolute;
  bottom: -0.35rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  background: #fff;
  border-radius: 4px;
  transform: rotate(45deg);
  z-index: 0;
  display: none;
}
.hollow-corner-item-08[data-alignment="left"] .message-bubble .caret {
  left: 1rem;
  right: unset;
}
.hollow-corner-item-08 .message-bubble .img-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 10;
  margin-right: 0.5rem;
  margin-bottom: 0;
}
.hollow-corner-item-08.active .message-bubble .img-wrap {
  margin-bottom: 1.25rem;
}
.hollow-corner-item-08.active .heading-wrap .img-wrap {
  display: none;
}
.hollow-corner-item-08 .message-bubble .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hollow-corner-item-08 .message-bubble .text-wrap {
  /* padding: 0rem 0 0.5rem; */
  width: 12rem;
}
.hollow-corner-item-08.active .message-bubble .text-wrap {
  padding: .5rem;
  width: calc(100% - 3rem);
}
.hollow-corner-item-08 .message-bubble .text-wrap span {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 400;
}
.hollow-corner-item-08.active .message-bubble .text-wrap span {
  color: #fff;
}
.hollow-corner-item-08 .message-bubble .text-wrap .heading-text {
  display: none;
}
.hollow-corner-item-08.active .message-bubble .text-wrap .heading-text {
  display: block;
}
.hollow-corner-item-08.active .message-bubble .text-wrap .bubble-text {
  display: none;
}
.hollow-corner-item-08 .message-bubble .close-btn {
  color: #fff;
  font-size: 1.5rem;
  display: none;
}
.hollow-corner-item-08.active .message-bubble .close-btn {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  min-width: 1.75rem;
  min-height: 1.75rem;
  justify-content: center;
  align-items: center;
  /* border: 2px solid #fff; */
  border-radius: 50%;
  background: var(--defaultMainAccent);
}
.hollow-corner-item-08 .message-bubble .form-wrap {
  overflow: hidden;
  max-height: 0;
  transition: all .3s ease;
}
.hollow-corner-item-08.active .message-bubble .form-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 1rem;
  max-height: 40rem;
}
.hollow-corner-item-08 .message-bubble .left-chat {
  padding: 1rem;
  background: whitesmoke;
  width: 70%;
  border-radius: 1rem 1rem 1rem 0;
  margin-bottom: 1rem;
  opacity: 0;
}
.hollow-corner-item-08.active .message-bubble .left-chat {
  opacity: 1;
  transition: opacity .2s ease .6s;
}
.hollow-corner-item-08 .message-bubble .left-chat span {
  /* color: #fff; */
  line-height: 1.3;
  font-size: .9rem;
  font-weight: 300;
}
.hollow-corner-item-08 .message-bubble .right-chat {
  opacity: 0;
  width: 85%;
  /* margin: 0 0 3rem auto; */
  margin: 0 0 1rem auto;
  padding: 1rem;
  /* background: var(--defaultMainAccent); */
  border-radius: 1rem 1rem 0 1rem;
  position: relative;
}
.hollow-corner-item-08 .form-wrap .wpcf7-spinner {
  right: 2rem;
  bottom: 50%;
  position: absolute;
  transform: translateY(50%);
}
.hollow-corner-item-08 .form-wrap .resetting .wpcf7-spinner {
  visibility: visible;
}
.hollow-corner-item-08 .form-wrap .sent .wpcf7-form-control-wrap,
.hollow-corner-item-08 .form-wrap .sent .submit-wrap {
  display: none;
}
.hollow-corner-item-08 .form-wrap div.wpcf7-response-wrap {
  border-radius: 1rem 1rem 0 1rem;
}
.hollow-corner-item-08 .form-wrap .sent div.wpcf7-response-wrap {
  position: relative;
  pointer-events: none!important;
}
.hollow-corner-item-08 .form-wrap .resetting div.wpcf7-response-wrap {
  visibility: hidden;
}
.hollow-corner-item-08 .form-wrap .invalid div.wpcf7-response-wrap {
  visibility: visible;
}
.hollow-corner-item-08 .form-wrap div.wpcf7-response-output {
  font-size: 1rem;
  line-height: 1.3;
  font-family: var(--mainFont);
}
.hollow-corner-item-08 .form-wrap .sent div.wpcf7-response-output {
  color: #000;
  font-size: .9rem;
  font-weight: 300;
  text-align: left;
  padding: 1rem;
}
.hollow-corner-item-08 .form-wrap div.wpcf7-response-wrap .button {
  border: none;
  background: rgba(0,0,0,.25);
  font-family: var(--mainFont);
  font-size: .9rem;
  border-radius: 4px;
}
.hollow-corner-item-08 .form-wrap .sent div.wpcf7-response-wrap {
  background: whitesmoke;
}
.hollow-corner-item-08 .form-wrap .sent div.wpcf7-response-wrap .button {
  display: none;
}
.hollow-corner-item-08 .form-wrap div.wpcf7-response-wrap .button:hover {
  background: rgba(0,0,0,.5);
}
.hollow-corner-item-08.active .message-bubble .right-chat {
  opacity: 1;
  transition: opacity .2s ease .8s;
}
.hollow-corner-item-08 .form-wrap input,
.hollow-corner-item-08 .form-wrap select,
.hollow-corner-item-08 .form-wrap textarea {
  background: #fff;
  font-family: var(--mainFont);
  font-weight: 300;
  color: #000;
  border-radius: 10px;
  outline-color: var(--defaultMainAccent);
  border: 1px solid #CCC;
  padding: 0.7rem;
  max-width: 100%;
  font-size: 0.9rem;
  transition: all .3s ease;
}
.hollow-corner-item-08 .form-wrap .resetting input,
.hollow-corner-item-08 .form-wrap .resetting select,
.hollow-corner-item-08 .form-wrap .resetting textarea {
  background: #ccc;
}
.hollow-corner-item-08 .form-wrap input:focus,
.hollow-corner-item-08 .form-wrap select:focus,
.hollow-corner-item-08 .form-wrap textarea:focus {
  border-color: var(--defaultMainAccent);
}
.hollow-corner-item-08 .form-wrap textarea {
  height: 4.5rem;
/* margin-bottom: 0px; */
}
.hollow-corner-item-08 .form-wrap .submit-wrap {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  margin: 0 0 0 auto;
}
.hollow-corner-item-08 .form-wrap .submit-wrap i {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--defaultMainColor);
  color: #fff;
  border-radius: 50%;
  transition: all .3s ease;
}
.hollow-corner-item-08 .form-wrap .submit-wrap:hover i {
  background: var(--defaultMainDark);
  color: #fff;
}

.hollow-corner-item-08 .form-wrap input[type="submit"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  border: none;
  cursor: pointer;
  background: transparent;
  border-radius: 50%;
  transition: all .3s ease;
}
.hollow-corner-item-08 .form-wrap input[type="submit"]:hover {
  /* background: var(--defaultMainDark); */
}
.hollow-corner-item-08 ::-webkit-input-placeholder {
  color: #000;
}
.hollow-corner-item-08 :-ms-input-placeholder {
  color: #000;
}
.hollow-corner-item-08 ::-ms-input-placeholder {
  color: #000;
}
.hollow-corner-item-08 ::placeholder {
  color: #000;
}
.hollow-corner-item-08 .message-bubble .notice {
  padding: 1rem 0rem;
  text-align: center;
  font-weight: 300;
  font-size: .8rem;
  color: #222;
  line-height: 1.2;
  opacity: 0;
}
.hollow-corner-item-08.active .message-bubble .notice {
  opacity: 1;
  transition: all 1s ease;
}
@media only screen and (max-width: 767px){
  .hollow-corner-item-08 .side-item {
    display: none;
  }
  .hollow-corner-item-08 .message-bubble {
    width: 23rem;
    padding: 1rem;
  }
  .hollow-corner-item-08.active .message-bubble {
    width: 90vw;
  }
  .hollow-corner-item-08 .message-bubble .img-wrap {
    width: 3rem;
    height: 3rem;
  }
  .hollow-corner-item-08 .message-bubble .text-wrap {
    width: 17rem;
  }
  .hollow-corner-item-08.active .message-bubble .text-wrap {
    width: 23.5rem;
    padding: 0.5rem 0 .5rem .5rem;
  }
  .hollow-corner-item-08 .message-bubble .text-wrap span {
    font-size: 1.3rem;
  }
  .hollow-corner-item-08.active .message-bubble .text-wrap span {
    font-size: 1.1rem;
  }
  .hollow-corner-item-08 .message-bubble .left-chat span {
    font-size: 1.1rem;
  }
  .hollow-corner-item-08 .corner-item-wrap {
    padding: .8rem 1.1rem;
  }
  .hollow-corner-item-08 .corner-item-wrap span {
    font-size: 1.3rem;
  }
  .hollow-corner-item-08 .message-bubble .close-bubble {
    width: 2rem;
    height: 2rem;
    left: -2.5rem;
  }
  .hollow-corner-item-08 .message-bubble .close-bubble i {
    opacity: 1;
    background: #fff;
    font-size: 1.3rem;
    line-height: 1.2;
  }
  .hollow-corner-item-08 .form-wrap input, 
  .hollow-corner-item-08 .form-wrap select, 
  .hollow-corner-item-08 .form-wrap textarea {
    font-size: 1.1rem;
  }
  .hollow-corner-item-08.active .message-bubble .close-btn {
    font-size: 1.1rem;
    width: 1.4rem;
    height: 1.4rem;
    min-width: 1.4rem;
    min-height: 1.4rem;
  }
  
  /* Fullscreen setting */
  
  .hollow-corner-item-08.active[data-fullscreen="true"] {
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
  }
  .hollow-corner-item-08.active[data-fullscreen="true"] .message-bubble {
    min-width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    max-width: 100%;
    margin-bottom: 0;
    display: block;
  }
  .hollow-corner-item-08.active[data-fullscreen="true"] .icon-wrap {
    bottom: -4rem;
  }
  .hollow-corner-item-08.active[data-fullscreen="true"] .message-bubble .form-wrap {
    max-height: unset;
    height: 90vh;
    padding: 3rem 1rem;
  }
  .hollow-corner-item-08.active[data-fullscreen="true"] .heading-wrap {
    padding: 1.35rem 0.5rem;
    border-radius: 0;
  }
  .hollow-corner-item-08.active[data-fullscreen="true"] .message-bubble .close-btn {
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
    min-height: 2.25rem;
  }
  .hollow-corner-item-08.active[data-fullscreen="true"] .message-bubble .text-wrap .heading-text {
    font-size: 1.2rem;
  }
  .hollow-corner-item-08.active[data-fullscreen="true"] .message-bubble .left-chat {
    width: 65%;
    height: 7.5rem;
    padding: 1.5rem 1.5rem 2rem;
  }
  .hollow-corner-item-08 .form-wrap div.wpcf7-response-output {
    font-size: 1.2rem;
  }
  .hollow-corner-item-08 .form-wrap .sent div.wpcf7-response-output {
    font-size: 1.3rem;
    padding: 1.5rem 1.5rem 2rem;
  }
  .hollow-corner-item-08.active[data-fullscreen="true"] .message-bubble .right-chat {
    width: 80%;
    /* height: 75%; */
    margin-bottom: 100%;
  }
  .hollow-corner-item-08[data-fullscreen="true"] .form-wrap input,
  .hollow-corner-item-08[data-fullscreen="true"] .form-wrap select,
  .hollow-corner-item-08[data-fullscreen="true"] .form-wrap textarea {
    font-size: 1.2rem;
    padding: 1rem;
  }
  .hollow-corner-item-08[data-fullscreen="true"] .form-wrap textarea {
    height: 10rem;
  }
  .hollow-corner-item-08[data-fullscreen="true"] .message-bubble .left-chat span {
    font-size: 1.2rem;
  }
}



/*============================ */
/* Service Icons 10
============================== */
.service-icons-10 {
  position: relative;
  padding: 7rem 0 4rem;
}
.service-icons-10 .flexbox {
  justify-content: space-between;
  flex-wrap: wrap;
}
.service-icons-10 .title-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.service-icons-10 .title-wrap h2 {
  color: var(--defaultMainColor);
  order: 2;
  font-size: 2.5rem;
}
.service-icons-10 .title-wrap h3 {
  color: var(--defaultMainAccent);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.25rem;
  order: 1;
  font-weight: 500;
  font-family: var(--mainFont);
}
.service-icons-10 .title-wrap hr {
  order: 3;
  text-align: left;
  border: none;
  width: 4rem;
  height: 4px;
  margin: .5rem 0 1rem;
  background: var(--defaultMainAccent);
}
.service-icons-10 .text-wrap {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.service-icons-10 .text-wrap p {
  font-size: .9rem;
  color: var(--defaultMainDark);
  max-width: 45rem;
}
.service-icons-10 .text-wrap hr {
     border-color:#ccc;
     width:100%;
}
.service-icons-10 .btn-wrap {
  margin: 2rem 0 0;
}
.service-icons-10 .btn-wrap a {
  display: inline-block;
  font-size: 1rem;
  padding: .5rem 1rem;
  border: 2px solid var(--defaultMainColor);
  background: var(--defaultMainColor);
  color: #fff;
  transition: all .3s ease;
}
.service-icons-10 .btn-wrap a:hover {
  background: var(--defaultMainDark);
  border-color: var(--defaultMainDark);
}
.service-icons-10 .service-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service-icons-10 .icon-wrap {
  display: flex;
  width: calc(100% / 3 - 3.25rem);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 3rem;
}
.service-icons-10 .icon-wrap .service-icon {
  font-size: 5rem;
  padding: 0;
  color: var(--defaultMainAccent);
  border-radius: 50%;
  margin-bottom: 1rem;
  transition: all .3s ease;
}
.service-icons-10 .icon-wrap img {
  height: 12rem;
  width: 16rem;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 2rem 0;
}
.service-icons-10 .icon-wrap:hover .service-icon {
  opacity: .75;
}
/*.service-icons-10 .icon01 .service-icon {
  background: #999;
}
.service-icons-10 .icon02 .service-icon {
  background: #777;
}
.service-icons-10 .icon03 .service-icon {
  background: #555;
}*/
.service-icons-10 .icon-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
     text-align: center;
  color: var(--defaultMainColor);
}
.service-icons-10 .icon-wrap p {
  font-size: .9rem;
  color: var(--defaultMainDark);
  line-height: 1.8;
  text-align: center;
}
.service-icons-10 .icon-wrap span {
  font-size: .85rem;
  font-weight: 500;
  padding: 0.5rem;
  color: var(--defaultMainAccent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.service-icons-10 .icon-wrap span i {
  padding: 0 .5rem 0 .2rem;
  font-size: 1.3rem;
  animation: serviceIcons10hover .6s linear infinite alternate paused;
}
.service-icons-10 .icon-wrap:hover span i {
  animation-play-state: running;
}
@keyframes serviceIcons10hover {
  0% {
    padding: 0 .5rem 0 .2rem;
  }
  100% {
    padding: 0 .2rem 0 .5rem;
  }
}
@media only screen and (max-width: 1300px) {
  .service-icons-10 .text-wrap {
    padding: 1rem;
  }
}
@media only screen and (max-width: 1199px) {
  .service-icons-10 .text-wrap {
    padding: 1rem;
  }
  .service-icons-10 .service-wrap {
    padding: 1rem;
  }
  .service-icons-10 .icon-wrap .service-icon {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .service-icons-10 {
    padding: 0;
  }
  .service-icons-10 .title-wrap h3 {
    font-size: 1.2rem;
  }
  .service-icons-10 .text-wrap {
    padding: 3rem 1rem 1rem;
    width: 100%;
    margin: 0;
  }
  .service-icons-10 .service-wrap {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .service-icons-10 .icon-wrap {
    width: 100%;
    margin-bottom: 2rem;
  }
  .service-icons-10 .icon-wrap .service-icon {
    font-size: 5rem;
    padding: 2rem;
  }
  .service-icons-10 .icon-wrap img {
        height: 15rem;
    width: 21rem;
  }
  .service-icons-10 .icon-wrap h3 {
    font-size: 2rem;
  }
  .service-icons-10 .icon-wrap span {
    font-size: 1rem;
  }
}

/*============================ */
/* Hollow Content 25
============================== */
.hollow-content-25 {
  padding: 6rem 0;
  background: var(--defaultMainColor);
}
.hollow-content-25 .flexbox {
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
/* Text Wrap */
.hollow-content-25 .text-wrap {
  width: 53%;
  padding: 1rem 0;
  position: relative;
}
.hollow-content-25 .text-wrap h2 {
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 2.5rem;
  text-transform: capitalize;
}
.hollow-content-25 .text-wrap span.accent {
  font-weight: 900;
  color: var(--defaultMainColor);
}
.hollow-content-25 .text-wrap h3 {
  margin-bottom: 1rem;
  color: var(--defaultMainAccent);
}
.hollow-content-25 .text-wrap p {
  font-size: .9rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.8;
}
.hollow-content-25 .btn-wrap {
  padding: 1rem 0 0;
}
.hollow-content-25 .btn-wrap a {
      position: relative;
    display: inline-block;
    overflow: hidden;
    color: #FFF;
    background: var(--defaultMainAccent);
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    margin: 0 .4rem .5rem;
    text-transform: uppercase;
    font-size: .9rem;
    transition: all .3s ease;
}
.hollow-content-25 .btn-wrap a:hover {
  background: var(--accentLight);
}
/* Images Wrap */
.hollow-content-25 .img-wrap {
  position: relative;
  width: 38%;
}
.hollow-content-25 .img-wrap img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 2rem 0;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-content-25 .flexbox {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-25 .text-wrap h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-25 {
    padding: 3rem 0 2rem;
  }
  .hollow-content-25 .text-wrap {
    width: 100%;
    padding: 2rem 1rem 1rem;
    margin: 0;
  }
  .hollow-content-25 .img-wrap {
    width: 100%;
    margin: 0;
  }
  .hollow-content-25 .img-wrap img {
    position: relative;
  }
  .hollow-content-25 .accentThree,
  .hollow-content-25 .accentFour {
    display: none;
  }
}

/*============================ */
/* Content 09
============================== */
.hollow-content-09 {
  position: relative;
  padding: 6rem 0;
}
.hollow-content-09 .overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--defaultMainDark);
  opacity: 0.5;
}
.hollow-content-09 .flexbox {
  justify-content: space-between;
  align-items:center;
  position: relative;
}
.hollow-content-09 .text-wrap {
  width: 53%;
}
.hollow-content-09 .text-wrap h2 {
  margin-bottom: 1rem;
  color: #000;
  font-size: 2.25rem;
}
.hollow-content-09 .text-wrap h3 {
      color: var(--defaultMainAccent);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 500;
     display: flex;
    font-family: var(--mainFont);
}
.hollow-content-09 .text-wrap h3 i {
  font-size: 1.25rem;
  padding-right: .5rem;
}
.hollow-content-09 .text-wrap p {
      font-size: .9rem;
    font-weight: 400;
    color: #000;
    line-height: 1.8;
}
.hollow-content-09 .form-wrap {
  position: relative;
  overflow: hidden;
  width: 38%;
  padding: 1rem;
  background: var(--defaultMainAccent);
  text-align: center;
  border-radius: 2rem 0;
}
.hollow-content-09 .form-wrap iframe {
  border-radius: 1rem 0;
}
.hollow-content-09 .form-wrap img {max-width:100%;}
.hollow-content-09 .form-wrap h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  margin-bottom: .5rem;
  font-size: 1.4rem;
}
.hollow-content-09 .btn-wrap {
  padding: 1rem 0 0;
}
.hollow-content-09 .btn-wrap a {
      position: relative;
    display: inline-block;
    overflow: hidden;
    color: #FFF;
    background: var(--defaultMainAccent);
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    margin: 0 .4rem .5rem;
    text-transform: uppercase;
    font-size: .9rem;
    transition: all .3s ease;
}
.hollow-content-09 .btn-wrap a:hover {
  background: var(--accentLight);
}
.hollow-content-09 .form-wrap h3 i {
  color: var(--defaultMainColor);
  font-size: 1.25rem;
  padding-right: .5rem;
}
.hollow-content-09 .form-wrap p {
  color: #FFF;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.hollow-content-09 .your-email {
  float: left;
  width: 50%;
  padding-right: 15px;
  z-index: 5;
}
.hollow-content-09 .your-phone {
  float: left;
  width: 50%;
  z-index: 10;
}
.hollow-content-09 input:not([type="submit"]),
.hollow-content-09 textarea {
  font-size: 1rem;
  width: 100%;
  background: #fff;
  border: none;
  padding: .6rem;
  margin-bottom: .75rem;
  font-weight: 300;
  font-family: var(--mainFont);
}
.hollow-content-09 textarea {
  margin: 0;
  height: 7rem;
}
.hollow-content-09 .wpcf7-form-control.wpcf7-submit {
  background: var(--defaultMainColor);
  border: none;
  padding: .5rem 1.5rem;
  margin-top: 0.75rem;
  color: #FFF;
  cursor: pointer;
  font-family: var(--mainFont);
  font-size: 1.1rem;
  font-weight: 300;
  transition: .3s ease;
}
.hollow-content-09 .wpcf7-form-control.wpcf7-submit:hover {
  background: var(--defaultMainDark);
}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-content-09 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (min-width: 992px) {
  .hollow-content-09 .text-wrap h3 {
    margin-left: .5rem;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-09 {
    padding: 2rem 0;
  }
  .hollow-content-09 .flexbox {
    flex-direction: column;
  }
  .hollow-content-09 .text-wrap {
    width: 100%;
    padding: 0;
    margin-bottom: 1rem;
  }
     .hollow-content-09 .text-wrap h3 {
          font-size: 1.3rem;
     }
  .hollow-content-09 .form-wrap {
    width: 100%;
  }
}


/*============================ */
/* Action 13
============================== */
.hollow-action-13 {
  position: relative;
  padding: 8rem 0;
  background: url(img/action-bg.jpg) center /cover no-repeat fixed;
}
.hollow-action-13::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.hollow-action-13 .flex-container {
  position: relative;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hollow-action-13 h2 {
  color: #FFF;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}
.hollow-action-13 p {
  color: #FFF;
  margin-bottom: 3rem;
  max-width: 50rem;
}
.hollow-action-13 .button-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hollow-action-13 a {
     position: relative;
    display: inline-block;
    overflow: hidden;
    color: #FFF;
    background: var(--defaultMainAccent);
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    margin: 0 .4rem .5rem;
    text-transform: uppercase;
    font-size: .9rem;
    transition: all .3s ease;
}
.hollow-action-13 a:hover {
  background: var(--accentLight);
}
@media only screen and (max-width: 767px) {
  .hollow-action-13 {
    padding: 3rem 0;
  }
  .hollow-action-13 h2,
  .hollow-action-13 p {
    margin-bottom: 1rem;
  }
  .hollow-action-13 .button-wrap {
    flex-flow: column;
  }
  .hollow-action-13 a.optionA {
    margin-bottom: 1rem;
  }
}

/*============================ */
/* Gallery 01
============================== */
.hollow-gallery-11 {
  position: relative;
  padding: 6rem 0 0;
}
.hollow-gallery-11 .flexbox {
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
.hollow-gallery-11 .text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0 4rem;
}
.hollow-gallery-11 .text-wrap .title-wrap {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  text-align: center;
}
.hollow-gallery-11 .text-wrap h2 {
  color: #000;
  font-size: 2.5rem;
}
.hollow-gallery-11 .text-wrap h3 {
  font-weight: 500;
  font-size: .9rem;
  font-family: var(--mainFont);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--defaultMainAccent);
  margin-bottom: 1rem;
}
.hollow-gallery-11 .text-wrap p {
  color: var(--defaultMainColor);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 400;
}
.hollow-gallery-11 .text-wrap a {
  display: inline-flex;
  padding: .5rem 1rem;
  color: var(--defaultMainAccent);
  transition: all .3s ease;
  border: 2px solid var(--defaultMainAccent);
  margin: 1rem 0;
  text-transform: uppercase;
}
.hollow-gallery-11 .text-wrap a:before {
  background: var(--defaultMainAccent);
  color: #fff;
}
.hollow-gallery-11 .text-wrap a:hover {
  color: #fff;
}
/*.hollow-gallery-11 .img-wrap {
  height: 34rem;
}*/
.hollow-gallery-11 .nextgen_pro_thumbnail_grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 1px;
}
.hollow-gallery-11 .image-wrapper {
  width: calc(16% - 2px)!important;
  height: calc(16% - 2px)!important;
  max-height: unset!important;
  object-fit: cover;
  margin: 1px!important;
}
.hollow-gallery-11 .nextgen_pro_thumbnail_grid .image-wrapper > a {
  display: inline-block;
  width: 100%!important;
  height: 100%!important;
}
.hollow-gallery-11 .nextgen_pro_thumbnail_grid .image-wrapper img {
  will-change: transform;
  height: 100%!important;
  transition: opacity .3s ease, transform 1s ease;
}
.hollow-gallery-11 .nextgen_pro_thumbnail_grid .image-wrapper img:hover {
  opacity: .8;
  transform: scale(1.1);
}
@media only screen and (min-width: 768px) {
  .hollow-gallery-11 .reverse {
    flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-gallery-11 .image-wrapper {
    width: calc(33% - 2px) !important;
    height: calc(34% - 2px) !important;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-gallery-11 {
    padding: 0;
  }
  .hollow-gallery-11 .flexbox {
    flex-direction: column;
  }
  .hollow-gallery-11 .text-wrap {
    width: 100%;
    padding: 2rem;
  }
  .hollow-gallery-11 .text-wrap a {
    font-size: 1.3rem;
  }
  .hollow-gallery-11 .text-wrap a:hover {
    background: var(--defaultMainColor);
  }
  .hollow-gallery-11 .image-wrapper {
    width: calc(33% - 2px) !important;
    height: calc(34% - 2px) !important;
  }
  .hollow-gallery-11 .img-wrap {
    width: 100%;
    height: 25rem;
  }
}

/* Hollow-Gallery-08 ================================ */
.hollow-gallery-08 {
  position: relative;
}

.hollow-gallery-08 .text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0 4rem;
}

.hollow-gallery-08 .text-wrap .title-wrap {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  text-align: center;
}

.hollow-gallery-08 .text-wrap h2 {
  color: #000 !important;
  font-size: 2.5rem;
}
.hollow-gallery-08 .text-wrap h3 {
  font-weight: 500;
  font-size: .9rem;
  font-family: var(--mainFont);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--defaultMainAccent) !important;
  margin-bottom: 1rem;
}

.hollow-gallery-08 .grid-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal-width columns */
  grid-gap: 1rem; /* Space between items */
  grid-template-rows: auto;
}

.hollow-gallery-08 h1 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(-90deg) translate(20%, -8rem);
  font-size: 6rem;
  color: rgba(124,124,124, 0.4);
}

.hollow-gallery-08 .gallery-item {
  position: relative;
  overflow: hidden;
  height: 16rem;
  transition: transform 0.3s ease-in-out; /* Smooth transition for hover */
}

.hollow-gallery-08 .gallery-item img {
  display: flex;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hollow-gallery-08 .gallery-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--mainFont);
  font-size: 1.5rem;
  transition: all .3s ease;
  background: rgba(124,124,124, 0.8);
  opacity: 0;
}

.hollow-gallery-08 .gallery-item:hover a {
  opacity: 1;
}

.hollow-gallery-08 .gallery-item:hover {
  transform: scale(1.05); 
}

.hollow-gallery-08 .gallery-item img:hover {
  opacity: 0.7; 
}

.hollow-gallery-08 h2, .hollow-gallery-08 h3 {
  opacity: 0; 
  transition: opacity 0.3s ease-in-out;
  color: white;
}

.hollow-gallery-08 .gallery-item:hover h2,
.hollow-gallery-08 .gallery-item:hover h3 {
  opacity: 1; 
}

@media screen and (max-width: 768px) {
  .hollow-gallery-08 .grid-container {
    display: block;
  }

  .hollow-gallery-08 .gallery-item {
    margin-bottom: 20px;
  }

  .hollow-gallery-08 .gallery-item img {
    width: 100%;
  }
}

/*============================ */
/* Contact 15
============================== */
.hollow-contact-15 {
  padding: 8rem 0;
  overflow: hidden;
}
.page-template-page-contact .hollow-contact-15 {
  padding-bottom: 0;
}
.hollow-contact-15 .flex-container {
  position: relative;
  justify-content: space-between;
  align-items: center;
}
.hollow-contact-15 .get-in-touch {
  max-width: 38%;
  /* margin-right: -3rem; */
}
.hollow-contact-15 .get-in-touch h2 {
  font-weight: 500;
  font-size: .9rem;
  font-family: var(--mainFont);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--defaultMainAccent);
  margin-bottom: 1rem;
}
.hollow-contact-15 .get-in-touch .title-wrap {
  position: relative;
  z-index: 10;
}
.hollow-contact-15 .get-in-touch h3 {
  font-size: 2.5rem;
  color: var(--defaultMainColor);
  margin-bottom: 1rem;
}
.hollow-contact-15 .get-in-touch h4 {
  color: #fff;
  margin-bottom: 1rem;
}
.hollow-contact-15 .get-in-touch hr {
  height: 4px;
  width: 5rem;
  background: var(--defaultMainAccent);
  margin: .5rem 0 3rem;
  border: none;
}
.hollow-contact-15 .get-in-touch p {
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
  font-size: .9rem;
  font-weight: 400;
  color: var(--defaultMainColor);
  line-height: 1.8;
}
.hollow-contact-15 .get-in-touch li {
  color: var(--defaultMainColor);
  margin-bottom: 1rem;
  display: flex;
}
.hollow-contact-15 .get-in-touch li i {
  color: var(--defaultMainAccent);
  font-size: 1.5rem;
  padding-right: 1rem;
  padding-top: 0.1rem;
}
.hollow-contact-15 .get-in-touch li i.fa-flip-horizontal {
  padding: 0;
  padding-left: 1rem;
}
.hollow-contact-15 .get-in-touch li a {
  color: var(--defaultMainColor);
  font-weight: 400;
  font-size: 1.1rem;
}
.hollow-contact-15 .get-in-touch li a:hover {
  color: var(--defaultMainAccent);
}
.hollow-contact-15 .social a {
  color: var(--defaultMainColor);
  margin-right: .7rem;
  font-size: 1.5rem;
}
.hollow-contact-15 .social a:hover {
  color: var(--defaultMainAccent);
}
.hollow-contact-15 .contact-us {
  width: 53%;
  padding: 2rem;
  border-radius: 2rem 0;
  background: var(--defaultMainColor);
}
.hollow-contact-15 .contact-us h4 {
  color: var(--defaultMainColor);
  margin-bottom: 1rem;
}
.hollow-contact-15 .contact-us h2 {
  color: #fff;
  text-align: center;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.hollow-contact-15 .contact-us hr {
  height: 4px;
  width: 5rem;
  background: var(--defaultMainAccent);
  margin: .5rem 0 3rem;
  border: none;
}
.hollow-contact-15 .form-wrap {
  position: relative;
}

.hollow-contact-15 textarea {
  font-family: var(--mainFont);
  z-index: 0;
  height: 7rem;
}
.hollow-contact-15 .your-email,
.hollow-contact-15 [data-name="your-email"] {
  float: left;
  width: 50%;
  padding-right: 15px;
  z-index: 5;
}
.hollow-contact-15 .your-phone,
.hollow-contact-15 [data-name="your-phone"] {
  float: left;
  width: 50%;
  z-index: 10;
}
.hollow-contact-15 .flex-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hollow-contact-15 .flex-info ul {
/*   width: 48%; */
  width: 100%;
}
.hollow-contact-15 .logos-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.hollow-contact-15 iframe {
  width: 65%;
  height: 11.5rem;
  margin-top: 1rem;
}

.hollow-contact-15 input:not([type="submit"]),
.hollow-contact-15 textarea {
  /* font-size: .9rem; */
  /* width: 100%; */
  /* border-radius: 10px; */
  /* color: dimgrey; */
  /* padding: .6rem; */
  /* margin-bottom: 1rem; */
  /* font-weight: 400; */
  /* font-family: var(--mainFont); */
}

.hollow-contact-15 .wpcf7-form-control.wpcf7-submit {
  background: var(--defaultMainAccent);
  border: none;
  border-radius: 2rem;
  padding: .7rem 3rem;
  color: #FFF;
  cursor: pointer;
  font-family: var(--mainFont);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  transition: .3s ease;
  margin: 0;
}
.hollow-contact-15 .wpcf7-form-control.wpcf7-submit:hover {
  background: var(--accentLight);
}
.hollow-contact-15 .map-wrap {
  width: 100%;
  height: 38rem;
  margin-top: 4rem;
}
.hollow-contact-15 .map-wrap iframe {
  height: 100%;
  width: 100%;
  pointer-events: none;
}
.hollow-contact-15 .map-wrap iframe.clicked {
  pointer-events: auto;
}
@media only screen and (max-width: 1199px) {
  .hollow-contact-15 .get-in-touch {
    /* padding: 4rem 2rem; */
  }
  .hollow-contact-15 .get-in-touch .bg-title {
    left: 1rem;
    top: 1.5rem;
  }
  .hollow-contact-15 .contact-us {
    padding: 0 4rem 2rem;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-contact-15 {
    padding: 7rem 0 6rem;
  }
  .hollow-contact-15 .get-in-touch .bg-title {
    left: 1rem;
    top: 2rem;
  }
  .hollow-contact-15 .get-in-touch {
    padding: 2rem 3rem 4rem 0;
  }
  .hollow-contact-15 .contact-us {
    padding: 6rem 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-contact-15 {
    padding: 0;
  }
  .hollow-contact-15 .get-in-touch .bg-title {
    display: none;
  }
  .hollow-contact-15 .get-in-touch .bg-title {
    position: relative;
    top: unset;
    left: unset;
  }
  .hollow-contact-15 .get-in-touch .bg-title h2 {
    font-size: 2.5rem;
    color: var(--defaultMainDark);
    text-transform: capitalize;
    font-weight: 400;
  }
  .hollow-contact-15 .flex-container {
    flex-direction: column;
    padding: 0;
  }
  .hollow-contact-15 .get-in-touch {
    width: 100%;
    max-width: 100%;
    padding: 3rem 2rem;
  }
  .hollow-contact-15 .get-in-touch li,
  .hollow-contact-15 .get-in-touch li a {
    font-size: 1.3rem;
  }
  .hollow-contact-15 .flex-info ul {
    width: 100%;
  }
  /*.page-template-page-contact .hollow-contact-15 .get-in-touch {
    padding-top: 4rem;
  }*/
  .hollow-contact-15 .contact-us {
    width: 100%;
    padding: 3rem 1rem;
    border-radius: 0;
  }
  .hollow-contact-15 input:not([type="submit"]), .hollow-contact-15 textarea {
    font-size: 1.1rem;
  }
  .hollow-contact-15 .contact-us .inner-wrap {
    margin: 0;
  }
  .hollow-contact-15 .map-wrap {
    max-height: 30rem;
    margin-top: -1rem;
  }
  .jtwf .block {
    width: 100%;
  }
}

.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:1.8rem;
  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;
}
.hollow-footer-04 .main .flex-container {
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
}
.hollow-footer-04 img {
  margin-bottom: 1.5rem;
  max-width: 90%;
}
.hollow-footer-04 h3 {
  color: #FFF;
  font-weight: 300;
  margin-bottom: 1rem;
  text-align: center;
}
.hollow-footer-04 .social {
  display: flex;
  border-top: 2px dotted #FFF;
  padding-top: .5rem;
  justify-content: center;
  margin-top: 1rem;
}
.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: var(--defaultMainColor);
  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(--defaultMainAccent);
}
.hollow-footer-04 .meta i.top {
  position: absolute;
  margin-right: 1rem;
  right: 0;
  top: 0;
  color: #FFF;
  padding: .5rem;
  background: var(--defaultMainAccent);
  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: 6rem 0 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-footer-04 img {
    max-width: 90%;
  }
  .hollow-footer-04 .meta {
    flex-direction: column;
  }
  .hollow-footer-04 .meta .flex-container {
    flex-flow: column;
  }
  .hollow-footer-04 .meta span:first-of-type {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
}

/*DEFAULT STYLE OVERWRITES*/

/*============================ */
/* DEFAULT BLOG STYLES: 
============================== */
/*Search Form*/
.search-form-wrap {
  padding: 6rem 0 2rem;
}
.search-form-wrap button {
  background: var(--defaultMainAccent);
  font-family: var(--mainFont);
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: 2px;
  font-weight: 500;
}
.search-form-wrap button:hover {
  background: #906c24;
}
/*Blog Page*/
.blog-wrap .post-item {
  width: 32%;
}
.blog-wrap .post-item-header h3 {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.3rem;
  transition: all .3s ease;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--defaultMainColor);
  text-align: center;
}
.blog-wrap .post-item .post-item-header h3:hover {
  background: var(--defaultMainDark);
}
.blog-wrap .post-item .post-content .read-more {
  color: #fff;
  align-self: flex-start;
  padding: 0.85rem;
  transition: all .3s ease;
  background: var(--defaultMainAccent);
  width: 100%;
  text-align: center;
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--mainFont);
  letter-spacing: 2px;
}
.blog-wrap .post-item .post-content a:hover {
  background: var(--defaultMainDark);
}
.blog-wrap .post-item p {
  border: none;
  background: #f6f5f4;
  font-size: .9rem;
  font-weight: 400;
  color: var(--defaultMainColor);
  line-height: 1.8;
  margin-bottom: 0;
}
.blog-wrap .post-content span.date-wrap {
  display: none;
}
.blog-wrap .post-content span.date-wrap .post-date {
  font-size: .8rem;
  font-weight: 500;
  color: var(--defaultMainAccent);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-wrap .post-item .date-wrap i {
  color: var(--defaultMainAccent);
}
/*Sidebars*/
.blog-sidebar {
  border: none;
  box-shadow: none;
}
.blog-sidebar .blog-sidebar-link {
  background: #f6f5f4;
}
.blog-sidebar .post-item-header h2 {
  background: var(--defaultMainColor);
}
/*Post Content*/
.blog-post-content {
  padding: 5rem 0;
}
.blog-post-content h1 {
  color: var(--defaultMainColor);
}
.blog-post-content h2 {
  color: var(--defaultMainColor);
  margin-bottom: 1rem;
}
.blog-post-content h3 {
  color: var(--defaultMainAccent);
  font-family: var(--mainFont);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.blog-post-content p {
  color: var(--defaultMainColor);
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.8;
}
.blog-post-content p a {
  color: var(--defaultMainColor);
}
.blog-post-content p a:hover {
  color: var(--defaultMainDark);
}
/*Post Return Button*/
.blog-return {
  text-align: left;
}
.blog-return a.blog-return-btn {
  background: var(--defaultMainAccent);
  border-radius: 0;
  font-size: .85rem;
  letter-spacing: 2px;
  font-weight: 500;
  font-family: var(--mainFont);
}
.blog-return a.blog-return-btn:hover {
  background: #906c24;
}
/*Pagination*/
.pagination .page-numbers {
  background: var(--defaultMainColor);
}
.pagination .page-numbers:hover, 
.pagination .page-numbers:focus {
  background: var(--defaultMainAccent);
}
.pagination span.page-numbers.current {
  background: var(--defaultMainAccent);
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .blog-wrap .container,
  .blog-post .container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 767px) {
  .search-form-wrap {
    padding: 2rem 0;
  }
  .blog-wrap .post-item {
      width: 100%;
  }
}
/*============================ */
/* DEFAULT POPUP STYLES:
============================== */
.default-popup .form-wrap {
  background: whitesmoke;
}
.default-popup .form-wrap h3 {
  color: var(--defaultMainDark);
}
.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);
  text-transform: uppercase;
}
.default-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--defaultMainAccent);
}
.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-weight: 500;
  font-size: .9rem;
  font-family: var(--mainFont);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--defaultMainAccent);
  margin-bottom: 0.25rem;
}
.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: 1rem;
  font-weight: 400;
}
.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: 1rem;
  font-weight: 500;
  margin: 0 1.5rem 0 0;
}
.default-popup .location ul li i {
  color: var(--defaultMainColor);
  padding-right: .5rem;
  padding-top: 0.15rem;
}
.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: .9rem;
  display: flex;
  align-items: center;
  background: var(--defaultMainAccent);
  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: .9rem;
  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;
  align-items: flex-start;
  padding: 6rem 0;
  text-align: left;
  background: url(img/h1.jpg) center 56% no-repeat;
  background-size: cover;
  overflow: hidden;
}
.page-template-blog .interior-header-05 {
  background: #ecebea;
}
.interior-header-05::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, .30);
}
.interior-header-05 .flex-container {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
}
/*.interior-header-05 .bg-title {
  position: absolute;
  left: 4rem;
  top: -4rem;
  width: 100%;
}*/
.interior-header-05 h1 {
  font-size: 3.5rem;
  color: #fff;
}
.interior-header-05 .content-wrap {
    position: relative;
}
.interior-header-05 h2 {
  font-weight: 500;
  font-size: .9rem;
  font-family: var(--mainFont);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 1rem;
}
.interior-header-05 .btn-wrap {
     display: flex;
     flex-wrap: wrap;
     margin-top: 3rem;
    margin-bottom: -6rem;
}
.interior-header-05 .btn-wrap a {
     position: relative;
    display: inline-block;
    overflow: hidden;
    color: #FFF;
    background: var(--defaultMainAccent);
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    margin: 0 .4rem .5rem;
    text-transform: uppercase;
    font-size: .9rem;
     margin-right: .5rem;
     margin-bottom: 1rem;
    transition: all .3s ease;
}
.interior-header-05 .btn-wrap a:hover {
    background: var(--accentLight);
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .interior-header-05 .flex-container {
    width: calc(100% - 4rem);
  }
  .interior-header-05 h1 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 991px) {
  .interior-header-05 h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .interior-header-05 {
    padding: 4rem 1rem;
  }
  .page-template-page-contact .interior-header-05 {
    padding: 6rem 0;
  }
  .interior-header-05 .flex-container {
    flex-direction: column;
    padding: 0 1rem;
    align-items: center;
  }
  .interior-header-05 h2 {
    text-align: center;
  }
     .interior-header-05 .btn-wrap {
          margin-bottom: -3rem;
     }
}

/*============================ */
/* Hollow Content 22
============================== */
.hollow-content-22 {
  position: relative;
  overflow: hidden;
}
.hollow-content-22 .flexbox {
  justify-content: space-between;
  align-items: stretch;
}
.hollow-content-22 .img-wrap {
  position: relative;
  width: 38%;
  padding: 6rem 0rem 0rem 0;
}
/*.hollow-content-22 .img-wrap .accent-bg {
  position: absolute;
  top: 0;
  right: -4rem;
  width: 100%;
  height: 110%;
  background: linear-gradient(180deg, var(--defaultMainColor) 95%, transparent 95.1%);
  z-index: -1;
}*/
.hollow-content-22 .img-wrap img {
  width: 100%;
  object-fit: cover;
  border-radius: 2rem 0;
}
.hollow-content-22 .img-wrap > img {
  position: absolute;
  height: 70%;
}
.hollow-content-22 .img-stack {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 80%;
  width: 100%;
}
.hollow-content-22 .img-stack img {
  position: relative;
  height: 45%;
}
.hollow-content-22 .content-wrap {
  width: 52%;
  padding: 6rem 0 4rem;
}
.hollow-content-22.service-area .content-wrap { width:100%; }
.hollow-content-22 .text-wrap {
  margin-bottom: 2rem;
}
.hollow-content-22 .text-wrap h3 {
  font-weight: 500;
  font-size: .9rem;
  font-family: var(--mainFont);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--defaultMainAccent);
  margin-bottom: 1rem;
}
.hollow-content-22 .text-wrap h4 {
  color: var(--defaultMainColor);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-family: var(--headingFont);
}
.hollow-content-22 .text-wrap p {
  font-size: .9rem;
  color: var(--defaultMainColor);
  font-weight: 400;
  line-height: 1.8;
}
.hollow-content-22 .text-wrap .feature p {
  font-weight: 700;
}
.hollow-content-22 .list-wrap {
  margin-bottom: 2rem;
}
.hollow-content-22 .list-wrap h4 {
  color: var(--defaultMainAccent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}
.hollow-content-22 .list-wrap ul li {
  display: list-item;
  list-style: disc;
  margin-left: 1rem;
  font-size: .9rem;
  color: var(--defaultMainColor);
  font-weight: 700;
}
.hollow-content-22 .box-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hollow-content-22 .box-wrap .box {
  width: calc(100% / 2 - 1rem);
  padding: 1.5rem 1rem;
  background: whitesmoke;
  display: flex;
}
.hollow-content-22 .icon-wrap i {
  font-size: 2.5rem;
  color: var(--defaultMainAccent);
}
.hollow-content-22 .icon-text {
  padding-left: 1rem;
}
.hollow-content-22 .icon-text h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--defaultMainColor);
}
.hollow-content-22 .icon-text p {
  font-size: 1rem;
}
.hollow-content-22 .icon-text a {
  display: inline-block;
  font-size: 1rem;
  padding: .5rem 1rem;
  border: 2px solid var(--defaultMainColor);
  background: var(--defaultMainColor);
  color: #fff;
  transition: all .3s ease;
}
.hollow-content-22 .icon-text a:hover {
  background: var(--defaultMainDark);
  border-color: var(--defaultMainDark);
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-content-22 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-22 .img-wrap {
    width: 44%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-22 {
    padding: 2rem 0 0;
    background: linear-gradient(0deg, #fff, 85%, #fff, 85%, var(--defaultMainColor));
  }
  .hollow-content-22 .flexbox {
    flex-direction: column-reverse;
  }
  .hollow-content-22 .img-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .hollow-content-22 .img-wrap img {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .hollow-content-22 .img-wrap .accent-bg {
    width: 100%;
    height: 100%;
    top: 8rem;
    right: 0;
  }
  .hollow-content-22 .img-stack {
    position: relative;
    height: 100%;
  }
  .hollow-content-22 .img-stack img:last-of-type {
    display: none;
  }
  .hollow-content-22 .list-wrap ul li {
    font-size: 1.3rem;
  }
  .hollow-content-22 .content-wrap {
    width: 100%;
    padding: 2rem 0 0;
  }
  .hollow-content-22 .box-wrap .box {
    width: 100%;
    margin-bottom: 2rem;
  }
  .hollow-content-22 .box-wrap .box:last-of-type {
    margin-bottom: 0;
  }
  .hollow-content-22 .text-wrap h3 {
    font-size: 1.2rem;
  }
}

.interior-portfolio-027 .flex-container {
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.interior-portfolio-027 .title-wrap {
  background: var(--defaultMainColor);
  padding: 2rem;
  width: 100%;
  margin-top: .15rem;
  text-align: center;
}
.interior-portfolio-027 .title-wrap h3 {
    color: #fff;
    font-size: 2.5rem;
}
.interior-portfolio-027 .gallery-wrap {
  width: 100%;
  height: 100%;
}
.interior-portfolio-027 .nextgen_pro_thumbnail_grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 1px;
}
.interior-portfolio-027 .image-wrapper {
  width: calc(25% - 2px)!important;
  height: calc(25% - 2px)!important;
  max-height: unset!important;
  object-fit: cover;
  margin: 1px!important;
}
.interior-portfolio-027 .nextgen_pro_thumbnail_grid .image-wrapper > a {
  display: inline-block;
  width: 100%!important;
  height: 100%!important;
}
.interior-portfolio-027 .nextgen_pro_thumbnail_grid .image-wrapper img {
  will-change: transform;
  height: 100%!important;
  transition: opacity .3s ease, transform 1s ease;
}
.interior-portfolio-027 .nextgen_pro_thumbnail_grid .image-wrapper img:hover {
  opacity: .8;
  transform: scale(1.1);
}
@media only screen and (max-width: 991px) {
  .interior-portfolio-027 .flex-container {
    padding: 0;
  }
  .interior-portfolio-027 .image-wrapper {
    width: calc(33% - 2px) !important;
    height: calc(34% - 2px) !important;
  }
}
@media only screen and (max-width: 767px) {
  .interior-portfolio-027 .image-wrapper {
    width: calc(50% - 2px) !important;
    height: calc(51% - 2px) !important;
  }
}


/*============================ */
/* Hollow Content 19
============================== */
.hollow-content-19 {
  position: relative;
  padding: 0 0 4rem;
  margin-top: -2rem;
}
.hollow-content-19 .flex-container,
.hollow-content-19 .flex-container-fluid {
  justify-content: space-between;
  width: 100%;
}
.hollow-content-19 .text-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-basis: 54%;
  padding: 2rem;
  margin: 6rem 0;
  background: whitesmoke;
  z-index: 10;
  box-shadow: 2px 2px 21px rgba(0, 0, 0, .25);
}
.hollow-content-19 .title-wrap {
    margin-bottom: 1rem;
}
.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: var(--defaultMainDark);
  font-weight: 400;
  text-transform: uppercase;
}
.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: 1rem;
  font-weight: 500;
  color: #000;
}
.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-basis: 50%;
  display: flex;
  position: relative;
}
.hollow-content-19 .img-wrap img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}
.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: 768px) {
  .hollow-content-19 .flex-container {
      padding: 0 0 0 2rem;
      flex-direction: row;
  }
}
@media only screen and (min-width: 992px) {
  .hollow-content-19 .flex-container {
    padding: 0 0 0 4rem;
  }
  .hollow-content-19 .text-wrap {
    margin-right: -4rem;
  }
}
@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 {
    order: ;
  }
  .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;
    margin-top: 0;
  }
  .hollow-content-19 .flex-container, .hollow-content-19 .flex-container-fluid {
    border-radius: 0;
    flex-direction: column;
  }
  .hollow-content-19 .flex-container > * {
    width: 100%;
  }
  .hollow-content-19 .text-wrap {
    box-shadow: none;
    margin: 0 0 2rem;
  }
  .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 img {
    position: relative;
  }
}

.interior-content-007 {
  padding: 0 0 4rem;
}
.interior-content-007 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.interior-content-007 .title-wrap h3 {
  text-transform: uppercase;
  font-weight: 400;
  color: #000;
}
.interior-content-007 .flex-container {
  justify-content: space-between;
  flex-wrap: wrap;
}
.interior-content-007 .box {
  width: 48%;
}
.interior-content-007 .title {
  background: whitesmoke;
  padding: 1rem;
  box-shadow: 2px 2px 21px rgba(0, 0, 0, .25);
  margin-bottom: 2rem;
}
.interior-content-007 p {
  color: #000;
  font-weight: 500;
  margin-bottom: 0;
}
.interior-content-007 .list-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.interior-content-007 .list-wrap ul {
  display: block;
  padding-left: 1rem;
  width: 50%;
}
.interior-content-007 ul li i {
  color: #000;
  vertical-align: top;
  margin-top: .45rem;
  padding-right: .75rem;
  font-size: .5rem;
}
.interior-content-007 ul li p {
  display: inline-block;
  max-width: calc(100% - 1.3rem);
  vertical-align: top;
  margin-bottom: 0;
  font-size: 1rem;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .interior-content-007 .flex-container {
    width: calc(100% - 4rem);
/*     padding: 0 2rem; */
  }
}
@media only screen and (max-width: 767px) {
  .interior-content-007 {
    padding: 0 0 1rem;
  }
  .interior-content-007 .box {
    width: 100%;
    margin-bottom: 1rem;
  }
  .interior-content-007 .box .list-wrap {
    margin-bottom: 2rem;
  }
  .interior-content-007 .list-wrap ul {
    width: 100%;
  }
}





.interior-content-002 {
  padding: 4rem 0 2rem;
}
.interior-content-002 .box {
  padding: 2rem 2rem 1rem;
  background: whitesmoke;
/*   border-radius: 2rem; */
  box-shadow: 2px 2px 21px rgba(0, 0, 0, .25);
}
.interior-content-002 h3 {
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-family: var(--headingFont);
  color: #000;
}
.interior-content-002 p {
  font-size: 1rem;
  color: #000;
  font-weight: 500;
}
.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 .list-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 1rem;
}
.interior-content-002 ul {
  display: block;
  width: 48%;
}
.interior-content-002 ul li i {
  color: #000;
  vertical-align: top;
  font-size: .5rem;
  padding-top: .45rem;
  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;
  max-width: calc(100% - 1.3rem);
}
.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: 2rem 0;
  }
  .interior-content-002 ul {
    width: 100%;
  }
  .interior-content-002 ul li i {
    padding-top: .65rem;
  }
  .interior-content-002 p.accent {
    border-radius: 1rem;
  }
}


/*============================ */
/* Interior Testimonials 04
============================== */
.interior-testimonials-04 {
  padding: 4rem 0 4rem;
  background: linear-gradient(90deg, #fff, 80%, #fff, 80%, var(--defaultMainColor));
}
.interior-testimonials-04 .flex-container {
  justify-content: center;
}
.interior-testimonials-04 .box-wrap {
  padding: 2rem;
  margin-bottom: 2rem;
  width: 80%;
  margin: 0 auto 2rem;
}
.interior-testimonials-04 .box-a {
  background: whitesmoke;
}
.interior-testimonials-04 .box-b {
  background: whitesmoke;
}
.interior-testimonials-04 .quote {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.interior-testimonials-04 .box-wrap i {
  color: var(--defaultMainColor);
  font-size: 2rem;
  text-align: center;
  margin-bottom: .5rem;
}
.interior-testimonials-04 .box-wrap p {
  font-size: 0.9rem;
  /* font-weight: 500; */
  color: #000;
  margin-bottom: 1rem;
  text-align: center;
  font-style: italic;
}
.interior-testimonials-04 .box-wrap p.client-name {
  font-size: 1.1rem;
  font-weight: 400;
  color: #000;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .interior-testimonials-04 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 767px) {
  .interior-testimonials-04 {
    padding: 2rem 0 0;
    background: #fff;
  }
  .interior-testimonials-04 .box-wrap {
    width: 100%;
  }
  .interior-testimonials-04 .box-a {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .interior-testimonials-04 .box-b {
    padding: 2rem 1rem;
  }
}

/*============================ */
/* Interior Maps 01
============================== */
.interior-maps-01 {
  padding: 4rem 0;
  background: linear-gradient(90deg, #fff, 80%, #fff, 80%, var(--defaultMainColor));
}
.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 .text-wrap h3 {
  font-weight: 500;
  font-size: .9rem;
  font-family: var(--mainFont);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--defaultMainAccent);
  margin-bottom: 1rem;
}
.interior-maps-01 .text-wrap h4 {
  color: var(--defaultMainColor);
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.4;
  font-family: var(--headingFont);
}
.interior-maps-01 .text-wrap p {
  font-size: .9rem;
  color: var(--defaultMainColor);
  font-weight: 400;
  line-height: 1.8;
}
.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;
  margin-left: .75rem;
  font-size: .9rem;
  color: var(--defaultMainColor);
  font-weight: 700;
}
.interior-maps-01 .list-wrap ul li i {
  color: var(--defaultMainColor);
  font-weight: 400;
  padding: 0.2rem .7rem 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;
  width: 48%;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s ease;
}
.interior-maps-01 .map-wrap span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1.5rem;
  font-family: var(--headingFont);
}
.interior-maps-01 .map-wrap i {
  font-size: 3rem;
  padding: .5rem;
  font-weight: 400;
}
.interior-maps-01 .map-wrap span {
  position: absolute;
  opacity: 0;
  color: #fff;
  z-index: 1000;
  text-shadow: 1px 1px 3px #000;
  transition: all .3s ease;
}
.interior-maps-01 .map-wrap:hover i,
.interior-maps-01 .map-wrap:hover span {
  opacity: 1;
}
.interior-maps-01 .map-wrap .map-overlay {
  content: '';
  top: 50%;
  left: 50%;
  width: 20rem;
  height: 20rem;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: var(--defaultMainColor);
  border: 2px solid var(--defaultMainDark);
  z-index: 1000;
  position: absolute;
  opacity: .3;
}
.interior-maps-01 .map-wrap iframe {
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
@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 .list-wrap .list-1 {
    margin-right: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .interior-maps-01 {
    padding: 2rem 0;
    background: #fff;
  }
  .interior-maps-01 .flex-container {
    flex-direction: column;
  }
  .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 .map-wrap {
    width: 100%;
  }
  .interior-maps-01 .map-wrap iframe {
    height: 30rem;
  }
}
/*============================ */
/* Interior Careers 01
============================== */
.interior-careers-01 {
  padding: 0 0 4rem;
}
.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: #f6f5f4;
  padding: 2rem 2rem 1rem;
  position: relative;
}
.interior-careers-01 .group-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.interior-careers-01 .group-wrap p {
  margin: 0.5rem 0;
  color: var(--defaultMainColor);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
.interior-careers-01 .group-wrap h3 {
  margin-bottom: 1rem;
  color: var(--defaultMainColor);
  text-align: center;
}
.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: .9rem;
  font-weight: 300;
  color: #000;
  width: 100%;
  padding: .5rem;
  margin-bottom: 1rem;
  outline: none;
  border: 1px solid #ccc;
}
.interior-careers-01 .wpcf7-form-control-wrap input:focus,
.interior-careers-01 .wpcf7-form-control-wrap select:focus,
.interior-careers-01 .wpcf7-form-control-wrap textarea:focus {
  border-color: var(--defaultMainAccent);
  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: .85rem;
  color: var(--defaultMainColor);
  font-size: .85rem;
  background: transparent;
  padding: .5rem 3rem;
  font-weight: 500;
  border: 2px solid var(--defaultMainColor);
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all .3s ease;
}
.interior-careers-01 .submit-wrapper input[type="submit"]:hover {
  background: var(--defaultMainColor);
  border-color: var(--defaultMainColor);
  color: #fff;
}
@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: 0 0 2rem;
  }
  .interior-careers-01 .content-wrap {
    margin-bottom: 2rem;
  }
  .interior-careers-01 .form-wrap form {
    padding: 1.5rem 1rem;
  }
  .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.25rem;
    font-weight: 400;
  }
}



/*============================ */
/* Content 04
============================== */
.hollow-content-04 {
  padding: 4rem 0 0;
}
.hollow-content-04 .flex-container {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.hollow-content-04 .text-wrap {
  flex-basis: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hollow-content-04 .title-wrap h1 {
  color: #525865;
  font-weight: 700;
  margin-bottom: .25rem;
}
.hollow-content-04 .title-wrap h3 {
  color: #000;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hollow-content-04 .text-wrap p {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.hollow-content-04 .button-wrap {
  margin-top: 1rem;
}
.hollow-content-04 .button-wrap a {
  display: flex;
  align-items: center;
}
.hollow-content-04 .button-wrap a span {
  color: var(--defaultMainDark);
  transition: all .3s ease;
  padding: 1rem 1rem 1rem 0;
  text-transform: uppercase;
}
.hollow-content-04 .button-wrap a hr {
  border: none;
  margin: 0;
  height: 2px;
  background: var(--defaultMainDark);
  width: 5rem;
  transition: all .3s ease;
}
.hollow-content-04 .button-wrap a:hover hr {
    width: 6rem;
    color: var(--defaultMainDark);
    margin-left: .75rem;
}
.hollow-content-04 img {
  flex-basis: 48%;
  display: flex;
  object-fit: cover;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .hollow-content-04 .flex-container.reverse {
    flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-content-04 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-04 .flex-container > * {
    flex-basis: 48%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-04 {
    padding: 2rem 0 0;
  }
  .hollow-content-04 .flex-container {
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .hollow-content-04 .flex-container > * {
    width: 100%;
  }
  .hollow-content-04 .text-wrap {
    margin-bottom: 2rem;
  }
  .hollow-content-04 .button-wrap a span {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 768px){
  .hollow-corner-item-08 {
    display:none !important;
  }
}