/*
  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: #363636;
  --defaultMainDark: #000;
  --defaultMainAccent: #53cc42;
  --accentLight: #65ec52;
  --defaultGrey: #646464;
  
  /* Font Variables */
  --headingFont: 'Oswald', sans-serif;
  --mainFont: 'Montserrat', sans-serif;
}

html {
  font-family: var(--mainFont);
}
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 09
============================== */
.hollow-header-09 {
  display: block;
  position: relative;
  z-index: 9000;
  background: #fff;
  color: #f6f6f6;
  width: 100%;
}
.hollow-header-09.sticky {
  position: fixed;
  top: 0;
}
.hollow-header-09 .container {
  width: 100%;
  padding: 0 3vw 0 0;
}
.hollow-header-09 .logo img {
  max-width: 100%;
  transition: all .32s ease;
}
.hollow-header-09.sticky .logo img {
  display: none;
}
.hollow-header-09 .va-middle {
  float: left;
}
.hollow-header-09 .phone-wrap,
.hollow-header-09 .email-wrap {
  text-align: left;
  font-size: 0;
  display: inline-block;
}
.hollow-header-09 .phone-wrap a,
.hollow-header-09 .email-wrap a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin: 0.4rem 0;
  display: inline-block;
  transition: all 0.2s ease;
  letter-spacing: .5px;
}
.hollow-header-09 .phone-wrap i,
.hollow-header-09 .email-wrap i {
  padding-right: 0.35rem;
}
.hollow-header-09 .phone-wrap a:hover,
.hollow-header-09 .email-wrap a:hover {
  color: var(--accentLight);
}
.hollow-header-09 .social {
  display: inline-block;
}
.hollow-header-09 .social a {
  color: #fff;
  font-size: 1.3rem;
  display: inline-block;
  vertical-align: middle;
  padding: .3rem;
  transition: all 0.2s ease;
}
.hollow-header-09 .social a:hover {
  color: var(--accentLight);
}
.hollow-header-09 .logo img {
  padding: 1rem 2rem 1rem 2rem;
  display: flex;
  width: 20rem;
}
.hollow-header-09 .meta-wrap-outer {
  font-size: 2rem;
  font-weight: 400;
  background: var(--defaultMainColor);
  margin: 0;
  padding: .25rem 0;
}
.hollow-header-09 .meta-wrap-inner {
  display: block;
  position: relative;
  text-align: right;
  font-family: var(--headingFont);
}
.hollow-header-09 .meta-wrap-inner .spacer {
  padding: 0.25rem;
  font-size: 1.5rem;
  color: #fff;
}
.hollow-header-09 .mobile-toolbar nav a.mobile-icon {
  font-size: 26px;
}
.hollow-header-09.sticky .meta-wrap-outer {
  display: none;
}
.hollow-header-09 .social {
  text-align: right;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
/* NAVIGATION */
.hollow-header-09 nav {
  float: right;
  display: inline-block;
  background: none;
  font-size: 2rem;
  position: relative;
  z-index: 5000;
  font-family: var(--headingFont);
  padding: 1rem 0;
}
.hollow-header-09.sticky nav {
  padding: 0;
}
.hollow-header-09 nav a {
  padding: 0.3rem 0.6rem;
  display: block;
  color: var(--defaultMainColor);
  font-size: 1.1rem;
  letter-spacing: .5px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease;
}
.hollow-header-09 nav a:focus {
  color: var(--defaultMainDark);
}
.hollow-header-09 nav a i {
  padding-right: .4rem;
  font-weight: 300;
}
.hollow-header-09 nav .menu-item {
  margin-bottom: 0;
}
/* NAV LEVEL ONE */
.hollow-header-09 .menu-item.open>a, .hollow-header-09 .menu-item:hover>a, .hollow-header-09 .menu-item.active a, .hollow-header-09 .menu-item.active:hover>a {
  color: var(--defaultMainAccent);
}
/* NAV LEVEL TWO */
.hollow-header-09 .dropdown-menu {
  margin-top: 0px;
  border-radius: 0;
  border: none;
  padding: 0;
  width: 18em;
  display: none;
}
.hollow-header-09 nav .dropdown-menu .menu-item {
  float: none;
}
.hollow-header-09 nav .dropdown-menu a {
  background: #272727;
  color: #fff;
}
.hollow-header-09 .dropdown-menu>li:hover>a,
.hollow-header-09 .dropdown-menu>li.active>a,
.hollow-header-09 .dropdown-menu>.active>a:hover,
.hollow-header-09 .dropdown-menu>.active>a:focus {
  background: #000;
  color: #fff;
  border-color: transparent;
}
.hollow-header-09 .dropdown .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0 0 3px 5px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
/* NAV MOBILE */
.hollow-header-09 nav #mobile {
  position: relative;
  height: 48px;
  width: 30px;
  background: none;
  outline: none;
  border: none;
  float: right;
}
.hollow-header-09 .hamburger {
  display: block;
  position: absolute;
  width: 30px;
  height: 20px;
  background: #FFF;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}
.hollow-header-09 .hamburger:hover {
  cursor: pointer;
}
.hollow-header-09 .hamburger:before,
.hollow-header-09 .hamburger:after {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 20%;
  /*transition-property: transform, top;
  transition-duration: .2s;
  transition-timing-function: ease;*/
  transition: all .2s ease;
  transform: translateZ(0);
}
.hollow-header-09 .hamburger:after {
  top: 60%;
}
header.hollow-header-09.header-menu-open #mobile,
header.hollow-header-09.header-menu-open #mobile .hamburger {
  background: transparent;
}
header.hollow-header-09.header-menu-open #mobile>.hamburger:before,
header.hollow-header-09.header-menu-open #mobile>.hamburger:after {
  top: 40%;
  background: #FFF;
}
header.hollow-header-09.header-menu-open #mobile>.hamburger:before {
  transform: rotate(45deg);
}
header.hollow-header-09.header-menu-open #mobile>.hamburger:after {
  transform: rotate(-45deg);
}
body.transparent header {
  position: absolute;
  width: 100%;
  background: rgba(25, 25, 25, 0.5);
}
/* MOBILE TOOLBAR */
.hollow-header-09 .mobile-toolbar {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.hollow-header-09 .mobile-toolbar a {
  color: #fff;
  padding: .5rem .6rem;
}
.hollow-header-09 .mobile-toolbar a:hover,
.hollow-header-09 .mobile-toolbar a:focus {
  color: #f6f6f6;
}
.hollow-header-09 .mobile-toolbar>* {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (min-width: 992px) {
  .hollow-header-09:not(.sticky) {
    min-height: 4rem;
  }
  .hollow-header-09 .mobile-toolbar {
    display: none;
  }
  .hollow-header-09 .menu {
    float: right;
  }
  .hollow-header-09 nav .menu-item {
    float: left;
    position: relative;
  }
  .hollow-header-09 nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
  }
  .hollow-header-09 nav .menu-item-has-children:hover>ul.dropdown-menu {
    display: block;
  }
  .hollow-header-09 .mobile-toolbar {
    display: none;
  } 
}
@media only screen and (max-width: 1300px) and (min-width: 992px) {
  .hollow-header-09 > .container,
  .hollow-header-09 .meta-wrap-outer > .container {
    /* width: calc(100% - 0.5rem); */
  }
  .hollow-header-09 nav a {
    text-transform: capitalize;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-header-09 {
    /* background: #fff; */
  }
  .hollow-header-09 .container {
    padding: 0 15px;
  }
  .hollow-header-09 .logo {
    text-align: center;
  }
  .hollow-header-09 .logo img {
    margin: 3.5rem auto;
    box-shadow: none;
    width: 26rem;
    max-width: 100%;
  }
  body:not(.home) .hollow-header-09 .logo {
    display: none;
  }
  header.hollow-header-09.header-menu-open nav .menu {
    pointer-events: auto;
    opacity: 1;
    max-height: 85vh;
    overflow-y: auto;
  }
  .hollow-header-09 nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 15px;
    width: 100%;
    background: var(--defaultMainColor);
  }
  .hollow-header-09 nav a {
    text-transform: uppercase;
    color: #FFF;
    border: none;
    padding: 0.6rem;
  }
  .hollow-header-09 .menu-item.open>a, 
  .hollow-header-09 .menu-item:hover>a, 
  .hollow-header-09 .menu-item.active a, 
  .hollow-header-09 .menu-item.active:hover>a {
    color: var(--defaultMainColor);
    background: var(--defaultMainAccent);
  }
  .hollow-header-09 .dropdown-menu>li:hover>a, 
  .hollow-header-09 .dropdown-menu>li.active>a, 
  .hollow-header-09 .dropdown-menu>.active>a:hover, 
  .hollow-header-09 .dropdown-menu>.active>a:focus {
    color: #fff;
    background: var(--defaultMainDark);
  }
  .hollow-header-09 .hamburger::before,
  .hollow-header-09 .hamburger::after {
    background: var(--defaultMainColor);
  }
  .hollow-header-09 nav .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transition: opacity 0.25s;
    z-index: -1;
    background: #000;
    box-shadow: 0 3px 3px -2px #000;
    pointer-events: none;
    opacity: 0;
  }
  .hollow-header-09 nav .menu-item-has-children.open .dropdown-menu {
    display: block;
  }
  .hollow-header-09 .dropdown-menu {
    position: relative;
    box-shadow: none;
    width: 100%;
  }
  .hollow-header-09 .dropdown-menu>li>a {
    padding-left: 2.5rem;
  }
  .hollow-header-09 .mobile-toolbar>* {
    display: inline-block;
  }
  .hollow-header-09 .mobile-toolbar a {
    font-size: 26px;
    float: left;
  }
}
@media screen and (orientation: portrait) and (max-width:991px) {
  .hollow-header-09 nav a {
    font-size: 1.75rem;
    padding: 0.75rem;
  }
}
@media screen and (max-width:767px) {
  .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-09 .logo img {
    max-width: 100%;
  }
}
@media screen and (orientation: portrait) and (max-width:767px) {
  .hollow-header-09 nav a {
    font-size: 1.5rem;
    padding: 0.75rem;
  }
}
@media screen and (orientation: landscape) and (max-width:767px) {
  .default-popup .form-wrap,
  header.hollow-header-09.header-menu-open nav .menu {
    max-height: 74vh;
    overflow-y: auto;
  }
}

/*HOMEPAGE COMPONENTS*/


/*============================ */
/* Hero 06
============================== */
.hollow-hero-06 {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: #272727;
}
.hollow-hero-06 .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 68%;
  height: 100%;
  background: #000;
}
.hollow-hero-06 .img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hollow-hero-06 .flex-container {
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.hollow-hero-06 .caption-wrap {
  padding: 3rem 2rem;
  height: 100%;
  width: 45%;
  border-radius: 2rem 0 0 0;
  background: #272727;
}
.hollow-hero-06 .caption-wrap h1 {
  font-weight: 400;
  font-size: .9rem;
  font-family: var(--mainFont);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--defaultMainAccent);
  margin-bottom: 1rem;
}
.hollow-hero-06 .caption-wrap h2 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 400;
}
.hollow-hero-06 .caption-wrap p {
  font-weight: 500;
  color: #fff;
  font-size: .9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.hollow-hero-06 .btn-wrap {
  margin: 1.5rem 0 0;
  display: inline-block;
}
.hollow-hero-06 .btn-wrap a {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  color: var(--defaultMainAccent);
  font-weight: 500;
  font-size: 1.1rem;
  font-family: var(--headingFont);
  letter-spacing: .5px;
  border: 1px solid var(--defaultMainAccent);
  transition: .3s;
}
.hollow-hero-06 .btn-wrap a:hover {
  background: var(--defaultMainAccent);
  color: var(--defaultMainColor);
}
.hollow-hero-06 .img-wrap {
  width: 55%;
  position: relative;
}
.hollow-hero-06 .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  border-radius: 0 0 2rem 0;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-hero-06 .flex-container {
    width: calc(100% - 4rem);
  }
  .hollow-hero-06 .caption-wrap {
    padding: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-hero-06 {
    height: unset;
    padding: 4rem 0 4rem;
    background: #000;
  }
  .hollow-hero-06 .flex-container {
    flex-direction: column-reverse;
  }
  .hollow-hero-06 .img-bg {
    width: 100%;
    height: 40%;
  }
  .hollow-hero-06 .caption-wrap {
    width: 100%;
    padding: 2rem;
    border-radius: 0 0 2rem 0;
  }
  .hollow-hero-06 .caption-wrap h1 {
    font-size: 1.2rem;
  }
  .hollow-hero-06 .btn-wrap {
    margin: 1rem 0 0;
  }
  .hollow-hero-06 .img-wrap {
    width: 100%;
    height: 36rem;
  }
  .hollow-hero-06 .img-wrap img {
    border-radius: 2rem 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-hero-06 {
    padding: 2rem 0 2rem;
  }
  .hollow-hero-06 .img-wrap {
    height: 19rem;
  }
}

/*============================ */
/* Action 11
============================== */
.hollow-action-11 {
  padding: 2rem 0;
  background: var(--defaultMainColor);
}
.hollow-action-11 .flex-container,
.hollow-action-11 .flex-container-fluid {
  justify-content: center;
  align-items: center;
}
.hollow-action-11 h3 {
  color: #FFF;
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
}
.hollow-action-11 h3 span {
  border-bottom: 1px solid var(--defaultMainColor);
  font-weight: 400;
  margin-right: .25rem;
  padding-bottom: .25rem;
}
.hollow-action-11 h3#phone a {
  font-weight: 600;
  color: var(--defaultMainAccent);
  padding: 0 1.5rem;
  transition: all .3s ease;
}
.hollow-action-11 h3#phone a:hover {
  color: var(--accentLight);
  border: none;
}
.hollow-action-11 .btn-wrap a {
  display: flex;
  padding: 0.5rem 2rem;
  border-radius: 2rem;
  color: var(--defaultMainAccent);
  font-weight: 500;
  font-size: 1.1rem;
  font-family: var(--headingFont);
  letter-spacing: .5px;
  border: 1px solid var(--defaultMainAccent);
  transition: .3s;
}
.hollow-action-11 a:hover {
  background: var(--defaultMainAccent);
  color: var(--defaultMainColor);
}
@media only screen and (max-width: 991px) {
  .hollow-action-11 .flex-container,
  .hollow-action-11 .flex-container-fluid {
    flex-flow: column;
  }
  .hollow-action-11 h3 {
    margin-bottom: 1rem;
    padding: 0;
  }
  .hollow-action-11 h3 span {
    border: none;
    padding: none;
    font-weight: 300;
  }
}

/*============================ */
/* Service Images 22
============================== */
.service-images-22 {
  padding: 9rem 0 5rem;
}
.service-images-22 .title-wrap {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}
.service-images-22 .title-wrap h2 {
  color: var(--defaultMainColor);
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
}
.service-images-22 .title-wrap h2::before {
  content: "Services";
  font-size: 10.5rem;
  font-weight: 900;
  position: absolute;
  text-transform: uppercase;
  top: -4.5rem;
  left: 0;
  text-align: center;
  width: 100%;
  color: #363636;
  opacity: .05;
  overflow: hidden;
  user-select: none;
  font-family: var(--headingFont);
  pointer-events: none;
}
.service-images-22 .flexbox {
  flex-wrap: wrap;
  justify-content: space-between;
}
.service-images-22 .box-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  align-items: center;
  width: calc(100% / 3 - 1.25rem);
  margin-bottom: 2rem;
}
.service-images-22 .box-wrap img {
  display: flex;
  object-fit: cover;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 20px 0;
}
.service-images-22 .link-wrap {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.service-images-22 .link-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--defaultMainColor);
}
.service-images-22 .link-wrap .spanner {
  color: var(--defaultMainColor);
  margin-bottom: .5rem;
}
.service-images-22 .link-wrap .spanner {
  border: none;
  margin: 0;
  width: 4rem;
  height: 2px;
  background: var(--defaultMainAccent);
  transition: all .3s ease;
}
.service-images-22 .box-wrap:hover .spanner {
  width: 100%;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .service-images-22 .flex-container {
    width: 100%;
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .service-images-22 {
    padding: 2rem 1rem 0;
  }
  .service-images-22 .flexbox {
    flex-flow: column;
  }
  .service-images-22 .box-wrap {
    width: 100%;
  }
  .service-images-22 .title-wrap h2::before {
    display: none;
  }
  .service-images-22 .link-wrap h3 {
    font-size: 2rem;
  }
}


/*============================ */
/* Service Icons 10
============================== */
.service-icons-10 {
  padding: 9rem 0 4rem;
}
.service-icons-10 .text-wrap {
  width: 100%;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}
.service-icons-10 .text-wrap h2 {
  color: var(--defaultMainColor);
  font-size: 3rem;
  font-weight: 400;
}
.service-icons-10 .text-wrap h2::before {
  content: "Why Us";
  font-size: 10.5rem;
  font-weight: 900;
  position: absolute;
  text-transform: uppercase;
  top: -4.5rem;
  left: 0;
  text-align: center;
  width: 100%;
  color: #363636;
  opacity: .05;
  overflow: hidden;
  user-select: none;
  font-family: var(--headingFont);
  pointer-events: none;
}
.service-icons-10 .flexbox {
  justify-content: space-between;
  flex-wrap: wrap;
}
.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 p {
  font-size: .9rem;
  color: var(--defaultMainDark);
  line-height: 1.8;
  max-width: 45rem;
}
.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 - 1.25rem);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 2rem;
}
.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: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;
  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 h3 {
    font-size: 2rem;
  }
  .service-icons-10 .icon-wrap span {
    font-size: 1rem;
  }
  .service-icons-10 .text-wrap h2::before {
    display: none;
  }
}

/*============================ */
/* Content 10
============================== */
.hollow-content-10 .text-wrap {
  padding: 6rem;
  width: 60%;
  background: var(--defaultMainColor);
}
.hollow-content-10 .text-wrap h2 {
  color: var(--defaultMainAccent);
  text-transform: uppercase;
  font-weight: 500;
  font-size: .9rem;
  font-family: var(--mainFont);
  letter-spacing: 3px;
  margin-bottom: 1rem;
}
.hollow-content-10 .text-wrap h3 {
  color: #fff;
  font-weight: 400;
  margin-bottom: 1rem;
  font-size: 3rem;
}
.hollow-content-10 .text-wrap p {
  font-size: .9rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.8;
}
.hollow-content-10 .text-wrap p a:hover {
  color: var(--defaultMainDark);
}
.hollow-content-10 .button-wrap {
  margin: 1rem 0;
  display: inline-block;
}
.hollow-content-10 .button-wrap a {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  color: var(--defaultMainAccent);
  font-weight: 500;
  font-size: 1.1rem;
  font-family: var(--headingFont);
  letter-spacing: .5px;
  border: 1px solid var(--defaultMainAccent);
  transition: .3s;
}
.hollow-content-10 .button-wrap a:hover {
  background: var(--defaultMainAccent);
  color: var(--defaultMainColor);
}
.hollow-content-10 .button-wrap a i {
  color: #FFF;
}
.hollow-content-10 .img-wrap {
  position: relative;
  width: 40%;
}
.hollow-content-10 .img-wrap img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 992px) {
  .hollow-content-10 .reverse {
    flex-direction: row-reverse;
  }
  .hollow-content-10 .img-wrap img {
    position: absolute;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-10 .flex-container-fluid {
    flex-direction: column;
  }
  .hollow-content-10 .text-wrap {
    order: 1;
    width: 100%;
  }
  .hollow-content-10 .img-wrap {
    order: 2;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-10 .text-wrap {
    padding: 2rem 1rem;
  }
  .hollow-content-10 .text-wrap h2 {
    font-size: 1.2rem;
  }
  .hollow-content-10 .button-wrap a {
    font-size: 1rem;
  }
}


/*============================ */
/* Associate 02
============================== */
.hollow-associate-02 {
  position: relative;
  background: #000;
}
.hollow-associate-02 .title-wrap {
  padding: 2rem 0 1rem;
  width: 100%;
  background: var(--defaultMainColor);
}
.hollow-associate-02 .title-wrap .flex-container {
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.hollow-associate-02 .title-wrap h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.hollow-associate-02 .title-wrap p {
  color: #fff;
  margin-bottom: 1.5rem;
}
.hollow-associate-02 .associate-slider {
  margin-bottom: 0;
  width: 100%;
  padding: 2rem 0;
  visibility: hidden;
}
.hollow-associate-02 .associate-slider.slick-initialized {
  visibility: visible;
}
.hollow-associate-02 .associate-slider .slick-track {
  display: flex;
  align-items: center;
}
.hollow-associate-02 .associate-slider .slick-slide {
  text-align: center;
}
.hollow-associate-02 .associate-slider .slick-slide:last-of-type {
  text-align: center;
}
.hollow-associate-02 .associate-slider a {
  display: inline-block;
  vertical-align: middle;
}
.hollow-associate-02 .slick-prev:before,
.hollow-associate-02 .slick-next:before {
  color: #000 !important;
}
.hollow-associate-02 .associate-slider a:focus {
  outline: 0;
}
.hollow-associate-02 .associate-slider a img {
  max-width: 90%;
  display: inline-block;
  width: 100%;
  height: 6rem;
  object-fit: contain;
  padding: 1rem;
  border-radius: 8px;
  transition: all .3s ease;
  filter: grayscale(1) invert(1);
}
.hollow-associate-02 .associate-slider a img:hover {
  opacity: .8;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-associate-02 .flex-container {
    width: calc(100% - 4rem);
  }
}


/*============================ */
/* Testimonial 06
============================== */
.hollow-testimonial-06 {
  padding: 9rem 0 7rem;
  background: var(--defaultMainColor);
}
.hollow-testimonial-06 .title-wrap {
  margin-bottom: 4rem;
  position: relative;
}
.hollow-testimonial-06 .title-wrap h2 {
  color: #fff;
  font-weight: 400;
  font-size: 3rem;
  text-align: center;
}
.hollow-testimonial-06 .title-wrap h2::before {
  content: "Reviews";
  font-size: 10.5rem;
  font-weight: 900;
  position: absolute;
  text-transform: uppercase;
  top: -4.5rem;
  left: 0;
  text-align: center;
  width: 100%;
  color: #fff;
  opacity: .05;
  overflow: hidden;
  user-select: none;
  font-family: var(--headingFont);
  pointer-events: none;
}
.hollow-testimonial-06 hr {
  border: none;
  height: 2px;
  background: var(--defaultMainAccent);
  width: 0;
  margin: 0;
}
.hollow-testimonial-06 .flex-container {
  flex-direction: column;
}
.hollow-testimonial-06 .testimonial-slider-wrap {
  padding: 1rem;
  background: #272727;
  border-radius: 5px;
}
.hollow-testimonial-06 .text p {
  font-size: .9rem;
  font-weight: 500;
  color: #fff;
  font-style: italic;
  line-height: 1.6;
}
.hollow-testimonial-06 .creds {
  padding: 0 1rem;
}
.hollow-testimonial-06 .creds .arrow {
  display: block;
  width: 0px;
  height: 0px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #272727;
  margin: 0 2rem 1rem;
}
.hollow-testimonial-06 .creds h3 {
  color: #fff;
  margin-bottom: .25rem;
}
.hollow-testimonial-06 .creds p {
  font-size: .9rem;
  color: var(--defaultMainColor);
}
@media only screen and (max-width: 767px) {
  .hollow-testimonial-06 {
    padding: 2rem 0;
  }
  .hollow-testimonial-06 .title-wrap h2::before {
    display: none;
  }
  .hollow-testimonial-06 .creds h3 {
    font-size: 2rem;
  }
}



.hollow-img-lg {
  padding: 16rem 0;
  background: url(img/default_1400x400.jpg) center center / cover no-repeat;
}



/*============================ */
/* Blog 01
============================== */
.hollow-blog-01 {
  padding: 7rem 0;
  background: #272727;
}
.hollow-blog-01 .grid-container {
  grid-gap: 2rem;
}
.hollow-blog-01 .item {
  display: flex;
  flex-direction: column;
  background: #000;
  border-radius: 2rem 0;
}
.hollow-blog-01 .title-wrap {
  position: relative;
  margin-bottom: 4rem;
}
.hollow-blog-01 .title-wrap h2 {
  font-size: 3rem;
  color: #fff;
  text-align: center;
}
.hollow-blog-01 .title-wrap h2::before {
  content: "Our Blog";
  font-size: 10.5rem;
  font-weight: 900;
  position: absolute;
  text-transform: uppercase;
  top: -4.5rem;
  left: 0;
  text-align: center;
  width: 100%;
  color: #fff;
  opacity: .05;
  overflow: hidden;
  user-select: none;
  font-family: var(--headingFont);
  pointer-events: none;
}
.hollow-blog-01 .img-wrap {
  height: 15rem;
}
.hollow-blog-01 .img-wrap img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 2rem 0 0 0;
}
.hollow-blog-01 .text-wrap {
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 1rem 1rem 1.5rem;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.hollow-blog-01 .text-wrap-inner h3 {
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
}
.hollow-blog-01 .text-wrap-inner p {
  font-weight: 400;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: var(--defaultMainColor);
  font-size: .85rem;
}
.hollow-blog-01 a {
  color: var(--defaultMainAccent);
  font-size: 1.1rem;
  font-weight: 500;
  border: 1px solid var(--defaultMainAccent);
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  max-width: max-content;
  letter-spacing: .5px;
  font-family: var(--headingFont);
  transition: .3s;
}
.hollow-blog-01 a:hover {
  background: var(--defaultMainAccent);
  color: #000;
}
@media only screen and (min-width: 768px) {
  .hollow-blog-01 .grid-container {
    grid-template-columns: repeat(3, 1fr)
  }
}
@media only screen and (max-width: 767px) {
  .hollow-blog-01 {
    padding: 2rem 0;
  }
  .hollow-blog-01 h1 {
    padding: 0 2rem;
    margin-bottom: 2rem;
  }
  .hollow-blog-01 .title-wrap h3 {
    margin-bottom: 2rem;
  }
  .hollow-blog-01 a {
    font-size: 1rem;
  }
  .hollow-blog-01 .title-wrap h2::before {
    display: none;
  }
}



/*============================ */
/* Contact 15
============================== */
.hollow-contact-15 {
  padding: 11rem 0 7rem;
  overflow: hidden;
  background: whitesmoke;
}
.page-template-page-contact .hollow-contact-15 {
  padding-bottom: 0;
}
.hollow-contact-15 .flex-container {
  position: relative;
  width: 100%;
  justify-content: space-between;
}
.hollow-contact-15 .image-wrap{padding:3rem 0}
.hollow-contact-15 .image-wrap img{width: 70%;margin:0 auto;display: table}
.hollow-contact-15 .get-in-touch {
  max-width: 42%;
  width: 30rem;
  /* margin-right: -3rem; */
  margin-left: auto;
  padding: 2rem 4rem 4rem 0;
}
.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: 3.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: 500;
  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: 500;
  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: 52%;
  background: #ecebea;
  padding: 0 2vw 4rem 6rem;
  border-radius: 2rem 0;
}
.hollow-contact-15 .contact-us .inner-wrap {
  padding: 2rem;
  background: var(--defaultMainColor);
  margin-top: -4rem;
  border-radius: 2rem 0;
}
.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: transparent;
  border: 2px solid var(--defaultMainAccent);
  border-radius: 2rem;
  padding: .4rem 3rem;
  color: var(--defaultMainAccent);
  cursor: pointer;
  font-family: var(--headingFont);
  letter-spacing: .5px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: .3s ease;
  margin: 0;
}
.hollow-contact-15 .wpcf7-form-control.wpcf7-submit:hover {
  background: var(--defaultMainAccent);
  color: var(--defaultMainColor);
  border-color: var(--defaultMainAccent);
}
.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 .image-wrap img{width: 90%;}
  .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;
  }
  .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%;
  }
}

/*============================ */
/* Footer 04
============================== */
.hollow-footer-04 {
  position: relative;
  overflow: hidden;
  background: #000;
}
.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: #000;
  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 input {
  padding: 0.75rem 0.7rem;
  border-radius: 2rem 0 0 2rem;
}
.search-form-wrap button {
  background: var(--defaultMainAccent);
  font-family: var(--headingFont);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--defaultMainColor);
  border-radius: 0 2rem 2rem 0;
  letter-spacing: .5px;
}
.search-form-wrap button:hover {
  background: var(--accentLight);
}
/*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: 1rem 1.5rem;
  color: #fff;
  background: var(--defaultMainColor);
  text-align: center;
  border-radius: 2rem 0 0 0;
}
.blog-wrap .post-item .post-item-header h3:hover {
  background: var(--defaultMainDark);
}
.blog-wrap .post-item .post-content .read-more {
  align-self: flex-start;
  padding: 0.85rem;
  transition: all .3s ease;
  background: var(--defaultMainAccent);
  width: 100%;
  color: var(--defaultMainColor);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--headingFont);
  letter-spacing: .5px;
  border-radius: 0 0 2rem 0;
}
.blog-wrap .post-item .post-content a:hover {
  background: var(--defaultMainDark);
}
.blog-wrap .post-item p {
  border: none;
  background: whitesmoke;
  font-size: .9rem;
  font-weight: 500;
  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: #000;
}
.blog-sidebar .post-item-header h2 {
  background: var(--defaultMainAccent);
  color: var(--defaultMainColor);
  text-transform: capitalize;
  font-family: var(--headingFont);
  letter-spacing: .5px;
}
/*Post Content*/
.blog-post-content {
  padding: 5rem 0;
}
.blog-post-content h1 {
  color: var(--defaultMainColor);
}
.blog-post-content h2 {
  font-weight: 500;
  font-size: .9rem;
  font-family: var(--mainFont);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--defaultMainAccent);
  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: 500;
  line-height: 1.8;
}
.blog-post-content p a {
  color: var(--defaultMainColor);
}
.blog-post-content p a:hover {
  color: var(--defaultMainDark);
}
.blog-post-content ul {
    list-style: disc inside;
    margin-left: 0;
    text-indent: 0;
}
.blog-post-content ul li {
  display: list-item;
  list-style: disc;
  margin-left: 2rem;
  font-size: 1.1rem;
  color: dimgrey;
}
.blog-sidebar article h2 {
    text-align: center;
    font-size: .9rem;
    font-family: var(--mainFont);
    font-weight: 600;
    line-height: 1.4;
    background: var(--defaultMainColor);
    color: #fff;
    padding: 1rem;
    letter-spacing: 0;
    text-transform: none
}
/*Post Return Button*/
.blog-return {
  text-align: left;
}
.blog-return a.blog-return-btn {
  background: var(--defaultMainAccent);
  border-radius: 0;
  font-size: 1.1rem;
  letter-spacing: .5px;
  font-weight: 500;
  font-family: var(--headingFont);
  color: var(--defaultMainColor);
  border-radius: 2rem;
  padding: 0.75rem 2rem;
  text-transform: capitalize;
}
.blog-return a.blog-return-btn:hover {
  background: var(--accentLight);
}
/*Pagination*/
.pagination .page-numbers {
  background: var(--defaultMainColor);
  border-radius: 2rem;
  font-family: var(--headingFont);
  font-weight: 500;
}
.pagination .page-numbers:hover, 
.pagination .page-numbers:focus {
  background: var(--defaultMainAccent);
  color: var(--defaultMainColor);
}
.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: #000;
}
.default-popup .form-wrap h3 {
  color: #fff;
}
.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(--defaultMainAccent);
  color: var(--defaultMainColor);
  border-radius: 2rem;
  font-family: var(--headingFont);
  font-size: 1.1rem;
  letter-spacing: .5px;
  font-weight: 500;
}
.default-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--accentLight);
}
.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 {
  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;
  color: #fff;
  font-weight: 500;
}
.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;
  color: #fff;
  font-weight: 500;
  margin: 0 1.5rem 0 0;
}
.default-popup .location ul li i {
  color: var(--defaultMainAccent);
  padding-right: .5rem;
  padding-top: 0.15rem;
}
.default-popup .form-wrap .close {
  border: none;
  background: transparent;
  color: var(--defaultMainAccent);
}
.default-popup .form-wrap .close:hover {
  background: var(--defaultMainAccent);
  color: var(--defaultMainColor);
}
@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: 4rem 0;
  text-align: left;
  background: linear-gradient(90deg, var(--defaultMainColor), 80%, var(--defaultMainColor), 80%, #252525);
  overflow: hidden;
}
.page-template-blog .interior-header-05 {
  background: var(--defaultMainColor);
}
.page-id-277 .interior-header-05 {
  background: var(--defaultMainColor);
}
/*.interior-header-05::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, .70);
}*/
.interior-header-05 .flex-container {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
}
.page-id-277 .interior-header-05 .flex-container {
  align-items: center;
}
.page-template-blog .interior-header-05 .flex-container {
  align-items: center;
}
/*.interior-header-05 .bg-title {
  position: absolute;
  left: 4rem;
  top: -4rem;
  width: 100%;
}*/
.interior-header-05 h1 {
  font-size: 4rem;
  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: var(--defaultMainAccent);
  margin-bottom: 1rem;
}
.interior-header-05 p {
  position: relative;
  color: var(--defaultMainAccent);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 0;
}
@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: 4rem;
  }
}
@media only screen and (max-width: 991px) {
  .interior-header-05 h1 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .interior-header-05 {
    padding: 4rem 1rem;
    background: #272727;
  }
  .page-template-blog .interior-header-05 {
    background: #272727;
  }
  .page-id-277 .interior-header-05 {
    background: #272727;
  }
  .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;
  }
}

/*============================ */
/* Hollow Content 22
============================== */
.hollow-content-22 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #fff, 80%, #fff, 80%, #252525);
}
.hollow-content-22.single {
  padding-bottom: 2rem;
}
.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%;
  border-radius: 2rem 0;
}
.hollow-content-22 .content-wrap {
  width: 52%;
  padding: 6rem 0;
}
.hollow-content-22 .text-wrap {
/*  margin-bottom: 2rem;*/
  margin-top: 2rem;
}
.hollow-content-22 .text-wrap h3 {
  color: var(--defaultMainColor);
  margin-bottom: 1rem;
  font-size: 3rem;
}
.hollow-content-22 .text-wrap h4 {
  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 h2 {
  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 h5 {
  font-family: var(--headingFont);
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--defaultMainColor);
  margin-bottom: 1.5rem;
}
.hollow-content-22 .text-wrap p {
  font-size: .9rem;
  color: var(--defaultMainColor);
  font-weight: 500;
  line-height: 1.8;
}
.hollow-content-22 .text-wrap .feature p {
  font-weight: 700;
}
.hollow-content-22 .text-wrap hr {
  border: 1px solid #f3f3f3;
  margin: 1rem 0 2rem;
}
.hollow-content-22 .list-wrap {
  margin-bottom: 1rem;
}
.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: 500;
}
.hollow-content-22 .list-wrap ol li {
  display: list-item;
  list-style: decimal;
  margin-left: 1rem;
  font-size: .9rem;
  color: var(--defaultMainColor);
  font-weight: 500;
}
.hollow-content-22 .list-wrap ol {
  margin-bottom: 1rem; 
}
.hollow-content-22 .list-wrap ol.b li {
  list-style: lower-alpha;
  margin-left: 2rem;
  border-bottom: none;
}
.hollow-content-22 .list-wrap ol.c li {
  list-style: lower-roman;
  margin-left: 3rem;
  border-bottom: none;
}
.hollow-content-22 .list-wrap ol.d li {
  list-style: circle;
  margin-left: 4rem;
  border-bottom: none;
}
.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 .btn-wrap {
  margin-top: 2rem;
}
.hollow-content-22 .btn-wrap a {
  display: flex;
  color: var(--defaultMainAccent);
  font-size: 1.1rem;
  font-weight: 500;
  border: 1px solid var(--defaultMainAccent);
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  max-width: max-content;
  letter-spacing: .5px;
  font-family: var(--headingFont);
  transition: .3s;
}
.hollow-content-22 .btn-wrap a:hover {
  background: var(--defaultMainAccent);
  color: var(--defaultMainColor);
}
@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 .list-wrap ol {
    margin-left: 1.5rem;
  }
  .hollow-content-22 .list-wrap ol 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 h2 {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }
  .hollow-content-22 .text-wrap h4 {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }
}


.interior-content-23 {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(-90deg, #fff, 80%, #fff, 80%, #252525);
}
.interior-content-23.reverse {
  background: linear-gradient(90deg, #fff, 80%, #fff, 80%, #252525);
}
@media only screen and (max-width: 767px) {
  .interior-content-23 {
    padding: 2rem 0;
    background: linear-gradient(0deg, #fff, 85%, #fff, 85%, var(--defaultMainColor));
  }
  .interior-content-23.reverse {
    background: linear-gradient(0deg, #fff, 85%, #fff, 85%, var(--defaultMainColor));
  }
}
/*============================ */
/* Interior Content 24
============================== */
.interior-content-24 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #fff, 80%, #fff, 80%, #252525);
  padding: 6rem 0;
}
.interior-content-24 .flexbox {
  justify-content: space-between;
  align-items: stretch;
}
.interior-content-24 h3 {
  color: var(--defaultMainColor);
  margin-bottom: 1rem;
  font-size: 3rem;
}
.interior-content-24 h4 {
  font-weight: 500;
  font-size: .9rem;
  font-family: var(--mainFont);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--defaultMainAccent);
  margin-bottom: 1rem;
}
.interior-content-24 h2 {
  font-weight: 500;
  font-size: .9rem;
  font-family: var(--mainFont);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--defaultMainAccent);
  margin-bottom: 1rem;
}
.interior-content-24 h5 {
  font-family: var(--headingFont);
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--defaultMainColor);
  margin-bottom: 1.5rem;
}
.interior-content-24 p {
  font-size: .9rem;
  color: var(--defaultMainColor);
  font-weight: 500;
  line-height: 1.8;
  max-width: 45rem;
}
@media only screen and (max-width: 767px) {
  .interior-content-24 {
    background: linear-gradient(0deg, #fff, 85%, #fff, 85%, var(--defaultMainColor));
    padding: 2rem 0;
  }
  .page-id-360 .interior-content-24 {
    background: #fff;
  }
  .interior-content-24 h4 {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }
  .interior-content-24 h2 {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }
}

/*============================ */
/* 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;
  }
}


/*============================ */
/* Gallery 01
============================== */
.hollow-gallery-11 {
  position: relative;
  padding: 0;
}
.hollow-gallery-11 .flexbox {
  justify-content: space-between;
  flex-direction: row;
  /* align-items: center; */
}
.hollow-gallery-11 .text-wrap {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 6vw;
}
.hollow-gallery-11 .text-wrap .title-wrap {
  display: flex;
  flex-direction: column-reverse;
}
.hollow-gallery-11 .text-wrap h2 {
  margin-bottom: 1rem;
  /* text-transform: uppercase; */
  font-size: 3.5rem;
  color: var(--defaultMainColor);
}
.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 {
  width: 50%;
  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(50% - 2px)!important;
  height: calc(50% - 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: 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 h2 {
    font-size: 2rem;
  }
  .hollow-gallery-11 .text-wrap a {
    font-size: 1.3rem;
  }
  .hollow-gallery-11 .text-wrap a:hover {
    background: var(--defaultMainColor);
  }
  .hollow-gallery-11 .img-wrap {
    width: 100%;
    height: 24rem;
  }
}
/*============================ */
/* 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;
  }
}
.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: #2ecc71;
  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:#239c56;}
.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;}