/*
  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: #26377F;
  --blueDark: #1A2A5B;
  --blueLight: #1D8FCE;
  --red: #C22629;
  --redDark: #9E181F;
  --yellow: #ffe200;

}

/*============================ */
/* 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;
}
.hollow-header-06 hr {
  flex: 1;
  opacity: 0.5;
  margin: 0;
}
body.home .hollow-header-06 hr,
.hollow-header-06.sticky hr {
  display: none;
}


/*LOGO*/
.hollow-header-06 .logo {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.hollow-header-06.sticky .logo {
  display: none;
}


/*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: center;
  align-items: center;
  padding: 1rem 0;
}
.hollow-header-06.sticky .meta-wrap {
  display: none;
}
.hollow-header-06 .meta-wrap h3 {
  font-family: Anton;
  color: var(--blue);
  font-size: 1.75rem;
  margin-bottom: .5rem;
}
.hollow-header-06 .meta-wrap a {
  display: flex;
  align-items: center;
  color: var(--blueLight);
  font-size: 1.5rem;
  margin-right: .5rem;
  font-weight: 400;
}
.hollow-header-06 .meta-wrap a:hover {
  color: var(--yellow);
}
.hollow-header-06 a i {
  font-size: 1.5rem;
  color: var(--blue);
  margin-right: .75rem;
}
/*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 {
  font-family: Anton;
  display: flex;
  align-items: center;
  color: var(--blue);
  padding: 0 .6rem;
  font-size: 20px;
  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: .25rem 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: 2rem;
  color: #FFF;
  padding: .5rem .75rem .5rem 0;
}
@media screen and (min-width:992px) {
  .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 {
    color: #fff;
    background: rgb(29,143,206);
    background: linear-gradient(180deg, rgba(29,143,206,1) 0%, rgba(38,55,127,1) 100%);
  }
  .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-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;
  }
  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(--blueDark);
    flex-direction: column;
    max-height: 0;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
  }
  .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(--blue);
  }
  .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: 100vh;
  }
  .hollow-header-06 .menu-item-has-children .dropdown-menu li a {
    padding: 0 1.5rem;
  }
  .hollow-header-06 hr {
    display: none;
  }
}
@media screen and (orientation: portrait) and (max-width:991px) {
  .hollow-header-06 .menu a {
    font-size: 1.75rem;
    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.5rem;
    padding: .4rem .6rem;
  }
  .hollow-header-06 .menu-item-has-children .dropdown-menu li a {
    padding: .4rem 2.5rem;
  }
}



/*============================ */
/* Hero 12
============================== */
.hollow-hero-12 {
  position: relative;
  border-bottom: 2px solid white;
}

/*Image Slider*/
.hollow-hero-12 .img-slider {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.hollow-hero-12 .img-slider.slick-initialized {
  visibility: visible;
}
.hollow-hero-12 .img-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(29,143,206);
  background: linear-gradient(180deg, rgba(29,143,206,1) 0%, rgba(38,55,127,1) 100%);
  opacity: 0.6;
}
.hollow-hero-12 .img-slider .slick-list,
.hollow-hero-12 .img-slider .slick-track {
  height: 100%;
}
.hollow-hero-12 .img-slider img {
  object-fit: cover;
}

/*Caption Slider*/
.hollow-hero-12 .cap-slider {
  position: relative;
  width: 100%;
  visibility: hidden;
}
.hollow-hero-12 .cap-slider.slick-initialized {
  visibility: visible;
}
.hollow-hero-12 .cap-slider .slick-track {
  display: flex;
  align-items: center;
}
.hollow-hero-12 .caption {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.hollow-hero-12 .content {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  padding: 8rem 0;
}
.hollow-hero-12 .content h1 {
  font-family: Anton;
  color: #fff;
  margin-bottom: .5rem;
  text-shadow: 0 0 10px #3f7796;
}
.hollow-hero-12 .content h3 {
  color: white;
  margin: 0 0 1rem 0.5rem;
  padding: .2rem 1rem;
  background: linear-gradient(180deg, rgba(194,38,41,1) 40%, rgba(84,7,11,1) 170%);
  transform: skew(-20deg);
}
.hollow-hero-12 .content p {
  color: #fff;
  margin-bottom: 2rem;
  width: 50%;
  font-size: 1.1rem;
  font-weight: 400;
}
.hollow-hero-12 .content a {
  color: white;
  border-color: white;
}
.hollow-hero-12 .content a:before {
  background: var(--red);
}
.hollow-hero-12 .content a i {
  margin-right: .75rem;
}
.hollow-hero-12 .cap-slider ul.slick-dots {
  display: flex;
  align-items: flex-start;
  width: auto;
  bottom: 5rem;
}
.hollow-hero-12 .cap-slider ul.slick-dots li button:before {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .hollow-hero-12 .content {
    padding: 4rem 0 8rem;
  }
  .hollow-hero-12 .content h3 {
    font-size: 1.3rem;
  }
  .hollow-hero-12 .content p {
    width: 100%;
  }
}

/*Form Control*/
.hollow-hero-12 .button-wrap {
  display: flex;
  flex-flow: column;
  justify-content: space-evenly;
  align-items: center;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  color: #fff;
  font-size: .9rem;
  transform: translateX(-50%);
  border: none;
  cursor: pointer;
  margin-bottom: -2rem;
}
.hollow-hero-12 .button-wrap p {
  font-size: 1.25rem;
  font-family: Anton;
  font-weight: 400;
  color: #fff;
  margin-bottom: .55rem;
}
.hollow-hero-12 .button-wrap i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 1.2rem;
  transition: all .3s ease;
  background: rgb(29,143,206);
  background: linear-gradient(180deg, rgba(29,143,206,1) 0%, rgba(38,55,127,1) 100%);
}
.hollow-hero-12 .button-wrap:hover i {
  background: linear-gradient(180deg, rgba(194,38,41,1) 0%, rgba(84,7,11,1) 100%);
}

/*============================ */
/* Services Images 01
============================== */
.hollow-service-images-01 {
  padding: 2rem 2rem 0;
  border-bottom: 2px solid white;
  /*background: rgb(29,143,206);
  background: linear-gradient(180deg, rgba(29,143,206,1) 0%, rgba(38,55,127,1) 100%);*/
  background: url(img/util-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.hollow-service-images-01 .flex-container-fluid {
  justify-content: space-between;
  align-items: center;
  margin-bottom: -3rem;
  position: relative;
  z-index: 1;
}
.hollow-service-images-01 .box {
  position: relative;
  width: 18%;
  height: 10rem; 
  display: flex;
  margin-bottom: 2rem;
  transition: all .3s ease;
  text-align: center;
  background: rgb(29,143,206);
  background: linear-gradient(180deg, rgba(29,143,206,1) 0%, rgba(38,55,127,1) 100%);
  border: 2px solid white;
}
.hollow-service-images-01 .box-inner {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}
.hollow-service-images-01 .box:hover {
  transform: translateY(-10px);
}
.hollow-service-images-01 .box:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transition: all .3s ease;
  transform: translate(100%, -100%);
  opacity: 0;
}
.hollow-service-images-01 .box:hover:before {
  transform: translate(2px, -2px);
  opacity: 1;
}
.hollow-service-images-01 .box:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: all .3s ease;
  transform: translate(-100%, 100%);
  opacity: 0;
}
.hollow-service-images-01 .box:hover:after {
  transform: translate(-2px, 2px);
  opacity: 1;
}
.hollow-service-images-01 .box img {
  display: flex;
  object-fit: cover;
  width: 100%;
  transition: all .3s ease;
  transform: scale(1.1);
  opacity: 0.7;
}
.hollow-service-images-01 .box:hover img {
  opacity: 0.2;
  transform: scale(1);
}
.hollow-service-images-01 .box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Anton;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  transition: all .3s ease;
  transform: translateY(5px);
  text-shadow: 0 0 10px #0d325d;
}
@media only screen and (max-width: 991px) {
  .hollow-service-images-01 {
    background-attachment: unset;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-service-images-01 {
    padding: 2rem 0 0;
  }
  .hollow-service-images-01 .flex-container-fluid {
    flex-flow: column;
  }
  .hollow-service-images-01 .box {
    height: 14rem;
    width: 90%;
    overflow: hidden;
  }
}

/*============================ */
/* Content 08
============================== */
.hollow-content-08 {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  background: url(img/content-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-bottom: 2px solid white;
}
.hollow-content-08 .flex-container {
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.hollow-content-08 h1 {
  font-family: Anton;
  color: #FFF;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 1rem;
}
.hollow-content-08 hr {
  border-color: #FFF;
  width: 100%;
  height: 0;
}
.hollow-content-08 p {
  color: #FFF;
  text-align: center;
  width: 80%;
}
.hollow-content-08 p:first-of-type {
  color: white;
}
.hollow-content-08 .list-wrap {
  display: flex;
  padding: 2rem 0;
}
.hollow-content-08 ul {
  display: inline-flex;
  flex-flow: column;
  padding: 0 2rem;
}
.hollow-content-08 ul li {
  display: flex;
  color: #fff;
  line-height: 1;
  padding: .5rem 0;
}
.hollow-content-08 ul li i {
  color: var(--yellow);
  margin-right: .5rem;
}
.hollow-content-08 a {
  color: white;
  border-color: white;
  background: var(--blueLight);
  margin-top: 2rem;
}
.hollow-content-08 a::before {
  background: var(--blue);
}
.hollow-content-08 a i {
  margin-right: .75rem;
}
@media only screen and (min-width: 992px) {
  .hollow-content-08 .flex-container {
      padding: 0 4rem;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-08 {
    background-attachment: unset;
  }
  .hollow-content-08 h1 {
    white-space: normal;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-08 {
    padding: 3rem 0 2rem;
  }
  .hollow-content-08 p {
    margin-bottom: 1rem;
    width: 100%;
  }
  .hollow-content-08 a {
    margin-top: 1rem;
  }
  .hollow-content-08 .list-wrap {
    /*flex-flow: column;*/
    padding: 1rem 0;
  }
  .hollow-content-08 .list-wrap ul {
    padding: 0 1rem 1rem;
  }
}

/*============================ */
/* Action 01
============================== */
.hollow-action-01 {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  text-align: center;
  /*background: rgb(29,143,206);
  background: linear-gradient(180deg, rgba(29,143,206,1) 0%, rgba(38,55,127,1) 100%);*/
  background: url(img/util-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.hollow-action-01 .flex-container {
  align-items: center;
}
.hollow-action-01 h1 {
  font-family: Anton;
  color: #FFF;
  margin-bottom: 1.5rem;
}
.hollow-action-01 img {
  margin-bottom: 1rem;
  width: 300px;
  max-width: 90%;
}
.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: var(--red);
}
.hollow-action-01 a i {
  margin-right: .75rem;
}
@media only screen and (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 {
  font-family: Anton;
  color: var(--blue);
}
.hollow-contact-02 p {
  font-size: 1.1rem;
  color: #333;
}
.hollow-contact-02 .grid-container {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
}
.hollow-contact-02 .grid-item {
  align-items: start;
}
.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;
}
.hollow-contact-02 textarea {
  font-family: 'Arial';
  z-index: 0;
  height: 15rem;
  max-height: 215px;
}
.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: .6rem;
  margin-bottom: 1rem;
  font-weight: 300;
  font-family: 'Arial';
}
.hollow-contact-02 textarea {
  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;
  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 {
    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:767px) {
  .hollow-contact-02 {
    padding: 2rem 0;
  }
  .page-template-page-contact .hollow-contact-02 {
    padding-top: 3rem;
  }
  .hollow-contact-02 .map-wrap iframe {
    height: 350px;
  }
}

/*============================ */
/* Footer 04
============================== */
.hollow-footer-04 {
  position: relative;
  overflow: hidden;
  /*background: rgb(29,143,206);
  background: linear-gradient(180deg, rgba(29,143,206,1) 0%, rgba(38,55,127,1) 100%);*/
  background: url(img/util-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: 555;
}
.hollow-footer-04 .main .flex-container {
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
}
.hollow-footer-04 img {
  margin-bottom: .5rem;
  width: 350px;
}
.hollow-footer-04 h3 {
  color: #FFF;
  font-weight: 300;
  margin-bottom: 2rem;
}
.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;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hollow-footer-04 .main a i {
  color: #FFF;
  transition: all .3s ease;
  font-size: 1.3rem;
}
.hollow-footer-04 .main a i:hover {
  color: var(--red);
}

/* Meta */
.hollow-footer-04 .meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  background: rgba(10, 18, 51, 0.35);
}
.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 1.5rem;
}
.hollow-footer-04 .meta span a {
  color: #FFF;
  transition: all .3s ease;
}
.hollow-footer-04 .meta span a:hover {
  color: var(--red);
}
.hollow-footer-04 .meta i.top {
  position: absolute;
  margin-right: 1rem;
  right: 0;
  top: 0;
  color: #FFF;
  padding: .5rem;
  opacity: 0.5;
  background: var(--red);
  cursor: pointer;
  transition: all .3s ease;
}
.hollow-footer-04 .meta i.top:hover {
  opacity: 1;
}
@media only screen and (max-width: 991px) {
  .hollow-footer-04 {
    background-attachment: unset;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-footer-04 .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 PAGE HEADER
-------------------------*/
.default-page-header {
  font-family: 'Lato';
  font-size: 2rem;
  font-weight: 300;
  margin-top: 2rem;
}
.default-page-header h1, .default-page-header h2, .default-page-header h3 {
  line-height: 1;
  margin: .2em 0;
}
.default-page-header p {
  line-height: 1.4em;
}
.default-page-header h1 {
  font-size: 1.5em;
  font-weight: 400;
}
.default-page-header h2 {
  font-size: 1em;
  font-weight: 400;
}
.default-page-header p {
  font-size: .6em;
}
.main-row {
  margin-bottom: 1em;
}

/*============================ */
/* Interior Page Settings
============================== */
/*SEO*/
.content.seo {
  background: url(img/util-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.content.seo .container {
  display: flex;
  align-items: center;
}
.content.seo i {
  color: white;
  font-size: 2rem;
  margin-right: 2rem;
}

/*Header*/
.interior-header {
  position: relative;
  padding: 4rem 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  background: url(img/interior-header-bg.jpg) center center no-repeat;
  background-size: cover;
  text-align: center;
}
.interior-header h1 {
  font-family: Anton;
  color: white;
  margin-bottom: .5rem;
}
.interior-header h2 {
  font-size: 1.5rem;
  color: white;
  max-width: 60%;
}
@media screen and (max-width:767px) {
  .interior-header h2 {
    max-width: 90%;
  }
}


/*Content*/
.interior-content {
  padding: 4rem 0;
}
.interior-content .flex-container {
  justify-content: space-between;
}
.interior-content .box {
  width: 48%;
  /*margin-bottom: 2rem;*/
}
.interior-content .box h3 {
  font-family: Anton;
  margin-bottom: 1rem;
  color: var(--blue);
}
.interior-content .box p {
  color: #333;
  margin-bottom: 1rem;
}
.interior-content img {
  display: flex;
  object-fit: cover;
  width: 100%;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .interior-content {
    padding: 4rem 0 2rem;
  }
  .interior-content .flex-container {
    flex-flow: column;
  }
  .interior-content .box {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .interior-content .box img {
    order: 2;
  }
}
@media only screen and (max-width:767px) {
  .interior-content {
    padding: 2rem 0 0;
  }
}

/*============================ */
/* Interior Pages
============================== */
/*Service Area*/
.page-id-251 .interior-content .box {
  width: 100%;
}
.page-id-251 .interior-content .grid-container {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2rem;
  /*align-items: center;*/
}
.page-id-251 .interior-content ul li {
  display: flex;
  align-items: center;
  color: var(--blueLight);
  font-family: Anton;
}
.page-id-251 .interior-content ul li i {
  font-size: 1.5rem;
  color: var(--blue);
  margin-right: .75rem;
}
.page-id-251 .interior-content .service-map {
  position: relative;
  width: 100%;

  pointer-events: none;
}
.page-id-251 .interior-content .service-map iframe {
  width: 100%;
  height: 400px;
}
.page-id-251 .interior-content .service-map .circle {
  background: rgba(29, 143, 206, 0.65);
  border-radius: 50%;
  border: 2px solid var(--blueLight);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 14rem;
  height: 14rem;
} 
@media (min-width: 768px) {
  .page-id-251 .interior-content .grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*Contact Page*/
.page-id-252 .address-wrap {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
}




/*============================ */
/* Hollow Corner Popup
============================== */
.hollow-corner-popup .form-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 11000;
}
.hollow-corner-popup .form-wrap {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 40rem;
  padding: 2rem;
  background: rgb(29,143,206);
  background: linear-gradient(180deg, rgba(29,143,206,1) 0%, rgba(38,55,127,1) 100%);
  border-top: 2px solid white;
  z-index: 12000;
  /*border-radius: 7px;*/
  transform: translate(-50%, -50%);
}
.hollow-corner-popup .form-wrap h3 {
  color: #fff;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-family: Anton;
}
.hollow-corner-popup .form-wrap .close {
  display: flex;
  position: absolute;
  top: 5px;
  right: 5px;
  padding: .5rem .6rem .4rem;
  border-radius: 6px;
  color: #fff;
  font-size: 1.2rem;
  background: red;
  border: 2px solid #fff;
  cursor: pointer;
  transition: all .3s ease;
}
.hollow-corner-popup .form-wrap .close:hover {
  background: darkred;
  /*transform: scale(1.15);*/
}
.hollow-corner-popup ::-webkit-input-placeholder {
  color: #555;
}
.hollow-corner-popup ::-moz-placeholder {
  color: #555;
}
.hollow-corner-popup :-ms-input-placeholder {
  color: #555;
}
.hollow-corner-popup :-moz-placeholder {
  color: #555;
}
.hollow-corner-popup .wpcf7-form-control-wrap select {
  -webkit-appearance: none;
}
.hollow-corner-popup .wpcf7-form-control-wrap input,
.hollow-corner-popup .wpcf7-form-control-wrap select,
.hollow-corner-popup .wpcf7-form-control-wrap textarea {
  font-family: Arial;
  font-size: 1.1rem;
  font-weight: 300;
  color: #000;
  width: 100%;
  padding: .5rem;
  margin-bottom: 1rem;
  outline: none;
  border: 1px solid #ccc;
  /*border-radius: 6px;*/
}
.hollow-corner-popup .wpcf7-form-control-wrap input:focus,
.hollow-corner-popup .wpcf7-form-control-wrap select:focus,
.hollow-corner-popup .wpcf7-form-control-wrap textarea:focus {
  border-color: var(--blueLight);
}
.hollow-corner-popup .wpcf7-form-control-wrap textarea {
  height: 6rem;
}
.hollow-corner-popup .wpcf7-form input[type="submit"] {
  font-family: Lato;
  font-size: 1.1rem;
  color: #fff;
  background: var(--red);
  padding: .5rem 1.5rem;
  border: none;
  /*border-radius: 6px;*/
  cursor: pointer;
  transition: all .3s ease;
}
.hollow-corner-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--redDark);
  /*transform: scale(1.15);*/
}
.hollow-corner-popup .wpcf7 .ajax-loader {
  display: none;
}
.hollow-corner-popup .wpcf7-validation-errors {
  display: none !important;
}
.hollow-corner-popup div.wpcf7-mail-sent-ok {
  display: none !important;
}
.hollow-corner-popup div.wpcf7-response-output {
  display: none !important;
}
.hollow-corner-popup .form-wrap div.wpcf7-response-wrap {
  display: none!important;
}
.hollow-corner-popup .form-wrap .message-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}
.hollow-corner-popup .form-wrap .message-wrap .message {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.9);
  opacity: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.hollow-corner-popup .form-wrap.sent .message.success-message {
  opacity: 1;
  pointer-events: auto;
}
.hollow-corner-popup .form-wrap .message-wrap h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.hollow-corner-popup .form-wrap .success-message h3 {
  color: green;
}
.hollow-corner-popup .form-wrap .error-message h3 {
  color: red;
}
.hollow-corner-popup .form-wrap .message-wrap p {
  font-size: 1.4rem;
  color: grey;
}
.hollow-corner-popup .form-wrap.error .message.error-message {
  opacity: 1;
  pointer-events: auto;
}
.hollow-corner-popup .form-wrap.sent .success {
  display: flex;
}
.hollow-corner-popup .wpcf7-not-valid-tip {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: .5rem;
  color: red;
  z-index: 15;
  background: rgba(255,255,255,0.9);
  border: 1px solid #d8d8d8;
  border-radius: 3px;
}
.hollow-corner-popup .loader-wrap {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--blueLight);
  transform: translate(-50%,-50%);
}
.hollow-corner-popup .loader-wrap i {
  font-size: 1.5rem;
  color: #fff;
}
.hollow-corner-popup .form-wrap.sending .loader-wrap {
  display: flex;
}
.hollow-corner-popup .button-wrap {
  position: fixed;
  z-index: 500;
  bottom: 1.25rem;
  left: 1.25rem;
  color: #fff;
}
.home .hollow-corner-popup .button-wrap,
.page-template-page-contact .hollow-corner-popup .button-wrap {
  display: none;
}
.hollow-corner-popup .button-wrap p {
  background: var(--blueLight);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .3rem 1rem;
  /*height: 3rem;*/
  /*width: 3rem;*/
  border: 2px solid #fff;
  border-radius: 4px;
  font-size: 1.2rem;
  cursor: pointer;
  font-weight: 400;
  transition: all .3s ease;
}
.hollow-corner-popup .button-wrap p i {
  padding-right: .7rem;
}
@media only screen and (min-width: 768px) {
  .hollow-corner-popup .button-wrap p:hover {
    padding: 0.5rem 1.4rem;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-corner-popup .form-wrap {
    width: 75%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-corner-popup .form-wrap {
    width: 90%;
  }
  .hollow-corner-popup .wpcf7-form-control-wrap input,
  .hollow-corner-popup .wpcf7-form-control-wrap textarea {
    margin-bottom: 1rem;
  }
  .hollow-corner-popup .form-wrap .message-wrap h3 {
    font-size: 1.8rem;
  }
  .hollow-corner-popup .form-wrap .message-wrap p {
    font-size: 1.2rem;
  }
  .hollow-corner-popup .button-wrap {
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .hollow-corner-popup .button-wrap p {
    border: none;
    border-radius: 0;
    font-size: 1.5rem;
    padding: .5rem;
  }
}
/*============================ */
/* Main Revisions
============================== */
span.nowrap {
  white-space: nowrap;
}
span.nowrap a,
span.num-span a {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}
input[type="checkbox"] {
  -webkit-appearance: checkbox;
}
input[type="radio"] {
  -webkit-appearance: radio;
}
i.fas, i.fal, i.far {
  font-family: 'Font Awesome 5 Pro';
}
#fancybox-title {
  display: none!important;
}
/*============================ */
/* Responsive Revisions
============================== */
@media only screen and (min-width: 768px) {
  .nextgen_pro_thumbnail_grid .image-wrapper {
    max-height: 185px!important;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .nextgen_pro_thumbnail_grid .image-wrapper {
    max-height: 195px!important;
  }
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
  .nextgen_pro_thumbnail_grid .image-wrapper {
    max-height: 230px!important;
  }
}
@media only screen and (max-width: 991px) {
  .interior-page {
    margin-top: 2rem;
  }
}