/*
  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:#252525;
  --defaultMainDark: #000;
  --defaultMainAccent: #d41f25;
  --accentDark: #b1191e;
  --defaultGrey: #646464;
  --bgDark: #252525;
  --textDark: #252525;
  --blue: #17467d;
  --blueDark: #133d6e;
  
  /* Font Variables */
  --headingFont: 'Roboto', sans-serif;
  --mainFont: 'Roboto', sans-serif;
  --accentFont: 'Bodoni Moda', serif;
}
body {
  background: #252525;
}
html {
  font-family: var(--mainFont);
}
h1, h2, h3 {
  font-family: var(--headingFont);
}


/*============================ */
/* HEADER 09
============================== */
.hollow-header-09 {
  display: block;
  position: relative;
  z-index: 9000;
  color: #f6f6f6;
  width: 100%;
  background: #252525;
}
.hollow-header-09 .container {
  width: 100%;
  padding: 0 4rem 0 4rem;
}
.hollow-header-09.sticky {
  position: fixed;
  top: 0;
  background: var(--bgDark);
}
.hollow-header-09 .logo img {
  max-width: 85%;
  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: var(--defaultMainColor);
  font-size: 1.2rem;
  font-weight: 400;
  margin: .4rem 0;
  display: inline-block;
  transition: all 0.2s ease;
}
.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(--defaultMainAccent);
}
.hollow-header-09 .social {
  display: inline-block;
}
.hollow-header-09 .social a {
  color: var(--defaultMainColor);
  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(--defaultMainAccent);
}
.hollow-header-09 .logo img {
  padding: 1rem 0;
}
.hollow-header-09 .meta-wrap-outer {
  font-size: 2rem;
  font-weight: 400;
  background: #fff;
  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: var(--defaultMainColor);
}
.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;
}
.hollow-header-09 .btn-wrap {
  float: right;
}
.hollow-header-09 .btn-wrap a {
  background: var(--blue);
  padding: .75rem 2rem;
  border-radius: 0 1rem;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}
.hollow-header-09 .btn-wrap a:hover {
  background: var(--blueDark);
}
/* NAVIGATION */
.hollow-header-09 .center-nav {
  display: inline-flex!important;
  align-items: center;
  justify-content: center;
}
.hollow-header-09 nav {
  float: right;
  display: inline-block;
  background: none;
  font-size: 2rem;
  position: relative;
  z-index: 5000;
  font-family: var(--mainFont);
  padding: 2rem 0;
}
.hollow-header-09.sticky nav {
  padding: 0;
}
.hollow-header-09 nav a {
  padding: 0.3rem .6rem;
  display: block;
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease;
}
.hollow-header-09 nav a:focus {
  color: #fff;
}
.hollow-header-09 nav a i {
  padding-right: .4rem;
}
.hollow-header-09 nav .menu-item {
  margin-bottom: 0;
}
/* NAV LEVEL ONE */
.hollow-header-09 .menu-item.open>a, .hollow-header-09 .menu-item:hover>a, .hollow-header-09 .menu-item.active a, .hollow-header-09 .menu-item.active:hover>a {
  color: 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: var(--defaultMainColor);
  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: var(--defaultMainDark);
  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: 6rem;
  }
  .hollow-header-09 .mobile-toolbar {
    display: none;
  }
  .hollow-header-09 .menu {
    float: right;
  }
  .hollow-header-09 nav .menu-item {
    float: left;
    position: relative;
  }
  .hollow-header-09 nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
  }
  .hollow-header-09 nav .menu-item-has-children:hover>ul.dropdown-menu {
    display: block;
  }
  .hollow-header-09 .mobile-toolbar {
    display: none;
  } 
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-header-09 > .container,
  .hollow-header-09 .meta-wrap-outer > .container {
    width: 100%;
    padding: 0 1rem;
  }
  .hollow-header-09 nav a {
    text-transform: capitalize;
  }
  .hollow-header-09 .btn-wrap a {
    font-size: .9rem;
  }
}
@media only screen and (min-width: 992px) {
  .hollow-header-09 nav .menu-item#menu-item-415 {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-header-09 .logo {
    text-align: center;
  }
  .hollow-header-09 .logo img {
    margin: 50px auto 15px;
    box-shadow: none;
    max-width: 60%;
  }
  .hollow-header-09 .btn-wrap {
    display: none;
  }
  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(--accentDark);
  }
  .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: #fff;
    background: var(--defaultMainDark);
  }
  .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(--accentDark);
  }
  .hollow-header-09 nav .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transition: opacity 0.25s;
    z-index: -1;
    background: var(--bgDark);
    box-shadow: 0 3px 3px -2px #000;
    pointer-events: none;
    opacity: 0;
  }
  .hollow-header-09 nav .menu-item-has-children.open .dropdown-menu {
    display: block;
  }
  .hollow-header-09 .dropdown-menu {
    position: relative;
    box-shadow: none;
    width: 100%;
  }
  .hollow-header-09 .dropdown-menu>li>a {
    padding-left: 2.5rem;
  }
  .hollow-header-09 .mobile-toolbar>* {
    display: inline-block;
  }
  .hollow-header-09 .mobile-toolbar a {
    font-size: 26px;
    float: left;
  }
}
@media screen and (orientation: portrait) and (max-width:991px) {
  .hollow-header-09 nav a {
    font-size: 1.75rem;
    padding: 0.75rem;
  }
}
@media screen and (max-width:767px) {
  .hollow-header-09 .logo img {
    max-width: 90%;
  }
}
@media screen and (orientation: portrait) and (max-width:767px) {
  .hollow-header-09 nav a {
    font-size: 1.5rem;
    padding: 0.75rem;
  }
}
@media screen and (orientation: landscape) and (max-width:767px) {
  .default-popup .form-wrap,
  header.hollow-header-09.header-menu-open nav .menu {
    max-height: 74vh;
    overflow-y: auto;
  }
}

/*HOMEPAGE COMPONENTS*/


/*============================ */
/* Hero 13
============================== */
.hollow-hero-13 {
  position: relative;
  overflow: hidden;
}

/*Image Slider*/
.hollow-hero-13 .img-slider {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.hollow-hero-13 .img-slider.slick-initialized {
  visibility: visible;
}
.hollow-hero-13 .img-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.36);
}
.hollow-hero-13 .img-slider .slick-list,
.hollow-hero-13 .img-slider .slick-track {
  height: 100%;
  overflow: visible;
}
.hollow-hero-13 .img-slider img {
  object-fit: cover;
}
.hollow-hero-13 .img-slider .slick-arrow {
  font-size: 1rem;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 1;
  color: #fff;
  cursor: pointer;
  transition: all .3s ease;
  padding: .6rem;
  background: rgba(0,0,0,0.2);
}
.hollow-hero-13 .img-slider .slick-arrow:hover {
  background: rgba(0,0,0,0.7);
}
.hollow-hero-13 .img-slider .next {
  right: 1rem;
}
.hollow-hero-13 .img-slider .prev {
  left: 1rem;
}

/*Caption Slider*/
.hollow-hero-13 .cap-slider {
  width: 100%;
  padding: 17rem 4rem 4rem;
  visibility: hidden;
}
.hollow-hero-13 .cap-slider.slick-initialized {
  visibility: visible;
}
.hollow-hero-13 .cap-slider .slick-track {
  display: flex;
  align-items: center;
}
.hollow-hero-13 .caption {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  /* padding: 0 4rem; */
}
.hollow-hero-13 .caption h2 {
  font-weight: 700;
  color: #fff;
  opacity: 0;
  font-size: 5rem;
}
.hollow-hero-13 .caption.slick-active h2 {
  animation: hollowHeroSlide .5s ease-out forwards;
}
.hollow-hero-13 .caption h3 {
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0;
  font-size: 1.7rem;
  text-shadow: 2px 2px 3px #000;
}
.hollow-hero-13 .caption.slick-active h3 {
  animation: hollowHeroSlide .5s ease-out .2s forwards;
}
.hollow-hero-13 .caption p {
  color: #fff;
  margin-bottom: 3rem;
  opacity: 0;
  font-weight: 400;
  line-height: 1.6;
}
.hollow-hero-13 .caption.slick-active p {
  animation: hollowHeroSlide .5s ease-out .4s forwards;
}
.hollow-hero-13 .caption a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: var(--blue);
  padding: .75rem 2rem;
  transition: all .3s ease;
  opacity: 0;
  font-weight: 500;
  border-radius: 0 1rem;
}
.hollow-hero-13 .caption a.optionA {
  background: var(--defaultMainAccent);
  margin-right: .5rem;
}
.hollow-hero-13 .caption.slick-active a {
  animation: hollowHeroSlide .5s ease-out .6s forwards;
}
.hollow-hero-13 .caption a:hover {
  background: var(--blueDark);
}
.hollow-hero-13 .caption a.optionA:hover {
  background: var(--accentDark);
}
.hollow-hero-13 .caption a i {
  font-size: 1rem;
  padding-right: .5rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  /* Image Slider */
  .hollow-hero-13 .img-slider .slick-arrow {
    bottom: 1rem;
    transform: none;
  }
  .hollow-hero-13 .img-slider .next {
    right: 40%;
  }
  .hollow-hero-13 .img-slider .prev {
    left: 40%;
  }
  /* Caption Slider */
  .hollow-hero-13 .caption {
    padding: 0 1rem;
  }
  .hollow-hero-13 .cap-slider {
    padding: 8rem 0 7rem;
  }
  .hollow-hero-13 .caption h2 {
    font-size: 2rem;
  }
  .hollow-hero-13 .caption h3 {
    font-size: 1.5rem;
  }
  .hollow-hero-13 .caption p {
    max-width: 100%;
  }
}

@keyframes hollowHeroSlide {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}

/*============================ */
/* Service Images 22
============================== */
.service-images-22 {
  padding: 4rem 0 2rem;
  background: url(img/bg-1.jpg) center center no-repeat;
  background-size: cover;
}
.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 - 2rem);
  margin-bottom: 2rem;
}
.service-images-22 .box-wrap img {
  display: flex;
  object-fit: cover;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0 2rem;
}
.service-images-22 .link-wrap {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.service-images-22 .link-wrap h3 {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  margin-bottom: .5rem
}
.service-images-22 .link-wrap .spanner {
  color: var(--defaultMainAccent);
  margin-bottom: .5rem;
}
.service-images-22 .link-wrap .spanner {
  border: none;
  margin: 0;
  width: 5rem;
  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: 991px) {
  .service-images-22 {
    padding: 2rem 0 0rem;
  }
  .service-images-22 .flexbox {
    width: 100%;
    padding: 0 2rem;
  }
  .service-images-22 .box-wrap {
    width: calc(100% / 3 - 1rem);
  }

}
@media only screen and (max-width: 767px) {
  .service-images-22 {
    padding: 2rem 0 0;
  }
  .service-images-22 .flexbox {
    flex-flow: column;
  }
  .service-images-22 .box-wrap {
    width: 100%;
  }
}

/*============================ */
/* Service Images 07
============================== */
.hollow-service-text-007 {
  padding: 4rem 0 2rem;
  background: url(img/bg-1.jpg) center center no-repeat;
  background-size: cover;
}
.hollow-service-text-007.bg-white {
  background: #fff;
  border-bottom: none;
  padding: 5rem 0 3rem;
}
.hollow-service-text-007 .flex-container {
  justify-content: space-between;
  flex-wrap: wrap;
}
.hollow-service-text-007 .box {
  position: relative;
  overflow: hidden;
  width: 30%;
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #1a1a1a;
  padding: 2rem;
}
.hollow-service-text-007 .box h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-size: 1.3rem;
  font-weight: 700;
}
.hollow-service-text-007 .box h3 i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--blue);
}
.hollow-service-text-007 .box h3 svg {
  font-size: 3rem;
  margin-right: 1rem;
  fill: var(--defaultMainColor)!important;
}
.hollow-service-text-007 .box p {
  color: #fff;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.hollow-service-text-007 .btn-wrap a {
  padding: 0.75rem 2rem;
  border-radius: 0 1rem;
  background: var(--defaultMainAccent);
  font-weight: 500;
  color: #fff;
  display: flex;
  max-width: max-content;
  transition: all .3s ease;
}
.hollow-service-text-007 .btn-wrap a:hover {
  background: var(--accentDark);
}
@media only screen and (max-width: 991px) {
  .hollow-service-text-007 .box {
    width: 48%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-service-text-007 {
    padding: 2rem 0 0;
  }
.hollow-service-text-007 .box {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
  }
  .hollow-service-text-007 .box h3 {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 1.8rem;
    max-width: 100%;
  }
  .hollow-service-text-007 .box h3 i {
    margin-right: 0;
    margin-bottom: 1rem;
    font-size: 4rem;
  }
  .hollow-service-text-007 .box h3 svg {
    margin-right: 0;
    margin-bottom: 1rem;
    font-size: 4rem;
  }
  .hollow-service-text-007 .btn-wrap {
    display: flex;
    justify-content: center;
  }
}
/*============================ */
/* Content 12
============================== */
.hollow-content-12 {
    padding: 4rem 0 3rem;
    background: #000;
}
.hollow-content-12 .flex-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hollow-content-12 .img-wrap {
    position: relative;
    overflow: hidden;
    width: 45%;
    height: 11rem;
    margin-bottom: 1.5rem;
}
.hollow-content-12 .img-wrap img {
    max-width: 100%;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.hollow-content-12 .img-wrap .overlay {
    display: block;
    position: absolute;
    bottom: 0;
    left: -80%;
    width: 100%;
    height: 6rem;
    margin-bottom: -1px;
    z-index: 1;
}
.hollow-content-12 .img-wrap .overlay .overlay-fill {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
}
.hollow-content-12 .img-wrap .overlay.left {
    left: -80%;
    transform: skewX(75deg);
}
.hollow-content-12 .img-wrap .overlay.right {
    left: 80%;
    transform: skewX(-75deg);
}
.hollow-content-12 .text-wrap {
    display: flex;
    flex-flow: column;
    align-items: center;
}
.hollow-content-12 h2 {
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 32px;
}
.hollow-content-12 p {
    color: #fff;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.8;
}
@media only screen and (max-width: 991px) {
  .hollow-content-12 .img-wrap {
    width: 56%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-12 {
    padding: 2rem 0;
  }
  .hollow-content-12 .img-wrap {
    width: 100%;
  }
  .hollow-content-12 h2 {
    font-size: 30px;
  }
}

/*============================ */
/* Hollow Testimonials 11
============================== */
.hollow-testimonials-11 {
  padding: 4rem 0;
  background: url(img/bg-1.jpg) center center no-repeat;
  background-size: cover;
}
.hollow-testimonials-11 .flexbox {
  flex-wrap: wrap;
  justify-content: center;
}
.hollow-testimonials-11 .title-wrap {
  width: 100%;
  margin-bottom: 2rem;
  text-align: center;
}
.hollow-testimonials-11 .title-wrap h2 {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
}
.hollow-testimonials-11 .title-wrap h3 {
  font-size: 1.75rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 1rem;
  color: var(--defaultMainColor);
}
.hollow-testimonials-11 .title-wrap p {
  font-size: 1.1rem;
  width: 45rem;
  max-width: 100%;
  margin: 0 auto 1rem;
}
.hollow-testimonials-11 .slider-wrap {
  width: 95%;
  visibility: hidden;
}
.hollow-testimonials-11 .slider-wrap.slick-initialized {
  visibility: visible;
}
.hollow-testimonials-11 .slider-wrap .slide {
  padding: .5rem;
}
.hollow-testimonials-11 .slider-wrap .slick-prev:before, 
.hollow-testimonials-11 .slider-wrap .slick-next:before {
  color: #fff;
  font-size: 1.5rem;
  opacity: .15;
}
.hollow-testimonials-11 .box-wrap {
  text-align: center;
  margin: 0 1.5%;
  padding: 1.5rem;
  background: #1a1a1a;
  border-radius: 0 1rem;
}
.hollow-testimonials-11 .box-wrap .review {
  height: 5.5rem;
  overflow-y: auto;
}
.hollow-testimonials-11 .box-wrap .review::-webkit-scrollbar-track {
  background-color: rgba(255,255,255,.1);
  border-radius: 7px;
}
.hollow-testimonials-11 .box-wrap .review::-webkit-scrollbar {
  width: 8px;
}
.hollow-testimonials-11 .box-wrap .review::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background-color: rgba(255,255,255,.2);
}
.hollow-testimonials-11 .box-wrap .review::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255,255,255,.4);
}
.hollow-testimonials-11 .box-wrap p {
  font-weight: 400;
  font-size: .9rem;
  line-height: 1.8;
  margin-right: 1rem;
  color: #fff;
  text-align: center;
}
.hollow-testimonials-11 .box-wrap .quote {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--defaultMainAccent);
}
.hollow-testimonials-11 .client-wrap {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  flex-direction: row-reverse;
}
.hollow-testimonials-11 .caret {
  position: absolute;
  top: -2.75rem;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  color: #1a1a1a;
  font-size: 3rem;
}
.hollow-testimonials-11 .bubble {
  position: relative;
  width: 3rem;
  height: 3rem;
  background: var(--blue);
  color: #fff;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: 1rem;
}
.hollow-testimonials-11 .client-name {
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0;
  text-align: right;
  font-family: var(--headingFont);
}
.hollow-testimonials-11 .client-city {
  font-weight: 400;
  font-size: 12px;
  margin: 0;
  color: #fff;
  text-align: right;
  line-height: 1.4;
}
.hollow-testimonials-11 .box-wrap .rating {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.hollow-testimonials-11 .box-wrap .rating i {
  color: gold;
  font-size: 1rem;
  margin: 0 .1rem;
  opacity: 1;
}
.hollow-testimonials-11 .btn-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 1.5rem;
}
.hollow-testimonials-11 .btn-wrap a {
  display: inline-block;
  color: #fff;
  text-align: center;
  /* text-transform: uppercase; */
  background: #fff;
  border-radius: 0 1rem;
  padding: 0.6rem 2rem;
  transition: all .3s ease;
  font-family: var(--headingFont);
  font-size: 1.2rem;
  font-weight: 400;
}
.hollow-testimonials-11 .btn-wrap a img {
  max-width: 100%;
  height: 4rem;
}
.hollow-testimonials-11 .btn-wrap a:hover {
  opacity: .5;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-testimonials-11 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width:991px) {
  .hollow-testimonials-11 .box-wrap {
    /* width: 48%; */
    /* margin: 0 1% 2rem; */
  }
}
@media only screen and (max-width:767px) {
  .hollow-testimonials-11 {
    padding: 2rem 0;
  }
  .hollow-testimonials-11 .title-wrap {
    margin-bottom: 1rem;
  }
  .hollow-testimonials-11 .slider-wrap {
    width: 90%;
  }
  .hollow-testimonials-11 .box-wrap {
    width: 100%;
    margin: 0;
  }
  .hollow-testimonials-11 .caret {
    top: -3rem;
  }
  .hollow-testimonials-11 .btn-wrap {
    margin-top: 0;
  }
  .hollow-testimonials-11 .box-wrap .review {
    height: 11.5rem;
  }
}

/*============================ */
/* Hollow Content 25
============================== */
.hollow-content-25 {
  padding: 6rem 0;
  background: #464646;
}
.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 {
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 32px;
}
.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 {
  color: #fff;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.8;
}
.hollow-content-25 .btn-wrap {
  padding: 1rem 0 0;
}
.hollow-content-25 .btn-wrap a {
  padding: 0.75rem 2rem;
  border-radius: 0 1rem;
  background: var(--defaultMainAccent);
  font-weight: 500;
  color: #fff;
  display: flex;
  max-width: max-content;
  transition: all .3s ease;
}
.hollow-content-25 .btn-wrap a:hover {
  background: var(--accentDark);
}
/* 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;
  z-index: 1000;
  border-radius: 0 2rem;
}
@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: 767px) {
  .hollow-content-25 {
    padding: 2rem 0;
  }
  .hollow-content-25 .flexbox {
    flex-direction: column-reverse;
  }
  .hollow-content-25 .text-wrap {
    width: 100%;
    padding: 2rem 0 0;
    margin: 0;
  }
  .hollow-content-25 .text-wrap h2 {
    font-size: 30px;
  }
  .hollow-content-25 .img-wrap {
    width: 100%;
    margin: 0;
  }
  .hollow-content-25 .img-wrap img {
    position: relative;
  }
  .hollow-content-25 .img-wrap::before {
    display: none;
  }
  .hollow-content-25 .accentThree,
  .hollow-content-25 .accentFour {
    display: none;
  }
}

/*============================ */
/* Gallery 01
============================== */
.hollow-gallery-11 {
  position: relative;
  padding: 6rem 0;
  background: #000;
}
.hollow-gallery-11 .flexbox {
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.hollow-gallery-11 .text-wrap {
  width: 53%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hollow-gallery-11 .text-wrap .title-wrap {
  display: flex;
  flex-direction: column-reverse;
}
.hollow-gallery-11 .text-wrap h2 {
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 32px;
}
.hollow-gallery-11 .text-wrap h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--defaultMainColor);
}
.hollow-gallery-11 .text-wrap p {
  color: #fff;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.hollow-gallery-11 .btn-wrap a {
  padding: 0.75rem 2rem;
  border-radius: 0 1rem;
  background: var(--defaultMainAccent);
  font-weight: 500;
  color: #fff;
  display: flex;
  max-width: max-content;
  transition: all .3s ease;
}
.hollow-gallery-11 .btn-wrap a:hover {
  background: var(--accentDark);
}
.hollow-gallery-11 .img-wrap {
  width: 38%;
}
.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;
  padding: 5px;
}
.hollow-gallery-11 .nextgen_pro_thumbnail_grid .image-wrapper img {
  will-change: transform;
  height: 100%!important;
  transition: opacity .3s ease, transform 1s ease;
  border-radius: 0 1rem;
}
.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 0 2rem;
  }
  .hollow-gallery-11 .flexbox {
    flex-direction: column;
  }
  .hollow-gallery-11 .text-wrap {
    width: 100%;
    padding: 2rem 0;
  }
  .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;
  }
}

/*============================ */
/* Hollow Content 26
============================== */
.hollow-content-26 {
  padding: 6rem 0;
  background: #f9f9f9;
  border-top: 2px solid #f3f3f3;
  border-bottom: 2px solid #f3f3f3;
}
.hollow-content-26 .flexbox {
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
/* Text Wrap */
.hollow-content-26 .text-wrap {
  width: 53%;
  padding: 1rem 0;
  position: relative;
}
.hollow-content-26 .text-wrap h2 {
  color: var(--textDark);
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 32px;
}
.hollow-content-26 .text-wrap span.accent {
  font-weight: 900;
  color: var(--defaultMainColor);
}
.hollow-content-26 .text-wrap h3 {
  margin-bottom: 1rem;
  color: var(--defaultMainAccent);
}
.hollow-content-26 .text-wrap p {
  color: #595959;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.8;
}
.hollow-content-26 .btn-wrap {
  padding: 1rem 0 0;
}
.hollow-content-26 .btn-wrap a {
  padding: 0.75rem 2rem;
  border-radius: 0 1rem;
  background: var(--defaultMainAccent);
  font-weight: 500;
  color: var(--bgDark);
  display: flex;
  max-width: max-content;
  transition: all .3s ease;
}
.hollow-content-26 .btn-wrap a:hover {
  background: var(--accentDark);
}
/* Images Wrap */
.hollow-content-26 .img-wrap {
  position: relative;
  width: 38%;
}
.hollow-content-26 .img-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -18px;
  width: 108%;
  height: 109%;
  background: #e5eaf0;
  z-index: 1;
  border-radius: 20px;
}
.hollow-content-26 .img-wrap img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000;
  border-radius: 10px;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-content-26 .flexbox {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-25 .img-wrap::before {
    width: 113%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-26 {
    padding: 2rem 0;
  }
  .hollow-content-26 .flexbox {
    flex-direction: column-reverse;
  }
  .hollow-content-26 .text-wrap {
    width: 100%;
    padding: 2rem 0 0;
    margin: 0;
  }
  .hollow-content-26 .text-wrap h2 {
    font-size: 30px;
  }
  .hollow-content-26 .img-wrap {
    width: 100%;
    margin: 0;
  }
  .hollow-content-26 .img-wrap img {
    position: relative;
  }
  .hollow-content-26 .img-wrap::before {
    display: none;
  }
  .hollow-content-26 .accentThree,
  .hollow-content-26 .accentFour {
    display: none;
  }
}
/*============================ */
/* Action 22
============================== */
.hollow-action-22 {
  position: relative;
  padding: 6rem 0;
  background: url(img/bg-1.jpg) center center no-repeat;
  background-size: cover;
}
.hollow-action-22 .flexbox {
  position: relative;
  justify-content: space-between;
  flex-wrap: wrap;
}
/*.hollow-action-22 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--defaultMainDark);
  opacity: .5;
}*/
.hollow-action-22 .title-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
  width: 100%;
}
.hollow-action-22 .title-wrap h2 {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
}
.hollow-action-22 .box-wrap {
  width: 50%;
  padding: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}
.hollow-action-22 .left-box {
  border-right: 1px solid var(--blue);
}
.hollow-action-22 .right-box {
  border-left: 1px solid var(--blue);
}
.hollow-action-22 .box-wrap h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.3rem;
}
.hollow-action-22 .box-wrap p {
  color: #fff;
  font-weight: 400;
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hollow-action-22 .box-wrap .btn-wrap a {
  border-radius: 0 1rem;
  padding: .75rem 2rem;
  font-weight: 500;
  background: var(--defaultMainAccent);
  color: #fff;
  transition: all .3s ease;
  display: inline-block;
}
.hollow-action-22 .box-wrap .btn-wrap a:hover {
  background: var(--accentDark);
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-action-22 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-26 .img-wrap::before {
    width: 113%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-action-22 {
    padding: 4rem 0 2rem;
  }
  .hollow-action-22 .flex-container {
    flex-direction: column;
  }
  .hollow-action-22 .title-wrap h2 {
    font-size: 2rem;
  }
  .hollow-action-22 .box-wrap {
    width: 100%;
    border: none;
  }
  .hollow-action-22 .box-wrap p {
    margin-bottom: 2rem;
  }
  .hollow-action-22 .box-wrap h3 {
    margin-bottom: .25rem;
  }
}

/*============================ */
/* 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: #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-size: .9rem;
  font-weight: 400;
  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(--blue);
  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 button {
  background: var(--defaultMainColor);
}
.search-form-wrap button:hover {
  background: var(--defaultMainDark);
}
/*Blog Page*/
.blog-wrap .post-item-header h1 {
  background: var(--defaultMainColor);
}
.blog-wrap .post-item .post-item-header h1:hover {
  background: var(--defaultMainDark);
}
.blog-wrap .post-item .post-content a {
  background: var(--defaultMainColor);
}
.blog-wrap .post-item .post-content a:hover {
  background: var(--defaultMainDark);
}
.blog-wrap .post-item p {
  border-color: var(--defaultMainColor);
}
.blog-wrap .post-item .date-wrap i {
  color: var(--defaultMainColor);
}
/*Sidebars*/
.blog-sidebar {
  border-color: var(--defaultMainColor);
}
.blog-sidebar .post-item-header h2 {
  background: var(--defaultMainColor);
}
/*Post Content*/
.blog-post-content h1 {
  color: var(--defaultMainColor);
}
.blog-post-content h2 {
  color: var(--defaultMainDark);
}
.blog-post-content h3 {
  color: var(--defaultMainColor);
}
.blog-post-content p a {
  color: var(--defaultMainColor);
}
.blog-post-content p a:hover {
  color: var(--defaultMainDark);
}
/*Post Return Button*/
.blog-return a.blog-return-btn {
  background: var(--defaultMainColor);
}
.blog-return a.blog-return-btn:hover {
  background: var(--defaultMainDark);
}
/*Pagination*/
.pagination .page-numbers {
  background: var(--defaultMainDark);
}
.pagination .page-numbers:hover, 
.pagination .page-numbers:focus {
  background: var(--defaultMainColor);
}
.pagination span.page-numbers.current {
  background: var(--defaultMainColor);
}
/*============================ */
/* DEFAULT POPUP STYLES:
============================== */
.default-popup .form-wrap {
  background: url(img/bg-1.jpg) center center no-repeat;
  background-size: cover;
  border: 3px solid #6d6d6d;
  border-radius: 0 2rem;
}
.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: #fff;
  border-radius: 0 1rem;
  padding: .8rem 3rem;
  font-size: 1rem;
  font-family: var(--mainFont);
  font-weight: 700;
}
.default-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--accentDark);
}
.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-size: 1.2rem;
  font-weight: 500;
  color: var(--defaultMainAccent);
}
.default-popup .content-wrap h3 {
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
}
.default-popup .content-wrap p {
  text-align: center;
  font-size: .9rem;
  line-height: 1.8;
  color: #fff;
  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: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 1.5rem 0 0;
}
.default-popup .location ul li i {
  color: var(--blue);
  padding-right: .5rem;
  padding-top: .3rem;
}
.default-popup .form-wrap .close {
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--defaultMainAccent);
  top: 10px;
  right: 10px;
}
.default-popup .form-wrap .close:hover {
  background: var(--defaultMainAccent);
  color: var(--bgDark);
}
@media only screen and (max-width: 767px) {
  .default-popup .form-wrap {
    width: 95%;
  }
  .default-popup .content-wrap {
    align-items: flex-start;
  }
  .default-popup .content-wrap p {
    display: none;
  }
  .default-popup .content-wrap h2 {
    display: none;
  }
  .default-popup .content-wrap h3 {
    text-align: left;
    padding-right: 1rem;
  }
  .default-popup .location {
    width: 100%;
    text-align: left;
    margin-bottom: 0;
  }
  .default-popup .location ul li {
    width: 100%;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
  }
}
/*============================ */
/* CUSTOM SUBMIT FORM BUTTONS:
============================== */
.wpcf7 .wpcf7-form .hollow-file {
  padding: 0;
  margin-bottom: 1rem;
}
.wpcf7 .wpcf7-form .hollow-file .hollow-file-btn {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 10rem;
  height: calc(100% - 2px);
  /*   top: 3px;
  left: 3px;
  width: calc(10rem - 3px);
  height: calc(100% - 6px);
  border-radius: 4px; */
  font-size: 1rem;
  display: flex;
  align-items: center;
  background: var(--defaultMainColor);
  color: #fff;
  font-family: var(--mainFont);
  padding: .25rem;
  z-index: 1200;
  transition: all .3s ease;
}
.wpcf7 .wpcf7-form .hollow-file:hover .hollow-file-btn {
  background: var(--defaultMainAccent);
}
.wpcf7 .wpcf7-form .hollow-file .hollow-file-btn::before {
  content: '\f0ee';
  font-family: 'Font Awesome 6 Pro', 'Font Awesome 6', 'Font Awesome 5 Pro', 'Font Awesome 5';
  margin-right: .5rem;
  font-size: 1.5rem;
  padding: .25rem;
  font-weight: 300;
}
.wpcf7 .wpcf7-form .hollow-file .hollow-file-name {
  position: absolute;
  top: 1px;
  left: 1px;
  height: calc(100% - 2px);
  font-size: 1rem;
  display: flex;
  align-items: center;
  background: #fff;
  color: var(--defaultMainDark);
  font-family: var(--mainFont);
  padding: .25rem 1rem .25rem 11rem;
  min-width: calc(100% - 2px);
  z-index: 1000;
}
.wpcf7 .wpcf7-form .hollow-file input[type="file"] {
  color: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.wpcf7 .wpcf7-form .hollow-file input[type="file"]:hover {
  color: transparent;
  background: #fff;
}
/*============================ */
/* DEFAULT SEO STYLES:
============================== */
.content.seo {
  font-family: var(--mainFont);
  background: var(--defaultMainDark);
}
.content.seo i {
  color: #fff;
}
.content.seo p a:hover {
  color: var(--defaultMainAccent);
}
/*============================ */
/* DEFAULT INTERIOR PLACEHOLDERS
============================== */
.interior-placeholder-header {
  border-color: var(--defaultMainDark);
  background: var(--defaultMainColor);
}
.interior-placeholder-header h1 {
  color: #FFF;
}
/*============================ */
/* PASSWORD-PROTECTED PAGE FORMS
============================== */
.post-password-required form p input[type="submit"] {
  background: var(--defaultMainColor);
}
.post-password-required form p input[type="submit"]:hover {
  background: var(--defaultMainDark);
}
/*============================ */



/*INTERIOR PAGES*/




.title-bar-001 {
    background: #343434;
    padding: 1rem;
}
.title-bar-001 .flex-container {
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 4rem;
}
.title-bar-001 h3 {
    font-size: 21px;
    color: #fff;
    font-weight: 700;
}
.title-bar-001 h4 {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
}
.title-bar-001 h4 a:hover {
    color: var(--defaultMainAccent);
}
@media only screen and (max-width: 767px) {
  .title-bar-001 .flex-container {
    padding: 0 0rem;
  }
}

.interior-content-007 {
    padding: 4rem 0 3rem;
    background: #000;
}
.interior-content-007 .flex-container {
    flex-direction: column;
}
.interior-content-007 h3 {
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 30px;
    display: flex;
    align-items: center;
}
.interior-content-007 h3 i {
  font-size: 2.25rem;
  color: var(--defaultMainAccent);
  border-radius: 50%;
  height: 4rem;
  width: 4rem;
  min-height: 4rem;
  min-width: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--blue);
  margin-right: 1rem;
}
.interior-content-007 .box-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.interior-content-007 .box-wrap .box {
    width: 100%;
}
.interior-content-007 p {
    color: #fff;
    margin-bottom: 2rem;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.8;
}
.interior-content-007 .box-wrap .box p {
  margin-bottom: 1rem;
}
.interior-content-007 ul li {
    display: list-item;
    list-style: disc;
    margin-left: 1rem;
    font-weight: 400;
    line-height: 1.8;
    font-size: .9rem;
    color: #fff;
    margin-bottom: 1rem;
}
.interior-content-007 h4 {
    color: var(--defaultMainAccent);
    font-weight: 700;
    font-family: var(--headingFont);
    font-size: 25px;
    margin-bottom: 1rem;
    text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .interior-content-007 {
      padding: 2rem 0 0;
  }
  .interior-content-007 .box-wrap .box {
    width: 100%;
  }
  .interior-content-007 ul li {
    font-size: 1.3rem;
  }
}

/*============================ */
/* Hollow Accordion 06
============================== */
.hollow-accordion-06 {
  position: relative;
  padding: 6rem 0;
  background: #464646;
}
.hollow-accordion-06 .flexbox {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hollow-accordion-06 .content-wrap {
  width: 38%;
}
.hollow-accordion-06 .title-wrap h2 {
  margin-bottom: .5rem;
  font-size: 2rem;
  font-weight: 300;
  color: var(--defaultMainColor);
}
.hollow-accordion-06 .text-wrap {
  margin-bottom: 1rem;
}
.hollow-accordion-06 .text-wrap p {
  font-size: 1rem;
}
.hollow-accordion-06 .btn-wrap {
  display: flex;
  flex-direction: column;
}
.hollow-accordion-06 .btn-wrap hr {
  border: none;
  width: 3rem;
  height: 3px;
  background: var(--defaultMainAccent);
  margin: .5rem 0 1rem;
}
.hollow-accordion-06 .btn-wrap a {
  display: inline-block;
  padding: .5rem 0;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--defaultMainDark);
}
.hollow-accordion-06 .btn-wrap a:hover {
  color: var(--defaultMainColor);
}
.hollow-accordion-06 .accordion-wrap {
  width: 70%;
}
.hollow-accordion-06 .dropdown-wrap {
  background: #252525;
  margin-bottom: 1rem;
  border-radius: 0 1rem;
}
.hollow-accordion-06 .dropdown-title h3 {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.hollow-accordion-06 .dropdown-title h3 span {
  padding-right: 1rem;
}
.hollow-accordion-06 .dropdown-title h3 i {
  font-size: 1rem;
  align-self: center;
  color: var(--defaultMainAccent);
  transition: all .3s ease;
}
.hollow-accordion-06 .dropdown-title:hover h3 i {
  transform: rotate(180deg);
}
.hollow-accordion-06 .active .dropdown-title h3 i {
  transform: rotate(405deg);
}
.hollow-accordion-06 .dropdown-content {
  padding: 1rem 2rem;
  display: none;
}
.hollow-accordion-06 .dropdown-content p {
    color: #fff;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.8;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .hollow-accordion-06 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media screen and (max-width:767px) {
  .hollow-accordion-06 {
    padding: 2rem 0 1rem;
  }
  .hollow-accordion-06 .content-wrap {
    width: 100%;
    margin-bottom: 2rem;
  }
  .hollow-accordion-06 .btn-wrap a {
    font-size: 1.1rem;
  }
  .hollow-accordion-06 .accordion-wrap {
    width: 100%;
  }
  .hollow-accordion-06 .dropdown-title h3 {
    font-size: 1.2rem;
  }
  .hollow-accordion-06 .dropdown-title h3 i {
    font-size: 1.2rem;
  }
  .hollow-accordion-06 .dropdown-content {
    padding: 1rem 1rem 2rem;
  }
}
/*============================ */
/* Service Text 10
============================== */
.service-text-10 {
  padding: 3rem 0;
}
.service-text-10 .title-wrap {
  /* background: var(--defaultMainDark); */
  padding: 2rem 0 0;
}
.service-text-10 .title-wrap .flex-container {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.service-text-10 .title-wrap h2 {
  color: var(--textDark);
  font-weight: 700;
  font-size: 32px;
  /* color: #fff; */
  margin-bottom: 2rem;
}
.service-text-10 .title-wrap p {
  color: dimgrey;
  /* color: #fff; */
  max-width: 50rem;
  font-size: 1.1rem;
}
.service-text-10 .box-wrap {
  position: relative;
  padding: 2rem 0 0;
}
.service-text-10 .box-wrap .flex-container {
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.service-text-10 .box {
  position: relative;
  overflow: hidden;
  background: #FFF;
/*  border: 2px solid #ccc;*/
  margin-bottom: 2rem;
  display: flex;
  transition: all .3s ease;
/*  padding: 1rem;*/
}
.service-text-10 .box.single {
  width: calc(100% / 6 * 2 - 1.5rem);
}
.service-text-10 .box.double {
  width: calc(100% / 6 * 4 - 0.75rem);
}
.service-text-10 .box i {
  font-size: 2.75rem;
  padding-right: 0.75rem;
  color: var(--defaultMainColor);
  transition: all .3s ease;
  font-weight: 700;
  line-height: 1;
}
.service-text-10 .box h3 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: var(--textDark);
  font-weight: 700;
  line-height: 1.1;
  max-width: 14rem;
  transition: all .3s ease;
  border-bottom: 2px solid var(--defaultMainAccent);
  padding-bottom: 1.5rem;
}
.service-text-10 .box p {
  color: #595959;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.8;
}
.service-text-10 .box .text-wrap {
  padding: .25rem 0 0;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .service-text-10 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 767px) {
  .service-text-10 {
    padding: 1rem 0 2rem;
  }
  .service-text-10 .title-wrap h2 {
    font-size: 30px;
  }
  .service-text-10 .title-wrap p {
    max-width: 100%;
  }
  .service-text-10 .title-wrap {
    padding: 1rem 0;
  }
  .service-text-10 .box-wrap {
    padding: 0;
    margin: 0;
  }
  .service-text-10 .box h3 {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    font-size: 1.8rem;
    text-align: center;
  }
  .service-text-10 .box i {
    padding-right: 0;
    padding-bottom: .5rem;
  }
  .service-text-10 .box p {
    text-align: center;
  }
  .service-text-10 .box:last-of-type {
    margin-bottom: 0;
  }
  .service-text-10 .box.single,
  .service-text-10 .box.double {
    width: 100%;
  }
}


/*============================ */
/* Interior Portfolio
============================== */
.interior-portfolio {
  padding: 4rem 0;
  background: #000;
}
.interior-portfolio .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 2.5rem;
}
.interior-portfolio .title-wrap h3 {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
}
.interior-portfolio a img {
  transition: all .3s ease;
}
.interior-portfolio a img:hover {
  opacity: .85;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .interior-portfolio .container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 767px) {
  .interior-portfolio {
    padding: 2rem 0 1rem;
  }
}

/*============================ */
/* Interior Testimonials 04
============================== */
.interior-testimonials-04 {
  padding: 4rem 0 3rem;
  background: #000;
}
.interior-testimonials-04 .flex-container {
  justify-content: center;
}
.interior-testimonials-04 .box-wrap {
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 0 2rem;
}
.interior-testimonials-04 .box-a {
  background: #141414;
}
.interior-testimonials-04 .box-b {
  background: #252525;
}
.interior-testimonials-04 .quote {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.interior-testimonials-04 .box-wrap i {
  color: var(--defaultMainAccent);
  border: 2px solid var(--blue);
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-align: center;
  margin-bottom: .5rem;
}
.interior-testimonials-04 .box-wrap p {
  font-size: .9rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: center;
}
.interior-testimonials-04 .box-wrap p.client-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .interior-testimonials-04 {
    padding: 2rem 0 0;
  }
  .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: 6rem 0 4rem;
}
.interior-maps-01 .flex-container {
  align-items: center;
  justify-content: space-between;
}
.interior-maps-01 .text-wrap {
  flex-basis: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.interior-maps-01 h4 {
  color: var(--defaultMainAccent);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.4;
  font-family: var(--headingFont);
  font-weight: 700;
}
.interior-maps-01 h2 {
  color: var(--defaultMainColor);
  line-height: 1;
  margin-bottom: 1rem;
  font-size: 2.75rem;
  font-weight: 600;
}
.interior-maps-01 p {
  color: dimgrey;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.interior-maps-01 .list-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.interior-maps-01 .list-wrap .list-1,
.interior-maps-01 .list-wrap .list-2 {
  width: 100%;
}
.interior-maps-01 .list-wrap ul {
  width: 48%;
}
.interior-maps-01 .list-wrap ul li {
  display: flex;
  margin-bottom: 1rem;
  font-weight: 400;
  color: dimgrey;
}
.interior-maps-01 .list-wrap ul li i {
  color: dimgrey;
  font-size: 1.2rem;
  padding: .2rem .5rem 0 0;
}
.interior-maps-01 .list-wrap ul li p {
  display: inline-block;
  max-width: 90%;
  vertical-align: top;
}
.interior-maps-01 .map-wrap {
  position: relative;
  overflow: hidden;
  flex-basis: 48%;
  align-self: stretch;
}
.interior-maps-01 .map-wrap:before {
  content: '';
  top: 50%;
  left: 50%;
  width: 50vh;
  transform: translate(-50%,-50%);
  height: 50vh;
  border-radius: 50%;
  background: rgba(0,0,0,.3);
  border: 2px solid var(--defaultMainAccent);
  z-index: 1000;
  position: absolute;
}
.interior-maps-01 .map-wrap iframe {
  flex-basis: 48%;
  display: flex;
  overflow: hidden;
  pointer-events: none;
  max-width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .interior-maps-01 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 991px) {
  .interior-maps-01 .flex-container > * {
    flex-basis: 48%;
  }
  .interior-maps-01 .list-wrap .list-1 {
    margin-right: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .interior-maps-01 {
    padding: 3rem 0 2rem;
  }
  .interior-maps-01 .flex-container {
    flex-direction: column;
  }
  .interior-maps-01 .flex-container > * {
    width: 100%;
  }
  .interior-maps-01 .text-wrap {
    margin-bottom: 1rem;
  }
  .interior-maps-01 .list-wrap {
    width: 100%;
  }
  .interior-maps-01 .list-wrap ul li {
    font-size: 1.2rem;
  }
  .interior-maps-01 .list-wrap .list-1 {
    margin-right: 0rem;
  }
  .interior-maps-01 .list-wrap .list-1,
  .interior-maps-01 .list-wrap .list-2 {
    width: 50%;
  }
  .interior-maps-01 img {
    order: 2;
  }
  .interior-maps-01 .map-wrap iframe {
    height: 65vh;
  }
}

/*============================ */
/* Interior Careers 01
============================== */
.interior-careers-01 {
  padding: 4rem 0;
}
.interior-careers-01 .content-wrap {
  text-align: center;
  margin-bottom: 4rem;
}
.interior-careers-01 .content-wrap h1 {
  color: var(--defaultMainColor);
  margin-bottom: 1rem;
}
.interior-careers-01 .content-wrap h4 {
  color: var(--defaultMainAccent);
}
.interior-careers-01 .content-wrap hr {
  width: 10%;
  margin: 1rem auto 2rem;
  border: 2px solid var(--defaultMainDark);
}
.interior-careers-01 .content-wrap p {
  margin-bottom: 1rem;
}
.interior-careers-01 .form-wrap {
  width: 100%;
}
.interior-careers-01 .form-wrap form {
  background: #dedede;
  padding: 2rem;
  border-radius: 4px;
}
.interior-careers-01 .group-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.interior-careers-01 .group-wrap p {
  margin: 0.5rem 0;
}
.interior-careers-01 .group-wrap h3 {
  margin-bottom: 1rem;
  color: var(--defaultMainDark);
}
.interior-careers-01 ::-webkit-input-placeholder {
  color: #777!important;
}
.interior-careers-01 ::-moz-placeholder {
  color: #777!important;
}
.interior-careers-01 :-ms-input-placeholder {
  color: #777!important;
}
.interior-careers-01 :-moz-placeholder {
  color: #777!important;
}
.interior-careers-01 .wpcf7-form-control-wrap select {
  -webkit-appearance: none;
}
.interior-careers-01 .wpcf7-form-control-wrap input,
.interior-careers-01 .wpcf7-form-control-wrap select,
.interior-careers-01 .wpcf7-form-control-wrap textarea {
  font-family: var(--mainFont);
  font-size: 1.1rem;
  font-weight: 300;
  color: #000;
  width: 100%;
  padding: .5rem;
  margin-bottom: 1rem;
  outline: none;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.interior-careers-01 .wpcf7-form-control-wrap input:focus,
.interior-careers-01 .wpcf7-form-control-wrap select:focus,
.interior-careers-01 .wpcf7-form-control-wrap textarea:focus {
  border-color: var(--defaultMainDark);
  color: var(--defaultMainDark);
}
.interior-careers-01 .wpcf7-form-control-wrap textarea {
  height: 6rem;
}
.interior-careers-01 .wpcf7-form-control-wrap input[type="file"] {
  border: 1px solid #ccc;
  background: #fff;
  font-size: 1rem;
  line-height: 1;
}
.interior-careers-01 .wpcf7-form-control-wrap input[type="file"]:hover {
  color: var(--defaultMainDark);
  background: rgba(255,255,255,0.8);
}
.interior-careers-01 .submit-wrapper {
  text-align: center;
}
.interior-careers-01 .submit-wrapper input[type="submit"] {
  font-family: var(--mainFont);
  font-size: 1.2rem;
  color: #fff;
  background: var(--defaultMainAccent);
  padding: .5rem 2.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all .3s ease;
}
.interior-careers-01 .submit-wrapper input[type="submit"]:hover {
  background: var(--defaultMainDark);
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .interior-careers-01 .flex-container {
    width: calc(100% - 4rem);
  }
}
@media only screen and (max-width: 767px) {
  .interior-careers-01 {
    padding: 3rem 0 2rem;
  }
  .interior-careers-01 .content-wrap {
    margin-bottom: 2rem;
  }
  .interior-careers-01 .form-wrap form {
    padding: 1.5rem 1rem;
  }
}

/*============================ */
/* Contact 10
============================== */
.hollow-contact-10 {
  position: relative;
  overflow: hidden;
  padding: 0 0;
  background: #000;
}
.hollow-contact-10 .flexbox .info-wrap {
  width: 32%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
}
.hollow-contact-10 .flexbox .info-wrap i {
  font-size: 2rem;
  color: var(--defaultMainAccent);
  margin-bottom: 1rem;
  border: 2px solid var(--blue);
  height: 3.5rem;
  width: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.hollow-contact-10 .flexbox .info-wrap a {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}
.hollow-contact-10 .flex-container {
  position: relative;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hollow-contact-10 .flexbox {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.hollow-contact-10 h2 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 1rem;
  color: var(--textDark);
}
.hollow-contact-10 p {
  margin-bottom: 2rem;
  color: #FFF;
}
.hollow-contact-10 .your-email {
  float: left;
  width: 50%;
  padding-right: 15px;
}
.hollow-contact-10 .your-phone {
  float: left;
  width: 50%;
}
.hollow-contact-10 input:not([type="submit"]),
.hollow-contact-10 textarea {
  font-family: var(--mainFont);
  font-size: .9rem;
  font-weight: 400;
  width: 100%;
  border: 1px solid #303030;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
  color: #fff;
  background: #191919;
}
.hollow-contact-10 textarea {
  height: calc(100vh / 4);
  min-height: 8rem;
}
.hollow-contact-10 .wpcf7-form-control.wpcf7-submit {
  background: var(--defaultMainAccent);
  border: none;
  border-radius: 0 1rem;
  padding: .8rem 3rem;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  max-width: max-content;
  justify-content: center;
  transition: .3s ease;
}
.hollow-contact-10 .wpcf7-form-control.wpcf7-submit:hover {
  background: var(--accentDark);
}
.hollow-contact-10 ::placeholder { 
  color: #fff;
}
.hollow-contact-10 .map-wrap {
  width: 100%;
  height: 550px;
  margin-top: 4rem;
}
.hollow-contact-10 .map-wrap iframe {
  height: 100%;
  width: 100%;
  pointer-events: none;
  filter: grayscale(1);
}
.hollow-contact-10 .map-wrap iframe.clicked {
  pointer-events: auto;
}
@media only screen and (min-width: 992px) {
  .hollow-contact-10 .flex-container {
    width: calc(100vw / 1.5);
  }
}
@media only screen and (max-width: 991px) {
  .hollow-contact-10 {
    background-attachment: unset;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-contact-10 {
    padding: 0 0 2rem;
  }
  .hollow-contact-10 .flexbox .info-wrap {
    width: 100%;
  }
  .hollow-contact-10 .flexbox .info-wrap a {
    font-size: 1.5rem;
  }
  .hollow-contact-10 .map-wrap {
    height: 30rem;
    margin-top: 2rem;
  }
}

.hollow-web-design-01 {
  display:block;
}
.hollow-web-design-01 .top-half {
  background:#fff;
  padding:4rem 0 2rem;
}
.hollow-web-design-01 .top-half h1 {
  color:var(--defaultMainDark);
  text-align:center;
  font-size:2rem;
  font-weight:500;
  margin-bottom:1rem;
}
.hollow-web-design-01 .top-half h2 {
  color:#000;
  text-align:center;
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: none;
  line-height: 24px;
  letter-spacing: 0px;
  margin:0 12rem 1rem;  
}
.hollow-web-design-01 .top-half p {
  font-size:1rem;
  color:#000;
  font-weight:500;
  width:75%;
  margin:0 auto 1rem;
}
.hollow-web-design-01 .bottom-half {
  background:#F6F6F6;
  padding:4rem 0 2rem;
}
.hollow-web-design-01 .bottom-half .form-wrap {
  width:50%;
  margin:0 auto;
}
.hollow-web-design-01 .bottom-half .form-wrap input:not([type="submit"]),
.hollow-web-design-01 .bottom-half .form-wrap textarea {
  padding: 10px 0px 10px 15px;
  border-radius:10px;
  border-color: #DCDCDC;
}
.hollow-web-design-01 .bottom-half .form-wrap textarea { height:9em; }
.hollow-web-design-01 .bottom-half .form-wrap textarea::placeholder { color:#000; }
.hollow-web-design-01 .bottom-half .form-wrap input[type="submit"] {
  background:var(--defaultMainAccent);
  border-radius:35px;
  text-transform:uppercase;
  border:none;
  font-weight:500;
}
@media only screen and (max-width:767px) {
  .hollow-web-design-01 .top-half h2 {
    margin:0 3rem 1rem;
  }
  .hollow-web-design-01 .top-half p {
    font-size:1rem !important;
  }
  .hollow-web-design-01 .bottom-half .form-wrap {
    width:80%;
  }
}