/*
  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 {

  --blue: #072D64;
  --blueDark: #041732;
  --blueLight: #1E5AB1;
  --yellow: #ffc800;

}

/*============================ */
/* HEADER 08
============================== */
.hollow-header-08 {
  position: relative;
  background: var(--blue);
  z-index: 9999;
  box-shadow: 0 2px 5px -2px #000;
}
.hollow-header-08.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  visibility: visible!important;
}
.hollow-header-08 .flex-container {
  justify-content: space-between;
}
.hollow-header-08.sticky .flex-container {
  justify-content: flex-end;
}

/*LOGO*/
.hollow-header-08 .logo {
  display: flex;
  align-items: center;
  padding: 1rem 0 .5rem;
}
.hollow-header-08.sticky .logo {
  display: none;
}
.hollow-header-08 .logo img {
  display: flex;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

/*CONTENT*/
.hollow-header-08 .content-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
/*Meta*/
.hollow-header-08 .meta-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(98%);
}
/*.hollow-header-08 .meta-wrap a {*/
.hollow-header-08 .meta-wrap .meta-link {
  display: inline-block;
  background: #fff;
  white-space: nowrap;
  padding: .5rem 1rem;
  margin-right: .25rem;
  box-shadow: 0 3px 3px -2px #2f2f2f;
  color: var(--blue);
  font-weight: 400;
  font-size: 1.1rem;
  border-radius: 0 0 3px 3px;
  transition: all 0.4s ease;
}
.hollow-header-08.sticky .meta-wrap .social {
  padding: .5rem .6rem;
}
.hollow-header-08 .meta-wrap .social a {
  padding: 0 0.3rem;
}
.hollow-header-08 .meta-wrap a:last-of-type {
  margin-right: 0;
}
.hollow-header-08 .meta-wrap a:hover {
  color: var(--blueDark);
}
.hollow-header-08 .meta-wrap a i {
  color: var(--blue);
}
.hollow-header-08 .meta-wrap a span {
  display: inline;
  width: unset;
  overflow: hidden;
  padding-left: 0.75rem;
  transition: all 0.4s ease;
}
.hollow-header-08.sticky .meta-wrap a span {
  display: inline-block;
  max-width: 0;
  max-height: 0;
  padding-left: 0;
}
/*Nav Level One*/
.hollow-header-08 nav {
  display: flex;
  width: 100%;
}
.hollow-header-08.sticky nav {
  visibility: visible!important;
}
.hollow-header-08 nav .menu {
  align-self: flex-end;
  display: inline-flex;
  justify-content: flex-end;
  width: 100%;
}
.hollow-header-08 ul li {
  position: relative;
  margin-bottom: 0;
}
.hollow-header-08 nav li a {
  display: flex;
  align-items: center;
  color: white;
  padding: .4rem .6rem;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}
.hollow-header-08 nav .menu-item-has-children:last-of-type > ul {
  right: 0;
  left: auto;
}
.hollow-header-08 nav .dropdown .caret {
  margin-left: .5rem;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
/*Nav Level Two*/
.hollow-header-08 nav .menu-item-has-children ul li a {
  background: var(--blue);
  color: #fff;
}
.hollow-header-08 .menu-item-has-children .dropdown-menu {
  display: none;
  overflow: hidden;
  top: 100%;
  left: 0;
  min-width: 100%;
  z-index: 9999;
}
.hollow-header-08 .menu-item-has-children.open .dropdown-menu {
  display: flex;
  flex-direction: column;
}
/*Nav Mobile*/
.hollow-header-08 button#mobile {
  position: relative;
  width: 30px;
  background: none;
  outline: none;
  border: none;
  float: right;
}
.hollow-header-08 .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-08 .hamburger:hover {
  cursor: pointer;
}
.hollow-header-08 .hamburger:before,
.hollow-header-08 .hamburger:after {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 20%;
  background: var(--blue);
  transition: transform .2s ease;
}
.hollow-header-08 .hamburger:after {
  top: 60%
}
header.header-menu-open.hollow-header-08 #mobile,
header.header-menu-open.hollow-header-08 #mobile .hamburger {
  background: transparent;
}
header.header-menu-open.hollow-header-08 #mobile>.hamburger:before,
header.header-menu-open.hollow-header-08 #mobile>.hamburger:after {
  top: 40%;
  background: #FFF;
}
header.header-menu-open.hollow-header-08 #mobile>.hamburger:before {
  transform: rotate(45deg)
}
header.header-menu-open.hollow-header-08 #mobile>.hamburger:after {
  transform: rotate(-45deg)
}

/*MOBILE TOOLBAR*/
.hollow-header-08 .mobile-toolbar {
  width: 100%;
  display: flex;
  padding: .4rem 1rem;
  background: var(--blue);
  justify-content: space-between;
  position: relative;
  top: 0;
  left: 0;
  z-index: 9999;
}
.hollow-header-08 .mobile-toolbar .icon-wrap * {
  font-size: 26px;
  color: #FFF;
  padding: 0.5rem 0.75rem .5rem 0;
}

@media screen and (min-width:992px) {
  .hollow-header-08 .logo {
    width: 25%;
    margin-right: 1rem;
  }
  .hollow-header-08 .menu-item-has-children .dropdown-menu {
    position: absolute;
    flex-direction: column;
  }
  .hollow-header-08 .menu-item-has-children:hover > .dropdown-menu {
    display: inline-flex;
  }
  .hollow-header-08 .menu-item.open>a,
  .hollow-header-08 .menu-item:hover>a,
  .hollow-header-08 .menu-item.active a,
  .hollow-header-08 .menu-item.active:hover>a {
    background: var(--yellow);
    color: var(--blue);
  }
  .hollow-header-08 nav .menu-item-has-children ul li.active a,
  .hollow-header-08 nav .menu-item-has-children ul li.active:hover a,
  .hollow-header-08 nav .menu-item-has-children ul li:hover a {
    background: var(--yellow);
    color: var(--blue);
  }
  .hollow-header-08 .mobile-logo,
  .hollow-header-08 .mobile-toolbar {
    display: none;
  }
  .hollow-header-08 #mobile {
    display: none;
  }
}
@media only screen and (max-width:1199px) and (min-width:992px) {
  .hollow-header-08 nav li a {
    text-transform: capitalize;
  }
}
@media only screen and (max-width:991px) {
  .hollow-header-08 .flex-container {
    flex-direction: column-reverse;
  }
  .hollow-header-08 .logo {
    justify-content: center;
    padding: calc(2rem + 46px) 0 2rem;
    margin: 0 auto;
  }
  .hollow-header-08 .desktop-logo {
    display: none;
  }
  body:not(.home) .hollow-header-08 .logo {
    display: none;
  }
  .hollow-header-08 .content-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: block;
  }
  .hollow-header-08 .meta-wrap {
    display: none;
  }
  .hollow-header-08 .menu {
    background: var(--blue);
    flex-direction: column;
    max-height: 0;
    transition: all .2s ease;
  }
  .hollow-header-08 nav {
    overflow: hidden;
  }
  .hollow-header-08 nav .menu {
    justify-content: flex-start;
  }
  .hollow-header-08 .menu a {
    color: #fff;
  }
  .hollow-header-08 nav li a:hover,
  .hollow-header-08 nav li.active a:hover,
  .hollow-header-08 nav li.active a {
    background: var(--blueDark);
  }
  .hollow-header-08 nav .menu-item-has-children ul li.active a,
  .hollow-header-08 nav .menu-item-has-children ul li.active:hover a,
  .hollow-header-08 nav .menu-item-has-children ul li:hover a {
    background: var(--blueDark);
  }
  header.header-menu-open.hollow-header-08 .menu {
    opacity: 1;
    max-height: 85vh;
    overflow-y: auto;
  }
  .hollow-header-08 .menu-item-has-children .dropdown-menu li a {
    padding: 0 1.5rem;
  }
}
@media screen and (orientation: portrait) and (max-width:991px) {
  .hollow-header-08 .menu a {
    font-size: 1.5rem;
    padding: 1rem;
  }
  .hollow-header-08 .menu-item-has-children .dropdown-menu li a {
    padding: 1rem 2.5rem;
  }
}
@media screen and (orientation: portrait) and (max-width:767px) {
  .hollow-header-08 .menu a {
    font-size: 1.4rem;
    padding: 1rem;
  }
  .hollow-header-08 .menu-item-has-children .dropdown-menu li a {
    padding: 1rem 2.5rem;
  }
}

/*============================ */
/* Hero 02
============================== */
.hollow-hero-02 {
  position: relative;
  overflow: hidden;
  padding: 12rem 0;
  background: #6f6f6f;
}

/*Cap Slider*/
.hollow-hero-02 .cap-slider {
  width: 50%;
  visibility: hidden;
}
.hollow-hero-02 .cap-slider.slick-initialized {
  visibility: visible;
}
.hollow-hero-02 .cap-slider .slick-track {
  display: flex;
  align-items: center;
}
.hollow-hero-02 .caption {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(7, 45, 100, 0.9);
  border-left: 4px solid var(--yellow)
}
.hollow-hero-02 h1 {
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
  opacity: 0;
}
.hollow-hero-02 .caption.animating h1 {
  animation: textIn .5s linear forwards;
}
.hollow-hero-02 h3 {
  color: #fff;
  margin-bottom: 1rem;
  opacity: 0;
}
.hollow-hero-02 .caption.animating h3 {
  animation: textIn .5s .1s linear forwards;
  
}
.hollow-hero-02 p {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #fff;
  opacity: 0;
}
.hollow-hero-02 .caption.animating p {
  animation: textIn .5s .2s linear forwards;
  }
.hollow-hero-02 a {
  opacity: 0;
  color: white;
  border-color: white;
}
.hollow-hero-02 .caption.animating a {
  animation: textIn .5s .3s linear forwards;
}
.hollow-hero-02 a:hover {
  color: var(--yellow);
}
.hollow-hero-02 a:before {
  background: var(--blue);
}

/*Img Slider*/
.hollow-hero-02 .img-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
}
.hollow-hero-02 .img-slider.slick-initialized {
  visibility: visible;
}
/*.hollow-hero-02 .img-slider:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 45, 100, 0.6);
}*/
.hollow-hero-02 .img-slider .slick-list,
.hollow-hero-02 .img-slider .slick-track {
  height: 100%;
}
.hollow-hero-02 .img-slider img {
  width: 100%;
  display: flex;
  min-height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hollow-hero-02 .img-slider img.animating {
  animation: pan 10s linear forwards;
}
.hollow-hero-02 .img-slider .slick-dots {
  bottom: 1.5rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hollow-hero-02 .img-slider .slick-dots li button:before {
  color: #fff;
  width: 25px;
  height: 25px;
}
.hollow-hero-02 .img-slider .slick-dots li.slick-active button:before {
  border-top: 2px solid #fff;
  opacity: 1;
}

@media only screen and (max-width: 1199px) {
  .hollow-hero-02 {
    padding: 6rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-hero-02 {
    padding: 4rem 0 6rem;
  }
  .hollow-hero-02 .cap-slider {
    width: 100%;
  }
}

@keyframes pan {
  0% {
    transform: scale(1);
  }
  99% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes textIn {
  from {
    transform: translateY(100%);
    opacity: 0
  }
  to {
    transform: translateY(0);
    opacity: 1
  }
}

/*============================ */
/* Action 11
============================== */
.hollow-action-11 {
  padding: 1rem 0;
  background: var(--blue);
}
.hollow-action-11 .flex-container {
  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 {
  font-weight: 400;
  margin-right: .25rem;
  padding-bottom: .25rem;
}
.hollow-action-11 h3#phone a {
  font-weight: 400;
  color: #FFB600;
  padding: 0 1.5rem;
  transition: all .3s ease;
}
.hollow-action-11 h3#phone a:hover {
  color: #fff;
  border: none;
}
.hollow-action-11 a {
  color: #fff;
  border-color: #fff;
  background: transparent;
}
.hollow-action-11 a::before {
  background: #9209B2;
}
@media only screen and (max-width: 991px) {
  .hollow-action-11 {
    padding: 2rem 0 1rem;
  }
  .hollow-action-11 .flex-container {
    flex-flow: column;
  }
  .hollow-action-11 h3 {
    margin-bottom: 1rem;
  }
  .hollow-action-11 h3 span {
    border: none;
    padding: none;
    font-weight: 300;
  }
}

/*============================ */
/* Services
============================== */
.services {
  padding: 4rem 0 2rem;
  background: whitesmoke;
  background: url(img/service-bg.jpg) no-repeat center/cover fixed;
}
.services-container {
  justify-content: space-between;
}
.service {
  width: 48%;
  display: flex;
  flex-flow: column;
  position: relative;
  overflow: hidden;
  background: white;
  border-radius: 3px;
  box-shadow: 0 2px 4px 0px rgba(0,0,0,0.15);
  margin-bottom: 2rem;
}
.service img {
  display: flex;
  flex-flow: column;
  width: 100%;
}
.service h3 {
  padding: 1rem;
  color: var(--blue);
  background: var(--yellow);
  transition: all .3s ease;
}
.service:hover h3 {
  background: var(--blue);
  color: var(--yellow);
}
@media (max-width: 991px) {
  .services {
    background-attachment: unset;
  }
}
@media (max-width: 767px) {
  .services {
    padding: 2rem 0 0;
  }
  .services-container {
    flex-flow: column;
  }
  .service {
    width: 100%;
  }
}

/*============================ */
/* Home Content
============================== */
.home-content {
  padding-top: 4rem;
}
.home-content_container {
  flex-flow: column;
}
.home-content_block {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.home-content_block:first-of-type {
  flex-flow: column;
}
.home-content_block h2 {
  color: var(--blue);
  margin-bottom: 1rem;
}
.home-content_block h3 {
  margin-bottom: 2rem;
  font-weight: 500;
  background: var(--blue);
  border-left: 4px solid var(--yellow);
  color: var(--yellow);
  padding: .5rem 1rem;
}
.home-content_block p {
  color: grey;
  padding-left: 1rem;
  border-left: 4px solid var(--blue);
}
.home-content_block img {
  display: flex;
  object-fit: cover;
  width: 48%;
  margin-bottom: 2rem;
  border-top: 4px solid var(--yellow);
}
@media (max-width: 767px) {
  .home-content {
    padding-top: 2rem;
  }
  .home-content_block {
    margin-bottom: 1rem;
  }
  .home-content_block:last-of-type {
    flex-flow: column;
  }
  .home-content_block img {
    width: 100%;
    margin-bottom: 1rem;
  }
}

/*============================ */
/* Testimonial 06
============================== */
.hollow-testimonial-06 {
  padding: 4rem 0;
  background: #F9F9F9;
}
.hollow-testimonial-06 h1 {
  color: var(--blue);
  text-align: center;
  margin-bottom: 2rem;
}
.hollow-testimonial-06 hr {
  border: none;
  height: 2px;
  background: #e2e2e2;
  width: 0;
  margin: 0;
}
.hollow-testimonial-06 .flex-container {
  flex-direction: column;
}
.hollow-testimonial-06 .testimonial-slider-wrap {
  padding: 1rem;
  box-shadow: 0 3px 32px rgba(0,0,0,0.1);
  background: #FFF;
  border-radius: 5px;
}
.hollow-testimonial-06 .text p {
  font-size: 1rem;
  font-weight: 400;
  color: grey;
  font-style: italic;
}
.hollow-testimonial-06 .creds {
  padding: 0 1rem;
}
.hollow-testimonial-06 .creds .arrow {
  display: block;
  width: 0px;
  height: 0px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #FFF;
  margin: 0 2rem 1rem;
}
.hollow-testimonial-06 .creds h3 {
  font-size: 1.3rem;
  margin-bottom: .25rem;
}
.hollow-testimonial-06 .creds p {
  font-size: 1rem;
}
@media only screen and (max-width: 767px) {
  .hollow-testimonial-06 {
    padding: 2rem 0;
  }
}

/*============================ */
/* Action 01
============================== */
.hollow-action-01 {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  text-align: center;
  /*background: url(img/action-bg.jpg) no-repeat center/cover fixed;*/
  background: url(img/service-bg.jpg) no-repeat center/cover fixed;
}
.hollow-action-01 .flex-container {
  align-items: center;
}
.hollow-action-01 h1 {
  color: #FFF;
  margin-bottom: 1.5rem;
}
.hollow-action-01 p {
  color: #FFF;
  margin-bottom: 2rem;
  max-width: 50vw;
}
.hollow-action-01 a {
  color: #fff;
  border-color: #fff;
  background: transparent;
}
.hollow-action-01 a::before {
  background: #ffb600;
}
@media (max-width: 991px) {
  .hollow-action-01 {
    background-attachment: unset;
  }
}
@media screen and (max-width:767px) {
  .hollow-action-01 {
    padding: 3rem 0;
  }
  .hollow-action-01 p {
    max-width: 90vw;
  }
}

/*============================ */
/* Contact 02
============================== */
.hollow-contact-02 {
  padding: 3rem 0 6rem;
}
.hollow-contact-02 h2 {
  color: var(--blue);
}
.hollow-contact-02 p {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}
.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;
}
.hollow-contact-02 .map-wrap iframe.clicked {
  pointer-events: auto;
}
.hollow-contact-02 ul li {
  color: #333;
  line-height: 1.4;
  font-size: 1.1rem;
  font-weight: 300;
  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: #EFEFEF;
  border: 1px solid rgba(72,81,103,0.5);
  color: var(--blue);
  padding: .4rem .7rem;
  margin-bottom: 1rem;
  font-weight: 300;
  font-family: 'Lato';
}
.hollow-contact-02 textarea {
  font-family: 'Lato';
  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: 'Lato';
  font-size: 1rem;
  font-weight: 300;
  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(4, 1fr);*/
    grid-template-columns: repeat(2, 1fr);
  }
  .hollow-contact-02 .wpcf7-form-control.wpcf7-submit {
    position: absolute;
    left: 0;
  }
  /*MS EDGE BUTTON LOCATION*/
  @supports (-ms-ime-align: auto) {
    .hollow-contact-02 .wpcf7-form-control.wpcf7-submit {
      bottom: -50px;
    } 
  }
}
@media only screen and (max-width:991px) {
  .page-template-page-contact .hollow-contact-02 {
    padding-top: 5rem;
  }
}
@media only screen and (max-width:767px) {
  .hollow-contact-02 {
    padding: 2rem 0;
  }
  .page-template-page-contact .hollow-contact-02 {
    padding: 3rem 0 2rem;
  }
  .hollow-contact-02 .map-wrap iframe {
    height: 350px;
  }
  .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(--blue);
  background: url(img/service-bg.jpg) no-repeat center/cover fixed;
}
.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: #FFF;
  font-weight: 300;
  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(68, 142, 249, 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(--yellow);
}
.hollow-footer-04 .meta i.top {
  position: absolute;
  margin-right: 1rem;
  right: 0;
  top: 0;
  color: #FFF;
  padding: .5rem;
  opacity: 0.5;
  background: var(--yellow);
  cursor: pointer;
  transition: all .3s ease;
}
.hollow-footer-04 .meta i.top:hover {
  opacity: 1;
}
@media (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;
  }
}

/*DEFAULT STYLE OVERWRITES*/

/*============================ */
/* DEFAULT BLOG STYLES: 
============================== */
/*Search Form*/
.search-form-wrap button {
  background: var(--blue);
}
.search-form-wrap button:hover {
  background: var(--blueDark);
}
/*Blog Page*/
.blog-wrap .post-item-header h1 {
  background: var(--blue);
}
.blog-wrap .post-item .post-item-header h1:hover {
  background: var(--blueDark);
}
.blog-wrap .post-item .post-content a {
  background: var(--blue);
}
.blog-wrap .post-item .post-content a:hover {
  background: var(--blueDark);
}
.blog-wrap .post-item p {
  border-color: var(--blue);
}
.blog-wrap .post-item .date-wrap i {
  color: var(--blue);
}
/*Sidebars*/
.blog-sidebar {
  border-color: var(--blue);
}
.blog-sidebar .post-item-header h2 {
  background: var(--blue);
}
/*Post Content*/
.blog-post-content h1 {
  color: var(--blue);
}
.blog-post-content h2 {
  color: var(--blueDark);
}
.blog-post-content h3 {
  color: var(--blue);
}
.blog-post-content p a {
  color: var(--blue);
}
.blog-post-content p a:hover {
  color: var(--blueDark);
}
/*Post Return Button*/
.blog-return a.blog-return-btn {
  background: var(--blue);
}
.blog-return a.blog-return-btn:hover {
  background: var(--blueDark);
}
/*============================ */
/* DEFAULT POPUP STYLES:
============================== */
.default-popup .form-wrap {
  background: #fff;
}
.default-popup .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.default-popup .content h2 {
  color: var(--blue);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.default-popup .content h3 {
  color: var(--blue);
  font-size: 2.25rem;
  margin-bottom: 1rem;
  line-height: .5;
  text-transform: uppercase;
}
.default-popup .content p {
  color: var(--blue);
  line-height: 1.4;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 400;
}
.default-popup .content .location {
  margin-bottom: 2rem;
}
.default-popup .content ul {
  display: flex;
  justify-content: space-between;
}
.default-popup .content ul li {
  color: var(--blue);
  line-height: 1.4;
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0;
  margin-right: 1.5rem;
}
.default-popup .content ul li i {
  padding-right: .25rem;
}
.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: grey;
}
.default-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--blueDark);
}
.default-popup .loader-wrap {
  background: grey;
}
.default-popup .button-wrap i {
  background: grey;
}
.default-popup .form-wrap .close {
  background: var(--blue);
}
.default-popup .form-wrap .close:hover {
  background: #5a0c0f;
}
/*============================ */
/* DEFAULT SEO STYLES:
============================== */
.content.seo {
  background: var(--blue);
}
.content.seo i {
  color: var(--yellow);
}
.content.seo p a:hover {
  color: var(--yellow);
}
/*============================ */
/* DEFAULT INTERIOR PLACEHOLDERS
============================== */
.interior-placeholder-header {
  border-color: var(--blueDark);
  background: var(--blue);
}
.interior-placeholder-header h1 {
  color: #FFF;
}
/*============================ */
/* MISC:
============================== */
@media only screen and (max-width: 991px) and (min-width: 767px) and (orientation: portrait) {
  .page-template-page-contact .hollow-footer-04 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}

/*============================ */
/* Interior Page Settings
============================== */
/*Interior Header*/
.interior-header {
  padding: 6rem 0;
  background: url(img/service-bg.jpg) no-repeat center/cover fixed;
}
.interior-header_container {
  flex-flow: column;
  align-items: center;
  text-align: center;
}
.interior-header h1 {
  color: white;
  margin-bottom: 1rem;
}
.interior-header h2 {
  font-size: 1.5rem;
  max-width: 650px;
  color: white;
}
@media (max-width: 991px) {
  .interior-header {
    background-attachment: unset;
  }
}

/*Interior Content*/
.interior-content {
  padding: 2rem 0;
}
.interior-content_container {
  flex-flow: column;
}
.interior-content_images {
  display: grid;
  /*grid-template-columns: repeat(auto-fill,minmax(350px, 1fr));*/
  grid-template-columns: repeat(auto-fill,minmax(16rem, 1fr));
  grid-gap: 2rem;
  margin-bottom: 2rem;
}
.interior-content_images img {
  display: flex;
  width: 100%;
  object-fit: cover;
}
.interior-content_text {
  display: flex;
  flex-flow: column;
}
.interior-content_text h3 {
  color: var(--blue);
  margin-bottom: 1rem;
  font-size: 1.75rem;
}
.interior-content_text p {
  font-size: 1.1rem;
  font-weight: 400;
  color: grey;
}
.interior-content_text-img {
  position: relative;
  width: 100%;
  background: var(--blueDark);
  border-top: 4px solid var(--yellow);
  margin: 1rem 0 2rem;
}
.interior-content_text-img img {
  width: 100%;
  display: flex;
  object-fit: cover;
  opacity: 0.5;
}
.interior-content_text-img figcaption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}
.interior-content_text-img figcaption h3 {
  color: white;
  font-weight: 400;
  max-width: 400px;
  font-size: 1.75rem;
  margin: 0;
}
.interior-content_text-list {
  padding: 2rem 3rem;
  background: whitesmoke;
}
.interior-content_text-list ul {
  list-style-type: disc;
}
.interior-content_text-list ul li {
  font-weight: 400;
  color: var(--blue);
  display: list-item;
}
/* Interior Testimonials */
.interior-content_text-testimonial {
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  max-width: 80%;
}
.interior-content_text-testimonial:nth-of-type(even) {
  background: whitesmoke;
}
.interior-content_text-testimonial h4 {
  color: var(--blue);
}
.interior-content_text-testimonial i {
  position: absolute;
  top: 50%;
  left: 0;
  color: var(--blue);
  font-size: 5rem;
  opacity: 0.2;
  transform: translate(-120%, -50%);
}

/*Interior Action*/
.interior-action .flex-container {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}
.interior-action .flex-container > * {
  width: 48%;
}
.interior-action_text {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  text-align: left;
}
.interior-action img {
  display: flex;
  object-fit: cover;
}
@media (max-width: 767px) {
  .page-id-275 .interior-content {
    padding: 2rem 0 0;
  }
  .interior-action .flex-container {
     flex-flow: column;
  }
  .interior-action .flex-container > * {
    width: 100%;
  }
  .interior-action img {
    display: none;
  }
  .interior-content_text-testimonial {
    max-width: 100%;
  }
  .interior-content_text-testimonial i {
    display: none;
  }
  .interior-content_text-testimonial:nth-of-type(odd) {
    padding: 1rem;
  }
}

/*============================ */
/* Interior Pages
============================== */
/*Testimonials*/
.page-id-275 .interior-content_text {
  align-items: center;
}

/*============================ */
/* Interior Maps 03
============================== */
.interior-maps-03 {
  margin-bottom: 3rem;
}
.interior-maps-03 .flex-container {
  flex-flow: column;
}
.interior-maps-03 .text-wrap {
  margin-bottom: 1rem;
}
.interior-maps-03 .text-wrap h3 {
  margin-bottom: .5rem;
  color: grey;
}
.interior-maps-03 .text-wrap p {
  margin-bottom: 1rem;
}
.interior-maps-03 .grid-container {
  grid-template-columns: 1fr 1fr;
}
.interior-maps-03 .locations {
  margin-bottom: 2rem;
}
.interior-maps-03 .locations ul li {
  display: flex;
  color: #000;
}
.interior-maps-03 .locations ul li i {
  font-size: 1.5rem;
  color: grey;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
}
.interior-maps-03 .map .map-link {
  position: relative;
  width: 100%;
}
.interior-maps-03 .map iframe {
  width: 100%;
  height: 400px;
  pointer-events: none;
}
.interior-maps-03 .map-link .map-overlay {
  background: rgba(75, 75, 75, 0.5);
  border-radius: 50%;
  border: 2px solid grey;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 18rem;
  height: 18rem;
} 
@media (min-width: 768px) {
  .interior-maps-03 .grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .interior-maps-03 {
    padding: 2rem 0;
  }
  /* Reordering to maintain alphetical lists: */
  .interior-maps-03 .locations ul:nth-of-type(1) {
    order: 1;
  }
  .interior-maps-03 .locations ul:nth-of-type(2) {
    order: 3;
  }
  .interior-maps-03 .locations ul:nth-of-type(3) {
    order: 2;
  }
  .interior-maps-03 .locations ul:nth-of-type(4) {
    order: 4;
  }
}

/*============================ */
/* Tabs 01
============================== */
.hollow-tabs-01 {
  margin-bottom: 4rem;
}
.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(--blue);
  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(--blueDark);
  color: var(--yellow);
}
.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 .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 {
  /*display: none;*/
  opacity: 0;
  overflow: hidden;
  max-height: 0;
  transition: all .8s ease;
}
.hollow-tabs-01 .tabs-panel.active {
  /*display: block;*/
  opacity: 1;
  max-height: unset;
}
.hollow-tabs-01 .tabs-panel h3 {
  color: var(--blueDark);
  margin-bottom: 1rem;
  font-size: 2.25rem;
  font-weight: 700;
}
.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 a.topBtn {
  font-size: 1.1rem;
  color: #fff;
  background: #032b49;
  padding: 0.5rem 0.8rem;
  /*border-radius: 5px;*/
  float: right;
}
.hollow-tabs-01 a.topBtn i {
  margin-right: .5rem;
}
.hollow-tabs-01 p a {
  color: #007fff;
  text-decoration: underline;
}
.hollow-tabs-01 p a.dl-link {
  font-weight: 400;
  font-size: 1.3rem;
}
.hollow-tabs-01 p a:hover {
  color: #003960;
}
.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 {
    margin-bottom: 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.6rem;
  }
}
/*============================ */
/* recaptcha css
============================== */
.grecaptcha-badge{
  visibility: collapse !important;  
}
.hollow-web-design-01 {
  display:block;
}
.hollow-web-design-01 .top-half {
  background:#fff;
  padding:4rem 0 2rem;
}
.hollow-web-design-01 .top-half h1 {
  color:var(--defaultMainDark);
  text-align:center;
  font-size:2rem;
  font-weight:500;
  margin-bottom:1rem;
}
.hollow-web-design-01 .top-half h2 {
  color:#000;
  text-align:center;
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: none;
  line-height: 24px;
  letter-spacing: 0px;
  margin:0 12rem 1rem;  
}
.hollow-web-design-01 .top-half p {
  font-size:1rem;
  color:#000;
  font-weight:500;
  width:75%;
  margin:0 auto 1rem;
}
.hollow-web-design-01 .bottom-half {
  background:#F6F6F6;
  padding:4rem 0 2rem;
}
.hollow-web-design-01 .bottom-half .form-wrap {
  width:50%;
  margin:0 auto;
}
.hollow-web-design-01 .bottom-half .form-wrap input:not([type="submit"]),
.hollow-web-design-01 .bottom-half .form-wrap textarea {
  padding: 10px 0px 10px 15px;
  border-radius:10px;
  border-color: #DCDCDC;
}
.hollow-web-design-01 .bottom-half .form-wrap textarea { height:9em; }
.hollow-web-design-01 .bottom-half .form-wrap textarea::placeholder { color:#000; }
.hollow-web-design-01 .bottom-half .form-wrap input[type="submit"] {
  background:var(--defaultMainAccent);
  border-radius:35px;
  text-transform:uppercase;
  border:none;
  font-weight:500;
}

.page-id-7248 .wpcf-spinner {
	display: none;align-content
}

@media only screen and (max-width:767px) {
  .hollow-web-design-01 .top-half h2 {
    margin:0 3rem 1rem;
  }
  .hollow-web-design-01 .top-half p {
    font-size:1rem !important;
  }
  .hollow-web-design-01 .bottom-half .form-wrap {
    width:80%;
  }
}