/*
  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: #124DB5;
  --blueDark: #0a3b92;
  --green: #29a010;
  --greenDark: #0E3F00;

}

/*============================ */
/* HEADER 06
============================== */
.hollow-header-06 {
  position: relative;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 2px 5px -2px #000;
}
.hollow-header-06.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
}
.hollow-header-06 .flex-container {
  justify-content: space-between;
}
.hollow-header-06.sticky .flex-container {
  justify-content: flex-end;
}

/*LOGO*/
.hollow-header-06 .logo {
  display: flex;
  align-items: center;
  max-width: 270px;
}
.hollow-header-06.sticky .logo {
  display: none;
}
.hollow-header-06 .logo img {
  display: flex;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

/*CONTENT*/
.hollow-header-06 .content-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
/*Meta*/
.hollow-header-06 .meta-wrap {
  flex: 1;
  display: flex;
  /*flex-flow: column;*/
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  width: 100%;
}
.hollow-header-06 .meta-wrap .meta {
  margin-right: .5rem;
  /* display: inline-flex; */
  /* flex-flow: column; */
  /* align-items: flex-start; */
  align-self: center;
}
.hollow-header-06 .meta-wrap .meta a {
  margin-bottom: 0.7rem;
  margin-right: 1rem;
}
.hollow-header-06 .meta-wrap .meta a:last-of-type {
  margin-right: 0;
}
.hollow-header-06 .meta-wrap .spacer {
  margin-right: .5rem;
  font-size: 1.8rem;
  color: var(--blue);
}
.hollow-header-06.sticky .meta-wrap {
  display: none;
}
.hollow-header-06 .meta-wrap h3 {
  color: var(--blue);
  font-size: 1.75rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.hollow-header-06 .meta-wrap a {
  color: var(--blue);
  font-weight: 400;
  font-size: 1.5rem;
  width: 100%;
  justify-content: center;
}
.hollow-header-06 .meta-wrap a i {
  margin-right: 0.5rem;
  color: var(--green);
}
.hollow-header-06 .meta-wrap a:hover {
  color: var(--blueDark);
}
/*Nav Level One*/
.hollow-header-06 nav {
  display: flex;
  width: 100%;
}
.hollow-header-06.sticky nav {
  visibility: visible!important;
}
.hollow-header-06 nav .menu {
  align-self: flex-end;
  display: inline-flex;
  justify-content: flex-end;
  width: 100%;
}
.hollow-header-06 ul li {
  position: relative;
}
.hollow-header-06 nav li a {
  display: flex;
  align-items: center;
  color: var(--blueDark);
  padding: 0 .6rem;
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  white-space: nowrap;
}
.hollow-header-06 nav .menu-item-has-children:last-of-type > ul {
  right: 0;
  left: auto;
}
.hollow-header-06 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-06 nav .menu-item-has-children ul li a {
  background: var(--blue);
  color: #fff;
}
.hollow-header-06 .menu-item-has-children .dropdown-menu {
  display: none;
  overflow: hidden;
  top: 100%;
  left: 0;
  min-width: 100%;
  z-index: 9999;
}
.hollow-header-06 .menu-item-has-children.open .dropdown-menu {
  display: flex;
  flex-direction: column;
}
/*Nav Mobile*/
.hollow-header-06 button#mobile {
  position: relative;
  width: 30px;
  background: none;
  outline: none;
  border: none;
  float: right;
}
.hollow-header-06 .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-06 .hamburger:hover {
  cursor: pointer;
}
.hollow-header-06 .hamburger:before,
.hollow-header-06 .hamburger:after {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 20%;
  background: var(--blue);
  transition: transform .2s ease;
}
.hollow-header-06 .hamburger:after {
  top: 60%
}
header.header-menu-open.hollow-header-06 #mobile,
header.header-menu-open.hollow-header-06 #mobile .hamburger {
  background: transparent;
}
header.header-menu-open.hollow-header-06 #mobile>.hamburger:before,
header.header-menu-open.hollow-header-06 #mobile>.hamburger:after {
  top: 40%;
  background: #FFF;
}
header.header-menu-open.hollow-header-06 #mobile>.hamburger:before {
  transform: rotate(45deg)
}
header.header-menu-open.hollow-header-06 #mobile>.hamburger:after {
  transform: rotate(-45deg)
}

/*MOBILE TOOLBAR*/
.hollow-header-06 .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-06 .mobile-toolbar .icon-wrap * {
  font-size: 26px;
  color: #FFF;
  padding: 0.5rem 0.75rem .5rem 0;
}

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

/*============================ */
/* Hero 23
============================== */
.hollow-hero-23 {
  position: relative;
  overflow: hidden;
}
.hollow-hero-23 .content-wrap {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 65%;
}
.hollow-hero-23 .content-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  max-width: initial;
  transform: translate(-50%,-50%);
}

/*Contact Form*/
.hollow-hero-23 .contact-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  align-items: center;
  padding: .5rem 1rem;
  background: rgba(34,107,232,0.8);
  transition: all .3s ease;
  transform: translateY(100%);
}
.hollow-hero-23 .contact-wrap p {
  margin: 0;
}
.hollow-hero-23 .contact-wrap input:not([type="submit"]) {
  border: none;
  background: #FFF;
  color: var(--blue);
  padding: .5rem 1rem;
  margin: 0 .5rem 0 0;
  font-weight: 300;
  width: 100%;
}
.hollow-hero-23 .contact-wrap form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hollow-hero-23 .contact-wrap form label {
  width: 40%;
}
.hollow-hero-23 ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--blue);
}
.hollow-hero-23 ::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--blue);
}
.hollow-hero-23 :-ms-input-placeholder {
  /* IE 10+ */
  color: var(--blue);
}
.hollow-hero-23 :-moz-placeholder {
  /* Firefox 18- */
  color: var(--blue);
}
.hollow-hero-23 .contact-wrap input[type="submit"] {
  /* width: 18%; */
  border: none;
  color: #fff;
  background: #26c304;
  border: 1px solid #26c304;
  padding: .5rem 1.5rem;
  line-height: 1;
  font-family: Lato;
  font-size: 1.1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all .3s ease;
}
.hollow-hero-23 .contact-wrap input[type="submit"]:hover {
  background: var(--green);
  border-color: var(--green);
}
.hollow-hero-23 .contact-wrap .form-tab {
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 20%;
  padding: 0 1rem;
  font-size: 2rem;
  color: #FFF;
  background: rgba(34,107,232,0.8);
  transform: translateY(-100%); 
  cursor: pointer;
}
.hollow-hero-23 .contact-wrap .form-tab .hamburger {
  padding: 1rem 1rem 1rem 0;
}
.hollow-hero-23 .contact-wrap .form-tab .bar {
  width: 34px;
  height: 4px;
  background: #FFF;
  transition: all .3s;
}
.hollow-hero-23 .contact-wrap .form-tab .bar-middle {
  margin: .25rem 0;
}
.hollow-hero-23 .contact-wrap .form-tab:hover .bar {
  background: #26c304;
}
.hollow-hero-23 .contact-wrap .form-tab:hover .bar-middle {
  margin: .4rem 0;
}
.hollow-hero-23 .wpcf7-form-control-wrap {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hollow-hero-23 .wpcf7-not-valid-tip {
  position: absolute;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #FFF;
}
.hollow-hero-23 .loader-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: all .3s ease;
  background: rgba(255,255,255,0.9);
}
.hollow-hero-23 .contact-wrap.active .loader-wrap {
  opacity: 1;
}
.hollow-hero-23 div.wpcf7 .ajax-loader {
  display: none !important;
}
.hollow-hero-23 span.wpcf7-not-valid-tip {
  transition: all .3s ease;
}
.hollow-hero-23 .wpcf7-validation-errors {
  display: none !important;
}
.hollow-hero-23 div.wpcf7-mail-sent-ok {
  display: none !important;
}
.hollow-hero-23 div.wpcf7-response-output {
  display: none !important;
}
.hollow-hero-23 .success {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.9);
  opacity: 0;
  transition: all .3s ease;
  pointer-events: none;
}
.hollow-hero-23 .success p {
  color: green;
  font-weight: 400;
}
/*Info Boxes*/
.hollow-hero-23 .info-boxes-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 35%;
  padding: 1rem;
  background: var(--blue);
}
.hollow-hero-23 .info-boxes-outer h2 {
  color: #FFF;
  text-align: center;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hollow-hero-23 .info-boxes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1px;
  background: #548ef1;
}
.hollow-hero-23 .info-box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  background: var(--blue);
  color: #FFF;
}
.hollow-hero-23 .info-box:hover {
  color: #26c304;
}
.hollow-hero-23 .info-box svg {
  margin-bottom: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  transition: all .3s ease;
}
.hollow-hero-23 .info-box p {
  margin: 0;
  transition: all .3s ease;
}
.hollow-hero-23 .info-box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .hollow-hero-23 .flex-container-fluid {
    flex-direction: column;
  }
  .hollow-hero-23 .content-wrap {
    width: 100%;
  }
  .hollow-hero-23 .content-wrap img {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    object-fit: cover;
  }
  .hollow-hero-23 .info-boxes-outer {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-hero-23 .contact-wrap form {
    flex-direction: column;
  }
  .hollow-hero-23 .contact-wrap form label {
    width: 100%;
    margin-bottom: 1rem;
  }
  .hollow-hero-23 .contact-wrap input:not([type="submit"]) {
    margin: 0 0 .5rem;
  }
  .hollow-hero-23 .contact-wrap input[type="submit"] {
    width: 30%;
  }
}

/*============================ */
/* Service Images 02
============================== */
.hollow-service-images-02 {
  padding: 4rem 0 3rem;
  background: whitesmoke;
}
.hollow-service-images-02 .grid-container {
  grid-gap: 2rem;
}
.hollow-service-images-02 .img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 10rem;
}
.hollow-service-images-02 .img-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 77, 181, 0.84);
  border-top: 2px solid white;
  transition: all .3s ease;
  transform: translateY(calc(100% - 2px));
}
.hollow-service-images-02 .img-wrap:hover::after {
  transform: none;
}
.hollow-service-images-02 img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  max-width: initial;
  transform: translate(-50%,-50%);
}
.hollow-service-images-02 a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #FFF;
  font-size: 1.25rem;
  transition: all .5s ease;
  z-index: 1;
}
.hollow-service-images-02 .img-wrap:hover a {
  opacity: 1;
}
.hollow-service-images-02 a i {
  padding-left: .5rem;
}
.hollow-service-images-02 .text-wrap {
  padding: 1rem;
}
.hollow-service-images-02 h3 {
  color: var(--blue);
  margin-bottom: .5rem;
  font-weight: 400;
}
.hollow-service-images-02 p {
  font-size: 1.1rem;
  color: grey;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .hollow-service-images-02 .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .hollow-service-images-02 .grid-container {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
  }
  .hollow-service-images-02 a {
    opacity: 0;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-service-images-02 .img-wrap {
    height: 16rem;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-service-images-02 {
    padding: 2rem 0 0;
  }
  .hollow-service-images-02 .grid-container {
    grid-gap: 0rem;
  }
}

/*============================ */
/* Content 16
============================== */
.hollow-content-16 {
  padding: 4rem 0 2rem;
}
.hollow-content-16 .flex-container {
  justify-content: space-between;
  align-items: center;
}

/*Content*/
.hollow-content-16 .content {
  width: 48%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.hollow-content-16 .content h3 {
  color: var(--green);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.hollow-content-16 .content h1 {
  color: var(--blue);
  font-weight: 700;
  margin-bottom: .5rem;
}
.hollow-content-16 .content p {
  margin-bottom: 1.5rem;
  color: #5d5d5d;
  font-size: 1.1rem;
  font-weight: 400;
}
.hollow-content-16 .content .list-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.hollow-content-16 .content .list-wrap ul {
  padding: 0 1rem;
  display: flex;
  flex-flow: column;
}
.hollow-content-16 .content .list-wrap ul li {
  display: flex;
  align-items: center;
  color: #5d5d5d;
  line-height: 1.5;
  margin-bottom: .5rem;
  font-weight: 400;
}
.hollow-content-16 .content .list-wrap ul li i {
  color: var(--green);
  font-size: 1rem;
  padding-right: .5rem;
  align-self: flex-start;
  padding-top: 0.25rem;
}
.hollow-content-16 .btn-wrap {
  display: flex;
  align-items: center;
}
.hollow-content-16 a {
  color: var(--blue);
  border-color: var(--blue);
  margin-left: 1rem;
}
.hollow-content-16 a:before {
  background: var(--blue);
}

/*Images*/
.hollow-content-16 .images {
  width: 48%;
  display: flex;
  flex-flow: column;
}
.hollow-content-16 .images .top-image {
  display: flex;
  width: 100%;
  height: 18rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.hollow-content-16 .images .top-image img {
  object-fit: cover;
  max-width: 100%;
}
.hollow-content-16 .images .bottom-images {
  display: flex;
  justify-content: space-between;
  height: 8rem;
}
.hollow-content-16 .images .bottom-images img {
  width: 48%;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .hollow-content-16 {
    padding: 2rem 0 1rem;
  }
  .hollow-content-16 .flex-container {
    flex-flow: column;
  }
  .hollow-content-16 .content {
    width: 100%;
    margin-bottom: 1rem;
  }
  .hollow-content-16 .content p {
    font-size: 1.2rem;
  }
  .hollow-content-16 .content .list-wrap {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .hollow-content-16 .content .list-wrap ul {
    width: 100%;
    padding: 0;
  }
  .hollow-content-16 .content .list-wrap ul li {
    font-size: 1.3rem;
  }
  .hollow-content-16 .content .btn-wrap {
    display: none;
  }
  .hollow-content-16 .content .btn-wrap-outer {
    width: 100%;
  }
  .hollow-content-16 .images {
    width: 100%;
  }
}

/*============================ */
/* Contact 02
============================== */
.hollow-contact-02 {
  padding: 3rem 0 6rem;
  background: whitesmoke;
}
.hollow-contact-02 h2 {
  color: var(--blue);
  font-weight: 400;
  margin-bottom: .5rem;
}
.hollow-contact-02 p {
  font-size: 1.1rem;
  color: #5d5d5d;
  font-weight: 400;
  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: #5d5d5d;
  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: white;
  border: 1px solid rgba(72,81,103,0.5);
  color: var(--blue);
  padding: .6rem;
  margin-bottom: 1rem;
  font-weight: 400;
  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-top: 1rem;
  color: #FFF;
  cursor: pointer;
  font-family: 'Lato';
  font-size: 1rem;
  font-weight: 300;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  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) {
  .hollow-contact-02 {
    background-attachment: unset;
  }
}*/
@media only screen and (max-width:767px) {
  .hollow-contact-02 {
    padding: 2rem 0;
  }
  .hollow-contact-02 .wpcf7-form-control.wpcf7-submit {
    margin: 1rem 0 0;
  }
  .page-template-page-contact .hollow-contact-02 {
    padding-top: 3rem;
  }
  .hollow-contact-02 ul li {
    font-size: 1.3rem;
  }
  .hollow-contact-02 .map-wrap iframe {
    height: 350px;
  }
}

.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(--green);
}
.hollow-footer-04 .main .flex-container {
  flex-direction: column;
  align-items: center;
  padding: 2rem 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: #186b06;
  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: 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);
}
/*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);
}
.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 .form-wrap h3 {
  color: var(--blue);
}
.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(--blueDark);
}
.default-popup .wpcf7-form input[type="submit"] {
  background: var(--blue);
}
.default-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--blueDark);
}
.default-popup .loader-wrap {
  background: var(--blue);
}
.default-popup .button-wrap i {
  background: var(--blue);
}
/*============================ */
/* DEFAULT SEO STYLES:
============================== */
.content.seo {
  background: var(--blue);
}
.content.seo i {
  color: #fff;
}
.content.seo p a:hover {
  color: var(--green);
}

/*INTERIOR PAGES*/
@media only screen and (max-width: 767px) {
  .interior-page {
    margin-top: 3rem;
  }
  .page-template-page-contact {
    margin-top: 0;
  }
}


/*============================ */
/* Interior Header 05
============================== */
.interior-header-05 {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 4rem 1rem;
  text-align: center;
  background: whitesmoke;
}
.interior-header-05 h1 {
  position: relative;
  color: var(--blue);
  margin-bottom: .75rem;
  font-weight: 700;
}
.interior-header-05 h2 {
  position: relative;
  color: var(--green);
  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%;
  }
}


/*============================ */
/* Interior Content 02
============================== */
.interior-content-02 {
  padding: 2rem 0;
}
.interior-content-02 .flex-container {
  align-items: stretch;
  justify-content: space-between;
}
.interior-content-02 .flex-container.reverse {
  flex-flow: row-reverse;
}
.interior-content-02 .block {
  width: 47%;
  padding: 2rem 0;
}
.interior-content-02 .text-block {
  align-self: center;
}
.interior-content-02 .text-block h3 {
  color: var(--blueDark);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid #e0e0e0;
}
.interior-content-02 .text-block h3 i {
  color: var(--blue);
  font-size: 1.3rem;
}
.page-id-253 .interior-content-02 .text-block h3 i {
  color: #f3521e;
  font-size: 1.3rem;
}
.page-id-254 .interior-content-02 .text-block h3 i {
  color: var(--green);
  font-size: 1.3rem;
}
.interior-content-02 .text-block p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #5d5d5d;
  font-weight: 400;
}
.interior-content-02 .img-block {
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.interior-content-02 .img-block img {
  display: flex;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid darkgrey;
}
@media only screen and (max-width: 991px) {
  .interior-content-02 .flex-container,
  .interior-content-02 .flex-container.reverse {
    flex-flow: column;
  }
  .interior-content-02 .block {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .interior-content-02 {
    padding: 2rem 0 0;
  }
  .interior-content-02 .block {
    padding: 0 1rem;
  }
  .interior-content-02 .text-block {
    padding-bottom: 1rem;
  }
  .interior-content-02 .img-block {
    padding-bottom: 2rem;
  }
}

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


/*============================ */
/* Interior Maps 01
============================== */
.interior-maps-01 {
  padding: 4rem 0;
}
.interior-maps-01 .flex-container {
  align-items: center;
  justify-content: space-between;
}
.interior-maps-01 .text-wrap {
  flex-basis: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.interior-maps-01 h4 {
  color: var(--green);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.4;
}
.interior-maps-01 h2 {
  color: var(--blue);
  line-height: 1;
  margin-bottom: 1rem;
  font-size: 2.75rem;
  font-weight: 600;
}
.interior-maps-01 p {
  color: #5d5d5d;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 400;
}
.interior-maps-01 .list-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.interior-maps-01 .list-wrap .list-1,
.interior-maps-01 .list-wrap .list-2 {
  width: 100%;
}
.interior-maps-01 .list-wrap ul {
  width: 48%;
}
.interior-maps-01 .list-wrap ul li {
  display: flex;
  margin-bottom: 1rem;
  font-weight: 400;
  color: #5d5d5d;
}
.interior-maps-01 .list-wrap ul li i {
  color: var(--blue);
  font-size: 1.2rem;
}
.interior-maps-01 .list-wrap ul li p {
  display: inline-block;
  max-width: 90%;
  vertical-align: top;
}
.interior-maps-01 .map-wrap {
  position: relative;
  overflow: hidden;
  flex-basis: 48%;
}
.interior-maps-01 .map-wrap:before {
  content: '';
  top: 50%;
  left: 50%;
  width: 50vh;
  transform: translate(-50%,-50%);
  height: 50vh;
  border-radius: 50%;
  background: rgba(18, 77, 181,.3);
  border: 2px solid var(--blue);
  z-index: 1000;
  position: absolute;
}
.interior-maps-01 .map-wrap iframe {
  flex-basis: 48%;
  display: flex;
  overflow: hidden;
  pointer-events: none;
  max-width: 100%;
}
@media only screen and (max-width: 991px) {
  .interior-maps-01 .flex-container > * {
    flex-basis: 48%;
  }
  .interior-maps-01 .list-wrap .list-1 {
    margin-right: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .interior-maps-01 {
    padding: 2rem 0;
  }
  .interior-maps-01 .flex-container {
    flex-direction: column;
  }
  .interior-maps-01 .flex-container > * {
    width: 100%;
  }
  .interior-maps-01 .text-wrap {
    margin-bottom: 1rem;
  }
  .interior-maps-01 .list-wrap {
    width: 100%;
  }
  .interior-maps-01 .list-wrap .list-1 {
    margin-right: 0rem;
  }
  .interior-maps-01 .list-wrap .list-1,
  .interior-maps-01 .list-wrap .list-2 {
    width: 50%;
  }
  .interior-maps-01 img {
    order: 2;
  }
  .interior-maps-01 .map-wrap iframe {
    max-height: 80vh;
  }
}
