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

  --red: #831324;
  --redDark: #6B0F21;
  --blue: #56a4c3;
  --blueLight: #87ddff;

  --play: 'Playfair Display', serif;
  --oswald: 'Oswald', sans-serif;
}


/*============================ */
/* BASE RESETS
============================== */
h1,h2 {
  font-family: var(--play);
}
p {
  font-size: 1.1rem;
  font-weight: 400;
}
a.main-btn {
  position: relative;
  text-transform: uppercase;
  padding: 1rem 0;
}
a.main-btn hr {
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  border: none;
  height: 2px;
  background: grey;
  transform: translateX(-50%);
  width: 20%;
  transition: all .3s ease;
}
a.main-btn:hover hr {
  width: 100%;
}

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

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

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

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

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

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

/*Cap Slider*/
.hollow-hero-02 .cap-slider {
  width: 50%;
  visibility: hidden;
}
.hollow-hero-02 .cap-slider.slick-initialized {
  visibility: visible;
}
.hollow-hero-02 .cap-slider .slick-track {
  display: flex;
  align-items: center;
}
.hollow-hero-02 .caption {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.hollow-hero-02 h1 {
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
  opacity: 0;
}
.hollow-hero-02 .caption.animating h1 {
  animation: textIn .5s linear forwards;
}
.hollow-hero-02 h3 {
  color: #fff;
  margin-bottom: 1rem;
  opacity: 0;
}
.hollow-hero-02 .caption.animating h3 {
  animation: textIn .5s .1s linear forwards;
  
}
.hollow-hero-02 p {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #fff;
  opacity: 0;
}
.hollow-hero-02 .caption.animating p {
  animation: textIn .5s .2s linear forwards;
  }
.hollow-hero-02 a.main-btn {
  color: white;
  opacity: 0;
}
.hollow-hero-02 a.main-btn hr {
  background: white;
}
.hollow-hero-02 .caption.animating a.main-btn {
  animation: textIn .5s .3s linear forwards;
}
/*Img Slider*/
.hollow-hero-02 .img-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
}
.hollow-hero-02 .img-slider:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}
.hollow-hero-02 .img-slider.slick-initialized {
  visibility: visible;
}
.hollow-hero-02 .img-slider .slick-list,
.hollow-hero-02 .img-slider .slick-track {
  height: 100%;
}
.hollow-hero-02 .img-slider img {
  width: 100%;
  display: flex;
  min-height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hollow-hero-02 .img-slider img.animating {
  animation: pan 10s linear forwards;
}
.hollow-hero-02 .img-slider .slick-dots {
  position: relative;
  bottom: 1.5rem;
  display: flex;
  justify-content: center;
  z-index: 1;
}
.hollow-hero-02 .img-slider .slick-dots li button:before {
  color: #fff;
  width: 25px;
  height: 25px;
}
.hollow-hero-02 .img-slider .slick-dots li.slick-active button:before {
  border-top: 2px solid #fff;
  opacity: 1;
}

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

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

/*============================ */
/* Section Header
============================== */
.section-header {
  flex-flow: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}
.section-header h2 {
  font-family: var(--play);
  color: var(--red);
  font-weight: 600;
}
.section-header h3 {
  color: grey;
  display: flex;
  align-items: center;
  width: 300px;
}
.section-header h3 hr {
  border: none;
  margin: 0;
  padding: 0;
  height: 2px;
  flex: 1;
  background: var(--red);
}
.section-header h3 span {
  padding: 1rem; 
}
@media only screen and (max-width: 767px) {
  .section-header {
    padding: 2rem 0 1rem;
  }
}
/*============================ */
/* Action 11
============================== */
.hollow-action-11 {
  padding: 1rem 0;
  background: var(--red);
}
.hollow-action-11 .flex-container {
  justify-content: center;
  align-items: center;
}
.hollow-action-11 h3 {
  color: #FFF;
  font-weight: 300;
  font-size: 1.75rem;
  text-align: center;
  font-family: Oswald;
}
.hollow-action-11 h3 span {
  font-weight: 400;
  margin-right: .25rem;
  padding-bottom: .25rem;
}
.hollow-action-11 h3#phone a {
  font-weight: 400;
  color: var(--blueLight);
  padding: 0 1.5rem;
  transition: all .3s ease;
}
.hollow-action-11 h3#phone a:hover {
  color: #fff;
  border: none;
}
.hollow-action-11 a {
  color: #fff;
  border-color: #fff;
  background: transparent;
}
.hollow-action-11 a::before {
  background: #9209B2;
}
@media only screen and (max-width: 991px) {
  .hollow-action-11 .flex-container {
    flex-flow: column;
  }
  .hollow-action-11 h3 {
    margin-bottom: 1rem;
  }
  .hollow-action-11 h3 span {
    border: none;
    padding: none;
    font-weight: 300;
  }
}

/*============================ */
/* Home Content
============================== */
.home-content {
  padding: 2rem 0 3rem;
  background: whitesmoke;
}
.home-content_container {
  flex-flow: column;
}
.home-content_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: whitesmoke;
  margin-bottom: 2rem;
}
.home-content_text img {
  max-width: 140px;
  margin-right: 2rem; 
}
.home-content_text h3 {
  margin-bottom: 1rem;
  font-family: var(--oswald);
  color: var(--red);
}
.home-content p {
  
}
.home-content_images {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.home-content_images figure {
  display: flex;
  flex-flow: column;
  width: 31%;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 2px 2px rgba(0,0,0,0.16);
}
.home-content_images figure img {
  display: flex;
  object-fit: cover;
  width: 100%;
}
.home-content_images figcaption {
  padding: 1rem;
  display: flex;
  align-items: center;
  flex-flow: column;
  text-align: center;
  background: white;
}
.home-content_images figcaption h3 {
  color: var(--red);
  font-family: var(--oswald);
}
.home-content_images figcaption p {
  color: grey;
}
.home-content_button-container {
  justify-content: center;
}
@media (max-width: 767px) {
  .home-content {
    padding: 0;
  }
  .home-content_text {
    margin-bottom: 1rem;
  }
  .home-content_text img {
    display: none;
  }
  .home-content_images {
    margin-top: 0;
    flex-flow: column;
  }
  .home-content figure {
    width: 100%;
  }
}
/*============================ */
/* Affiliates
============================== */
.affiliates {
  padding: 4rem 0
}
.affiliates-container {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 2rem;
  align-items: center;
}
.affiliates img {
  transition: all .3s ease;
  filter: grayscale(100%);
  width: 100%;
}
.affiliates img:hover {
  filter: none;
}
@media (max-width: 767px) {
  .affiliates {
    padding: 2rem 0;
  }
  .affiliates img {
    width: 80%;
    margin: 0 auto;
    filter: grayscale(0);
  }
}

/*============================ */
/* Action 01
============================== */
.hollow-action-01 {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  text-align: center;
  background: var(--red);
}
.hollow-action-01 .flex-container {
  align-items: center;
}
.hollow-action-01 h1 {
  color: #FFF;
  margin-bottom: 1.5rem;
}
.hollow-action-01 p {
  color: #FFF;
  margin-bottom: 2rem;
  max-width: 50vw;
}
.hollow-action-01 img {
  max-width: 90%;
}
.hollow-action-01 a.main-btn {
  color: white;
}
.hollow-action-01 a.main-btn hr {
  background: white;
}
@media screen and (max-width:767px) {
  .hollow-action-01 {
    padding: 2rem 0;
  }
  .hollow-action-01 p {
    max-width: 90vw;
  }
}

/*============================ */
/* Contact 02
============================== */
.hollow-contact-02 {
  padding: 3rem 0 6rem;
}
.hollow-contact-02 h2 {
  color: var(--red);
  font-weight: 600;
  margin-bottom: .5rem;
}
.hollow-contact-02 p {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}
.hollow-contact-02 .grid-container {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
}
.hollow-contact-02 .grid-item {
  align-items: start;
}
.page-template-page-contact .hollow-contact-02 .location {
  align-self: flex-end;
  margin-bottom: 1rem;
}
.hollow-contact-02 .map-wrap iframe {
  height: 100%;
  width: 100%;
  pointer-events: none;
}
.hollow-contact-02 .map-wrap iframe.clicked {
  pointer-events: auto;
}
.hollow-contact-02 ul li {
  color: #333;
  line-height: 1.4;
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0;
}
.hollow-contact-02 .your-email {
  float: left;
  width: 50%;
  padding-right: 15px;
  z-index: 5;
}
.hollow-contact-02 .your-phone {
  float: left;
  width: 50%;
  z-index: 10;
}
.hollow-contact-02 .form-wrap {
  position: relative;
}
.hollow-contact-02 input:not([type="submit"]),
.hollow-contact-02 textarea {
  font-size: 1rem;
  width: 100%;
  background: #EFEFEF;
  border: 1px solid rgba(72,81,103,0.5);
  color: var(--red);
  padding: .4rem .7rem;
  margin-bottom: 1rem;
  font-weight: 300;
}
.hollow-contact-02 textarea {
  z-index: 0;
  height: 15rem;
  max-height: 215px;
  margin: 0;
}
.hollow-contact-02 .wpcf7-form-control.wpcf7-submit {
  background: var(--red);
  border: none;
  padding: .5rem 1.5rem;
  margin: 1rem 0 0;
  color: #FFF;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 300;
  width: unset;
  transition: .3s ease;
}
.hollow-contact-02 .wpcf7-form-control.wpcf7-submit:hover {
  background: var(--redDark);
}
@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;
  }
  .page-template-page-contact .hollow-contact-02 {
    padding-top: 3rem;
  }
  .hollow-contact-02 .map-wrap iframe {
    height: 350px;
  }
  .hollow-contact-02 input:not([type="submit"]),
  .hollow-contact-02 textarea {
    font-size: 1.3rem;
    font-weight: 400;
  }
  .hollow-contact-02 ul li {
    font-size: 1.3rem;
  }
}

/*============================ */
/* Footer 04
============================== */
.hollow-footer-04 {
  position: relative;
  overflow: hidden;
  background: #252525;
}
.hollow-footer-04 .main .flex-container {
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.hollow-footer-04 .footer-text {
  display: flex;
  flex-flow: column;
  border-right: 1px solid white;
  padding: 2rem;
}
.hollow-footer-04 .footer-text p {
  color: white;
  display: flex;
  align-items: center;
}
.hollow-footer-04 .footer-text i {
  margin-right: .5rem;
  color: var(--blueLight);
}
.hollow-footer-04 .footer-text p strong {
  margin-right: .5rem;
}
.hollow-footer-04 img {
  margin-bottom: .5rem;
  max-width: 90%;
  margin-bottom: 1rem;
  width: 300px;
}
.hollow-footer-04 h3 {
  color: white;
  font-weight: 300;
  text-align: center;
}
.hollow-footer-04 ul.hours {
  display: flex;
  flex-flow: column;
  color: white;
  padding: 2rem;
}
.hollow-footer-04 ul.hours li strong {
  margin-right: .5rem;
}
.hollow-footer-04 ul.hours li:last-of-type {
  font-size: 0.8rem;
}
.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(--red);
}

/* Meta */
.hollow-footer-04 .meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  padding: 1rem 0;
}
.hollow-footer-04 .meta .flex-container {
  justify-content: space-between;
  align-items: center;
}
.hollow-footer-04 .meta span {
  color: #FFF;
  font-weight: 300;
  padding: 0 2rem;
}
.hollow-footer-04 .meta span a {
  color: #FFF;
  transition: all .3s ease;
}
.hollow-footer-04 .meta span a:hover {
  color: var(--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: 767px) {
  .hollow-footer-04 img {
    max-width: 90%;
  }
  .hollow-footer-04 .main .flex-container {
    flex-flow: column;
  }
  .hollow-footer-04 ul.hours {
    padding: 0;
    width: 80%;
  }
  .hollow-footer-04 .footer-text {
    border: none;
  }
  .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(--red);
}
.search-form-wrap button:hover {
  /*background: var(--defaultMainDark);*/
  background: var(--redDark);
}
/*Blog Page*/
.blog-wrap .post-item-header h1 {
  background: var(--red);
}
.blog-wrap .post-item .post-item-header h1:hover {
  /*background: var(--defaultMainDark);*/
  background: var(--redDark);
}
.blog-wrap .post-item .post-content a {
  background: var(--red);
}
.blog-wrap .post-item .post-content a:hover {
  /*background: var(--defaultMainDark);*/
  background: var(--redDark);
}
.blog-wrap .post-item p {
  border-color: var(--red);
}
.blog-wrap .post-item .date-wrap i {
  color: var(--red);
}
/*Sidebars*/
.blog-sidebar {
  border-color: var(--red);
}
.blog-sidebar .post-item-header h2 {
  background: var(--red);
}
/*Post Content*/
.blog-post-content h1 {
  color: var(--red);
}
.blog-post-content h2 {
  /*color: var(--defaultMainDark);*/
  color: var(--redDark);
}
.blog-post-content h3 {
  color: var(--red);
}
.blog-post-content p a {
  color: var(--red);
}
.blog-post-content p a:hover {
  /*color: var(--defaultMainDark);*/
  color: var(--redDark);
}
/*Post Return Button*/
.blog-return a.blog-return-btn {
  background: var(--red);
}
.blog-return a.blog-return-btn:hover {
  /*background: var(--defaultMainDark);*/
  background: var(--redDark);
}
/*============================ */
/* DEFAULT POPUP STYLES:
============================== */
.default-popup .form-wrap {
  background: #fff;
}
.default-popup .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.default-popup .content h2 {
  color: black;
  font-family: var(--play);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.default-popup .content h3 {
  color: black;
  font-family: var(--play);
  font-size: 2.25rem;
  margin-bottom: 0.7rem;
  /*line-height: .5;*/
  /*text-transform: uppercase;*/
  text-align: center;
}
.default-popup .content p {
  color: black;
  line-height: 1.4;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 400;
}
.default-popup .content ul {
  display: flex;
  justify-content: space-between;
}
.default-popup .content ul li {
  color: black;
  line-height: 1.4;
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0;
  /*margin-right: 1.5rem;*/
  font-family: var(--play);
}
.default-popup .content ul li i {
  padding-right: .25rem;
  color: var(--red);
}
.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: black;
}
.default-popup .wpcf7-form input[type="submit"] {
  background: var(--red);
}
.default-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--redDark);
}
.default-popup .loader-wrap {
  background: grey;
}
.default-popup .button-wrap i {
  background: grey;
}
.default-popup .form-wrap .close {
  background: var(--red);
}
.default-popup .form-wrap .close:hover {
  background: var(--redDark);
}
/*============================ */
/* DEFAULT POPUP V2 STYLES:
============================== */
.default-popup .form-wrap {
  width: 70%;
}
.default-popup .form-wrap .content  h3 {
  margin-bottom: .5rem;
}
.default-popup .form-wrap .content  h4 {
  margin-bottom: .5rem;
  padding: .2rem .7rem;
}
.default-popup .location {
  width: 85%;
}
.default-popup .location ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.default-popup .location li {
  display: flex;
  margin-bottom: .5rem;
  width: 50%;
  font-weight: 400;
  justify-content: center;
}
.default-popup .location li i {
  align-self: flex-start;
  padding: .3rem .7rem 0 0;
  color: red;
}
@media only screen and (max-width: 767px) {
  .default-popup .form-wrap {
    width: 95%;
  }
  .default-popup .content {
    align-items: flex-start;
  }
  .default-popup .form-wrap .content h2 {
    display: none;
  }
  .default-popup .form-wrap .content h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
  .default-popup .content p {
    display: none;
  }
  .default-popup .location li {
    width: 100%;
    justify-content: flex-start;
  }
}
/*============================ */
/* DEFAULT SEO STYLES:
============================== */
.content.seo {
  background: var(--red);
}
.content.seo i {
  color: #fff;
}
.content.seo p a:hover {
  color: grey;
}
/*============================ */
/* DEFAULT INTERIOR PLACEHOLDERS
============================== */
.interior-placeholder-header {
  /*border-color: var(--defaultMainDark);*/
  border-color: var(--redDark);
  background: var(--red);
}
.interior-placeholder-header h1 {
  color: #FFF;
}


/*============================ */
/* Interior Page Settings
============================== */
/*Header*/
.interior-header {
  padding: 6rem 2rem;
  background: var(--redDark);
  background: url(img/interior-header-bg.jpg) no-repeat center/cover;
}
.interior-header_container {
  flex-flow: column;
  align-items: center;
  text-align: center;
}
.interior-header h1 {
  color: white;
  margin-bottom: 1rem;
}
.interior-header h2 {
  color: white;
  font-family: 'Open Sans';
  max-width: 600px;
  font-size: 1.5rem;
}

/* Content */
.interior-content {
  padding: 2rem 0 1rem;
}
.interior-content_container {
  flex-flow: column;
}
.interior-content_block {
  display: flex;
  flex-flow: column;
  margin-bottom: 1rem;
}
.interior-content_block img {
  margin-bottom: 1rem;
  display: flex;
  object-fit: cover;
  width: 100%;
}
.interior-content_block h3 {
  color: var(--red);
  margin-bottom: 1rem;
}
.interior-content_block p {
  color: grey;
  font-weight: 400;
  font-size: 1.1rem;
}
ul.interior-content_list {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));*/
  grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
  grid-gap: 2rem;
  background: whitesmoke;
  padding: 2rem;
  margin-top: 2rem;
}
ul.interior-content_list li {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  box-shadow: 0 2px 2px rgba(0,0,0,0.16);
  padding: 1rem;
  background: white;
}
ul.interior-content_list li h4 {
  color: var(--red);
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-family: Oswald;
  font-size: 1.5rem;
  font-weight: 600;
}
ul.interior-content_list li h4 i {
  margin-right: 1rem;
  font-size: 2rem;
  color: var(--blue);
}
.page .affiliates {
  background: whitesmoke;
}
@media only screen and (max-width: 767px) {
  .interior-content {
    padding: 2rem 0 0rem;
  }
  .page-id-275 .interior-content {
    padding: 1rem 0;
  }
  ul.interior-content_list {
    padding: 1rem;
    grid-gap: 1rem;
    margin-top: 1rem;
  }
}

/*============================ */
/* Spider Gallery
============================== */
.spider-gallery {
  padding: 2rem 0 4rem;
  background: whitesmoke;
}
.spider-gallery_container {
  flex-flow: column;
}
/*Spider Tabs*/
.spider-gallery_tabs {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.spider-gallery_tabs li {
  position: relative;
  display: inline-flex;
  padding-bottom: .5rem;
  margin-right: 2rem;
}
.spider-gallery_tabs li a {
  color: var(--blue);
}
.spider-gallery_tabs li hr {
  position: absolute;
  bottom: .25rem;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  margin: 0;
  padding: 0;
  width: 0;
  height: 1px;
  background: var(--blue);
  transition: all .3s ease;
}
.spider-gallery_tabs li:hover hr,
.spider-gallery_tabs li.active hr {
  width: 100%;
}

/*Spider Panels*/
.spider-gallery_panels {
}
.spider-gallery_panel {
  display: none;
  /*grid-template-columns: repeat(auto-fill, minmax(450px,1fr));*/
  grid-template-columns: repeat(auto-fill, minmax(24rem,1fr));
  grid-gap: 2rem;
}
.spider-gallery_panel.active {
  display: grid;
}
.spider-gallery_panel-child {
  position: relative;
  overflow: hidden;
  opacity: 0;
  box-shadow: 0 2px 2px rgba(0,0,0,0.16);
}
.spider-gallery_panel-child.fadeIn {
  animation: fadeIn .5s ease 1 forwards;
}
.spider-gallery_panel-child img {
  transition: all .3s ease;
  display: flex;
  object-fit: cover;
  width: 100%;
  height: 14rem;
}
/*.spider-gallery_panel-child:hover img {
  transform: scale(0.9);
}*/
.spider-gallery_panel figcaption {
  padding: 1rem;
  background: white;
}
.spider-gallery_panel figcaption h4 {
  color: var(--red);
  margin-bottom: .25rem;
  font-family: var(--play);
}
.spider-gallery_panel figcaption p {
  color: grey;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .spider-gallery {
    padding: 0 0 2rem;
  }
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/*Testimonials Page*/
.page-id-275 .interior-content {
  background: whitesmoke;
  padding: 2rem 0;
}
.page-id-275 .interior-content_container > h3 {
  font-size: 2.5rem;
  font-family: var(--play);
  color: var(--red);
  margin-bottom: 2rem;
}
.page-id-275 .interior-content_block:not(:first-of-type) {
  background: white;
  box-shadow: 0 2px 2px rgba(0,0,0,0.16);
  padding: 1rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--red);
}
.page-id-275 .interior-content_block h4 {
  margin-bottom: .5rem;
  color: var(--red);
  font-family: var(--play);
}
.page-id-275 .interior-content_block h5 {
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: .5rem;
}

/*Careers Page*/
/*============================ */
/* Interior Careers 01
============================== */
.interior-careers-01 {
  margin-bottom: 4rem;
}
.interior-careers-01 .content-wrap {
  text-align: center;
  margin-bottom: 4rem;
}
.interior-careers-01 .content-wrap h1 {
  color: #747474;
  margin-bottom: 1rem;
}
.interior-careers-01 .content-wrap h4 {
  color: var(--red);
}
.interior-careers-01 .content-wrap hr {
  width: 10%;
  margin: 1rem auto 2rem;
  border: 2px solid var(--red);
}
.interior-careers-01 .content-wrap p {
  margin-bottom: 1rem;
}
.interior-careers-01 .form-wrap {
  width: 100%;
}
.interior-careers-01 .form-wrap form {
  background: #dedede;
  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;
}
.interior-careers-01 .group-wrap h3 {
  margin-bottom: 1rem;
  color: var(--red);
}
.interior-careers-01 ::-webkit-input-placeholder {
  color: #777!important;
}
.interior-careers-01 ::-moz-placeholder {
  color: #777!important;
}
.interior-careers-01 :-ms-input-placeholder {
  color: #777!important;
}
.interior-careers-01 :-moz-placeholder {
  color: #777!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-size: 1.1rem;
  font-weight: 300;
  color: #000;
  width: 100%;
  padding: .5rem;
  margin-bottom: 1rem;
  outline: none;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.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: #4bd0d1;
  color: var(--red);
}
.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;
  font-size: 1rem;
  line-height: 1;
}
.interior-careers-01 .wpcf7-form-control-wrap input[type="file"]:hover {
  color: var(--red);
  background: rgba(255,255,255,0.8);
}
.interior-careers-01 .submit-wrapper {
  text-align: center;
}
.interior-careers-01 .submit-wrapper input[type="submit"] {
  font-size: 1.2rem;
  color: #fff;
  background: var(--red);
  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(--redDark);
}
@media only screen and (max-width: 767px) {
  .interior-careers-01 {
    margin-bottom: 1rem;
  }
  .interior-careers-01 .content-wrap {
    margin-bottom: 2rem;
  }
  .interior-careers-01 .form-wrap form {
    padding: 1.5rem 1rem;
  }
}