/*
  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 {
  
  --brown: #A97249;
  --brownDark: #825636;
  --grey: #636363;
  --greyLight: #9a9a9a;

}

/*============================ */
/* HEADER 06
============================== */
.hollow-header-06 {
  position: relative;
  background: #fff;
  z-index: 9999;
  border-top: 2px solid #c7c7c7;
  box-shadow: 2px 2px 2px #232323;
}
.hollow-header-06.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 2px 5px -2px #000;
  border: 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;
}
.hollow-header-06.sticky .logo {
  display: none;
}
.hollow-header-06 .logo img {
  width: 200px;
}


/*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 .5rem;
}
.hollow-header-06.sticky .meta-wrap {
  display: none;
}
.hollow-header-06 .meta-wrap ul {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.hollow-header-06 .meta-wrap ul li {
  display: flex;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.hollow-header-06 .meta-wrap ul li i {
  color: var(--brown);
  font-size: 1.3rem;
  margin-right: .75rem;
  line-height: 1.2;
}
.hollow-header-06 .meta-wrap a {
  color: var(--greyLight);
  font-weight: 400;
  font-size: 1.25rem;
  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(--greyLight);
  padding: 0 .6rem;
  font-weight: 500;
  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(--brown);
  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(--brown);
  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(--brown);
  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: #255471
  }
  .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(--grey);
    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 {
    justify-content: center;
    padding: calc(2rem + 42px) 0 2rem;
  }
  .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(--brownDark);
    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;
}

/*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(62, 62, 62, 0.7);
}
.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%;
}
.hollow-hero-12 .cap-slider.slick-initialized {
  visibility: visible;
}
.hollow-hero-12 .caption {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.hollow-hero-12 .content {
  padding: 8rem 0;
}
.hollow-hero-12 .content h1 {
  color: #fff;
  margin-bottom: .75rem;
  font-weight: 600;
}
.hollow-hero-12 .content h3 {
  color: var(--brown);
  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 {
  color: #fff;
  border-color: #fff;
  display: inline-flex;
}
.hollow-hero-12 .content a:before {
  background: var(--brown);
}
.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 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(--brown);
  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: Raleway;
  font-weight: 300;
}
.hollow-hero-12 .wpcf7-form-control-wrap textarea {
  height: 6rem;
}
.hollow-hero-12 .wpcf7-form input[type="submit"] {
  font-family: Raleway;
  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(--brown);
}
.hollow-hero-12 .button-wrap p {
  font-size: .9rem;
  font-weight: 400;
  color: #fff;
}


/*============================ */
/* Content 02
============================== */
.hollow-content-02 {
  position: relative;
  overflow: hidden;
  padding: 4rem 0rem;
}

/*About*/
.hollow-content-02 #about {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}
.hollow-content-02 #about img {
  width: 46%;
  object-fit: cover;
}
.hollow-content-02 #about_content {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  width: 46%;
}
.hollow-content-02 #about_content h1 {
  color: var(--grey);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hollow-content-02 #about_content hr {
  border: none;
  height: 2px;
  background: var(--greyLight);
  width: 100px;
  padding: 0;
  margin: 0 0 2rem;
}
.hollow-content-02 #about_content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--greyLight);
}
.hollow-content-02 #about_content p strong {
  color: var(--grey);
}
.hollow-content-02 #about_content a {
  margin-top: 1rem;
  color: var(--brown);
  border-color: var(--brown);
}
.hollow-content-02 #about_content a:hover {
  color: #fff;
}
.hollow-content-02 #about_content a:before {
  background: var(--brown);
}

/*Features*/
.hollow-content-02 #features {
  justify-content: space-between;
}
.hollow-content-02 #features_content {
  padding: 2rem;
  background: #f3f3f3;
  width: 64%;
}
.hollow-content-02 #features_content h1 {
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 1rem;
}
.hollow-content-02 #features_content hr {
  border: none;
  height: 2px;
  background: var(--greyLight);
  width: 100px;
  padding: 0;
  margin: 0 0 2rem;
}
.hollow-content-02 #features_content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--greyLight);
}
.hollow-content-02 #features_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1rem;
}
.hollow-content-02 #features_list li {
  display: flex;
}
.hollow-content-02 #features_list li i {
  padding-right: .75rem;
  font-size: 1.75rem;
  color: var(--brown);
}
.hollow-content-02 #features_list svg {
  fill: var(--brown);
  width: 5rem;
  height: 3rem;
  padding-right: .75rem;
}
.hollow-content-02 #features_list li span {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
}
.hollow-content-02 #features_list li span h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--grey);
}
.hollow-content-02 #features_list li span p {
  margin-bottom: 1rem;
}
.hollow-content-02 img {
  width: 34%;
  object-fit: cover;
  max-height: 520px;
}
@media only screen and (max-width: 1199px) {
  .hollow-content-02 #features {
    align-items: center;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-02 #about {
    /* margin-bottom: 0; */
  }
}
@media screen and (orientation: landscape) and (max-width:991px) {
  .hollow-content-02 #features_content {
    width: 100%;
  }
  .hollow-content-02 #features img {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-02 {
    position: relative;
    overflow: hidden;
    padding: 2rem 1rem;
  }
  .hollow-content-02 #about {
    flex-flow: column;
    margin-bottom: 2rem;
  }
  .hollow-content-02 #about img {
    width: 100%;
    order: 2;
    margin: 2rem 0 0;
    max-height: 50vh;
  }
  .hollow-content-02 #about_content {
    width: 100%;
  }
  .hollow-content-02 #features {
    flex-flow: column;
  }
  .hollow-content-02 #features_content {
    width: 100%;
  }
  .hollow-content-02 #features_list {
    width: 100%;
    grid-template-rows: unset;
    grid-template-columns: unset;
  }
  .hollow-content-02 #features img {
    width: 100%;
    margin: 2rem 0 0;
    max-height: 50vh;
  }
}


/*============================ */
/* Content 04
============================== */
.hollow-contact-03 {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: url(img/util-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.hollow-contact-03::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.4);
}
.hollow-contact-03 .flex-container {
  position: relative;
}
.hollow-contact-03 h1 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}
.hollow-contact-03 p {
  color: #fff;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #fff;
}

/*Content*/
.hollow-contact-03 .content-wrap {
  width: 48%;
  display: flex;
  flex-flow: column;
}
.hollow-contact-03 ul li.data {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: .75rem 1rem;
  font-size: 1.4rem;
  font-weight: 300;
}
.hollow-contact-03 ul li.data:hover {
  background: rgba(0, 0, 0, 0.4);
}
.hollow-contact-03 ul li.data i {
  margin-right: 1rem;
  line-height: 1.5;
  color: var(--brown);
  transition: all .3s ease;
  font-size: 1.5rem;
}
.hollow-contact-03 ul li.data:hover i {
  color: var(--brown);
}
.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: var(--brown);
}
.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);
}
.hollow-contact-03 .flex-container {
  align-items: flex-start;
  justify-content: space-between;
}

/*Form*/
.hollow-contact-03 .form-wrap {
  position: relative;
  overflow: hidden;
  width: 48%;
}
.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: Raleway;
  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"] {
  padding: .5rem 1rem;
  border: 2px solid #fff;
  transition: all .3s ease;
  color: #fff;
  font-size: 1.1rem;
  background: transparent;
  cursor: pointer;
}
.hollow-contact-03 .form-wrap input[type="submit"]:hover {
  background: var(--brownDark);
}
@media only screen and (max-width: 991px) {
  .hollow-contact-03 {
    background-attachment: unset;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-contact-03 {
    padding: 3rem 0;
  }
  /*.page-template-page-contact .hollow-contact-03 {
    padding-top: 4rem;
  }*/
  .hollow-contact-03 .flex-container {
    flex-flow: column;
  }
  .hollow-contact-03 .content-wrap {
    margin-bottom: 1rem;
    width: 100%;
  }
  .hollow-contact-03 .form-wrap {
    width: 100%;
  }
}


/*============================ */
/* Footer 04
============================== */
.hollow-footer-04 {
  position: relative;
  overflow: hidden;
  background: #252525;
}
.hollow-footer-04 .main .flex-container {
  flex-direction: column;
  align-items: center;
}
.hollow-footer-04 .logo-wrap {
  display: inline-flex;
  position: relative;
  margin-bottom: .5rem;
  margin-top: 2rem;
}
.hollow-footer-04 .logo-wrap img {
  display: flex;
}
.hollow-footer-04 .logo-wrap .diamonds {
  animation: spin 2s linear 2s infinite forwards;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: url(img/diamond1.png) center center no-repeat;
    background-size: cover;
}
@keyframes spin {
  0% {
    background: url(img/diamond1.png) center center no-repeat;
    background-size: cover;
  }
  33% {
    background: url(img/diamond2.png) center center no-repeat;
    background-size: cover;
  }
  66% {
    background: url(img/diamond3.png) center center no-repeat;
    background-size: cover;
  }
  100% {
    background: url(img/diamond1.png) center center no-repeat;
    background-size: cover;
  }
}
.hollow-footer-04 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.hollow-footer-04 ul li {
  display: flex;
  align-items: center;
  color: #fff;
  margin: 0 1rem 2rem;
  font-size: 1rem;
}
.hollow-footer-04 ul li i {
  font-size: 0.8rem;
  margin-right: .5rem;
  color: #565656;
}
.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(--brown);
}
.hollow-footer-04 .meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f1f1f;
  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(--brown);
}
.hollow-footer-04 .meta i.top {
  position: absolute;
  margin-right: 1rem;
  right: 0;
  top: 0;
  color: #FFF;
  padding: .5rem;
  opacity: 0.5;
  background: var(--brown);
  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 ul {
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
  .hollow-footer-04 ul li {
    margin-bottom: 1rem;
  }
  .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;
  }
}

/*============================ */
/* 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
-------------------------*/
.footer-01 {
  background: #252525;
  font-weight: 300;
  text-align: center;
  padding: 4rem 0 0;
}
.footer-01 h1 {
  font-weight: 300;
  margin-bottom: 1rem;
  color: #FFF;
}
.footer-01 .text-wrap h3 {
  font-weight: 300;
  color: #FFF;
}
.footer-01 p {
  color: #FFF;
}
.footer-01 span {
  color: #FFF;
}
.footer-01 .cred-wrap {
  border-top: 1px solid #FFF;
  width: 75vw;
  padding: .5rem;
  margin: 3rem auto 3rem auto;
}
.footer-01 .design {
  display: inline-block;
}
.footer-01 .copyright {
  display: inline-block;
}
.footer-01 .social {
  display: inline-block;
}
.footer-01 .design span a {
    padding: 0 1px;
}
.footer-01 .design span a strong {
  font-weight: 600;
}
.footer-01 .social .fa-stack-2x {
  color: #719C3B;
}
.footer-01 .social .fa-stack-1x {
    color: #FFF;
}
.footer-01 .social a:hover .fa-stack-2x {
  color: #FFF;
}
.footer-01 .social a:hover .fa-stack-1x {
  color: #719C3B;
}
.footer-01 nav a {
  padding: 5px;
  display: inline-block;
}
.footer-01 a, .footer-01 a:hover, .footer-01 a:focus {
  color: #f6f6f6;
}
@media (min-width: 768px) {
  .footer-01 {
    text-align: center;
  }
  .footer-01 nav a {
    display: block;
  }
  .footer-01 .menu-item {
    display: inline-block;
  }
  .footer-01 .col-sm-6 {
    text-align: right;
  }
  .footer-01 .design {
    float: left;
    text-align: left;
    margin: .5rem 0;
  }
  .footer-01 .social {
    float: right;
    text-align: right;
  }
}
@media only screen and (max-width: 767px) {
   .footer-01 .design {
    margin: 1rem 0;
  }
    .footer-01 .copyright {
    margin-bottom: 1rem;
  }
}

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

/*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(62, 62, 62, 0.7);
}
.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;
  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;
}
.interior-content-01 h1 {
  color: var(--grey);
  margin-bottom: 1rem;
  font-weight: 700;
}
.interior-content-01 hr {
  width: 10%;
  margin: 1rem auto;
  border: 1px solid var(--greyLight);
}
.interior-content-01 h4 {
   color: var(--brown);
   margin-bottom: 1rem;
   font-size: 1.2rem;
   font-weight: 700;
   line-height: 1.4;
}
.interior-content-01 p {
  color: var(--greyLight);
  font-size: 1.1rem;
}
@media only screen and (max-width: 767px) {
  .interior-content-01 {
    padding: 2rem 0;
  }
  .interior-content-01 p {
    margin-bottom: 1rem;
  }
}

/*============================ */
/* Action 11
============================== */
.hollow-action-11 {
  padding: 2rem 0;
  background: #252525;
}
.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: 1px solid var(--brown);
  font-weight: 700;
  margin-right: .25rem;
  padding-bottom: .25rem;
}
.hollow-action-11 h3#phone {
  font-weight: 400;
  color: var(--brown);
  padding: 0 1.5rem;
}
.hollow-action-11 a {
  color: #fff;
  border-color: #fff;
  background: transparent;
}
.hollow-action-11 a::before {
  background: var(--brown);
}
@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;
  }
}


/*============================ */
/* 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: var(--grey);
  font-weight: 700;
  margin-bottom: .25rem;
}
.interior-content-04 hr {
  border: none;
  height: 2px;
  background: var(--greyLight);
  width: 100px;
  padding: 0;
  margin: 0 0 2rem;
}
.interior-content-04 p {
  color: var(--greyLight);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.interior-content-04 h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--grey);
  margin-bottom: 2rem;
  line-height: 1.4rem;
}
.interior-content-04 a {
  color: var(--brown);
  border-color: var(--brown);
  font-weight: 700;
}
.interior-content-04 a:before {
  background: var(--brown);
}
.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-content-04 a.fill {
    margin-bottom: 1rem;
  }
}


.interior-content-02 {
  padding: 4rem 0;
  background: #f3f3f3;
}

.interior-content-02 h1 {
  color: var(--grey);
  font-weight: 700;
  margin-bottom: .25rem;
}
.interior-content-02 h3 {
  color: var(--greyLight);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.interior-content-02 hr {
  border: none;
  height: 2px;
  background: var(--greyLight);
  width: 100px;
  padding: 0;
  margin: 0 0 2rem;
}
.interior-content-02 p {
  color: var(--greyLight);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.interior-content-02 .list-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.interior-content-02 ul {
  display: block;
}
.interior-content-02 ul li i {
  color: var(--brown);
  vertical-align: top;
  margin-top: .6rem;
  padding-right: .75rem;
  font-size: .5rem;
}
.interior-content-02 ul li p {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  .interior-content-02 {
    padding: 2rem;
  }
  .interior-content-02 .list-wrap {
    flex-direction: column;
  }
  .interior-content-02 ul li p {
    width: 90%;
  }
}


/*============================ */
/* Tabs 03
============================== */
.hollow-tabs-01 {
  padding: 5rem 0 3rem;
}
.hollow-tabs-01 .flex-container {
  flex-direction: column;
}
.hollow-tabs-01 .tabs {
  align-items: flex-start;
  margin-bottom: .5rem;
}
.hollow-tabs-01 .tabs li {
  margin-right: 0;
}
.hollow-tabs-01 .tabs li a {
  display: block;
  line-height: 1;
  padding: 1.5rem 1rem;
  border-radius: 2px 2px 0 0;
  background: var(--grey);
  color: #fff;
  border-bottom: 1px solid #fff;
  font-weight: 400;
  font-size: 1.1rem;
  transition: all 0.1s ease-in-out;
  line-height: 1.4;
}
.hollow-tabs-01 .tabs li.active a,
.hollow-tabs-01 .tabs li a:hover {
  opacity: 1;
  background: #252525;
  color: #fff;
}
.hollow-tabs-01 .tabs-content {
  position: relative;
  z-index: 2;
  padding: 0 25px;
  border-radius: 0 4px 4px 4px;
  background: transparent;
  border: none;
}
.hollow-tabs-01 .tabs-content img {
  margin-bottom: 1rem;
  margin-right: 1rem;
  max-width: 100%;
 }
 .hollow-tabs-01 .tabs-content .icon {
  margin: 0;
 }
.hollow-tabs-01 .tabs-content .link-1 {
  color: #007FFF;
  font-weight: 400;
}
.hollow-tabs-01 .tabs-content .link-1:hover {
  color: #0e57a0;
}
.hollow-tabs-01 .tabs-panel {
  display: none;
}
.hollow-tabs-01 .tabs-panel h3 {
  color: var(--brown);
  margin-bottom: 1rem;
  font-size: 2.25rem;
  font-weight: 700;
}
.hollow-tabs-01 .tabs-panel h3:not(:first-of-type) {
  font-weight: 300;
  font-size: 2rem;
  color: #133f75;
}
.hollow-tabs-01 .tabs-panel .main-content {
  display: flex;
  justify-content: space-between;
}
.hollow-tabs-01 .tabs-panel .main-content .img-wrap {
  width: 38%;
}
.hollow-tabs-01 .tabs-panel .main-content .img-wrap img {
  max-width: 100%;
}
.hollow-tabs-01 .tabs-panel .main-content .img-wrap .btn-wrap {
  margin: 2rem 0;
}
.hollow-tabs-01 .tabs-panel .main-content .img-wrap a {
  background: #a53a3b;
  padding: .5rem 1rem;
  color: #fff;
  transition: all .3s ease;
  font-weight: 400;
}
.hollow-tabs-01 .tabs-panel .main-content .img-wrap a:hover {
  background: #5398d9;
}
.hollow-tabs-01 .tabs-panel .main-content .description {
  width: 58%;
}
.hollow-tabs-01 .tabs-panel h4 {
  font-weight: 700;
  color: #f67a32;
  margin-bottom: 1rem;
}
.hollow-tabs-01 .tabs-panel p {
  color: var(--greyLight);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
.hollow-tabs-01 .tabs-panel .caption p {
  font-weight: 700;
  color: var(--grey);
}
.hollow-tabs-01 .tabs-panel ul {
  margin-bottom: 1rem;
  display: block;
  margin-top: 1rem;
}
.hollow-tabs-01 .tabs-panel ul li i {
  color: #fff;
  vertical-align: top;
  margin-top: .3rem;
  padding-right: .75rem;
}
.hollow-tabs-01 .tabs-panel ul li p {
  display: inline-block;
  max-width: 90%;
  vertical-align: middle;
}
.hollow-tabs-01 .tabs-panel .nextgen_pro_thumbnail_grid {
  text-align: left;
}
 
.hollow-tabs-01 .tabs-panel.active {
  display: block;
}
.hollow-tabs-01 a.topBtn {
  font-size: 1.1rem;
  color: #fff;
  background: #032b49;
  padding: 0.5rem 0.8rem;
  /*border-radius: 5px;*/
  float: right;
}
.hollow-tabs-01 a.topBtn i {
  margin-right: .5rem;
}
.hollow-tabs-01 p a {
  color: #007fff;
  text-decoration: underline;
}
.hollow-tabs-01 p a.dl-link {
  font-weight: 400;
  font-size: 1.3rem;
}
.hollow-tabs-01 p a:hover {
  color: #003960;
}
.hollow-tabs-01 .form-wrap input, 
.hollow-tabs-01 .form-wrap textarea {
  font-family: 'Lato';
  font-size: 1rem;
  width: 100%;
  border: 1px solid #fff;
  background: rgba(0, 127, 255, 0.5);
  padding: .6rem;
  margin-bottom: 1rem;
  color: #FFF;
  font-weight: 300;
}
.hollow-tabs-01 .form-wrap .submit-wrapper input {
  background: #007FFF;
  border: none;
  padding: .5rem 1.5rem;
  color: #FFF;
  font-family: 'Lato';
  cursor: pointer;
  font-weight: 300;
  font-size: 1rem;
  width: unset;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
} 
.hollow-tabs-01 .form-wrap .submit-wrapper input:hover {
  background: #006dda;
}
.hollow-tabs-01 ::-webkit-input-placeholder {
  color: #fff;
}
.hollow-tabs-01 ::-moz-placeholder {
  color: #fff;
}
.hollow-tabs-01 :-ms-input-placeholder {
  color: #fff;
}
.hollow-tabs-01 :-moz-placeholder {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .hollow-tabs-01 .flex-container {
    flex-direction: row;
  }
  .hollow-tabs-01 .tabs {
    flex: 1;
  }
   .hollow-tabs-01 .tabs-content {
    flex: 3;
   }
}
@media only screen and (max-width: 767px) {
  .hollow-tabs-01 {
    padding: 2rem 0;
  }
  .hollow-tabs-01 .tabs-content img {
    max-width: 100%;
  }
  .hollow-tabs-01 .tabs li a {
    padding: 0.75rem 1rem;
  }
  .hollow-tabs-01 .tabs-panel .main-content {
    flex-direction: column;
  }
  .hollow-tabs-01 .tabs-panel .main-content .img-wrap {
    width: 100%;
  }
  .hollow-tabs-01 .tabs-panel .main-content .description {
    width: 100%;
  }
}

/*============================ */
/* 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 h2 {
  color: var(--grey);
  line-height: 1;
  margin-bottom: 1rem;
  font-size: 2.75rem;
  font-weight: 700;
}
.interior-map-04 hr {
  height: 2px;
  width: 5rem;
  background: var(--greyLight);
  margin: 1rem 0 2rem;
  border: none;
}
.interior-map-04 h3 {
  color: var(--brown);
  line-height: 1.4;
}
.interior-map-04 p {
  color: var(--greyLight);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.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: var(--brown);
  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(37, 37, 37,.3);
  border: 2px solid #252525;
  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
============================== */
.interior-action-01 {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  text-align: center;
  background: #252525;
}
.interior-action-01 .flex-container {
  align-items: center;
}
.interior-action-01 h1 {
  color: #FFF;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.interior-action-01 p {
  color: #FFF;
  margin-bottom: 2rem;
  max-width: 50vw;
  font-size: 1.1rem;
  font-weight: 400;
}
.interior-action-01 a.fill {
  color: #fff;
  border-color: #fff;
  background: transparent;
}
.interior-action-01 a.fill::before {
  background: var(--brown);
}
@media screen and (max-width:767px) {
  .interior-action-01 {
    padding: 3rem 0;
  }
  .interior-action-01 p {
    max-width: 90vw;
  }
}

.content.seo {
  background: var(--grey);
}
.content.seo p a:hover {
  color: var(--brown);
}
/*============================ */
/* 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-action-11 h3 {
  text-align: center;
}
.interior-map-04 .list-wrap ul li,
.interior-content-02 ul li {
  display: flex;
}
/*============================ */
/* 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-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(--brown);
  }
  .hollow-header-06 button#mobile {
    cursor: pointer;
  }
  .hollow-header-06 .mobile-toolbar .icon-wrap *:hover {
    color: var(--brownDark);
  }
}
@media only screen and (max-width: 767px) {
  .interior-contact-03 .contact-03-meta ul {
    margin-bottom: 1rem;
  }
}