/*
  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: #58585a;
  --greyDark: #3b3b3d;
  --blue: #30aae1;
  --blueDark: #2582ad;

  --rale: 'Raleway', sans-serif;

}

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

/*============================ */
/* HEADER 09
============================== */
.hollow-header-09 {
  display: block;
  position: relative;
  z-index: 9000;
  background: #fff;
  color: #f6f6f6;
  width: 100%;
  box-shadow: 0 2px 5px -2px #000;
}
.hollow-header-09.sticky {
  position: fixed;
  top: 0;
}
.hollow-header-09 .logo img {
  max-width: 100%;
  padding: .5rem 0;
  transition: all .32s ease;
}
.hollow-header-09.sticky .logo img {
  display: none;
}
.hollow-header-09 .va-middle {
  float: left;
}
.hollow-header-09 .phone-wrap,
.hollow-header-09 .email-wrap {
  text-align: left;
  font-size: 0;
  display: inline-block;
}
.hollow-header-09 .phone-wrap a,
.hollow-header-09 .email-wrap a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  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(--grey);
}
.hollow-header-09 .social {
  display: inline-block;
}
.hollow-header-09 .social a {
  color: #fff;
  font-size: 1.3rem;
  display: inline-block;
  vertical-align: middle;
  padding: .3rem;
  transition: all 0.2s ease;
}
.hollow-header-09 .social a:hover {
  color: var(--grey);
}
.hollow-header-09 .meta-wrap-outer {
  font-size: 2rem;
  font-weight: 400;
  background: var(--blue);
  margin: 0;
  padding: .25rem 0;
}
.hollow-header-09 .meta-wrap-inner {
  display: block;
  position: relative;
  text-align: right;
}
.hollow-header-09 .meta-wrap-inner .spacer {
  padding: 0.25rem;
  font-size: 1.5rem;
  color: #fff;
}
.hollow-header-09 .mobile-toolbar nav a.mobile-icon {
  font-size: 26px;
}
.hollow-header-09.sticky .meta-wrap-outer {
  display: none;
}
.hollow-header-09 .social {
  text-align: right;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
/* NAVIGATION */
.hollow-header-09 nav {
  float: right;
  display: inline-block;
  background: none;
  font-size: 2rem;
  position: relative;
  z-index: 5000;
}
.hollow-header-09 nav a {
  padding: 0.3rem 0.6rem;
  display: block;
  color: var(--grey);
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all .2s ease;
}
.hollow-header-09 nav a:focus {
  color: var(--grey);
}
.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(--blue);
}
/* 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(--grey);
  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: #444441;
  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 .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: 991px) {
  .hollow-header-09 {
    background: #fff;
  }
  .hollow-header-09 .logo {
    text-align: center;
  }
  .hollow-header-09 .logo img {
    margin: 50px auto 15px;
    box-shadow: none;
    max-width: 60%;
  }
  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(--blue);
  }
  .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(--greyDark);
  }
  .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(--greyDark);
  }
  .hollow-header-09 .hamburger::before,
  .hollow-header-09 .hamburger::after {
    background: var(--blue);
  }
  .hollow-header-09 nav .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transition: opacity 0.25s;
    z-index: -1;
    background: var(--grey);
    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;
  box-shadow: 0 2px 5px -2px #000;
}


/*Caption Slider*/
.hollow-hero-13 .flex-container-fluid {
  align-items: flex-end;
  justify-content: flex-start;
  height: 75vh;
  min-height: 34rem;
}
.hollow-hero-13 .cap-slider {
  /* width: 100%; */
  padding: 2rem;
  max-width: 40rem;
  visibility: hidden;
  background: rgba(59, 59, 61, 0.81);
}
.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;
  /* padding: 0 4rem; */
  max-width: 100%;
}
.hollow-hero-13 .caption .title {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 1rem;
  /* max-width: 100%; */
  /* position: relative; */
}
.hollow-hero-13 .caption h1, .hollow-hero-13 .caption .h1 {
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  opacity: 0;
  font-size: 2rem;
}
.hollow-hero-13 .caption.slick-active h1, .hollow-hero-13 .caption.slick-active .h1 {
  animation: hollowHeroSlide .5s ease-out .2s forwards;
}
.hollow-hero-13 .caption h3 {
  color: #fff;
  margin-bottom: .5rem;
  opacity: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.hollow-hero-13 .caption.slick-active h3 {
  animation: hollowHeroSlide .5s ease-out forwards;
}
.hollow-hero-13 .caption p {
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0;
  font-weight: 400;
  max-width: 100%;
}
.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;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  padding: .5rem 1rem;
  border: 2px solid #fff;
  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: var(--blue);
  border-color: var(--blue);
}
.hollow-hero-13 .caption a i {
  font-size: 1.3rem;
  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 1rem;
  }
  .hollow-hero-13 .cap-slider {
    /* padding: 4rem 0 6rem; */
    max-width: 100%;
  }
  .hollow-hero-13 .caption h1, .hollow-hero-13 .caption .h1 {
    font-size: 2rem;
  }
  .hollow-hero-13 .caption p {
    max-width: 100%;
  }
}

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



/*============================ */
/* Action 11
============================== */
.hollow-action-11 {
  padding: 2rem 0;
  background: var(--greyDark);
  box-shadow: 0 2px 5px -2px #000;
  z-index: 10;
  position: relative;
}
.hollow-action-11 .flex-container,
.hollow-action-11 .flex-container-fluid {
  justify-content: center;
  align-items: center;
}
.hollow-action-11 h3 {
  color: #FFF;
  font-weight: 300;
  font-size: 1.75rem;
  text-align: center;
}
.hollow-action-11 h3 span {
  border-bottom: 1px solid var(--blue);
  font-weight: 700;
  margin-right: .25rem;
  padding-bottom: .25rem;
}
.hollow-action-11 a {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  padding: .5rem 1rem;
  border: 2px solid #fff;
  transition: all .3s ease;
}
.hollow-action-11 a i {
  padding-right: .75rem;
  font-size: 1.3rem;
}
.hollow-action-11 a:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.hollow-action-11 h3#phone a {
  font-weight: 700;
  color: var(--blue);
  padding: 0 1.5rem;
  transition: all .3s ease;
  border: none;
}
.hollow-action-11 h3#phone a:hover {
  color: #fff;
  border: none;
  background: none;
}
@media only screen and (max-width: 991px) {
  .hollow-action-11 {
    padding: 2rem 0;
  }
  .hollow-action-11 .flex-container,
  .hollow-action-11 .flex-container-fluid {
    flex-flow: column;
  }
  .hollow-action-11 h3 {
    margin-bottom: 1rem;
    padding: 0;
  }
  .hollow-action-11 h3 span {
    border: none;
    padding: none;
    font-weight: 300;
  }
}


/*============================ */
/* Service Images 20
============================== */
.service-images-20 {
  padding: 2rem 0 0;
  background: whitesmoke;
}
.service-images-20 h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--blue);
}
.service-images-20 p {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--grey);
  font-weight: 400;
}
.service-images-20 .box-wrap {
  justify-content: space-between;
  width: 100%;
  padding: 0 4rem;
}
.service-images-20 .service-box {
  position: relative;
  width: 31.5%;
  display: flex;
  flex-flow: column;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  background: white;
  margin-bottom: 2rem;
}
.service-images-20 .service-box img {
  display: flex;
  object-fit: cover;
  height: 12rem;
  width: 100%;
	border: 4px solid #fff;
}
.service-images-20 .text-wrap {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  height: 100%;
  border-top: 4px solid var(--blue);
}
.service-images-20 .text-wrap h3 {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.service-images-20 .text-wrap p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--grey);
  text-align: left;
}
.service-images-20 .hover-bg {
  background: var(--greyDark);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  transition: all .2s ease;
}
.service-images-20 .service-box:hover .hover-bg {
  transform: none;
}
.service-images-20 .hover-text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-images-20 .hover-text-wrap h3 {
  color: white;
  margin-bottom: 0;
  font-weight: 600;
  transform: translateX(-200px);
  transition: all .2s ease;
  opacity: 0;
}
.service-images-20 .service-box:hover .hover-text-wrap h3 {
  transform: none;
  transition-delay: .1s;
  opacity: 1;
}
.service-images-20 .hover-text-wrap i {
  font-size: 1.5rem;
  margin-left: 1rem;
  color: #fff;
  transform: translateX(200px);
  transition: all .2s ease;
  opacity: 0;
}
.service-images-20 .service-box:hover .hover-text-wrap i {
  transform: none;
  transition-delay: .1s;
  opacity: 1;
}
@media (max-width: 767px) {
  .service-images-20 {
    padding: 2rem 0 0;
  }
  .service-images-20 .box-wrap {
    flex-flow: column;
    padding: 0 1rem;
  }
  .service-images-20 .service-box {
    width: 100%;
  }
}




/*============================ */
/* Content 08
============================== */
.hollow-content-08 {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
body:not(.home) .hollow-content-08 {
  padding: 4rem 0 1rem;
}
.hollow-content-08 .flex-container {
  padding: 0 4rem;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.hollow-content-08 .title-wrap {
  width: 80%;
  margin: 0 auto 1rem;
}
.hollow-content-08 .title-wrap h2 {
  color: var(--grey);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 400;
}
.hollow-content-08 .title-wrap h3 {
  margin-bottom: 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.4;
}
.hollow-content-08 .title-wrap hr {
  width: 10%;
  margin: 1rem auto;
  border: 1.5px solid var(--blue);
}
.hollow-content-08 .title-wrap p {
  color: #444441;
  font-weight: 700;
}
.hollow-content-08 .text-wrap {
  width: 80%;
  margin: 0 auto 1rem;
}
.hollow-content-08 .text-wrap h4 {
  font-size: 1.2rem;
  color: var(--grey);
  font-weight: 600;
  margin-bottom: .5rem;
}
.hollow-content-08 .text-wrap p {
  color: var(--grey);
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  margin-bottom: 2rem;
}
.hollow-content-08 .button-wrap {
  margin-top: 3rem;
  text-align: center;
}
.hollow-content-08 .button-wrap a {
  color: var(--blue);
  display: inline-block;
  font-weight: 700;
  border: 2px solid var(--blue);
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  margin: 0 1rem;
  transition: all .3s ease;
}
.hollow-content-08 .button-wrap a i {
  margin-right: .75rem;
}
.hollow-content-08 .button-wrap a:hover {
  background: var(--blue);
  color: #fff;
}
@media only screen and (max-width: 991px) {
  /*.hollow-content-08 {
    background-attachment: unset;
  }*/
  .hollow-content-08 h2 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-08 .flex-container {
    padding: 0 1rem;
  }
  .hollow-content-08 {
    padding: 2rem 0 0;
  }
  body:not(.home) .hollow-content-08 {
    padding: 2rem 0 0;
  }
  .hollow-content-08 .title-wrap,
  .hollow-content-08 .text-wrap {
    width: 100%;
  }
  .hollow-content-08 .button-wrap {
    margin-top: 2rem;
  }
  .hollow-content-08 .button-wrap a {
    display: inline-block;
    margin-bottom: 1rem;
  }
}
/*============================ */
/* Action 17
============================== */
.hollow-action-17 {
  position: relative;
  overflow: hidden;
  background: url(img/action-17.jpg) center /cover no-repeat fixed;
}
.hollow-action-17 .slicer {
  /* content: ""; */
  width: 70%;
  position: absolute;
  height: 100%;
  top: 0;
  right: -10%;
  background: rgba(0,0,0,0.5);
  transform: skew(-12deg) translateX(0%);
  animation: actionSlicer 1.4s ease .5s;
  animation-fill-mode: backwards;
}
.hollow-action-17 .dicer {
  width: 70%;
  position: absolute;
  height: 100%;
  top: 0;
  right: calc(5% - 4rem);
  background: rgba(0,0,0,0.25);
  transform: skew(-12deg) translateX(0%);
  animation: actionDicer 1.2s ease 0.8s;
  animation-fill-mode: backwards;
}
@keyframes actionSlicer {
  0% {
    opacity: 0;
    transform: skew(-12deg) translateX(100%);
  }
  100% {
    opacity: 1;
    transform: skew(-12deg) translateX(0%);
  }
}
@keyframes actionDicer {
  0% {
    opacity: 0;
    transform: skew(-12deg) translateX(-200%);
  }
  100% {
    opacity: 1;
    transform: skew(-12deg) translateX(0%);
  }
}
.hollow-action-17 .flex-container {
  justify-content: flex-end;
  /* padding-right: 2.5rem; */
}
.hollow-action-17 .text-wrap {
  transform: skew(-12deg);
  margin: 2rem 0;
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: space-evenly;
  max-width: 50%;
  width: 30rem;
}
.hollow-action-17 .text-wrap h2 {
  color: #FFF;
  padding-bottom: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  /* transform: skew(15deg); */
  text-align: center;
}
.hollow-action-17 li {
  color: #FFF;
  width: 400px;
  transform: skew(15deg);
}
.hollow-action-17 span {
  display: flex;
  align-items: center;
  margin-bottom: .5rem;
}
.hollow-action-17 i {
  font-size: 1.5rem;
  padding-right: 1rem;
}
.hollow-action-17 .text-wrap li h3 {
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
}
.hollow-action-17 p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
  font-weight: 400;
}
.hollow-action-17 a {
  color: #ecc15b;
  text-decoration: underline;
  font-size: .9rem;
  font-weight: 400;
  padding-left: .25rem;
  transition: all .3s ease;
}
.hollow-action-17 a:hover {
  color: #c59f45;
}
/* @media only screen and (max-width: 1199px) {
  .hollow-action-17::before {
    width: 66%;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-action-17::before {
    width: 86%;
  }
} */
@media only screen and (max-width: 767px) {
  .hollow-action-17 .slicer,
  .hollow-action-17 .dicer {
    display: none;
  }
/*   .hollow-action-17 .dicer {
    width: 50%;
    height: 100%;
    right: unset;
    border: none;
    transform: unset;
    background: rgba(53, 53, 53, 0.8);
  } */
  .hollow-action-17 .flex-container {
    padding: 3rem 1rem 1rem;
    background: rgba(53, 53, 53, 0.75);
  }
  .hollow-action-17 .text-wrap {
    max-width: 100%;
    transform: none;
    width: 100%;
    margin: 0;
  }
  .hollow-action-17 .text-wrap h3 {
    transform: none;
  }
  .hollow-action-17 li {
    transform: none;
    width: 100%;
  }
}


/*============================ */
/* Service Icons 06
============================== */
.service-icons-06 {
  background: var(--greyDark);
  padding: 4rem 0;
  box-shadow: 0 2px 5px -2px #000;
  z-index: 10;
  position: relative;
}
.service-icons-06 .title-wrap {
  justify-content: center;
  margin-bottom: 2rem;
}
.service-icons-06 .title-wrap h2 {
  text-align: center;
  color: var(--blue);
  font-weight: 400;
  margin-bottom: 1rem;
}
.service-icons-06 .title-wrap p {
  color: #fff;
  text-align: center;
  font-weight: 400;
}
.service-icons-06 .flex-container.boxes {
  justify-content: space-evenly;
  width: 100%;
  padding: 0 4rem;
  flex-wrap: wrap;
}
.service-icons-06 .box-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  z-index: 1;
  padding: 1rem;
  width: 25%;
  border: 2px dashed transparent;
  transition: all .3s ease;
}
.service-icons-06 .box-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background: var(--blue);
  border-radius: 50%;
  margin-bottom: 2rem;
}
.service-icons-06 .box-icon:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--greyDark);
  transition: all .3s ease;
  transform: scale(0.9);
  z-index: -1;
}
/*.service-icons-06 .box-wrap:hover .box-icon:before {
  transform: scale(1.1);
  box-shadow: 0 0 10px var(--greyDark);
}*/
.service-icons-06 .box-icon i {
  color: #fff;
  font-size: 3.25rem;
  transition: all .3s ease;
}
/*.service-icons-06 .box-wrap:hover .box-icon i {
  color: var(--greyDark);
  text-shadow: 0 0 3px var(--greyDark);
}*/
.service-icons-06 .box-wrap h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 600;
}
.service-icons-06 .box-wrap p {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
}
.service-icons-06 .flex-container.button {
  justify-content: center;
}
.service-icons-06 .btn-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: space-evenly;
}
.service-icons-06 .btn-wrap a {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid #fff;
  padding: .5rem 1rem;
  text-align: center;
  justify-content: center;
  margin: 0 1rem 1rem;
  transition: all .3s ease;
}
.service-icons-06 .btn-wrap a i {
  margin-right: .75rem;
  font-size: 1.3rem;
}
.service-icons-06 .btn-wrap a:hover {
  background: var(--blue);
  border-color: var(--blue);
}
@media (max-width: 767px) {
  .service-icons-06 {
    padding: 3rem 0 2rem;
  }
  .service-icons-06 .flex-container {
    flex-flow: column;
    padding: 0 1rem!important;
  }
  .service-icons-06 .title-wrap h2 {
    font-size: 2rem;
  }
  .service-icons-06 .box-wrap {
    margin-bottom: 1rem;
    width: 100%;
  }
  .service-icons-06 .btn-wrap {
    flex-direction: column;
    margin: 0;
  }
  .service-icons-06 .btn-wrap a:first-of-type {
    margin-bottom: 2rem;
  }
}

/*============================ */
/* Gallery 01
============================== */
.hollow-gallery-01 {
  padding: 4rem 0;
}
.hollow-gallery-01 .flex-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 4rem;
  width: 100%;
}

/*Images*/
.hollow-gallery-01 .images {
  width: 100%;
  display: grid;
  grid-gap: 2rem;
}
.hollow-gallery-01 .images .img-wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.hollow-gallery-01 .images .img-wrap span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  background: #000;
  opacity: 0;
  transition: all .6s ease;
}
.hollow-gallery-01 .images .img-wrap:hover span {
  opacity: 0.7;
}
.hollow-gallery-01 .images img {
  position: relative;
  display: block;
  object-fit: cover;
  width: 100%;
  transition: transform 5s;
  overflow: hidden;
  will-change: transform;
}
.hollow-gallery-01 .img-wrap:hover img {
  transform: scale(1.2);
}

/*Content*/
.hollow-gallery-01 .content {
  width: 100%;
  text-align: center;
  padding: 0 4rem 0;
}
.hollow-gallery-01 .content h2 {
  color: var(--blue);
  margin-bottom: .5rem;
}
.hollow-gallery-01 .content h3 {
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.hollow-gallery-01 .content p {
  color: var(--grey);
  font-weight: 400;
  margin-bottom: 3rem;
  font-size: 1.2rem;
}
.hollow-gallery-01 .content a {
  display: inline-flex;
  align-items: center;
  padding: .5rem 1rem;
  border: 2px solid var(--grey);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey);
  transition: all .3s ease;
}
.hollow-gallery-01 .content a i {
  font-size: 1.3rem;
  margin-right: .75rem;
}
.hollow-gallery-01 .content a:hover {
  background: var(--grey);
  color: #fff;
}

.hollow-gallery-01 .btn-wrap {
  margin-top: 3rem;
}

/*Image Modal*/
.hollow-gallery-01 .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  opacity: 0;
}

/*Image Slider*/
.hollow-gallery-01 .slider-wrap {
  display: flex;
  flex-flow: column;
  max-width: 800px;
}
.hollow-gallery-01 .slider {
  position: relative;
  width: 100%;
  margin-bottom: 3px;
}
.hollow-gallery-01 .slide {
  display: none;
}
.hollow-gallery-01 .slide.active {
  display: flex;
}
.hollow-gallery-01 .slide.active img {
  display: flex;
  object-fit: cover;
  width: 100%;
}
.hollow-gallery-01 ul.controls {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  grid-gap: 3px;
}
.hollow-gallery-01 ul.controls li {
  background: #000;
}
.hollow-gallery-01 ul.controls li img {
  display: flex;
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
  cursor: pointer;
  will-change: transform;
  border-bottom: 2px solid transparent;
}
.hollow-gallery-01 ul.controls li.active {
  border-bottom: 2px solid #fff;
}
.hollow-gallery-01 ul.controls li.active img {
  opacity: 0.6;
}
.hollow-gallery-01 ul.controls li:hover img {
  opacity: 0.6;
  transform: scale(0.95);
}
.hollow-gallery-01 .close {
  position: absolute;
  display: inline-flex;
  top: -.4rem;
  right: -.4rem;
  font-size: 1.2rem;
  color: #fff;
  padding: 1rem 1.2rem;
  border-radius: .25rem;
  /* border: 2px solid #fff; */
  /* background: red; */
  transition: all .3s ease;
  cursor: pointer;
}
.hollow-gallery-01 .arrow {
  position: absolute;
  display: flex;
  align-items: center;
  top: 50%;
  width: 5rem;
  height: 5rem;
  transform: translateY(-50%);
}
.hollow-gallery-01 .arrow i {
  font-size: 1rem;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 1rem;
  transition: all .3s ease;
  cursor: pointer;
}
.hollow-gallery-01 .arrow:hover i {
  padding: 1.25rem;
}
.hollow-gallery-01 .arrow i:hover {
  background: rgba(0,0,0,0.9);
}
.hollow-gallery-01 .arrow-left {
  left: 0;
  justify-content: flex-start;
}
.hollow-gallery-01 .arrow-right {
  right: 0;
  justify-content: flex-end;
}
.hollow-gallery-01 .close:hover {
  /* background: darkred; */
}
.hollow-gallery-01 .close::before {
  transition: inherit;
  will-change: transform;
}
.hollow-gallery-01 .close:hover::before {
  transform: rotate(90deg);
}
@media only screen and (min-width: 768px) {
  .hollow-gallery-01 .images {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-gallery-01 .modal {
    padding: 4rem;
  }
  .hollow-gallery-01 .slide.active img {
    max-height: 50vh;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-gallery-01 {
    padding: 2rem 0;
  }
  .hollow-gallery-01 .flex-container {
    padding: 0 1rem;
  }
  .hollow-gallery-01 .modal {
    padding: 0 2rem;
  }
  .hollow-gallery-01 .images {
    width: 100%;
  }
  .hollow-gallery-01 .images .img-wrap span {
    background: rgba(0,0,0,0.35);
    opacity: 1;
  }
  .hollow-gallery-01 .content {
    width: 100%;
    margin-bottom: 0rem;
    padding: 0 1rem;
  }
  .hollow-gallery-01 .slider-wrap {
    width: 100%;
  }
  .hollow-gallery-01 .btn-wrap {
    margin-top: 2rem;
  }
}
@media (orientation: landscape) {
  .hollow-gallery-01 .slide.active img {
    max-height: 50vh;
  }
}


/*============================ */
/* Contact 02
============================== */
.hollow-contact-02 {
  padding: 3rem 0;
  background: whitesmoke;
}
.hollow-contact-02 h2, .hollow-contact-02 .h2 {
  color: var(--grey);
  margin-bottom: 1rem;
}
.hollow-contact-02 p {
  font-size: 1.1rem;
  color: var(--grey);
  margin: 0;
  font-weight: 400;
}
.hollow-contact-02 .grid-container {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
}
.hollow-contact-02 .grid-item {
  align-items: start;
}
.page-template-page-contact .hollow-contact-02 .location {
  align-self: flex-end;
  margin-bottom: 1rem;
}
.hollow-contact-02 .map-wrap iframe {
  height: 100%;
  width: 100%;
  pointer-events: none;
  padding-bottom: 3.5rem;
}
.hollow-contact-02 .map-wrap iframe.clicked {
  pointer-events: auto;
}
.hollow-contact-02 ul li {
  color: var(--grey);
  line-height: 1.4;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
}
.hollow-contact-02 .your-email {
  float: left;
  width: 50%;
  padding-right: 15px;
  z-index: 5;
}
.hollow-contact-02 .your-phone {
  float: left;
  width: 50%;
  z-index: 10;
}
.hollow-contact-02 .form-wrap {
  position: relative;
}
.hollow-contact-02 input:not([type="submit"]),
.hollow-contact-02 textarea {
  font-size: 1rem;
  width: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  color: var(--grey);
  padding: .4rem .7rem;
  margin-bottom: 1rem;
  font-weight: 300;
  font-family: var(--rale);
}
.hollow-contact-02 textarea {
  font-family: var(--rale);
  z-index: 0;
  height: 15rem;
  max-height: 215px;
  margin: 0;
}
.hollow-contact-02 .wpcf7-form-control.wpcf7-submit {
  background: var(--blue);
  border: none;
  border-radius: var(--root--borderRadius);
  padding: .5rem 1.5rem;
  margin: 1rem 0 0;
  color: #FFF;
  cursor: pointer;
  font-family: var(--rale);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  width: unset;
  transition: .3s ease;
}
.hollow-contact-02 .wpcf7-form-control.wpcf7-submit:hover {
  background: var(--blueDark);
}
@media only screen and (min-width: 768px) {
  .hollow-contact-02 .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width:991px) {
  .page-template-page-contact .hollow-contact-02 {
    padding: 4rem 0 5rem;
  }
}
@media only screen and (max-width:767px) {
  .hollow-contact-02 {
    padding: 2rem 0;
  }
  .page-template-page-contact .hollow-contact-02 {
    padding: 2rem 0 2rem;
  }
  .hollow-contact-02 .map-wrap iframe {
    height: 350px;
    padding-bottom: 0;
  }
  .hollow-contact-02 input:not([type="submit"]),
  .hollow-contact-02 textarea {
    font-size: 1.3rem;
    font-weight: 400;
  }
  .hollow-contact-02 ul li {
    font-size: 1.3rem;
  }
}

/*============================ */
/* Footer 04
============================== */
.hollow-footer-04 {
  position: relative;
  overflow: hidden;
  background: var(--greyDark);
}
.hollow-footer-04 .main .flex-container {
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
}
.hollow-footer-04 img {
  margin-bottom: .5rem;
  max-width: 90%;
}
.hollow-footer-04 h3 {
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}
.hollow-footer-04 .social {
  display: flex;
  border-top: 2px dotted #FFF;
  padding-top: .5rem;
  justify-content: center;
}
.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(--blue);
}

/* Meta */
.hollow-footer-04 .meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  padding: 1rem 0;
}
.hollow-footer-04 .meta .flex-container {
  justify-content: space-between;
  align-items: center;
}
.hollow-footer-04 .meta span {
  color: #FFF;
  font-weight: 300;
  padding: 0 2rem;
}
.hollow-footer-04 .meta span a {
  color: #FFF;
  transition: all .3s ease;
}
.hollow-footer-04 .meta span a:hover {
  color: var(--blue);
}
.hollow-footer-04 .meta i.top {
  position: absolute;
  margin-right: 1rem;
  right: 0;
  top: 0;
  color: #FFF;
  padding: .5rem;
  opacity: 0.5;
  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) {
  .hollow-footer-04 {
    background-attachment: unset;
  }
}
@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.1rem;
  }
}

/*DEFAULT STYLE OVERWRITES*/

/*============================ */
/* DEFAULT BLOG STYLES:
============================== */
/*Search Form*/
.search-form-wrap button {
  background: var(--grey);
}
.search-form-wrap button:hover {
  background: var(--greyDark);
}
/*Blog Page*/
.blog-wrap .post-item-header h1 {
  background: var(--grey);
}
.blog-wrap .post-item .post-item-header h1:hover {
  background: var(--greyDark);
}
.blog-wrap .post-item .post-content a {
  background: var(--grey);
}
.blog-wrap .post-item .post-content a:hover {
  background: var(--greyDark);
}
.blog-wrap .post-item p {
  border-color: var(--grey);
}
.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);
}
.blog-post-content h2 {
  color: var(--greyDark);
}
.blog-post-content h3 {
  color: var(--grey);
}
.blog-post-content p a {
  color: var(--grey);
}
.blog-post-content p a:hover {
  color: var(--greyDark);
}
/*Post Return Button*/
.blog-return a.blog-return-btn {
  background: var(--grey);
}
.blog-return a.blog-return-btn:hover {
  background: var(--greyDark);
}
/*Pagination*/
.pagination .page-numbers {
  background: var(--greyDark);
}
.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: whitesmoke;
}
.default-popup .form-wrap h3, .default-popup .form-wrap .h3 {
  color: var(--grey);
  font-weight: 600;
}
.default-popup .wpcf7-form-control-wrap input,
.default-popup .wpcf7-form-control-wrap select,
.default-popup .wpcf7-form-control-wrap textarea {
  font-family: var(--rale);
}
.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(--blue);
}
.default-popup .wpcf7-form input[type="submit"] {
  background: var(--blue);
  font-family: var(--rale);
  text-transform: uppercase;
  font-weight: 600;
}
.default-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--blueDark);
}
.default-popup .loader-wrap {
  background: var(--grey);
}
.default-popup .button-wrap i {
  background: var(--grey);
}
/*============================ */
/* DEFAULT POPUP V2:
============================== */
.default-popup .form-wrap {
  width: 70%;
  padding: 1.5rem;
}
.default-popup .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.default-popup .content-wrap h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
}
.default-popup .content-wrap h3, .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;
  color: var(--grey);
  font-weight: 400;
}
.default-popup .location {
  margin-bottom: 1.5rem;
}
.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: 400;
  color: var(--grey);
  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;
  background: transparent;
  color: var(--blue);
}
.default-popup .form-wrap .close:hover {
  background: var(--blue);
  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, .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);
}
.content.seo i {
  color: #fff;
}
.content.seo p a:hover {
  color: var(--greyDark);
}
/*============================ */
/* DEFAULT INTERIOR PLACEHOLDERS
============================== */
.interior-placeholder-header {
  border-color: var(--greyDark);
  background: var(--grey);
}
.interior-placeholder-header h1 {
  color: #FFF;
}
/*============================ */
/* 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(--greyDark);
}
/*============================ */



/*INTERIOR PAGES*/

/*============================ */
/* Interior Header 05
============================== */
.interior-header-05 {
  position: relative;
  display: flex;
  flex-flow: column;
  padding: 11rem 0;
  background: url(img/h1.jpg) center center no-repeat;
  background-size: cover;
  box-shadow: 0 2px 5px -2px #000;
  z-index: 11;
}
.page-id-275 .interior-header-05 {
  background: url(img/h2.jpg) center center no-repeat;
  background-size: cover;
  box-shadow: 0 2px 5px -2px #000;
  z-index: 11;
}
.page-id-276 .interior-header-05 {
  background: url(img/h3.jpg) center center no-repeat;
  background-size: cover;
  box-shadow: 0 2px 5px -2px #000;
  z-index: 11;
}
.interior-header-05::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(58, 58, 58, 0.7);
}
.interior-header-05 h1 {
  position: relative;
  color: #fff;
  text-transform: uppercase;
}
.interior-header-05 h2 {
  position: relative;
  color: #fff;
  font-size: 1.2rem;
}
@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%;
  }
}


/*============================ */
/* Split Boxes 01
============================== */
.split-boxes-01 .flex-container {
  position: relative;
  width: 100%;
}
.split-boxes-01 .left-box {
  width: 50%;
  background: whitesmoke;
  padding: 4rem;
}
.split-boxes-01 .left-box h3 {
  color: var(--blue);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
}
.split-boxes-01 .left-box h4 {
  color: var(--grey);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-size: 1.2rem;
}
.split-boxes-01 .left-box p {
  color: var(--grey);
  font-size: 1.1rem;
  font-weight: 400;
}
.split-boxes-01 .left-box p:last-of-type {
  margin-bottom: 0;
}
.split-boxes-01 .left-box .link-1 {
  color: #fff;
  font-weight: 400;
}
.split-boxes-01 .left-box .link-1:hover {
  color: darkgrey;
}
.split-boxes-01 .left-box  ul {
  display: block;
}
.split-boxes-01 .left-box  ul li i {
  color: darkgrey;
  vertical-align: top;
  margin-top: .3rem;
  padding-right: .75rem;
}
.split-boxes-01 .left-box  ul li p {
  display: inline-block;
  max-width: 90%;
  vertical-align: top;
  font-weight: 400;
}
.split-boxes-01 .left-box .btn-wrap {
  margin-top: 2rem;
}
.split-boxes-01 .left-box .btn-wrap a {
  background: lightgrey;
  padding: .5rem 1rem;
  color: #fff;
  font-weight: 400;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.split-boxes-01 .left-box .btn-wrap a:hover {
  background: #fff;
  color: lightgrey;
}
.split-boxes-01 .right-box {
  width: 50%;
  background: #fff;
  padding: 4rem;
}
.split-boxes-01 .right-box h3 {
  color: var(--grey);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.split-boxes-01 .right-box h4 {
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-size: 1.2rem;
}
.split-boxes-01 .right-box p {
  color: var(--grey);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.split-boxes-01 .right-box p:last-of-type {
  margin-bottom: 0;
}
.split-boxes-01 .right-box  ul {
  display: block;
}
.split-boxes-01 .right-box  ul li i {
  color: lightgrey;
}
@media only screen and (max-width: 991px) {
  .split-boxes-01 .left-box {
    padding: 4rem 3rem;
  }
  .split-boxes-01 .right-box {
    padding: 4rem 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .split-boxes-01 .flex-container {
    flex-direction: column;
    padding: 0;
  }
  .split-boxes-01 .left-box {
    width: 100%;
    padding: 2rem 2rem 1rem;
  }
  .split-boxes-01 .right-box {
    width: 100%;
    padding: 2rem 2rem 1rem;
  }
  .split-boxes-01 .left-box .btn-wrap {
    margin: 2rem 0;
  }
}


/*============================ */
/* Tabs 01
============================== */
.hollow-tabs-01 {
  padding: 4rem 0;
  background: whitesmoke;
}
.hollow-tabs-01 .flex-container {
  flex-direction: column;
}
.hollow-tabs-01 .tabs {
  align-items: flex-start;
  background: #e0e0e0;
}
.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(--greyDark);
  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: var(--blue);
  color: #fff;
}
.hollow-tabs-01 .tabs-content {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
  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 .ngg-pro-mosaic-item a {
  transition: all .3s ease;
}
.hollow-tabs-01 .tabs-content .ngg-pro-mosaic-item a:hover {
  opacity: .85;
}
.hollow-tabs-01 .tabs-content .icon {
  margin: 0;
 }
.hollow-tabs-01 .tabs-content .link-1 {
  color: #007FFF;
  font-weight: 400;
}
.hollow-tabs-01 .tabs-content .link-1:hover {
  color: #0e57a0;
}
.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(--grey);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 400;
}
.hollow-tabs-01 .tabs-panel h3:not(:first-of-type) {
  font-weight: 300;
  font-size: 2rem;
  color: #838288;
}
.hollow-tabs-01 .tabs-panel h4 {
  font-weight: 700;
  color: #f67a32;
  margin-bottom: 1rem;
}
.hollow-tabs-01 .tabs-panel p {
  color: #838288;
  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;
  color: #838288;
}
.hollow-tabs-01 .tabs-panel ul li i {
  color: #f67a32;
}
.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: 991px) {
  .hollow-tabs-01 .tabs-content .ngg-pro-mosaic-item:last-of-type {
    display: none;
    overflow: hidden;
    height: 0!important;
    width: 0!important;
  }
} */
@media only screen and (max-width: 767px) {
  .hollow-tabs-01 {
    padding: 2rem 0 0;
  }
  .hollow-tabs-01 .tabs-content {
    padding: 1rem;
  }
  .hollow-tabs-01 .tabs-content img {
    max-width: 100%;
  }
  .hollow-tabs-01 .tabs li a {
    padding: 0.75rem 1rem;
  }
}




/*============================ */
/* 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;}
/* PART 1 - Before Lazy Load */
img[data-lazyloaded]{
    opacity: 0;
}
/* PART 2 - Upon Lazy Load */
img.litespeed-loaded{
    -webkit-transition: opacity .5s linear 0.2s;
    -moz-transition: opacity .5s linear 0.2s;
    transition: opacity .5s linear 0.2s;
    opacity: 1;
}
