/*
  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: #BC4949;
  --redDark: #9c3a3a;
  --beige: #E4CCA6;
  --beigeDark: #4c463e;
  --green: #66da75;

}

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


/*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(--red);
  font-size: 1.75rem;
  margin-bottom: .5rem;
  font-weight: 700;
}
.hollow-header-06 .meta-wrap a {
  color: var(--red);
  font-weight: 400;
  font-size: 1.5rem;
  margin-right: .5rem;
}
.hollow-header-06 .meta-wrap a:hover {
  color: var(--green);
}
/*Nav Level One*/
.hollow-header-06 nav {
  display: flex;
  width: 100%;
}
.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: Open Sans;
  display: flex;
  align-items: center;
  color: var(--red);
  padding: 0 .6rem;
  font-size: 17px;
  text-transform: uppercase;
  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(--red);
  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(--red);
  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(--red);
  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) {
  body.home .hollow-header-06 {
    border-top: 10px solid var(--red);
  }
  body.home .hollow-header-06.sticky {
    border: none;
  }
  .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(--redDark);
  }
  .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(--red);
    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(--redDark);
    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;
  }
}

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

/*Cap Slider*/
.hollow-hero-02 .cap-slider {
  width: 50%;
}
.hollow-hero-02 .caption {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.hollow-hero-02 h1 {
  font-family: Open Sans;
  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;
  font-family: Open Sans;
  margin-bottom: 1rem;
  opacity: 0;
}
.hollow-hero-02 .caption.animating h3 {
  animation: textIn .5s .1s linear forwards;
  
}
.hollow-hero-02 p {
  font-size: 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 {
  color: #fff;
  border-color: #fff;
  font-family: Open Sans;
}
.hollow-hero-02 .caption.animating a {
  animation: textIn .5s .3s linear forwards;
}
.hollow-hero-02 a:before {
  background: var(--green);
}
@media only screen and (max-width: 767px) {
  .hollow-hero-02 .cap-slider {
    width: 100%;
  }
}

/*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 {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 35, 35, 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 5s linear forwards;
}
.hollow-hero-02 .img-slider .slick-dots {
  bottom: 1.5rem;
  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;
}
@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
  }
}

/*============================ */
/* Services
============================== */
.services {
  padding: 4rem 0 2rem;
  background: url(img/footer-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.services .flex-container {
  justify-content: space-between;
  align-items: center;
}
.services .box {
  position: relative;
  width: 23%;
  height: 10rem; 
  display: flex;
  margin-bottom: 2rem;
  transition: all .3s ease;
  background: var(--beigeDark);
}
.services .box-inner {
  position: relative;
  overflow: hidden;
  display: flex;
}
.services .box:hover {
  transform: translateY(-10px);
}
.services .box:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-right: 2px solid var(--red);
  border-top: 2px solid var(--red);
  transition: all .3s ease;
  transform: translate(100%, -100%);
  opacity: 0;
}
.services .box:hover:before {
  transform: translate(2px, -2px);
  opacity: 1;
}
.services .box:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transition: all .3s ease;
  transform: translate(-100%, 100%);
  opacity: 0;
}
.services .box:hover:after {
  transform: translate(-2px, 2px);
  opacity: 1;
}
.services .box img {
  display: flex;
  object-fit: cover;
  width: 100%;
  transition: all .3s ease;
  transform: scale(1.1);
  opacity: 0.4;
}
.services .box:hover img {
  opacity: 0.2;
  transform: scale(1);
}
.services .box a {
  font-family: Open Sans;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  transition: all .3s ease;
  transform: translateY(5px);
  text-shadow: 0 0 10px rgba(33, 30, 27, 0.5);
}
.services .box:hover a {
  transform: translateY(-5px);
}
@media only screen and (max-width: 767px) {
  .services .flex-container {
    flex-flow: column;
  }
  .services .box {
    width: 100%;
  }
}


/*============================ */
/* Hero 15
============================== */
.hollow-hero-15 {
  padding: 4rem 0;
}
.hollow-hero-15 .text-wrap {
  flex-grow: 1;
  flex-shrink: 3;
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4rem;
  background: url(img/gallery/gallery-bg.jpg) center center no-repeat;
  background-size: cover;
}
.hollow-hero-15 .text-wrap ul li {
  display: flex;
  align-items: center;
  line-height: 1.25;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFF;
}
.hollow-hero-15 ul li#itemOne {
  animation: highlight 1.5s linear;
  animation-delay: 2.5s
}
.hollow-hero-15 ul li#itemTwo {
  animation: highlight 1.5s linear;
  animation-delay: 4s;
}
.hollow-hero-15 ul li#itemThree {
  animation: highlight 1.5s linear;
  animation-delay: 5.5s;
}
@keyframes highlight {
  0% {
    color: #FFF;
  }
  50% {
    color: var(--beige);
  }
  100% {
    color: #FFF;
  }
}
.hollow-hero-15 .text-wrap ul li i {
  font-size: 1.25rem;
  margin-right: .75rem;
}
.hollow-hero-15 hr {
  margin: 2rem 0;
  height: 2px;
  border: none;
  background: var(--beige);
  width: 10rem;
}
.hollow-hero-15 p {
  color: #FFF;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.hollow-hero-15 a {
  border-color: #fff;
  color: #fff;
}
.hollow-hero-15 a:before {
  background: var(--green);
}
.hollow-hero-15 .slider-wrap {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 50%;
  margin: 0;
}
.hollow-hero-15 .slick-track {
  height: 100%;
}
.hollow-hero-15 .slick-list {
  height: 100%;
}
.hollow-hero-15 .slide {
  position: relative;
  overflow: hidden;
}
.hollow-hero-15 img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  max-width: initial;
  transform: translate(-50%,-50%);
}
.hollow-hero-15 ul.slick-dots {
  bottom: 4rem;
}
.hollow-hero-15 ul.slick-dots li button:before {
  color: #FFF;
  font-size: 1rem;
  font-family: 'FontAwesome';
  content: '\f10c';
  opacity: 1;
  text-shadow: 0 0 20px #696969;
}
.hollow-hero-15 ul.slick-dots li.slick-active button:before {
  content: '\f111';
}
@media only screen and (max-width: 1199px) {
  .hollow-hero-15 .text-wrap {
    padding: var(--gap) 4rem;
    flex-basis: 30%;
  }
  .hollow-hero-15 .slider-wrap {
    flex-basis: auto;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-hero-15 {
    --gap: 2rem;
  }
  .hollow-hero-15 img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-hero-15 .flex-container-fluid {
    flex-direction: column;
  }
  .hollow-hero-15 .slider-wrap {
    height: 50vh;
  }
}

/*============================ */
/* Content 16
============================== */
.hollow-content-16 {
  padding: 4rem 0 2rem;
  background: url(img/content-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.hollow-content-16 .flex-container {
  justify-content: space-between;
  align-items: center;
}

/*Content*/
.hollow-content-16 .content {
  width: 48%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.hollow-content-16 .content h1 {
  font-family: Open Sans;
  color: #fff;
  font-weight: 700;
  margin-bottom: .5rem;
  font-size: 2rem;
}
.hollow-content-16 .content h3 {
  background: var(--red);
  color: #fff;
  font-size: 1.1rem;
  padding: .2rem 1rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.hollow-content-16 .content p {
  font-family: 'Open Sans';
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #fff;
}
.hollow-content-16 .content .list-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.hollow-content-16 .content .list-wrap ul {
  padding: 0 1rem;
  display: flex;
  flex-flow: column;
}
.hollow-content-16 .content .list-wrap ul li {
  display: flex;
  align-items: center;
  color: #fff;
  line-height: 2.25rem;
  font-size: 1rem;
}
.hollow-content-16 .content .list-wrap ul li i {
  color: var(--green);
  font-size: 1rem;
  padding-right: .5rem;
}
.hollow-content-16 .btn-wrap {
  display: flex;
  align-items: center;
}
.hollow-content-16 a {
  font-family: Open Sans;
  color: #fff;
  border-color: #fff;
  margin-left: 1rem;
}
.hollow-content-16 a:before {
  background: var(--red);
}
@media only screen and (max-width: 767px) {
  .hollow-content-16 .flex-container {
    flex-flow: column;
  }
  .hollow-content-16 .content {
    width: 100%;
  }
  .hollow-content-16 .content .list-wrap {
    justify-content: center;
    width: 100%;
  }
  .hollow-content-16 .content .list-wrap ul {
    padding: 0 1rem;
  }
  .hollow-content-16 .content .btn-wrap-outer {
    width: 100%;
  }
}

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

/*============================ */
/* Contact 03
============================== */
.hollow-contact-03 {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: url(img/contact-bg1.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.hollow-contact-03 .flex-container {
  position: relative;
  text-align:center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.hollow-contact-03 h1 {
  font-weight: 700;
  font-family: Open Sans;
  color: #fff;
}
.hollow-contact-03 p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/*Content*/
.hollow-contact-03 .content-wrap {
  width: 60%;
  display: flex;
  flex-flow: column;
  padding: 2rem 1rem;
  background: rgba(56, 51, 43, 0.85);
}
.hollow-contact-03 ul li.data {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: .75rem 1rem;
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: .5rem;
}
.hollow-contact-03 ul li.data i {
  margin-right: 1rem;
  line-height: 1.5;
  color: var(--green);
  transition: all .3s ease;
  font-size: 1.5rem;
}
.hollow-contact-03 ul li.data span {
  color: #fff;
  line-height: 1.5;
}
.hollow-contact-03 ul li.data a.full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hollow-contact-03 ul li.social {
  display: flex;
  margin-top: 1rem;
  margin-left: 2rem;
}
.hollow-contact-03 ul li.social a {
  position: relative;
  display: inline-flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 3rem;
}
.hollow-contact-03 ul li.social a:hover {
  background: rgba(0,0,0,0.4);
}
.hollow-contact-03 ul li.social a i {
  color: #fff;
  transition: all .3s ease;
  font-size: 1.5rem;
  padding: .5rem;
}
.hollow-contact-03 ul li.social a:hover i {
  color: #fff;
}
.hollow-contact-03 ul li.social a hr {
  margin: 0;
  width: 100%;
  border: none;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transition: all .3s ease;
}
.hollow-contact-03 ul li.social a:hover hr {
  transform: scaleX(1);
}

/*Form*/
.hollow-contact-03 .form-wrap {
  position: relative;
  margin-top: .5rem;
  overflow: hidden;
  width: 60%;
}
.hollow-contact-03 .form-wrap .input-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hollow-contact-03 .form-wrap .input-wrap span {
  width: 49%;
}
.hollow-contact-03 .form-wrap input:not([type="submit"]),
.hollow-contact-03 .form-wrap textarea {
  border: none;
  color: grey;
  font-family: Open Sans;
  font-size: 1.1rem;
  padding: .5rem 1rem;
  margin-bottom: .5rem;
  background: rgba(255,255,255,0.9);
}
.hollow-contact-03 .form-wrap textarea {
  height: 12rem;
}
.hollow-contact-03 .form-wrap input[type="submit"] {
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  padding: .25rem 2rem;
  border: 2px solid #fff;
  background: transparent;
  transition: all .3s ease;
  cursor: pointer;
}
.hollow-contact-03 .form-wrap input[type="submit"]:hover {
  background: var(--green);
}

/*============================ */
/* 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;
  }
}

/*============================ */
/* Footer 04
============================== */
.hollow-footer-04 {
  position: relative;
  overflow: hidden;
  background: #40392e;
}
.hollow-footer-04 .main .flex-container {
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
}
.hollow-footer-04 img {
  width: 300px;
  margin-bottom: .5rem;
}
.hollow-footer-04 h3 {
  color: #FFF;
  font-weight: 300;
  margin-bottom: 2rem;
}
.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(--red);
}
.hollow-footer-04 .meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(35, 32, 27, 0.6);
  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(--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 .meta {
    flex-direction: column;
  }
  .hollow-footer-04 .meta .flex-container {
    flex-flow: column;
  }
  .hollow-footer-04 .meta span:first-of-type {
    margin-bottom: 1rem;
  }
}

/*============================ */
/* Corner Item 04
============================== */
.hollow-corner-item-04 {
  position: relative;
  overflow: hidden;
}
.hollow-corner-item-04 .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-item-04 .form-wrap {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 40rem;
  padding: 2rem;
  background: #fff;
  z-index: 12000;
  border-radius: 3px;
  transform: translate(-50%, -50%);
}
.hollow-corner-item-04 .form-wrap h3 {
  font-family: 'Open Sans';
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1rem;
  font-size: 2rem;
}
.hollow-corner-item-04 .form-wrap .close {
  display: flex;
  position: absolute;
  top: -7px;
  right: -7px;
  padding: .5rem .6rem;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  background: red;
  border: 2px solid #fff;
  cursor: pointer;
  transition: all .3s ease;
}
.hollow-corner-item-04 .form-wrap .close:hover {
  background: var(--redDark);
  transform: scale(1.15);
}
.hollow-corner-item-04 .wpcf7-form-control-wrap input,
.hollow-corner-item-04 .wpcf7-form-control-wrap textarea {
  font-family: Lato;
  font-size: 1.1rem;
  font-weight: 300;
  color: #000;
  padding: .5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 100%;
}
.hollow-corner-item-04 .wpcf7-form-control-wrap input:focus,
.hollow-corner-item-04 .wpcf7-form-control-wrap textarea:focus {
  border-color: var(--red);
}
.hollow-corner-item-04 .wpcf7-form-control-wrap textarea {
  height: 6rem;
}
.hollow-corner-item-04 .wpcf7-form input[type="submit"] {
  font-family: Lato;
  font-size: 1rem;
  color: #fff;
  background: var(--beige);
  padding: .5rem 1rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all .3s ease;
}
.hollow-corner-item-04 .wpcf7-form input[type="submit"]:hover {
  background: var(--beigeDark);
  transform: scale(1.15);
}
.hollow-corner-item-04 .wpcf7 .ajax-loader {
  display: none;
}
.hollow-corner-item-04 .wpcf7-validation-errors {
  display: none !important;
}
.hollow-corner-item-04 div.wpcf7-mail-sent-ok {
  display: none !important;
}
.hollow-corner-item-04 div.wpcf7-response-output {
  display: none !important;
}
.hollow-corner-item-04 .form-wrap div.wpcf7-response-wrap {
  display: none!important;
}
.hollow-corner-item-04 .form-wrap .message-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}
.hollow-corner-item-04 .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-item-04 .form-wrap.sent .message.success-message {
  opacity: 1;
  pointer-events: auto;
}
.hollow-corner-item-04 .form-wrap .message-wrap h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.hollow-corner-item-04 .form-wrap .success-message h3 {
  color: green;
}
.hollow-corner-item-04 .form-wrap .error-message h3 {
  color: red;
}
.hollow-corner-item-04 .form-wrap .message-wrap p {
  font-size: 1.4rem;
  color: grey;
}
.hollow-corner-item-04 .form-wrap.error .message.error-message {
  opacity: 1;
  pointer-events: auto;
}
.hollow-corner-item-04 .form-wrap.sent .success {
  display: flex;
}
.hollow-corner-item-04 .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-item-04 .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(--red);
  transform: translate(-50%,-50%);
}
.hollow-corner-item-04 .loader-wrap i.fa {
  font-size: 1.5rem;
  color: #fff;
}
.hollow-corner-item-04 .form-wrap.sending .loader-wrap {
  display: flex;
}
.hollow-corner-item-04 .button-wrap {
  position: fixed;
  z-index: 10000;
  bottom: 1.25rem;
  left: 1.25rem;
  color: #fff;
}
.hollow-corner-item-04 .button-wrap i {
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all .3s ease;
}
.hollow-corner-item-04 .button-wrap i:hover {
  transform: scale(1.2);
}
@media only screen and (max-width: 991px) {
  .hollow-corner-item-04 .form-wrap {
    width: 75%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-corner-item-04 .form-wrap {
    width: 90%;
  }
  .hollow-corner-item-04 .wpcf7-form-control-wrap input,
  .hollow-corner-item-04 .wpcf7-form-control-wrap textarea {
    margin-bottom: 1rem;
  }
  .hollow-corner-item-04 .form-wrap .message-wrap h3 {
    font-size: 1.8rem;
  }
  .hollow-corner-item-04 .form-wrap .message-wrap p {
    font-size: 1.2rem;
  }
}

/* DEFAULT PAGE HEADER
-------------------------*/
.default-page-header {
  font-family: 'Open Sans';
  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;
}

/*============================ */
/* Content 10
============================== */
.hollow-content-10 .flex-container-fluid {
  align-items: center;
}
.hollow-content-10 .text-wrap {
  padding: 3rem;
}
.hollow-content-10 h1 {
  color: var(--red);
  font-family: Open Sans;
  font-weight: 700;
}
.hollow-content-10 h3 {
  color: #40392e;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.hollow-content-10 hr {
  height: 4px;
  width: 5rem;
  background: #e1c59d;
  margin: .5rem 0 3rem;
  border: none;
}
.hollow-content-10 p {
  margin-bottom: 1rem;
  color: grey;
  font-size: 1rem;
  font-weight: 400;
}
.hollow-content-10 a {
  display: inline-flex;
  background: #6d9595;
  padding: .5rem .75rem;
  transition: all .3s ease;
}
.hollow-content-10 img {
  object-fit: cover;
  min-width: 50%;
  object-position: 50% 50%;
}
@media only screen and (max-width: 991px) {
  .hollow-content-10 .flex-container-fluid {
    flex-direction: column;
  }
  .hollow-content-10 .flex-container-fluid:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
  .hollow-content-10 img {
    object-fit: contain;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-10 .text-wrap {
    padding: 2rem 1rem;
  }
}


.interior-content-01 {
  padding: 4rem 0;
  text-align: center;
}
.interior-content-01 h1 {
  color: var(--red);
  font-family: Open Sans;
  font-weight: 700;
}
.interior-content-01 h3 {
  color: #40392e;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.interior-content-01 hr {
  width: 10%;
  margin: 1rem auto 2rem;
  border: 2px solid #e1c59d;
}
.interior-content-01 h4 {
   color: #2b7041;
   margin-bottom: 1rem;
   line-height: 1.4;
}
.interior-content-01 p {
  color: grey;
  font-weight: 400;
  font-size: 1rem;
}
.page-id-249 .interior-content-01 p {
  margin-bottom: 2rem;
}


.interior-career {
  padding: 0 0 4rem;
}

.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: 1px solid #cccccc;
  display: block;
  transition: border-color 0.5s;
  -webkit-transition: border-color 0.5s;
  background: #f4f4f4;
  color: #999999;
  font-size: 16px;
}
.interior-career .wpcf7-apply-form input[type="text"],
.interior-career .wpcf7-contact-page input[type="email"],
.interior-career .wpcf7-contact-page 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: #ba2f28;
}
.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: #fff;
    background: var(--red);
    border: none;
    transition: background 0.25s;
    font-size: 18px;
}
.interior-career .wpcf7-apply-form .submit-wrapper input:hover {
    background: #9b3d3d;
    color: #fff;
}
select.interior-career .wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
    width: 100%;
    font-size: .8em;
    background: #fff;
    color: #999999;
}
.interior-career .wpcf7-apply-form input[type="text"]::-webkit-input-placeholder, .wpcf7-apply-form input[type="email"]::-webkit-input-placeholder {
    color: #999999;
}
::-webkit-input-placeholder {
    color: #999999;
}
:-moz-placeholder {
    color: #999999;
}
::-moz-placeholder {
    color: #999999;
}
:-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;
  background: #fff;
  box-shadow: 0px 7px 16px 0px rgba(0, 0, 0, 0.14);
  border-radius: 5px;
}
.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: #40392e;
  /* 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: 767px) {
  .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: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: 12px;
  }
}
/*============================ */



/*============================ */
/* Content 04
============================== */
.interior-map-04 {
  padding: 4rem 0;
}
.interior-map-04 .flex-container {
  align-items: center;
  justify-content: space-between;
}
.interior-map-04 .text-wrap {
  flex-basis: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.interior-map-04 h4 {
  color: #e65804;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.4;
}
.interior-map-04 h1 {
  color: var(--red);
  font-family: Open Sans;
  line-height: 1;
  margin-bottom: 1rem;
  font-size: 2.75rem;
  font-weight: 700;
}
.interior-map-04 h3 {
  color: #40392e;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.interior-map-04 hr {
  height: 4px;
  width: 5rem;
  background: #e1c59d;
  margin: 1rem 0 2rem;
  border: none;
}
.interior-map-04 p {
  color: grey;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
}
.interior-map-04 .list-wrap {
  display: flex;
  justify-content: space-between;
}
.interior-map-04 .list-wrap .list-1 {
  margin-right: 8rem;
}
.interior-map-04 .list-wrap ul {
  display: block;
}
.interior-map-04 .list-wrap ul li i {
  color: grey;
  vertical-align: top;
  margin-top: .3rem;
  padding-right: .75rem;
  font-size: 1.2rem;
}
.interior-map-04 .list-wrap ul li p {
  display: inline-block;
  max-width: 90%;
  vertical-align: top;
}
.interior-map-04 .map-wrap {
  position: relative;
  overflow: hidden;
  flex-basis: 48%;
}
.interior-map-04 .map-wrap:before {
  content: '';
  top: 50%;
  left: 50%;
  width: 50vh;
  transform: translate(-50%,-50%);
  height: 50vh;
  border-radius: 50%;
  background: rgba(102, 218, 117,.3);
  border: 2px solid var(--green);
  z-index: 1000;
  position: absolute;
}
.interior-map-04 .map-wrap iframe {
  flex-basis: 48%;
  display: flex;
  overflow: hidden;
  pointer-events: none;
  max-width: 100%;
}
@media only screen and (max-width: 991px) {
  .interior-map-04 .flex-container > * {
    flex-basis: 48%;
  }
  .interior-map-04 .list-wrap .list-1 {
    margin-right: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .interior-map-04 {
    padding: 2rem 0;
  }
  .interior-map-04 .flex-container {
    flex-direction: column;
  }
  .interior-map-04 .flex-container > * {
    width: 100%;
  }
  .interior-map-04 .text-wrap {
    margin-bottom: 2rem;
  }
  .interior-map-04 .list-wrap .list-1 {
    margin-right: 3rem;
  }
  .interior-map-04 img {
    order: 2;
  }
  .interior-map-04 .map-wrap iframe {
    max-height: 80vh;
  }
}



/*============================ */
/* 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;
  font-family: Open Sans;
  font-weight: 700;
}
.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(--green);
}

.content.seo {
  background: #40392e;
}
.content.seo p a:hover {
  color: #e1c59d;
}
/*============================ */
/* Main Revisions
============================== */
span.nowrap {
  white-space: nowrap;
}
span.nowrap a, span.num-span a,
.hollow-contact-01 .content-wrap .info-wrap .text-wrap p a {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: 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-06.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(--redDark);
}
.interior-career .wpcf7-apply-form .submit-wrapper input {
  cursor: pointer;
}
.interior-map-04 .list-wrap ul li {
  display: flex;
}
.hollow-header-06 .logo img {
  border: 8px outset #bc4949;
}
.hollow-header-06 .meta-wrap {
  flex-flow: row;
}
.meta-wrap a.fill {
  border-color: var(--red);
}
.meta-wrap a.fill::before {
  background: var(--green);
}
.hollow-header-06 .meta-wrap a.fill:hover {
  color: #fff;
}
/*============================ */
/* 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;
  }
  .hollow-hero-15 .text-wrap {
    padding: 2rem;
  }
  .hollow-header-06 .logo {
    padding: 1rem;
  }
}
@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-bar-01 ul li p {
    max-width: 85%;
  }
  .interior-page {
    margin-top: 2rem;
  }
  .hollow-header-06 nav .menu-item.active a,
  .hollow-header-06 nav .menu-item a:hover {
    background: var(--red);
  }
  .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(--redDark);
  }
  .hollow-header-06 button#mobile {
    cursor: pointer;
  }
  .hollow-header-06 .mobile-toolbar .icon-wrap *:hover {
    color: var(--redDark);
  }
  .interior-career .form-wrap {
    width: 87vw;
  }
}
@media only screen and (max-width: 767px) {
  .interior-contact-03 .contact-03-meta ul {
    margin-bottom: 1rem;
  }
  .hollow-contact-03 h1 {
    font-size: 1.9rem;
  }
  .hollow-contact-03 .content-wrap,
  .hollow-contact-03 .form-wrap {
    width: 95%;
  }
}