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

  --yellow: #efc11a;
  --yellowDark: #d2a916;
  --grey: #4D4D4F;

}

/*============================ */
/* HEADER 06
============================== */
.hollow-header-06 {
  position: relative;
  background: #fff;
  z-index: 9999;
  border-top: 0.4rem solid var(--yellow);
  box-shadow: 0 2px 5px -2px #000;
}
.hollow-header-06.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  border-top: none;
}
.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;
  display: none;
}
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;
  width: 25%;
}
.hollow-header-06.sticky .logo {
  display: none;
}
.hollow-header-06 .logo img {
  display: flex;
  width: 100%;
  object-fit: cover;
}


/*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 {
  color: var(--yellow);
  font-size: 1.75rem;
  margin-bottom: .5rem;
  font-weight: 700;
}
.hollow-header-06 .meta-wrap a {
  color: var(--yellow);
  font-weight: 400;
  font-size: 1.5rem;
  margin-right: .5rem;
}
.hollow-header-06 .meta-wrap a:hover {
  color: var(--grey);
}
/*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(--grey);
  padding: 0 .6rem;
  font-weight: 400;
  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(--yellow);
  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(--yellow);
  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(--yellow);
  justify-content: space-between;
  position: relative;
  top: 0;
  left: 0;
  z-index: 9999;
}
.hollow-header-06 .mobile-toolbar .icon-wrap * {
  font-size: 34px;
  color: #FFF;
  padding-right: .75rem;
}
.hollow-header-06 .mobile-toolbar .icon-wrap a.mobile-icon i {
  font-family: FontAwesome;
  font-weight: 400;
}

@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 nav .menu-item-has-children ul li:hover a {
    background: var(--yellowDark)
  }
  .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(--yellow);
    color: #fff;
  }
  .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 {
    width: 100%;
    justify-content: center;
    padding: calc(2rem + 42px) 0 2rem;
  }
  .hollow-header-06 .logo img {
    width: 60%;
  }
  .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(--yellowDark);
    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;
  }
  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;
  overflow: hidden;
  border-bottom: 2px solid #fff;
}

/*Image Slider*/
.hollow-hero-12 .img-slider {
  position: absolute;
  overflow: hidden;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.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: rgba(65, 65, 70, 0.5);
}
.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 .caption {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.hollow-hero-12 .content {
  padding: 8rem 0;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.hollow-hero-12 .content h1 {
  color: #fff;
  margin-bottom: .5rem;
  font-weight: 700;
}
.hollow-hero-12 .content h3 {
  color: var(--yellow);
  margin-bottom: 1rem;
}
.hollow-hero-12 .content p {
  color: #fff;
  margin-bottom: 2rem;
  width: 50%;
  font-size: 1.1rem;
  font-weight: 400;
}
.hollow-hero-12 .content a {
  border-color: #fff;
  color: #fff;
}
.hollow-hero-12 .content a:before {
  background: var(--yellow);
}
.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 p {
    width: 100%;
  }
}

/*Form*/
.hollow-hero-12 .form-overlay {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
}
.hollow-hero-12 .form-wrap {
  position: relative;
  width: 50%;
  padding: 2rem;
  background: #fff;
  transform: translateY(200%);
  transition: all .5s ease;
}
.hollow-hero-12 .form-overlay.active .form-wrap {
  transform: translateY(0);
}
.hollow-hero-12 .form-wrap h3 {
  color: var(--yellow);
  margin-bottom: .5rem;
}
.hollow-hero-12 .form-wrap h1 {
  color: grey;
  margin-bottom: 1rem;
}
.hollow-hero-12 .form-wrap .close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  background: red;
  border: 1.5px solid #fff;
  cursor: pointer;
  transition: all .3s ease;
  transform: translate(50%,-50%);
}
.hollow-hero-12 .form-wrap .close:hover {
  background: darkred;
}
.hollow-hero-12 .form-wrap .close::before {
  transition: all .3s ease;
}
.hollow-hero-12 .form-wrap .close:hover::before {
  transform: rotate(-90deg);
}
.hollow-hero-12 .form-wrap .flex-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.hollow-hero-12 .form-wrap .flex-wrap > span {
  width: 48%;
}
.hollow-hero-12 .wpcf7-form-control-wrap input,
.hollow-hero-12 .wpcf7-form-control-wrap textarea {
  border: none;
  display: flex;
  align-items: center;
  width: 100%;
  height: 2rem;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 300;
  color: grey;
  border-bottom: 1px solid #c3c3c3;
  font-family: Lato;
  font-weight: 300;
}
.hollow-hero-12 .wpcf7-form-control-wrap textarea {
  height: 6rem;
}
.hollow-hero-12 .wpcf7-form input[type="submit"] {
  font-family: Lato;
  font-size: 1rem;
  border: none;
  color: #fff;
  background: grey;
  padding: .5rem 1rem;
  transition: all .3s ease;
  cursor: pointer;
}
.hollow-hero-12 .wpcf7-form input[type="submit"]:hover {
  background: darkgrey;
}
.hollow-hero-12 .wpcf7 .ajax-loader {
  display: none;
}
.hollow-hero-12 .wpcf7-validation-errors {
  display: none !important;
}
.hollow-hero-12 div.wpcf7-mail-sent-ok {
  display: none !important;
}
.hollow-hero-12 div.wpcf7-response-output {
  display: none !important;
}
.hollow-hero-12 .form-wrap .message-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}
.hollow-hero-12 .form-wrap .message {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.9);
  opacity: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.hollow-hero-12 .form-wrap.sent .message.success-message {
  opacity: 1;
  pointer-events: auto;
}
.hollow-hero-12 .form-wrap .success-message p:first-of-type {
  font-size: 3rem;
  font-weight: 700;
  color: green;
  margin-bottom: .5rem;
}
.hollow-hero-12 .form-wrap .success-message p:last-of-type {
  font-size: 1.4rem;
  color: grey;
}
.hollow-hero-12 .form-wrap.error .message.error-message {
  opacity: 1;
  pointer-events: auto;
}
.hollow-hero-12 .form-wrap .error-message p:first-of-type {
  font-size: 3rem;
  font-weight: 700;
  color: red;
  margin-bottom: .5rem;
}
.hollow-hero-12 .form-wrap .error-message p:last-of-type {
  font-size: 1.4rem;
  color: grey;
}
.hollow-hero-12 .form-wrap.sent .success {
  display: flex;
}
.hollow-hero-12 .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-hero-12 .loader-wrap {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(19,100,132,0.8);
  transform: translate(-50%,-50%);
}
.hollow-hero-12 .form-wrap.sending .loader-wrap {
  display: flex;
}
.hollow-hero-12 .loader-wrap svg {
  height: 2.5rem;
  width: 2.5rem;
}
.hollow-hero-12 .loader-wrap svg .cls-1 {
  fill: blue;
}
@media only screen and (max-width: 991px) {
  .hollow-hero-12 .form-wrap {
    width: 75%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-hero-12 .form-wrap {
    width: 90%;
  }
  .hollow-hero-12 .form-wrap .flex-wrap {
    flex-flow: column;
  }
  .hollow-hero-12 .form-wrap .flex-wrap > span {
    width: 100%;
  }
  .hollow-hero-12 .wpcf7-form-control-wrap input,
  .hollow-hero-12 .wpcf7-form-control-wrap textarea {
    margin-bottom: 1rem;
  }
}

/*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%;
  background: transparent;
  color: #fff;
  font-size: .9rem;
  transform: translateX(-50%);
  border: none;
}
.hollow-hero-12 .button-wrap i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 1.2rem;
  margin-bottom: .25rem;
  cursor: pointer;
  transition: all .3s ease;
}
.hollow-hero-12 .button-wrap i:hover {
  background: var(--yellow);
}
.hollow-hero-12 .button-wrap p {
  font-size: .9rem;
  font-weight: 400;
  color: #fff;
}

/*============================ */
/* Action 11
============================== */
.hollow-action-11 {
  padding: 2rem 0;
  background: url(img/action-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.hollow-action-11 .flex-container {
  justify-content: center;
  align-items: center;
}
.hollow-action-11 h3 {
  color: #FFF;
  font-weight: 300;
  font-size: 1.75rem;
}
.hollow-action-11 h3 span {
  border-bottom: 2px solid var(--yellow);
  font-weight: 400;
  margin-right: .25rem;
  padding-bottom: .25rem;
}
.hollow-action-11 h3#phone {
  font-weight: 400;
  color: var(--yellow);
  padding: 0 1.5rem;
}
.hollow-action-11 a {
  color: #fff;
  border-color: #fff;
  background: transparent;
}
.hollow-action-11 a::before {
  background: var(--yellow);
}
@media only screen and (max-width: 991px) {
  .hollow-action-11 {
    background-attachment: unset;
  }
  .hollow-action-11 .flex-container {
    flex-flow: column;
  }
  .hollow-action-11 h3 {
    margin-bottom: 1rem;
  }
  .hollow-action-11 h3 span{
    border: none;
    padding: none;
    font-weight: 300;
  }
}


/*============================ */
/* Services
============================== */
.services {
  position: relative;
  overflow: hidden;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}
.services .service {
  flex-basis: 25%;
  height: 16rem;
  position: relative;
  overflow: hidden;
}
.services .service img {
  display: flex;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.services .service a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  transition: all .3s ease;
}
.services .service:hover a {
  background: rgba(0,0,0,0.8);
}
.services .service span {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .services .service:not(:last-of-type) {
    border-right: 2px solid white;
  }
}
@media only screen and (max-width: 767px) {
  .services .flex-container-fluid {
    flex-flow: column;
  }
  .services .service {
    border: none;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
  }
}


/*============================ */
/* Content 04
============================== */
.hollow-content-04 {
  padding: 4rem 0;
  background: url(img/util-bg-a.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.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 h1 {
  color: white;
  font-weight: 700;
  margin-bottom: .25rem;
}
.hollow-content-04 h3 {
  padding: .2rem 1rem;
  background: var(--yellow);
  color: var(--grey);
}
.hollow-content-04 p {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 400;
}
.hollow-content-04 p:last-of-type {
  margin-bottom: 2rem;
}
.hollow-content-04 a {
  color: var(--grey);
  border-color: var(--grey);
}
.hollow-content-04 a:before {
  background: var(--grey);
}
.hollow-content-04 img {
  flex-basis: 38%;
  display: flex;
  object-fit: cover;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .hollow-content-04 {
    background-attachment: unset;
  }
  .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: 1rem;
  }
  .hollow-content-04 p:last-of-type {
    margin-bottom: 1rem;
  }
}


/*============================ */
/* Affiliates
============================== */
.affiliates {
  padding: 2rem 0;
}
.affiliates .flex-container {
  align-items: center;
  justify-content: space-evenly;
}
@media only screen and (max-width: 767px) {
  .affiliates img {
    width: 20%;
  }
}



/*============================ */
/* Contact 02
============================== */
.hollow-contact-02 {
  padding: 4rem 0 6rem;
  background: url(img/util-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.hollow-contact-02 h2 {
  color: white;
  margin-bottom: .5rem;
  font-weight: 700;
}
.hollow-contact-02 p {
  font-size: 1.1rem;
  color: var(--grey);
  font-weight: 400;
}
.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 {
  line-height: 1.4;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--grey);
  background: var(--yellow);
  padding: .1rem 1rem;
}
.hollow-contact-02 textarea {
  font-family: 'Lato';
  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: #fff;
  border: 1px solid rgba(72,81,103,0.5);
  color: var(--grey);
  padding: .6rem;
  margin-bottom: 1rem;
  font-weight: 300;
  font-family: 'Lato';
}
.hollow-contact-02 textarea {
  margin: 0;
}
.hollow-contact-02 .wpcf7-form-control.wpcf7-submit {
  padding: .5rem 2rem;
  margin-top: 1rem;
  display: inline-flex;
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  background: var(--yellow);
  border: 2px solid #fff;
}
.hollow-contact-02 .wpcf7-form-control.wpcf7-submit:hover {
  background: var(--yellowDark);
}
@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:767px) {
  .hollow-contact-02 {
    padding: 2rem 0;
  }
  .hollow-contact-02 .map-wrap iframe {
    height: 350px;
  }
}


/*============================ */
/* Contact 09
============================== */
.hollow-contact-09 {
  position: relative;
  background: #fff;
  text-align: center;
  overflow: hidden;
  padding-top: 4rem;
  border-bottom: 5px solid #636363;
}
.hollow-contact-09 .flex-container {
  flex-direction: column;
  align-items: center;
}
.hollow-contact-09 .flex-container p {
  width: 70%;
  background: none;
  padding: 0;
}
.page-id-250 .hollow-contact-09 .flex-container p {
  width: 90%;
}
.hollow-contact-09 h1 {
  margin-bottom: 1rem;
  color: var(--yellow);
  font-weight: 400;
}
.hollow-contact-09 p {
  color: var(--grey);
  margin-bottom: 2rem;
  font-weight: 400;
  font-size: 1.3rem;
  background: var(--yellow);
  padding: .2rem 1rem;
}
.hollow-contact-09 .flex-container-fluid {
  justify-content: space-between;
}
.hollow-contact-09 .form-wrap {
  flex: 1;
  position: relative;
  padding: 1rem 2rem;
  background: #a1a1a1;
}
.hollow-contact-09 .form-wrap .wpcf7-form-control-wrap input,
.hollow-contact-09 .form-wrap .wpcf7-form-control-wrap textarea {
  font-family: 'Lato';
  font-size: 1rem;
  font-weight: 300;
  display: block;
  margin-bottom: 1rem;
  padding: .7rem 0 .4rem;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,1);
  background: transparent;
  color: #FFF;
}
.hollow-contact-09 .form-wrap .wpcf7 textarea {
  height: 8vw;
  max-height: 220px;
}
.hollow-contact-09 .form-wrap ::placeholder {
  font-weight: 300;
  line-height: 1;
  color: rgba(255,255,255,0.6);
}
.hollow-contact-09 .form-wrap input[type="submit"] {
  font-family: 'Lato';
  font-size: 1rem;
  padding: .5rem 2rem;
  font-weight: 400;
  border: 2px solid var(--grey);
  display: inline-block;
  position: relative;
  color: var(--grey);
  background: transparent;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.hollow-contact-09 .form-wrap input[type="submit"]:hover {
  background: var(--grey);
  color: #fff;
}
.hollow-contact-09 .side-content {
  flex: 1;
  position: relative;
  text-align: center;
}
.hollow-contact-09 .side-content span i {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: .5rem;
  color: var(--grey);
}
.hollow-contact-09 .side-content span i.fa-mobile-phone {
  font-size: 2.5rem;
}
.hollow-contact-09 .side-content .phone {
  display: block;
  position: relative;
}
.hollow-contact-09 .side-content .phone p {
  color: var(--grey);
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 1rem;
}
.hollow-contact-09 .address p {
  color: var(--grey);
  font-weight: 400;
  line-height: 1.6;
}
.hollow-contact-09 .fa-stack {
  height: 3rem;
  width: 3rem;
  font-size: 2rem;
}
.hollow-contact-09 .social .fa-stack-1x,
.hollow-contact-09 .social .fa-stack-2x {
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.hollow-contact-09 .social .fa-stack-1x {
  color: var(--yellow);
  font-size: 1.5rem;
}
.hollow-contact-09 .social .fa-stack-2x {
  color: #FFF;
  font-size: 3rem;
}
.hollow-contact-09 .social a:hover .fa-stack-1x {
    color: #FFF;
}
.hollow-contact-09 .social a:hover .fa-stack-2x {
  color: var(--yellow);
}
.hollow-contact-09::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.hollow-contact-09::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.hollow-contact-09:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.hollow-contact-09:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
@media (min-width: 992px) {
  .hollow-contact-09 .side-content {
    height: 18rem;
  }
  .hollow-contact-09 .side-content .phone,
  .hollow-contact-09 .address {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
  }
}
@media only screen and (max-width: 991px) {
  .hollow-contact-09 {
    padding: 3rem 0 2rem;
  }
  .hollow-contact-09 .flex-container-fluid {
    flex-flow: column;
  }
  .hollow-contact-09 .address,
  .hollow-contact-09 .side-content .phone {
    margin-bottom: 2rem;
  }
  .hollow-contact-09 .form-wrap {
    margin: 0 3rem 2rem;
    display: inline-block;
    order: 2;
    width: 65%;
    align-self: center;
  }
  .hollow-contact-09 .side-content {
    align-self: center;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-contact-09 {
    padding: 2rem 0 1rem;
  }
  .hollow-contact-09 .flex-container p {
    width: 100%;
  }
  .hollow-contact-09 .form-wrap {
    margin: 0 3rem 1rem;
    width: 90%;
  }
  .hollow-contact-09 .form-wrap .wpcf7 textarea {
    height: 30vw;
  }
  .hollow-contact-09 .side-content .address p,
  .hollow-contact-09 .side-content .phone p {
    margin-bottom: 1rem;
  } 
  .hollow-contact-09 .side-content .address,
  .hollow-contact-09 .side-content .phone {
    margin-bottom: 1rem;
  }
}

/*============================ */
/* Contact 01
============================== */
.hollow-contact-01 {
  position: relative;
  overflow: hidden;
}
.hollow-contact-01 iframe {
  width: 100%;
  height: 50vh;
  pointer-events: none;
}
.hollow-contact-01 iframe.clicked {
  pointer-events: auto;
}
.hollow-contact-01 .card {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFF;
  padding: 1rem;
  transition: all .3s ease;
  display: none;
}
.hollow-contact-01 .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: .25rem;
}
.hollow-contact-01 h1 {
  color: #8a8989;
  padding-right: 4rem;
}
.hollow-contact-01 .card a {
  padding: .5rem 1rem;
  color: #8a8989;
  border: 1px solid #8a8989;
  transition: all .3s ease;
}
.hollow-contact-01 .card a:hover {
  background: #8a8989;
  border-color: #8a8989;
  color: #FFF;
}
.hollow-contact-01 ul li {
  color: #8a8989;
  line-height: 1.75rem;
  font-weight: 300;
  font-size: 1.1rem;
}
@media only screen and (min-width: 992px) {
  .hollow-contact-01 .card {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  .hollow-contact-01 .card:hover {
    transform: translateY(-53%);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  }
}
@media only screen and (max-width: 991px) {
  .hollow-contact-01 {
    display: flex-reverse;
    flex-direction: column;
  }
  .hollow-contact-01 .card {
    display: flex;
    align-items: initial;
  }
}

.hollow-web-design-01 {
  display:block;
  background: whitesmoke;
}
.hollow-web-design-01 .top-half {
  padding:3rem 0 0;
}
.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:var(--yellow);;
  text-align:center;
  font-size: 1.35rem;
  font-weight: 400;
  text-transform: none;
  line-height: 24px;
  letter-spacing: 0px;
  margin:0 12rem 1rem;  
}
.hollow-web-design-01 .top-half p {
  font-size:1rem;
  color:var(--grey);
  font-weight:500;
  width:75%;
  margin:0 auto 1rem;
}
.hollow-web-design-01 .bottom-half {
  padding:2rem 0 2rem;
}
.hollow-web-design-01 .bottom-half .form-wrap {
  width:50%;
  margin:0 auto;
  text-align: -webkit-center;
}
.hollow-web-design-01 .bottom-half .form-wrap input:not([type="submit"]),
.hollow-web-design-01 .bottom-half .form-wrap textarea {
  font-family: 'Lato';
  font-size: 1rem;
  font-weight: 300;
  display: block;
  margin-bottom: 1rem;
  padding: .7rem 0 .4rem;
  border: none;
  border-bottom: 1px solid var(--grey);
  background: transparent;
  color: var(--grey);
}
.hollow-web-design-01 .bottom-half .form-wrap textarea { height:9em; }
.hollow-web-design-01 .bottom-half .form-wrap textarea::placeholder { color:var(--grey); }
.hollow-web-design-01 .bottom-half .form-wrap input[type="submit"] {
  font-family: 'Lato';
  font-size: 1rem;
  padding: .5rem 2rem;
  font-weight: 400;
  border: 2px solid var(--grey);
  display: inline-block;
  position: relative;
  color: var(--grey);
  background: transparent;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.page-id-330 .wpcf7-spinner{
	display: none;
}
@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: url(img/action-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.hollow-footer-04 .main .flex-container {
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
}
.hollow-footer-04 img {
  margin-bottom: .5rem;
}
.hollow-footer-04 h3 {
  color: #FFF;
  font-weight: 300;
}
.hollow-footer-04 .social {
  border-top: 2px dotted #FFF;
}
.hollow-footer-04 a {
  padding: .5rem;
}
.hollow-footer-04 a i {
  color: #FFF;
  transition: all .3s ease;
}
.hollow-footer-04 a i:hover {
  color: var(--yellow);
}
.hollow-footer-04 .meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  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 1.5rem;
}
.hollow-footer-04 .meta span a {
  color: #FFF;
  transition: all .3s ease;
}
.hollow-footer-04 .meta span a:hover {
  color: var(--yellow);
}
.hollow-footer-04 .meta i.top {
  position: absolute;
  margin-right: 1rem;
  right: 0;
  top: 0;
  color: #FFF;
  padding: .5rem;
  opacity: 0.5;
  background: var(--yellow);
  cursor: pointer;
  transition: all .3s ease;
}
.hollow-footer-04 .meta i.top:hover {
  opacity: 1;
}
@media 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*/

.interior-page {
  margin-bottom: -1rem;
}

/*============================ */
/* Hero 07
============================== */
.interior-hero-07 {
  position: relative;
  overflow: hidden;
  padding: 12rem 0 4rem;
  border-bottom: 2px solid #fff;
}

/*Slider*/
.interior-hero-07 .img-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  visibility: hidden;
}
.interior-hero-07 .img-slider.slick-initialized {
  visibility: visible;
}
.interior-hero-07 .img-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(87, 87, 87, 0.62);
}
.interior-hero-07 .img-slider .slick-list {
  height: 100%;
} 
.interior-hero-07 .img-slider .slick-track {
  height: 100%;
}
.interior-hero-07 .img-slider img {
  object-fit: cover;
  height: 100%;
}

/*Content*/
.interior-hero-07 .flex-container {
  align-items: center;
}
.interior-hero-07 .caption {
  position: relative;
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.interior-hero-07 .caption h1 {
  color: #FFF;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 3.5rem;
}
.interior-hero-07 .caption p {
  color: #FFF;
  margin-bottom: 2rem;
  font-weight: 400;
  font-size: 1.1rem;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .interior-hero-07 .caption {
    margin-right: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .interior-hero-07 .caption {
    padding-right: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .interior-hero-07 {
    padding: 4rem 0;
  }
  .interior-hero-07 .flex-container {
    flex-direction: column;
  }
  .interior-hero-07 .caption {
    margin-top: 2rem;
    text-align: center;
    align-items: center;
  }
  .interior-hero-07 .caption p {
    width: 90vw;
  }
}

.interior-content-01 {
  padding: 4rem 0;
  text-align: center;
  background: url(img/util-bg-a.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-top: 2px solid #fff;
}
.interior-content-01 h1 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
}
.interior-content-01 hr {
  width: 10%;
  margin: 1rem auto 2rem;
  border: 2px solid var(--yellow);
}
.interior-content-01 h4 {
   color: var(--grey);
   margin-bottom: 1rem;
   line-height: 1.4;
   font-weight: 700;
}
.interior-content-01 p {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  .interior-content-01 {
    background-attachment: unset;
  }
}
@media only screen and (max-width: 767px) {
  .interior-content-01 {
    padding: 2rem 0;
  }
  .interior-content-01 p {
    margin-bottom: 1rem;
  }
}

/*============================ */
/* Content 04
============================== */
.interior-content-04 {
  padding: 4rem 0;
}
.interior-content-04 .flex-container {
  align-items: center;
  justify-content: space-between;
}
.interior-content-04 .text-wrap {
  flex-basis: 58%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.interior-content-04 h1 {
  color: #a1a1a1;
  font-weight: 700;
  margin-bottom: .25rem;
}
.interior-content-04 h3 {
  color: var(--grey);
  background: var(--yellow);
  padding: .2rem .5rem;
  margin-bottom: 1rem;
}
.interior-content-04 p {
  color: grey;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 400;
}
.interior-content-04 img {
  flex-basis: 38%;
  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: 48%;
  }
}
@media only screen and (max-width: 767px) {
  .interior-content-04 {
    padding: 2rem 0;
  }
  .interior-content-04 .flex-container {
    flex-direction: column;
  }
  .interior-content-04 .flex-container > * {
    width: 100%;
  }
  .interior-content-04 .text-wrap {
    margin-bottom: 1rem;
  }
  .interior-content-04 p:last-of-type {
    margin-bottom: 1rem;
  }
}


.interior-career {
  padding: 4rem 0;
}
.interior-career .wpcf7-apply-form-header h1 {
    color: #36352a;
    text-transform: uppercase;
    padding: 15px;
    font-size: 1em;
    margin: 0px;
}
.interior-career .wpcf7- {
    color: #252525;
    padding-bottom: 15px;
    width: 100%;
    font-size: 15px;
    line-height: 30px;
}
.interior-career .wpcf7-apply-form p {
  margin-bottom: 0;
  margin-top: .7rem;
}
.interior-career .wpcf7-apply-form input,
.interior-career .wpcf7-apply-form textarea {
  padding: 10px;
  width: 100%;
  border: transparent;
  border-bottom: 1px solid;
  display: block;
  transition: border-color 0.5s;
  -webkit-transition: border-color 0.5s;
  background: #fff;
  color: #333;
  font-size: 16px;
}
.interior-career .wpcf7-apply-form input[type="text"],
.interior-career .wpcf7-apply-form input[type="email"],
.interior-career .wpcf7-apply-form textarea {
    font-size: 16px;
}
.interior-career .wpcf7-apply-form textarea {
    height: 216px;
}
.interior-career .wpcf7-apply-form input:focus,
.interior-career .wpcf7-apply-form textarea:focus {
    border-color: var(--yellow);
}
.interior-career .wpcf7-apply-form span.wpcf7-form-control-wrap {
    display: block;
    font-size: 20px;
    margin-bottom: .7rem;
}
.interior-career .wpcf7-apply-form .contact-captcha > img {
    height: 62px;
    width: 174px;
    float: left;
    margin-right: 15px;
}
.interior-career .wpcf7-apply-form .contact-captcha > span {
    overflow: auto;
}
.interior-career .wpcf7-apply-form .contact-captcha > span > input {
    width: 100%;
}
.interior-career .wpcf7-apply-form img.ajax-loader {
    display: inline-block;
}
.interior-career .wpcf7-apply-form .submit-wrapper {
    text-align: right;
    margin-top: 20px;
}
.interior-career .wpcf7-apply-form .submit-wrapper input {
    width: auto;
    display: inline-block;
    background: transparent;
    transition: background 0.5s, color 0.5s;
    -webkit-transition: background 0.5s, color 0.5s;
    padding: 10px 30px;
    color: var(--grey);
    background: transparent;
    border: 2px solid var(--grey);
    transition: background 0.25s;
    font-size: 18px;
}
.interior-career .wpcf7-apply-form .submit-wrapper input:hover {
    background: var(--grey);
    color: #fff;
}
.interior-career .wpcf7-apply-form input[type="text"]::-webkit-input-placeholder, .wpcf7-apply-form input[type="email"]::-webkit-input-placeholder {
    color: #999999;
}
.wpcf7-apply-form ::-webkit-input-placeholder {
    color: #999999;
}
.wpcf7-apply-form :-moz-placeholder {
    color: #999999;
}
.wpcf7-apply-form ::-moz-placeholder {
    color: #999999;
}
.wpcf7-apply-form :-ms-input-placeholder {
    color: #999999;
}

/*============================ */
/* Careers Form v2
============================== */
.interior-career .form-wrap {
  width: 55vw;
  margin: 0 auto;
  border: 1px solid #0000001f;
  padding: 3rem 2rem 2rem;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.29);
  max-width: 100%;
}
.interior-career .form-wrap .group-wrap:first-of-type {
  margin-bottom: 3rem;
}
.interior-career .form-wrap .group-wrap {
  /* border: 2px solid #7C0018; */
  padding: 1rem 1.5rem 1rem 0.5rem;
  position: relative;
}
.interior-career .form-wrap .wpcf7-apply-form p {
  margin: 1rem 0 .8rem .5rem;
  color: grey;
  font-size: 1rem;
  font-weight: 400;
}
.interior-career .form-wrap .min-header {
  display: inline-block;
}
.interior-career .form-wrap .min-header h3 {
  color: var(--yellow);
  /* text-transform: uppercase; */
  /* padding: 15px; */
  font-size: 1.5rem;
  margin: 0px;
  /* margin: 0 3rem 0rem; */
  position: absolute;
  display: block;
  /* background: #fff; */
  top: -30px;
}
@media only screen and (max-width: 991px) {
  .interior-career .form-wrap {
    width: 90vw;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .interior-career {
    padding: 2rem 0;
  }
  .interior-career .form-wrap {
    padding: 1rem;
  }
  .interior-career .form-wrap .min-header h3 {
    font-size: 1.2rem;
    margin: 0 1rem 1rem;
    position: relative;
    top: unset;
    text-transform: capitalize;
    background: transparent;
  }
  .interior-career .form-wrap .group-wrap {
    padding: 1rem .5rem;
  }
  .interior-career .wpcf7-apply-form .submit-wrapper {
    margin-top: 0;
  }
  .interior-career .wpcf7-apply-form .submit-wrapper input {
    padding: .5rem 1rem;
    font-size: 14px;
  }
  .interior-career .form-wrap .group-wrap:first-of-type {
    margin-bottom: -2px;
  }
}
@media only screen and (max-width: 425px) {
  .interior-career .form-wrap .min-header h3 {
    font-size: 1.5rem;
    margin: 0rem;
    padding: 0 .5rem .5rem;
  }
  .interior-career .form-wrap .wpcf7-apply-form p {
    font-size: 1.1rem;
    font-weight: 400;
  }
  .interior-career .wpcf7-apply-form input[type="text"], 
  .interior-career .wpcf7-apply-form input[type="email"] {
    font-size: 14px;
  }
}
/*============================ */
/* Action 01
============================== */
.hollow-action-01 {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  text-align: center;
  background: url(img/util-bg-a.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-bottom: 2px solid #fff;
}
.hollow-action-01 .flex-container {
  align-items: center;
}
.hollow-action-01 h1 {
  color: #FFF;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hollow-action-01 p {
  color: #FFF;
  margin-bottom: 2rem;
  max-width: 70vw;
  font-weight: 400;
  font-size: 1.1rem;
}
.hollow-action-01 a {
  color: var(--grey);
  border-color: var(--yellow);
  background: var(--yellow);
}
.hollow-action-01 a::before {
  background: var(--yellowDark);
}
@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;
  }
}

.content.seo {
  background: url(img/action-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.content.seo p a:hover {
  color: var(--yellow);
}
@media only screen and (max-width: 991px) {
  .content.seo {
    background-attachment: unset;
  }
}
/*============================ */
/* Main Revisions
============================== */
span.nowrap {
  white-space: nowrap;
}
span.nowrap a, span.num-span a,
.hollow-action-11 h3#phone a,
.hollow-contact-01 .content-wrap .info-wrap .text-wrap p a {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  background: inherit;
}
.interior-contact-03 .contact-03-meta li {
  margin: 0 1rem;
  line-height: 1.5;
}
input, textarea {
  outline: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}
input[type="checkbox"] {
  -webkit-appearance: checkbox;
}
/*============================ */
/* Additional Revisions
============================== */
#fancybox-title {
  display: none!important;
}
.page-template-page-contact .hollow-contact-01 .card {
  display: none;
}
.hollow-header-02.sticky {
  box-shadow: 0 2px 5px -2px #000;
}
.hollow-header-06 .menu-item-has-children .menu-item.open > a, 
.hollow-header-06 .menu-item-has-children .menu-item:hover > a, 
.hollow-header-06 .menu-item-has-children .menu-item.active > a, 
.hollow-header-06 .menu-item-has-children .menu-item.active:hover > a {
  background: var(--yellowDark);
}
.hollow-contact-09 .form-wrap ::placeholder {
  color: #fff;
  font-weight: 400;
}
.interior-career .wpcf7-apply-form .submit-wrapper input {
  cursor: pointer;
}
.hollow-footer-04 h3 {
  text-align: center;
}
/*============================ */
/* 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) {
  .hollow-header-06 nav a {
    /*text-transform: capitalize;*/
    /*padding: 0.3rem 0.5rem;*/
    /*font-size: 0.9rem;*/
  }
  .nextgen_pro_thumbnail_grid .image-wrapper {
    max-height: 195px;
  }
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
  .nextgen_pro_thumbnail_grid .image-wrapper {
    max-height: 230px;
  }
}
@media only screen and (max-width: 991px) {
  body:not(.home) .hollow-header-06 .logo {
    display: none;
  }
  .interior-page {
    margin-top: 2rem;
  }
  .hollow-header-06 nav .menu-item.active a,
  .hollow-header-06 nav .menu-item a:hover {
    background: var(--yellow);
  }
  .hollow-header-06 nav .menu-item-has-children ul li.active a,
  .hollow-header-06 nav .menu-item-has-children ul li:hover a {
    background: var(--yellowDark);
  }
  .hollow-header-06 button#mobile {
    cursor: pointer;
  }
  .hollow-header-06 .mobile-toolbar .icon-wrap *:hover {
    color: var(--yellowDark);
  }
  .interior-career .form-wrap {
    /*width: 80vw;*/
  }
}
@media only screen and (max-width: 767px) {
  .page-template-page-contact .interior-header-img-01 {
    display: none;
  }
  .interior-contact-03 .contact-03-meta ul {
    margin-bottom: 1rem;
  }
}