/*
  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: */
  --grey: #353535;
  --greyLight: #6f6f6f;
  --black: #000;
  --red: #bf1d1d;

  --robo: 'Roboto', sans-serif;
  --eb: 'EB Garamond', serif;

}

html {
  font-family: var(--robo);
}

/*============================ */
/* HEADER 04
============================== */
.hollow-header-04 {
  position: relative;
  z-index: 9000;
  background: #fff;
  color: #f6f6f6;
  width: 100%;
  box-shadow: 0 2px 5px -2px var(--black);
}
.hollow-header-04.sticky {
  position: fixed;
  top: 0;
}
.hollow-header-04.sticky .main-content {
  display: none;
}
.hollow-header-04 .meta-wrap-outer {
  font-size: 2rem;
  font-family: var(--robo);
  font-weight: 400;
  background: var(--grey);
  margin: 0;
}
.hollow-header-04.sticky .meta-wrap-outer {
  display: none;
}
.hollow-header-04 .meta-wrap-inner {
  display: block;
  position: relative;
  text-align: right;
  font-size: 2rem;
}
.hollow-header-04 .meta-wrap-inner a {
  display: inline-block;
  position: relative;
  float: right;
  line-height: 1;
  color: #FFF;
  padding: .3rem 0;
  font-size: 1rem;
}
.hollow-header-04 .meta-wrap-inner .spacer {
  position: relative;
  display: inline-block;
  margin: 0 .5rem;
}
.hollow-header-04 .logo {
  text-align: center;
}
.hollow-header-04 .logo img {
  margin: .5rem auto;
  max-height: 6rem;
  max-width: 100%;
  -webkit-transition: all .32s ease;
  -o-transition: all .32s ease;
  transition: all .32s ease;
}
.hollow-header-04.sticky .logo img {
  max-width: 110px;
  margin: .2rem auto;
}
.hollow-header-04 .va-middle {
  float: left;
}
.hollow-header-04 .phone {
  text-align: left;
  font-size: 0;
  display: inline-block;
}
.hollow-header-04 .phone a {
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 400;
  margin: .4rem 0;
  display: inline-block;
}
.hollow-header-04 .social {
  display: block;
  text-align: right;
}
.hollow-header-04 .social a {
  color: var(--black);
  font-size: 1.2rem;
  display: inline-block;
  vertical-align: middle;
  padding: 0 .5rem;
}
.hollow-header-04 .nav-wrap {
  display: block;
  position: relative;
  width: 100%;
  background: var(--grey);
}
.hollow-header-04 .nav-wrap .container {
  width: 100%;
}
.hollow-header-04 .nav-wrap .col-xs-12 {
  text-align: center;
}
.hollow-header-04 nav {
  display: inline-block;
  float: none;
  vertical-align: top;
}
.hollow-header-04 nav ul {
  text-align: left;
}
.hollow-header-04 nav a {
  padding: .4rem .6rem;
  display: block;
  color: #FFF;
  font-size: .9rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
}
.hollow-header-04 nav .menu-item {
  margin-bottom: 0;
}
.hollow-header-04.sticky nav a {
  padding: .2rem .6rem;
}
.hollow-header-04 .mobile-toolbar nav a.mobile-icon {
  font-size: 2rem;
}
/* NAV LEVEL ONE */
.hollow-header-04 .menu-item.open>a, .hollow-header-04 .menu-item:hover>a, .hollow-header-04 .menu-item.active a, .hollow-header-04 .menu-item.active:hover>a {
  background: var(--greyLight);
  color: #fff;
}
/* NAV LEVEL TWO */
.hollow-header-04 .dropdown-menu {
  margin-top: 0px;
  border-radius: 0;
  border: none;
  padding: 0;
  width: 12rem;
  min-width: max-content;
  display: none;
}
.hollow-header-04 nav .dropdown-menu .menu-item {
  float: none;
}
.hollow-header-04 nav .dropdown-menu a {
  background: var(--grey);
  color: #fff;
}
.hollow-header-04 .dropdown-menu>li:hover>a, .hollow-header-04 .dropdown-menu>li.active>a, .hollow-header-04 .dropdown-menu>.active>a:hover, .hollow-header-04 .dropdown-menu>.active>a:focus {
  background: var(--greyLight);
  color: #fff;
}
.hollow-header-04 .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-04 nav #mobile {
  position: relative;
  height: 2rem;
  width: 2rem;
  background: none;
  outline: none;
  border: none;
  float: right;
}
.hollow-header-04 .hamburger {
  display: block;
  position: absolute;
  width: 2rem;
  height: 1.5rem;
  background: #FFF;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2
}
.hollow-header-04 .hamburger:hover {
  cursor: pointer;
}
.hollow-header-04 .hamburger:before,
.hollow-header-04 .hamburger:after {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 20%;
  background: var(--grey);
  -webkit-transition-property: -webkit-transform, top;
  -moz-transition-property: -moz-transform, top;
  -o-transition-property: -o-transform, top;
  -ms-transition-property: -ms-transform, top;
  transition-property: transform, top;
  -webkit-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -o-transition-duration: .2s;
  -ms-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -o-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0)
}
.hollow-header-04 .hamburger:after {
  top: 60%
}
header.hollow-header-04.header-menu-open #mobile,
header.hollow-header-04.header-menu-open #mobile .hamburger {
  background: transparent;
}
header.hollow-header-04.header-menu-open #mobile>.hamburger:before,
header.hollow-header-04.header-menu-open #mobile>.hamburger:after {
  top: 40%;
  background: #FFF;
}
header.hollow-header-04.header-menu-open #mobile>.hamburger:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}
header.hollow-header-04.header-menu-open #mobile>.hamburger:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}
/* MOBILE TOOLBAR */
.hollow-header-04 .mobile-toolbar {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.hollow-header-04 .mobile-toolbar a {
  color: #fff;
  padding: .5rem 1rem;
}
.hollow-header-04 .mobile-toolbar a:hover {
  color: #252525;
}
.hollow-header-04 .mobile-toolbar>* {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (min-width: 992px) {
  .hollow-header-04 .mobile-toolbar {
    display: none;
  }
  .hollow-header-04 .menu {
    float: right;
  }
  .hollow-header-04 nav .menu-item {
    float: left;
    position: relative;
  }
  .hollow-header-04 nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
  }
  .hollow-header-04 nav .menu-item-has-children:hover>ul.dropdown-menu {
    display: block;
  }
  .hollow-header-04 .mobile-toolbar{
    display: none;
  } 
}
@media only screen and (max-width: 991px) {
  .hollow-header-04 .logo {
    text-align: center;
  }
  .hollow-header-04 .logo img {
    margin: 60px auto 15px;
    max-height: 10rem;
  }
  body:not(.home) .hollow-header-04 .logo {
    display: none;
  }
  header.hollow-header-04.header-menu-open nav .menu {
    pointer-events: auto;
    opacity: 1;
    max-height: 85vh;
    overflow-y: auto;
  }
  .hollow-header-04 nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: .7rem;
    width: 100%;
    background: var(--grey);
  }
  .hollow-header-04 nav a {
    font-size: 1rem;
    text-transform: uppercase;
  }
  .hollow-header-04 .hamburger::before,
  .hollow-header-04 .hamburger::after {
    background: var(--grey);
  }
  .hollow-header-04 nav .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    -webkit-transition: opacity 0.25s;
    -o-transition: opacity 0.25s;
    transition: opacity 0.25s;
    z-index: -1;
    background: var(--grey);
    box-shadow: 0 3px 3px -2px var(--black);
    pointer-events: none;
    opacity: 0;
  }
  .hollow-header-04 nav .menu-item-has-children.open .dropdown-menu {
    display: block;
  }
  .hollow-header-04 .dropdown-menu {
    position: relative;
    box-shadow: none;
    width: 100%;
  }
  .hollow-header-04 .dropdown-menu>li>a {
    padding-left: 2.5rem;
  }
  .hollow-header-04 .mobile-toolbar>* {
    display: inline-block;
  }
  .hollow-header-04 .mobile-toolbar a {
    font-size: 2rem;
    padding: .2rem .7rem;
    float: left;
  }
  .hollow-header-04 .mobile-toolbar a i {
    padding: 0;
  }
}
@media screen and (orientation: portrait) and (max-width:991px) {
  .hollow-header-04 nav a {
    font-size: 1.6rem;
    padding: .6rem;
  }
}
@media screen and (orientation: portrait) and (max-width:767px) {
  .hollow-header-04 nav a {
    font-size: 1.4rem;
    padding: .45rem .6rem;
  }
}

/*HOMEPAGE COMPONENTS*/

/*============================ */
/* Hero 13
============================== */
.hollow-hero-13 {
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px -2px var(--black);
  z-index: 10;
}

/*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(62, 62, 62, 0.4);
}
.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;
}
#notice{position: absolute;
top: 10%;
right: 10%;
width: 285px;
z-index: 99999}
#notice p {color:#fff}
#notice a{color:#bf1d1d}
/*Caption Slider*/
.hollow-hero-13 .cap-slider {
  width: 100%;
  padding: 50vh 0 8rem;
  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: flex-start;
}
.hollow-hero-13 .caption h1 {
  font-weight: 700;
  font-family: var(--eb);
  text-transform: uppercase;
  text-shadow: 0px 0px 8px var(--black);
  color: #fff;
  margin-bottom: .5rem;
  opacity: 0;
}
.hollow-hero-13 .caption.slick-active h1 {
  animation: hollowHeroSlide .5s ease-out forwards;
}
.hollow-hero-13 .caption h3 {
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0;
}
.hollow-hero-13 .caption.slick-active h3 {
  animation: hollowHeroSlide .5s ease-out .2s forwards;
}
.hollow-hero-13 .caption p {
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0;
  max-width: 60%;
}
.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;
  padding: .5rem 1rem;
  background: var(--grey);
  transition: all .3s ease;
  opacity: 0;
}
.hollow-hero-13 .caption.slick-active a {
  animation: hollowHeroSlide .5s ease-out .6s forwards;
}
.hollow-hero-13 .caption a:hover {
  background: #fff;
  color: #252525;
}
.hollow-hero-13 .caption a i {
  font-size: 1rem;
  padding-right: .5rem;
  color: #fff;
}
@media (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 2rem;
  }
  .hollow-hero-13 .cap-slider {
    padding: 35vh 0 6rem;
  }
  .hollow-hero-13 .caption p {
    max-width: 100%;
  }
}

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



/*============================ */
/* Service Text 05
============================== */
.hollow-service-text-05 {
  padding: 1rem 0;
  box-shadow: 0 2px 5px -2px #525252;
  z-index: 10;
  position: relative;
}
.hollow-service-text-05 .flex-container {
  justify-content: space-between;
  width: 100%;
  padding: 0 4rem;
}
.hollow-service-text-05 .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 31.5%;
  margin: 1rem 0;
}
.hollow-service-text-05 .content h3:first-of-type {
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-family: var(--eb);
  font-weight: 700;
}
.hollow-service-text-05 .content h3 {
  margin-bottom: 1rem;
  color: var(--greyLight);
  font-size: 1.3rem;
}
.hollow-service-text-05 .content p {
  font-size: 1.1rem;
  color: var(--greyLight);
}
.hollow-service-text-05 .service {
  align-items: center;
  padding: 2rem;
  background: blue;
  text-align: center;
  background: var(--grey);
  transition: all .3s ease;
}
.hollow-service-text-05 .service:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.4);
}
.hollow-service-text-05 .service:last-of-type {
  background: var(--greyLight);
}
.hollow-service-text-05 .service h3 {
  color: #FFF;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--eb);
}
.hollow-service-text-05 .service p {
  color: #FFF;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.hollow-service-text-05 .service a {
  display: flex;
  align-items: center;
  color: #fff;
  transition: all .3s ease;
  padding: .5rem 1rem;
  border: 1px solid #fff;
}
.hollow-service-text-05 a:hover {
  background: #fff;
  color: var(--grey);
}
@media only screen and (max-width: 767px) {
  .hollow-service-text-05 .flex-container {
    flex-direction: column;
    padding: 0 1rem;
  }
  .hollow-service-text-05 .box {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
}



.hollow-content-04 {
    padding: 4rem 0;
    background: url(img/content-bg.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    box-shadow: 0 2px 5px -2px #525252;
}
.hollow-content-04 .flex-container {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 4rem;
}
.hollow-content-04 .text-wrap {
    flex-basis: 62%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.6);
    border: 4px solid #d7d7d7;
    padding: 2rem;
}
.hollow-content-04 .title-wrap {
    margin-bottom: 1rem;
    flex-direction: column-reverse;
    display: flex;
}
.hollow-content-04 .title-wrap h1 {
    color: var(--grey);
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--eb);
    font-size: 2.2rem;
}
.hollow-content-04 .title-wrap h3 {
    color: var(--red);
    font-size: 1.3rem;
}
.hollow-content-04 .text-wrap p {
    color: var(--grey);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
}
.hollow-content-04 .button-wrap {
    margin-top: 1rem;
}
.hollow-content-04 .button-wrap span {
    display: flex;
    align-items: center;
    padding-bottom: .2rem;
    color: var(--grey);
    border-bottom: 1px solid var(--grey);
}
.hollow-content-04 .button-wrap span i {
    width: 0;
    transform: translateX(-100%);
    opacity: 0;
    transition: all .3s ease;
}
.hollow-content-04 .button-wrap:hover span i {
    opacity: 1;
    width: 10px;
    margin-left: .5rem;
    transform: none;
}
.hollow-content-04 img {
    flex-basis: 100%;
    display: flex;
    object-fit: cover;
    overflow: hidden;
    height: 27rem;
    margin-top: 0;
}
@media only screen and (min-width: 992px) {
  .hollow-content-04 .flex-container.reverse {
      flex-direction: row-reverse;
  }
  .hollow-content-04 .text-wrap {
    padding: 2rem 2rem 2rem 6rem;
  }
  .hollow-content-04 img {
    margin-right: -4rem;
    flex-basis: 44%;
    margin-top: 0;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-04 {
    padding: 2rem 0;
  }
  .hollow-content-04 .flex-container {
    flex-direction: column;
    padding: 0 1rem;
  }
  .hollow-content-04 .flex-container > * {
    width: 100%;
  }
  .hollow-content-04 img {
    margin-top: 2rem;
  }
}



/*============================ */
/* Service Images 08
============================== */
.hollow-service-images-08 {
  padding: 2rem 0;
  position: relative;
  box-shadow: 0 2px 5px -2px #525252;
  z-index: 8;
}
.hollow-service-images-08 .flex-container {
  justify-content: center;
}
.hollow-service-images-08 h3 {
  text-transform: uppercase;
  font-family: var(--eb);
  font-weight: 700;
  color: var(--grey);
  margin-bottom: 2rem;
  text-align: center;
}
.hollow-service-images-08 ul{list-style-type: disc}
.hollow-service-images-08 .grid-container {
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 4rem;
}
.hollow-service-images-08 .box {
  position: relative;
  display: flex;
  height: 16rem;
  width: 100%;
}
.hollow-service-images-08 .box hr {
  position: absolute;
  width: 100%;
  height: 4px;
  border: none;
  margin: 0;
  background: var(--red);
  opacity: 0;
  transition: all .3s ease;
  z-index: 1;
}
.hollow-service-images-08 .box hr:first-of-type {
  top: 0;
  transform: translateY(-10px);
}
.hollow-service-images-08 .box hr:last-of-type {
  bottom: 0;
  transform: translateY(10px);
}
.hollow-service-images-08 .box:hover hr {
  transform: none;
  opacity: 1;
}
.hollow-service-images-08 .box img {
  display: flex;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hollow-service-images-08 .box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: all .3s ease;
}
.hollow-service-images-08 .box:hover a {
  background: rgba(54, 54, 54, 0.7);
}
.hollow-service-images-08 .box h3 {
  display: inline-flex;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  transition: all .3s ease;
  background: rgba(53, 53, 53, 0.9);
  padding: .5rem 1rem;
  font-size: 1rem;
  width: 90%;
  justify-content: center;
  text-transform: uppercase;
  font-family: var(--eb);
  font-weight: 600;
}
.hollow-service-images-08 .box:hover h3 {
  background: #fff;
  color: var(--grey);
}
@media only screen and (max-width: 767px) {
  .hollow-service-images-08 {
    padding: 2.5rem 0 2rem;
  }
  .hollow-service-images-08 .box h3 {
    font-size: 1.5rem;
  }
  .hollow-service-images-08 .grid-container {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}


/*============================ */
/* Footer-06
============================== */
.hollow-footer-06 {
  position: relative;
  background: #eaeaea;
}
/*Main*/
.hollow-footer-06 .main {
  padding: 4rem 0;
}
.hollow-footer-06 .main .flex-container {
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}
.hollow-footer-06 .box h3 {
  color: var(--grey);
  padding-bottom: .5rem;
  font-family: var(--eb);
  font-weight: 700;
  text-transform: uppercase;
}
.hollow-footer-06 .box hr  {
  height: 4px;
  width: 5rem;
  background: #c3c3c3;
  margin: .5rem 0 1.5rem;
  border: none;
}

/*Location Boxes*/
.hollow-footer-06 .location {
  width: 36%;
}
.hollow-footer-06 .location img {
  max-width: 100%;
  width: 80%;
  margin-bottom: 1rem;
}
.hollow-footer-06 .location ul {
  padding-bottom: 2rem;
}
.hollow-footer-06 .location li {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: .75rem 0;
  font-size: 1.4rem;
  font-weight: 300;
}
.hollow-footer-06 .location li i {
  color: var(--red);
  margin-right: .5rem;
  font-size: 1.1rem;
  margin-top: .25rem;
  width: 1.25rem;
}
.hollow-footer-06 .location span {
  color: var(--grey);
  font-size: 1.1rem;
  line-height: 1.4rem;
}
.hollow-footer-06 .location iframe {
  width: 100%;
  height: 10.5rem;
}

/*Form Wrap*/
.hollow-footer-06 .form-wrap {
  position: relative;
  width: 60%;
}
.hollow-footer-06 .form-wrap hr {
  margin-bottom: 2.4rem;
}
.hollow-footer-06 .wpcf7-form-control-wrap input,
.hollow-footer-06 .wpcf7-form-control-wrap textarea {
  font-family: var(--robo);
  width: 100%;
  line-height: 1;
  color: var(--greyLight);
  font-size: 1rem;
  font-weight: 300;
  background: #fff;
  padding: .5rem .5rem;
  border: none;
  margin-bottom: .5rem;
  border: 1px solid #c3c3c3;
  max-height: 138px;
}
.hollow-footer-06 .wpcf7-form-control-wrap input:focus,
.hollow-footer-06 .wpcf7-form-control-wrap textarea:focus {
  border-color: #ce2025;
}
.hollow-footer-06 input[type="submit"] {
  display: block;
  position: relative;
  width: 100%;
  border: none;
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--robo);
  background: var(--grey);
  font-size: 1.2rem;
  border: none;
  padding: .75rem;
  float: right;
  cursor: pointer;
  transition: .3s ease;
}
.hollow-footer-06 input[type="submit"]:hover {
  background: #000;
}

/*Meta*/
.hollow-footer-06 .meta {
  position: relative;
  z-index: 10;
  background: var(--black);
  padding: .75rem 0;
}
.hollow-footer-06 .meta .flex-container {
  justify-content: space-between;
  align-items: center;
}
.hollow-footer-06 .meta p {
  color: #fff;
  line-height: 1;
  font-size: 1rem;
  margin: 0;
}
.hollow-footer-06 .meta p a {
  font-weight: 700;
  transition: .3s ease;
  color: #fff;
  padding-left: .25rem;
}
.hollow-footer-06 .meta p a:hover {
  color: var(--red);
}
.hollow-footer-06 .top {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 0;
  left: 50%;
  background: transparent;
  transition: all .3s ease;
  transform: translate(-50%,-70%);
  cursor: pointer;
}
.hollow-footer-06 .top i {
  font-size: 1.25rem;
  color: var(--grey);
  transition: inherit;
  opacity: 0.5;
}
.hollow-footer-06 .top:hover i {
  transform: translateY(-10px);
  opacity: 1;
}
.hollow-footer-06 .top p {
  color: var(--grey);
  font-weight: 400;
  font-size: 1.1rem;
  transform: translateY(100%);
  opacity: 0;
  transition: .5s ease;
}
.hollow-footer-06 .top:hover p {
  opacity: 1;
  transform: none;
}
@media only screen and (max-width: 991px) {
  .hollow-footer-06 .location {
    /* width: 46%; */
    margin-bottom: 2rem;
  }
  .hollow-footer-06 .form-wrap {
    /* width: 100%; */
  }
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
  .page-template-page-contact .hollow-footer-06 .main {
    padding: 5rem 0 9rem;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-footer-06 .main {
    padding: 2rem 0;
  }
  .hollow-footer-06 .location {
    width: 100%;
    margin-bottom: 0;
  }
  .hollow-footer-06 .location img {
    width: 100%;
  }
  .hollow-footer-06 .location ul {
    padding-bottom: 1rem;
  }
  .hollow-footer-06 .location span {
    font-size: 1.4rem;
  }
  .hollow-footer-06 .meta .flex-container {
    flex-flow: column;
    align-items: flex-start;
  }
  .hollow-footer-06 .form-wrap {
    width: 100%;
  }
  .hollow-footer-06 .meta p {
    padding: .25rem 0;
  }
  .hollow-footer-06 .meta .top {
    left: auto;
    right: 0.7rem;
    top: 50%;
    transform: translate(0, -50%);
  }
  .hollow-footer-06 .meta .top p {
    transform: none;
    opacity: 1;
    color: #fff;
  }
  .hollow-footer-06 .top i {
    color: #fff;
  }
}



/*DEFAULT STYLE OVERWRITES*/

/*============================ */
/* DEFAULT BLOG STYLES: 
============================== */
/*Search Form*/
.search-form-wrap button {
  background: var(--grey);
}
.search-form-wrap button:hover {
  background: var(--black);
}
/*Blog Page*/
.blog-wrap {
  font-family: var(--robo);
}
.blog-wrap .post-item-header h1 {
  background: var(--grey);
  font-family: var(--eb);
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
}
.blog-wrap .post-item .post-item-header h1:hover {
  background: var(--greyLight);
}
.blog-wrap .post-item .post-content a {
  background: var(--grey);
  font-family: var(--robo);
}
.blog-wrap .post-item .post-content a:hover {
  background: var(--greyLight);
}
.blog-wrap .post-item p {
  border-color: var(--grey);
  color: var(--grey);
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--robo);
}
.blog-wrap .post-item .date-wrap i {
  color: var(--grey);
}
/*Sidebars*/
.blog-sidebar {
  border-color: var(--grey);
}
.blog-sidebar .post-item-header h2 {
  background: var(--grey);
}
/*Post Content*/
.blog-post-content h1 {
  color: var(--grey);
  font-family: var(--eb);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.8rem;
}
.blog-post-content h2 {
  color: var(--black);
  font-family: var(--eb);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 1rem;
}
.blog-post-content h3 {
  color: var(--red);
  font-weight: 700;
  font-size: 1.2rem;
}
.blog-post-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 400;
  color: var(--grey);
}
.blog-post-content p a {
  color: var(--grey);
  font-weight: 700;
}
.blog-post-content p a:hover {
  color: var(--red);
}
/*Post Return Button*/
.blog-return a.blog-return-btn {
  background: var(--grey);
}
.blog-return a.blog-return-btn:hover {
  background: var(--black);
}
/*Pagination*/
.pagination .page-numbers {
  background: var(--black);
}
.pagination .page-numbers:hover, 
.pagination .page-numbers:focus {
  background: var(--grey);
}
.pagination span.page-numbers.current {
  background: var(--grey);
}
/*============================ */
/* DEFAULT POPUP STYLES:
============================== */
.default-popup .form-wrap {
  background: #fff;
}
.default-popup .form-wrap h3 {
  color: var(--grey);
}
.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(--black);
}
.default-popup .wpcf7-form input[type="submit"] {
  background: var(--grey);
}
.default-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--black);
}
.default-popup .loader-wrap {
  background: var(--grey);
}
.default-popup .button-wrap i {
  background: var(--grey);
}
/*============================ */
/* DEFAULT POPUP V2:
============================== */
.default-popup .form-wrap {
  width: 70%;
}
.default-popup .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.default-popup .content-wrap h2 {
  font-size: 1.3rem;
}
.default-popup .content-wrap h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
  text-align: center;
}
.default-popup .content-wrap p {
  text-align: center;
  font-size: 1.1rem;
}
.default-popup .location {
  margin-bottom: 2rem;
}
.default-popup .location ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.default-popup .location ul li {
  display: flex;
  line-height: 1.4;
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0 1.5rem 0 0;
}
.default-popup .location ul li i {
  color: var(--grey);
  padding-right: .5rem;
  padding-top: .3rem;
}
.default-popup .form-wrap .close {
  border: none;
  background: transparent;
  color: var(--grey);
}
.default-popup .form-wrap .close:hover {
  background: var(--grey);
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .default-popup .form-wrap {
    width: 95%;
  }
  .default-popup .content-wrap {
    align-items: flex-start;
  }
  .default-popup .content-wrap p {
    display: none;
  }
  .default-popup .content-wrap h2 {
    display: none;
  }
  .default-popup .content-wrap h3 {
    text-align: left;
    padding-right: 1rem;
  }
  .default-popup .location {
    width: 100%;
    text-align: left;
    margin-bottom: 0;
  }
  .default-popup .location ul li {
    width: 100%;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
  }
}
/*============================ */
/* DEFAULT SEO STYLES:
============================== */
.content.seo {
  background: var(--grey);
  font-family: var(--eb);
}
.content.seo i {
  color: #fff;
}
.content.seo p a:hover {
  color: var(--red);
}
/*============================ */
/* DEFAULT INTERIOR PLACEHOLDERS
============================== */
.interior-placeholder-header {
  border-color: var(--black);
  background: var(--grey);
}
.interior-placeholder-header h1 {
  color: #FFF;
}
@media only screen and (max-width: 991px) {
  .default-contact-page iframe {
    padding-top: 1rem;
    height: 30rem;
  }
}
/*============================ */
/* PASSWORD-PROTECTED PAGE FORMS
============================== */
.post-password-required form p input[type="submit"] {
  background: var(--grey);
}
.post-password-required form p input[type="submit"]:hover {
  background: var(--black);
}
/*============================ */



/*INTERIOR PAGES*/
/*============================ */
/* Interior Header 05
============================== */
.interior-header-05 {
  position: relative;
  display: flex;
  flex-flow: column;
  padding: 11rem 1rem 4rem;
  background: url(img/h1.jpg) center center no-repeat;
  background-size: cover;
  box-shadow: 0 2px 5px -2px var(--black);
  z-index: 10;
}
.interior-header-05::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
}
.interior-header-05 h1 {
  position: relative;
  color: #fff;
  margin-bottom: .75rem;
  text-transform: uppercase;
  font-family: var(--eb);
  font-weight: 700;
  text-shadow: 0px 0px 8px var(--black);
}
.interior-header-05 h2 {
  position: relative;
  color: #fff;
  font-size: 1.2rem;
  text-shadow: 0px 0px 8px var(--black);
}
@media only screen and (max-width: 991px) {
  .interior-header-05 {
    background-attachment: unset!important;
  }
}
@media only screen and (max-width: 767px) {
  .interior-header-05 {
    padding: 4rem 1rem;
  }
  .interior-header-05 h2 {
    max-width: 100%;
  }
}

/*============================ */
/* Content 04
============================== */
.interior-content-04 {
  padding: 2rem 0;
}
.interior-content-04.btm-row {
  padding: 3rem 0 4rem;
  background: whitesmoke;
  margin-top: -4rem;
}
.interior-content-04 .flex-container {
  align-items: center;
  justify-content: space-between;
}
.interior-content-04 .text-wrap {
  flex-basis: 58%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4rem 6rem 4rem 0;
  border-right: 5px solid #c3c3c3;
  position: relative;
  z-index: 10;
}
.page-id-276 .interior-content-04 .text-wrap {
  padding: 6rem 6rem 6rem 0;
}
.page-id-277 .interior-content-04 .text-wrap {
  padding: 6rem 6rem 6rem 0;
}
.page-id-278 .interior-content-04 .text-wrap {
  padding: 6rem 6rem 6rem 0;
}
.page-id-697 .interior-content-04 .text-wrap {
  padding: 8rem 6rem 8rem 0;
}
.page-id-696 .interior-content-04 .text-wrap {
  padding: 8rem 6rem 8rem 0;
}
.page-id-698 .interior-content-04 .text-wrap {
  padding: 9rem 6rem 9rem 0;
}
.interior-content-04 .reverse {
  flex-direction: row-reverse;
}
.interior-content-04 .reverse .text-wrap {
  padding: 2rem 0 2rem 6rem;
  border-right: none;
  /* border-left: 5px solid var(--blue); */
  margin-bottom: 0rem;
  /* background: #fff; */
}
.interior-content-04 .title-wrap {
  margin-bottom: 1rem;
}
.interior-content-04 .title-wrap h1 {
  color: #525865;
  font-weight: 700;
  margin-bottom: .25rem;
}
.interior-content-04 .title-wrap h3 {
  color: var(--grey);
  text-transform: uppercase;
  font-family: var(--eb);
  font-weight: 700;
}
.interior-content-04 .text-wrap p {
  color: var(--grey);
  font-size: 1rem;
  font-weight: 400;
}
.interior-content-04 .text-wrap p:first-of-type {
   margin-bottom: 0;
}
.interior-content-04 .button-wrap {
  margin-top: 1rem;
}
.interior-content-04 .button-wrap a {
  color: #525865;
  border-color: #525865;
}
.interior-content-04 .button-wrap a:before {
  background: #525865;
}
.interior-content-04 img {
  flex-basis: 50%;
  display: flex;
  object-fit: cover;
  overflow: hidden;
  margin-left: -4rem;
  margin-bottom: 2rem;
  height: 23rem;
  position: relative;
  z-index: 10;
}
.interior-content-04 .reverse img {
  margin: 0 -4rem 2rem 0;
}
.interior-content-04 .reverse img.tall-img {
  height: 30rem;
}
.interior-content-04 .dbl-img-wrap {
  margin-top: 1rem;
  flex-wrap: wrap;
}
.interior-content-04 .dbl-img-wrap h3 {
  color: var(--black);
  text-transform: uppercase;
  font-family: var(--eb);
  font-weight: 700;
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}
.interior-content-04 .dbl-img-wrap img {
  max-width: 49%;
  max-height: 15rem;
  margin: 0;
}
.page-id-276 .interior-content-04 img {
  height: 22rem;
}
.page-id-277 .interior-content-04 img {
  height: 19rem;
}
/*@media only screen and (max-width: 991px) {
  .interior-content-04 .flex-container > * {
    flex-basis: 48%;
  }
}*/
@media only screen and (max-width: 767px) {
  .interior-content-04 {
    padding: 2rem 0;
  }
  .interior-content-04.btm-row {
    margin: 0;
    padding: 2rem 0 0;
  }
  .interior-content-04 .flex-container {
    flex-direction: column;
  }
  .interior-content-04 .flex-container > * {
    width: 100%;
  }
  .interior-content-04 .text-wrap, .interior-content-04 .reverse .text-wrap, .page-id-276 .interior-content-04 .text-wrap, .page-id-277 .interior-content-04 .text-wrap, .page-id-278 .interior-content-04 .text-wrap {
    padding: 1rem;
    border-right: none;
  }
	.page-id-697 .interior-content-04 .text-wrap {
  padding: 1rem;
}
.page-id-696 .interior-content-04 .text-wrap {
  padding: 1rem;
}
.page-id-698 .interior-content-04 .text-wrap {
  padding: 1rem;
}
  .interior-content-04 img {
    max-height: 55vh;
    min-height: 16rem;
    margin: 0;
  }
  .interior-content-04 .reverse img {
    margin: 0;
  }
  .interior-content-04 .dbl-img-wrap h3 {
    margin: 2rem 0 3rem;
    font-size: 2rem
  }
  .interior-content-04 .dbl-img-wrap img {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}



.interior-content-002 {
  padding: 0 0 2rem;
  margin-top: -4rem;
  position: relative;
}
.interior-content-002 .box {
  background: whitesmoke;
  padding: 2rem;
}
.interior-content-002 h3 {
  color: var(--grey);
  text-transform: uppercase;
  font-family: var(--eb);
  font-weight: 700;
  margin-bottom: 1rem;
}
.interior-content-002 h4 {
	font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 700;
}
.interior-content-002 p {
  color: var(--grey);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.interior-content-002 .logo-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.interior-content-002 .logo-wrap a {
  width: 22%;
}
.interior-content-002 .logo-wrap img {
  max-width: 100%;
}
.interior-content-002 .logo-wrap a:hover img {
  opacity: .7;
}

/*PRODUCTS PAGES*/
.interior-content-002 .suppliers {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.interior-content-002 .suppliers .title {
  width: 100%;
  background: whitesmoke;
  padding: 1rem 0;
  border-bottom: 1px solid #e6e5e5;
}
.interior-content-002 .suppliers .box-wrap {
  border: 1px solid #e6e5e5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}
.interior-content-002 .suppliers h4 {
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 700;
  font-family: var(--eb);
}
.interior-content-002 .logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.interior-content-002 img {
  max-width: 100%;
  padding: 2rem 1rem;
}
.interior-content-002 a:hover img {
  opacity: .7;
}
.interior-content-002 .appliances,
.interior-content-002 .vanities,
.interior-content-002 .bath-counter {
  width: 24%;
}
.interior-content-002 .countertops,
.interior-content-002 .tubs,
.interior-content-002 .bath-tile {
  width: 72%;
}
.interior-content-002 .lighting,
.interior-content-002 .laminate {
  width: 48%; 
}
.interior-content-002 .shower {
  width: 32%;
}
.interior-content-002 .medicine {
  width: 64%;
}
@media only screen and (max-width: 767px) {
  .interior-content-002 {
    margin-top: 0;
  }
	.interior-content-002 h4 {
		font-size: 1.4rem;
	}
  .interior-content-002 .suppliers {
    flex-direction: column;
  }
  .interior-content-002 .logos {
    flex-direction: column;
  }
  .interior-content-002 .appliances,
  .interior-content-002 .bath-counter {
    width: 100%;
  }
  .interior-content-002 .countertops,
  .interior-content-002 .bath-tile {
    width: 100%;
  }
  .interior-content-002 .lighting,
  .interior-content-002 .laminate {
    width: 100%; 
  }
  .interior-content-002 .vanities,
  .interior-content-002 .shower {
    width: 100%;
  }
  .interior-content-002 .tubs,
  .interior-content-002 .medicine {
    width: 100%;
  }
  .interior-content-002 .logo-wrap a {
    width: 50%;
  }
  .interior-content-002 .logo-wrap img {
    padding: 1rem;
  }
}


.interior-content-003 {
  padding: 2rem 0;
  position: relative;
}
.interior-content-003 .box {
  background: #fff;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.interior-content-003 .box-grey {
  background: whitesmoke;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.interior-content-003 .icon-wrap {
  width: 10%;
  text-align: center;
}
.interior-content-003 .icon-wrap i {
  font-size: 5rem;
  color: var(--grey);
}
.interior-content-003 .content {
  width: 86%;
}
.interior-content-003 h3 {
  color: var(--grey);
  text-transform: uppercase;
  font-family: var(--eb);
  font-weight: 700;
  margin-bottom: 1rem;
}
.interior-content-003 p {
  color: var(--grey);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}
.interior-content-003 .link-1 {
  font-weight: 700;
  color: #000;
}
.interior-content-003 .link-1:hover {
  color: var(--red);
}
@media only screen and (max-width: 767px) {
  .interior-content-003 {
    margin-top: 0;
    padding: 1rem 0 0;
  }
  .interior-content-003 .icon-wrap {
    display: none;
  }
  .interior-content-003 .content {
    width: 100%;
  }
  .interior-content-003 .box {
    margin-bottom: 1rem;
    padding: 1rem 2rem
  }
}

.interior-content-006 {
  padding: 3rem 0 2rem;
  position: relative;
}
.interior-content-006 .box {
  background: whitesmoke;
  padding: 2rem;
}
.interior-content-006 h3 {
  color: var(--black);
  text-transform: uppercase;
  font-family: var(--eb);
  font-weight: 700;
  margin-bottom: 1rem;
}
.interior-content-006 p {
  color: var(--black);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}
.interior-content-006 .gallery-wrap {
  margin-top: 3rem;
}

@media only screen and (max-width: 767px) {
  .interior-content-006 {
    padding: 2rem 0 1rem;
  }
  .interior-content-006 .gallery-wrap {
    margin-top: 2rem;
  }
}





/*============================ */
/* recaptcha css
============================== */
.grecaptcha-badge{
  visibility: collapse !important;  
} 
.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;}

@media print {
	#fancybox-content {
		width:100% !important;
		height:100% !important;
	}
	#fancybox-wrap {
		left:0 !important;
	}
	#fancybox-img {
		position:relative;
		z-index:600000000000000;
	}
}

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