/*
  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 {
  /* Default Color Variables: */
  --blue: #65a1b8;
  --blueLight: #a7d5e7;
  --greyLight: #c8cbcc;
  --black: #3d3d3d;

  /* Theme Color Variables: */

  --bal: 'Balthazar';

}

h1, h2, h3, h4, p, a, li {
  font-family: var(--bal);
}
h1, h2 {
  letter-spacing: .1rem;
}
h3, h4, p, a, li {
  letter-spacing: 1px;
}
/*============================ */
/* HEADER 08
============================== */
.hollow-header-08 {
  position: relative;
  background: #fff;
  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;
  background: #fff;
  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: 0.5rem 0;
}
.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(--black);
  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(--blue);
}
.hollow-header-08 .meta-wrap a i {
  color: var(--black);
  transition: all 0.4s ease;
}
.hollow-header-08 .meta-wrap a:hover 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: var(--black);
  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(--black);
  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(--black);
  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: 50%;
    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(--blue);
    color: #fff;
  }
  .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(--blueLight);
    color: #fff;
  }
  .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(--blueLight);
  }
  .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(--blueLight);
  }
  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;
  }
}

/*HOMEPAGE COMPONENTS*/

/*============================ */
/* Hero 16
============================== */
.hollow-hero-16 {
  position: relative;
  overflow: hidden;
}
.hollow-hero-16::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 22, 29, 0.47);
  pointer-events: none;
}
.hollow-hero-16 .slider-wrap {
  visibility: hidden;
}
.hollow-hero-16 .slider-wrap.slick-initialized {
  visibility: visible;
}
.hollow-hero-16 .slide {
  height: 70vh;
  min-height: 36rem;
  position: relative;
  overflow: hidden;
}
.hollow-hero-16 img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hollow-hero-16 .flex-container {
  position: absolute;
  top: 50%;
  left: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translate(-50%,-50%);
  z-index: 1;
}
.hollow-hero-16 h1 {
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
}
.hollow-hero-16 hr {
  width: 10%;
  margin: 1rem auto;
  border-color: #FFF;
  border-width: .5px;
}
.hollow-hero-16 p {
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.5rem;
}
.hollow-hero-16 .button-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.hollow-hero-16 .button-wrap a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #FFF;
  padding: .3rem 1rem;
  margin: 0 .4rem .5rem;
  background: var(--blue);
  text-transform: uppercase;
  letter-spacing: .1rem;
  transition: all .6s ease;
}
.hollow-hero-16 .button-wrap a::before {
  content: "";
  display: block;
  position: absolute;
  top: -20%;
  left: -230%;
  height: 300%;
  width: 200%;
  background: var(--blueLight);
  z-index: -1;
  transition: all .3s ease;
  transform: rotate(20deg);
}
.hollow-hero-16 .button-wrap a:hover {
  color: #fff;
  background: var(--blueLight);
}
.hollow-hero-16 .button-wrap a:hover::before {
  left: -10%;
}
@media only screen and (max-width: 767px){
  .hollow-hero-16 h1 {
    font-size: 2rem;
    font-weight: 400;
  }
  .hollow-hero-16 p {
    font-weight: 400;
  }
}


/*============================ */
/* Action 11
============================== */
.hollow-action-11 {
  padding: 1rem 0;
  background: var(--blue);
}
.hollow-action-11 .flex-container,
.hollow-action-11 .flex-container-fluid {
  justify-content: center;
  align-items: center;
}
.hollow-action-11 h3 {
  color: #FFF;
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
  margin-right: 2rem;
}
.hollow-action-11 h3 span {
  font-size: 1.5rem;
  margin-right: .25rem;
  padding-bottom: .25rem;
}
.hollow-action-11 h3#phone a {
  color: #fff;
  font-size: 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: #444441;
}
@media only screen and (max-width: 991px) {
  .hollow-action-11 {
    padding: 2rem 0 1rem;
  }
  .hollow-action-11 .flex-container,
  .hollow-action-11 .flex-container-fluid {
    flex-flow: column;
  }
  .hollow-action-11 h3 {
    margin: 0 0 1rem;
    padding: 0;
    text-transform: capitalize;
  }
  .hollow-action-11 h3 span {
    border: none;
    padding: none;
    font-weight: 300;
  }
}

/*============================ */
/* Service Images 20
============================== */
.service-images-20 {
  padding: 4rem 0 2rem;
}
.service-images-20 .box-wrap {
  justify-content: space-between;
}
.service-images-20 .service-box {
  position: relative;
  width: 47%;
  display: flex;
  flex-flow: column;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  background: white;
  border-radius: 5px;
  margin-bottom: 2rem;
}
.service-images-20 .service-box img {
  display: flex;
  object-fit: cover;
  height: 12rem;
  width: 100%;
}
.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 {
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.service-images-20 .text-wrap p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
}
.service-images-20 .hover-bg {
  background: var(--black);
  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;
  transform: translateX(200px);
  transition: all .2s ease;
  opacity: 0;
  display: flex;
  align-items: center;
  margin-bottom: 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;
  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;
  }
  .service-images-20 .service-box {
    width: 100%;
  }
}



/*============================ */
/* Content 04
============================== */
.hollow-content-04 {
  padding: 4rem 0;
  background: #f3f5f8;
}
.hollow-content-04 .flex-container {
  align-items: center;
  justify-content: space-between;
}
.hollow-content-04 .text-wrap {
  flex-basis: 58%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hollow-content-04 .title-wrap {
  margin-bottom: 1rem;
}
.hollow-content-04 .title-wrap h2 {
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.hollow-content-04 .title-wrap h3 {
  color: var(--black);
  font-size: 1.8rem;
}
.hollow-content-04 .text-wrap p {
  color: var(--black);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.hollow-content-04 .button-wrap {
  margin-top: 1rem;
}
.hollow-content-04 a {
  color: var(--black);
  display: flex;
  align-items: center;
}
.hollow-content-04 i {
  font-size: 1.5rem;
  margin-left: 1rem;
  color: var(--black);
  transition: all .4s ease;
}
.hollow-content-04 a:hover {
  color: var(--blue);
}
.hollow-content-04 a:hover i {
  margin-left: 2rem;
  color: var(--blue);
}
.hollow-content-04 .button-wrap a:before {
  background: #525865;
}
.hollow-content-04 img {
  flex-basis: 38%;
  display: flex;
  object-fit: cover;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .hollow-content-04 .flex-container > * {
    flex-basis: 48%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-04 {
    padding: 2rem 0;
  }
  .hollow-content-04 .flex-container {
    flex-direction: column;
  }
  .hollow-content-04 .flex-container > * {
    width: 100%;
  }
  .hollow-content-04 .text-wrap {
    margin-bottom: 2rem;
  }
  .hollow-content-04 a {
    font-size: 1.3rem;
  }
  .hollow-content-04 img {
    max-height: 55vh;
    min-height: 16rem;
  }
}

/*============================ */
/* Testimonial 06
============================== */
.hollow-testimonial-06 {
  padding: 4rem 0;
  background: #6494a7;
}
.hollow-testimonial-06 h2 {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}
.hollow-testimonial-06 hr {
  border: none;
  height: 2px;
  background: var(--blueLight);
  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: var(--blue);
  border-radius: 5px;
}
.hollow-testimonial-06 .text p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  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 var(--blue);
  margin: 0 2rem 1rem;
}
.hollow-testimonial-06 .creds h3 {
  font-size: 1.3rem;
  margin-bottom: .25rem;
  color: #fff;
}
.hollow-testimonial-06 .creds p {
  font-size: 1rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .hollow-testimonial-06 {
    padding: 2rem 0;
  }
}


/*============================ */
/* Contact 02
============================== */
.hollow-contact-02 {
  padding: 3rem 0 6rem;
}
.hollow-contact-02 h2 {
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hollow-contact-02 p {
  font-size: 1.1rem;
  color: var(--black);
  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: var(--black);
  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: whitesmoke;
  border: 1px solid rgba(72, 81, 103, 0.1);
  color: #485167;
  padding: .4rem .7rem;
  margin-bottom: 1rem;
  font-weight: 300;
  font-family: var(--bal);
}
.hollow-contact-02 textarea {
  font-family: var(--bal);
  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(--bal);
  font-size: 1rem;
  font-weight: 300;
  width: unset;
  transition: .3s ease;
}
.hollow-contact-02 .wpcf7-form-control.wpcf7-submit:hover {
  background: var(--blueLight);
}
@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) {
  .hollow-contact-02 {
    background-attachment: unset;
  }
}*/
@media only screen and (max-width:767px) {
  .hollow-contact-02 {
    padding: 2rem 0;
  }
  .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;
  }
}

.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(--blue);
  border-radius:35px;
  text-transform:uppercase;
  border:none;
  font-weight:500;
}
@media only screen and (max-width:767px) {
  .hollow-web-design-01 .top-half h2 {
    margin:0 3rem 1rem;
  }
  .hollow-web-design-01 .top-half p {
    font-size:1rem !important;
  }
  .hollow-web-design-01 .bottom-half .form-wrap {
    width:80%;
  }
}

/*============================ */
/* Footer 04
============================== */
.hollow-footer-04 {
  position: relative;
  overflow: hidden;
  background: var(--black);
  font-family: var(--bal);
}
.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;
  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(--blueLight);
}

/* 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(--blueLight);
}
.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: 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(--blueLight);
}
/*Blog Page*/
.blog-wrap .post-item-header h1 {
  background: var(--black);
  text-transform: uppercase;
}
.blog-wrap .post-item .post-item-header h1:hover {
  background: #000;
}
.blog-wrap .post-item .post-content a {
  background: var(--blue);
}
.blog-wrap .post-item .post-content a:hover {
  background: var(--blueLight);
}
.blog-wrap .post-item p {
  border-color: var(--black);
  color: var(--black);
}
.blog-wrap .post-item .date-wrap i {
  color: var(--black);
}
/*Sidebars*/
.blog-sidebar {
  border-color: var(--black);
}
.blog-sidebar .post-item-header h2 {
  background: var(--black);
}
/*Post Content*/
.blog-post-content h1 {
  color: var(--black);
}
.blog-post-content h2 {
  color: var(--blue);
}
.blog-post-content h3 {
  color: grey;
}
.blog-post-content p {
  color: var(--black);
}
.blog-post-content p a {
  color: var(--black);
}
.blog-post-content p a:hover {
  color: var(--blue);
}
/*Post Return Button*/
.blog-return a.blog-return-btn {
  background: var(--blue);
}
.blog-return a.blog-return-btn:hover {
  background: var(--blueLight);
}
/*============================ */
/* DEFAULT POPUP STYLES:
============================== */
.default-popup .form-wrap {
  background: #fff;
}
.default-popup .form-wrap h3 {
  color: var(--black);
}
.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(--blue);
}
.default-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--blueLight);
}
.default-popup .loader-wrap {
  background: var(--blue);
}
.default-popup .button-wrap i {
  background: var(--blue);
}
/*============================ */
/* 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;
  color: var(--black);
  margin-bottom: .5rem;
}
.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(--black);
}
.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;
  color: var(--black);
}
.default-popup .location ul li i {
  color: var(--blue);
  padding-right: .5rem;
  padding-top: .3rem;
}
@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(--black);
}
.content.seo i {
  color: #fff;
}
.content.seo p a:hover {
  color: var(--blue);
}
/*============================ */
/* DEFAULT INTERIOR PLACEHOLDERS
============================== */
.interior-placeholder-header {
  border-color: var(--black);
  background: var(--blue);
}
.interior-placeholder-header h1 {
  color: #FFF;
}


/*INTERIOR PAGES*/


/*============================ */
/* Interior Header 05
============================== */
.interior-header-05 {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 8rem 1rem;
  text-align: center;
  background: url(img/h1.jpg) center center no-repeat;
  background-size: cover;
  box-shadow: 0 2px 5px -2px #000;
}
.interior-header-05::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(27, 82, 103, 0.8);
}
.interior-header-05 h1 {
  position: relative;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.interior-header-05 h2 {
  position: relative;
  color: #fff;
  font-size: 1.5rem;
  max-width: 50%;
}
@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: 4rem 0;
}
section.interior-content-04.bg-grey {
  background: #f3f5f8;
}
.interior-content-04 .flex-container {
  justify-content: space-between;
}
.interior-content-04 .text-wrap {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
}
.interior-content-04 .title-wrap {
  margin-bottom: 1rem;
}
.interior-content-04 .title-wrap h2 {
  color: var(--black);
  margin-bottom: .25rem;
}
.interior-content-04 .title-wrap h3 {
  color: var(--black);
  font-size: 1.8rem;
}
.interior-content-04 .text-wrap p {
  color: var(--black);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.interior-content-04 .text-wrap ul {
  display: block;
  margin-bottom: 1.5rem;
}
.interior-content-04 .text-wrap ul li i {
  color: lightgrey;
  vertical-align: top;
  margin-top: .3rem;
  padding-right: .75rem;
  font-size: .5rem;
}
.interior-content-04 .text-wrap ul li p {
  display: inline-block;
  max-width: 90%;
  vertical-align: top;
  margin-bottom: 0;
}
.interior-content-04 img {
  flex-basis: 50%;
  display: flex;
  object-fit: cover;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .interior-content-04 .flex-container.reverse {
    flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 991px) {
  .interior-content-04 .flex-container > * {
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .interior-content-04 {
    padding: 2rem 0 0;
  }
  .interior-content-04 .flex-container {
    flex-direction: column;
  }
  .interior-content-04 .flex-container > * {
    width: 100%;
  }
  .interior-content-04 .text-wrap {
    margin-bottom: 1rem;
    padding: 0 1rem;
  }
  .interior-content-04 img {
    max-height: 55vh;
    min-height: 16rem;
    margin-bottom: 2rem;
  }
}



/*HIDE RECAPTCHA BADGE*/
.grecaptcha-badge{
  visibility: collapse !important;  
}
