/*
  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 {
  /* Default Color Variables: */
  --blue: #217ea9;
  --blueDark: #314c58;
  --red: #d64b31;

}

.notification-bar {
	background:#EF4326;
	text-align:center;
	color:#fff;
	padding:1rem 0;
	position: relative;
    z-index: 1000;	
}
.notification-bar p,
.notification-bar p a {
	color:#fff;
	font-size:1rem;
	font-weight:400;
	padding:0;
	margin:0;
}
.notification-bar p a { text-decoration:underline; font-weight:700; }

@media only screen and (max-width:991px) {
	.notification-bar {margin-top:48px;}
}
@media only screen and (max-width:767px) {
	.notification-bar {margin-top:48px;}
}

/*============================ */
/* HEADER 08
============================== */
.hollow-header-08 {
  position: relative;
  background: transparent;
  z-index: 9999;
}
.hollow-header-08.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #22343c;
  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%;
}
body.home .hollow-header-08 .logo img {
  visibility: hidden;
}
/*CONTENT*/
.hollow-header-08 .content-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  max-width:100%;
}
/*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: var(--blueDark);
  white-space: nowrap;
  padding: .5rem 1rem;
  margin-top:1rem;
  margin-right: .25rem;
  color: #fff;
  font-weight: 400;
  font-size: 1.1rem;
  border-radius: 3rem;
  transition: all 0.4s ease;
  border: 1px solid #fff;
}
.hollow-header-08 .meta-wrap .meta-link:hover {
  background: #fff;
  color: var(--blueDark);
}
.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(--blueDark);
}
.hollow-header-08 .meta-wrap a i {
  color: var(--red);
}
.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 .meta-link {
  margin-top: .5rem;
  background: #22343c;
}
.hollow-header-08.sticky .meta-wrap .meta-link:hover {
  background: #fff;
}
/*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%;
	flex-wrap: wrap;
}
.hollow-header-08 ul li {
  position: relative;
  margin-bottom: 0;
}
.hollow-header-08 nav li a {
  display: flex;
  align-items: center;
  color: #fff;
  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: #999991;
  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: #22343c;
  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: #22343c;
  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: 12%;
    margin-right: 1rem;
    margin-bottom: -5rem;
  }
  .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: transparent;
    color: #fff;
    border-bottom: 2px solid #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: #444441;
    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;
    display: none;
  }
  .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: #22343c;
    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(--blueDark);
  }
  .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(--blueDark);
  }
  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;
  }
}

/*HOMEPAGE COMPONENTS*/

.hollow-hero-00 {
  padding: 8rem 0;
  background: #314c58;
  /*background: url(img/hero/hero-bg.jpg) center center no-repeat;*/
  background-size: cover;
  box-shadow: 0 2px 5px -2px #000;
  z-index: 11;
  position: relative;
}
.hollow-hero-00 .flex-container {
  justify-content: space-between;
  align-items:top;
}
.hollow-hero-00 .content {
  width: 50%;
  text-align: center;
}
.hollow-hero-00 .content h1 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-weight: 700;
  letter-spacing: 0.4rem;
}
.hollow-hero-00 .content h3 {
  color: #fff;
  margin-bottom: 1rem;
}
.hollow-hero-00 .content p {
  color: #fff;
}
.hollow-hero-00 .content .btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0rem;
  flex-wrap: wrap;
}
.hollow-hero-00 .content .btn-wrap a {
  border-radius: 3rem;
  border: 1px solid #fff;
  color: #fff;
  padding: .75rem 2rem;
  margin: .5rem 0.5rem;
  display: flex;
  align-items: center;
  transition: all .3s ease;
}
.hollow-hero-00 .content .btn-wrap a i {
  margin-right: .4rem;
  font-size: 1.5rem;
}
.hollow-hero-00 .content .btn-wrap a:hover {
  background: #fff;
  color: var(--blueDark);
}
.hollow-hero-00 .img-wrap {
  width: 38%;
}
.hollow-hero-00 .img-wrap img {
  max-width: 100%;
}
@media only screen and (min-width: 992px) {
  .hollow-hero-00 {
    margin-top: -8rem;
    padding: 16rem 0 6rem;
  }
}
@media only screen and (max-width: 1199px) {
  .hollow-hero-00 .content {
    width: 60%;
  }
  .hollow-hero-00 .img-wrap {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-hero-00 {
    padding: 6rem 0 2rem;
  }
  .hollow-hero-00 .flex-container {
    flex-direction: column-reverse;
  }
  .hollow-hero-00 .content {
    width: 100%;
  }
  .hollow-hero-00 .img-wrap {
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
  }
  .hollow-hero-00 .content .btn-wrap {
    flex-direction: column;
  }
  .hollow-hero-00 .content .btn-wrap a {
    margin-bottom: 1rem;
    margin-right: 0;
    justify-content: center;
  }
}

/*============================ */
/* Content 08
============================== */
.hollow-content-08 {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: url(img/sharks.png) center bottom no-repeat;
  background-size: cover;
  border-bottom: 2px solid #ecb09b;
}
.hollow-content-08 .flex-container {
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.hollow-content-08 .title-wrap,
.hollow-content-08 .content-wrap {
  width: 80%;
  margin: 0 auto 1rem;
}
.hollow-content-08 h2 {
  color: var(--blueDark);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .4rem;
  font-size: 2.75rem;
  text-align: center;
  margin-bottom: 1rem;
}
.hollow-content-08 p {
  color: var(--blueDark);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5
}
.hollow-content-08 .button-wrap {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.hollow-content-08 .button-wrap a {
  display: flex;
  align-items: center;
  color: #fff;
  border: 1px solid var(--red);
  padding: .75rem 2rem;
  border-radius: 3rem;
  transition: all .3s ease;
  background: var(--red);
  box-shadow: 0 3px 5px -2px #0f3a4d;
}
.hollow-content-08 .button-wrap i {
  margin-right: 1rem;
  font-size: 1.5rem;
}
.hollow-content-08 .button-wrap a:hover {
  background: #a53925;
  border-color: #a53925;
}
@media only screen and (min-width: 992px) {
  .hollow-content-08 .flex-container {
      padding: 0 4rem;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-08 {
    background-attachment: unset;
  }
  .hollow-content-08 h1 {
    white-space: normal;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-08 {
    padding: 2rem 0;
    background-position-x: 87%;
  }
  .hollow-content-08 .title-wrap,
  .hollow-content-08 .content-wrap {
    width: 100%;
  }
  .hollow-content-08 .list-wrap {
    flex-flow: column;
  }
  .hollow-content-08 .list-wrap ul {
    width: 100%;
    padding: 0;
  }
  .hollow-content-08 .button-wrap {
    margin-top:14rem;
  }
}



/*============================ */
/* Action 03
============================== */
.hollow-action-03 {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: url(img/email-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  box-shadow: 0 2px 5px -2px #000
}
.hollow-action-03 .flex-container {
  flex-direction: column;
  align-items: center;
}
.hollow-action-03 h2 {
  color: #fff;
  font-size: 2.45rem;
  letter-spacing: .4rem;
  margin-bottom: .25rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
.hollow-action-03 p {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2rem;
  text-align: center;
}
.hollow-action-03 .btn-wrap {
	display:flex;
	flex-direction:row;
}
.hollow-action-03 .btn-wrap i.fab {
	padding-right: 0.5rem;
}
.hollow-action-03 svg {
  position: relative;
  overflow: hidden;
  max-height: 0;
  width: 50px;
  height: 50px;
  transition: all .3s ease;
}
.hollow-action-03.active svg {
  max-height: 50px;

}
.hollow-action-03 .wpcf7 {
  position: relative;
  overflow: hidden;
  max-height: 150px;
  transition: all .3s ease;
}
.hollow-action-03.success .wpcf7 {
  max-height: 0;
  opacity: 0;
}
.hollow-action-03 .wpcf7-form {
  display: flex;
  flex-direction: column;
}
.hollow-action-03 input[type="email"] {
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  font-family: 'Lato';
  padding: .25rem;
  background: transparent;
  margin-bottom: .2rem;
}
.hollow-action-03 ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
.hollow-action-03 ::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
.hollow-action-03 :-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.hollow-action-03 :-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
.hollow-action-03 input[type="submit"] {
  border: none;
  background: transparent;
  padding: .75rem 2rem;
  border-radius: 3rem;
  font-family: 'Lato';
  color: #fff;
  cursor: pointer;
  margin-top: .75rem;
  transition: all .3s ease;
}
.hollow-action-03 input[type="submit"]:hover {
  background: #2B6182;
  color: #fff;
}
.hollow-action-03 span.button {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hollow-action-03 div.wpcf7 .ajax-loader {
  display: none !important;
}
.hollow-action-03 span.wpcf7-not-valid-tip {
  transition: all .3s ease;
}
.hollow-action-03 .wpcf7-validation-errors {
  display: none !important;
}
.hollow-action-03 div.wpcf7-mail-sent-ok {
  display: none !important;
}
.hollow-action-03 h3.messageStatus {
  opacity: 0;
  max-height: 0;
  transition: all .3s ease;
  color: #2B6182;
  text-align: center;
}
.hollow-action-03 h3.messageStatus.active {
  opacity: 1;
  max-height: 60px;
}
.hollow-action-03 h3.messageStatus span {
  font-size: 1.4rem;
}
@media only screen and (max-width: 991px) {
  .hollow-action-03 {
    background-attachment: unset;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-action-03 {
    text-align: center;
    padding: 3rem 0;
  }
}



.hollow-testimonials-08 {
  padding: 4rem 0;
}
.hollow-testimonials-08 h2 {
  font-size: 2.75rem;
  color: var(--blueDark);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: .4rem;
}
.hollow-testimonials-08 .flex-container {
  justify-content: space-between;
}
.hollow-testimonials-08 .box {
  width: 48%;
  text-align: center;
  margin-bottom: 3rem;
  padding: 1.5rem;
  box-shadow: 0 2px 5px 0px #9e9e9e;
  border-radius: 1rem;
}
.hollow-testimonials-08 .box i {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--blue);
}
.hollow-testimonials-08 .box p {
  color: var(--blueDark);
  font-weight: 400;
  font-size: 1rem;
}
.hollow-testimonials-08 .box h3 {
  color: var(--blue);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: .5rem;
  letter-spacing: .2rem;
}
.hollow-testimonials-08 .box h4 {
  color: var(--blue);
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.hollow-testimonials-08 .btn-wrap {
  display: flex;
  justify-content: center;
}
.hollow-testimonials-08 .btn-wrap a {
  display: inline-block;
  text-align: center;
  border: 1px solid var(--red);
  border-radius: 3rem;
  padding: .75rem 2rem;
  align-items: center;
  display: flex;
  color: var(--red);
  transition: all .3s ease;
}
.hollow-testimonials-08 .btn-wrap a i {
  margin-right: 1rem;
  font-size: 1.5rem;
}
.hollow-testimonials-08 .btn-wrap a:hover {
  color: #fff;
  background: var(--red);
}
@media only screen and (max-width: 767px) {
  .hollow-testimonials-08 {
    padding: 3rem 0;
  }
  .hollow-testimonials-08 .flex-container {
    flex-direction: column;
  }
  .hollow-testimonials-08 .box {
    width: 100%;
  }
}


/*============================ */
/* Footer 05
============================== */
.hollow-footer-05 {
  background: var(--blueDark);
}

/*Main Content*/
.hollow-footer-05 .main-content {
  padding: 2rem 0 0;
}
.hollow-footer-05 .main-content .flex-container {
  justify-content: space-between;
  align-items: center;
}
.hollow-footer-05 .box {
  flex: 1;
  flex-basis: 33%;
  display: flex;
  flex-flow: column;
  padding: 2rem 2rem 4rem;
}
.hollow-footer-05 .box img {
  max-width: 100%;
}
.hollow-footer-05 .box h3 {
  display: inline-flex;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2rem;
  margin-bottom: 2rem;
  padding-bottom: .25rem;
  padding-left: 1rem;
  font-size: 1.1rem;
  border-bottom: 2px dotted #fff;
}
.hollow-footer-05 .box-item {
  padding: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}
.hollow-footer-05 .box-item.social {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  background: #2a3f4a;
  margin-top: 1rem;
  border-radius: 3rem;
}
.hollow-footer-05 .box-item .text {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.hollow-footer-05 .box-item:last-of-type {
  margin-bottom: 0;
}
.hollow-footer-05 .box-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #263a44;
  transition: .2s ease;
  transform: translateX(-110%);
  opacity: 0;
}
.hollow-footer-05 .box-item:hover:before {
  transform: none;
  opacity: 1;
}
.hollow-footer-05 .box-item i {
  position: relative;
  width: 3rem;
  display: flex;
  justify-content: center;
  line-height: 1;
  color: #fff;
  margin-right: .5rem;
}
.hollow-footer-05 .box-item i:before {
  color: var(--red);
  font-size: 1.5rem;
  transition: .3s ease
}
.hollow-footer-05 .box-item.social i:before {
  color: #fff;
}
.hollow-footer-05 .box-item i.fa-mobile:before {
  font-size: 2.5rem;
  line-height: 0.8;
}
.hollow-footer-05 .box-item.social i:hover:before {
  color: var(--blue);
}
.hollow-footer-05 .box-item h4 {
  position: relative;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: .4rem;
}
.hollow-footer-05 .box-item.links h4 {
  margin-bottom: 1rem;
}
.hollow-footer-05 .box-item p {
  position: relative;
  color: #fff;
  font-size: 1rem;
}
.hollow-footer-05 .box-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hollow-footer-05 .box-item.social a {
  position: relative;
  font-size: 1.1rem;
  color: #fff;
  transition: .3s ease;
  width: auto;
}
.hollow-footer-05 .box-item.social a:hover {
  color: #CD8207;
}
.hollow-footer-05 .box-item span,
.hollow-footer-05 span{
  position: relative;
  color: #fff;
  font-weight: 300;
  font-size: 1.1rem;
}
.hollow-footer-05 .box-item.links a {
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 1px solid #fff;
  transition: .3s ease;
  width: max-content;
  margin: .5rem 0rem;
  padding-bottom: .2rem;
  font-style: italic;
}
.hollow-footer-05 .box-item.links a:hover {
  color: var(--blue);
}
.hollow-footer-05 .box-item.links {
  margin-bottom: 12px;
}

/*Meta Footer*/
.hollow-footer-05 .meta-footer {
  position: relative;
  background: #263a44;
  padding: .75rem 0;
}
.hollow-footer-05 .meta-footer .flex-container {
  justify-content: space-between;
  align-items: center;
}
.hollow-footer-05 .meta-footer p {
  color: #fff;
  line-height: 1;
  font-size: 1rem;
  margin: 0;
}
.hollow-footer-05 .meta-footer p a {
  font-weight: 700;
  transition: .3s ease;
  color: #fff;
  padding-left: .25rem;
}
.hollow-footer-05 .meta-footer p a:hover {
  color: var(--blue);
}
.hollow-footer-05 .top {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 0;
  left: 50%;
  background: transparent;
  transition: all .3s ease;
  transform: translate(-50%,-70%);
  cursor: pointer;
}
.hollow-footer-05 .top i {
  font-size: 1.25rem;
  color: #fff;
  transition: inherit;
  opacity: 0.5;
}
.hollow-footer-05 .top:hover i {
  transform: translateY(-10px);
  opacity: 1;
}
.hollow-footer-05 .top p {
  color: #fff;
  font-weight: 400;
  font-size: 1.1rem;
  transform: translateY(100%);
  opacity: 0;
  transition: .5s ease;
}
.hollow-footer-05 .top:hover p {
  opacity: 1;
  transform: none;
}
@media only screen and (max-width: 1199px) {
  .hollow-footer-05 .main-content .flex-container {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-footer-05 .main-content .flex-container {
    flex-flow: column;
  }
  .hollow-footer-05 .meta-footer .flex-container {
    flex-flow: column;
  }
  .hollow-footer-05 .meta-footer p {
    padding: .25rem 0;
  }
  .hollow-footer-05 .meta-footer .top {
    left: auto;
    right: 2rem;
    top: 50%;
    transform: translate(0, -50%);
  }
  .hollow-footer-05 .meta-footer .top p {
    transform: none;
    opacity: 1;
  }
  .hollow-footer-05 .box {
    padding: 1rem;
  }
}


/*DEFAULT STYLE OVERWRITES*/

/*============================ */
/* DEFAULT BLOG STYLES: 
============================== */
/*Search Form*/
.search-form-wrap button {
  background: var(--red);
  padding: .6rem 2rem;
  border-radius: 3rem;
}
.search-form-wrap button:hover {
  background: #a53925;
}
/*Blog Page*/
.blog-wrap .post-item-header h1 {
  background: var(--blueDark);
}
.blog-wrap .post-item .post-item-header h1:hover {
  background: #22343c;
}
.blog-wrap .post-item .post-content a {
  background: var(--red);
  padding: .6rem 2rem;
  border-radius: 3rem;
}
.blog-wrap .post-item .post-content a:hover {
  background: #a53925;
}
.blog-wrap .post-item p {
  border-color: var(--blueDark);
  color: var(--blueDark);
  font-size: 1rem;
  font-weight: 400;
}
.blog-wrap .post-item .date-wrap i {
  color: var(--blueDark);
}
/*Sidebars*/
.blog-sidebar {
  border-color: var(--blueDark);
}
.blog-sidebar .post-item-header h2 {
  background: var(--blueDark);
}
/*Post Content*/
.blog-post-content h1 {
  color: var(--blueDark);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .4rem;
}
.blog-post-content h2 {
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .3rem;
  font-size: 1.5rem;
}
.blog-post-content h3 {
  color: var(--red);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .2rem;
}
.blog-post-content h4 {
  color: var(--red);
  letter-spacing: .2rem;
	margin-bottom: 0.5rem;
}
.blog-post-content p {
  color: var(--blueDark);
  font-weight: 400;
  font-size: 1rem;
}
.blog-post-content p a {
  color: var(--blue);
}
.blog-post-content p a:hover {
  color: var(--red);
}
/*Post Return Button*/
.blog-return a.blog-return-btn {
  background: var(--red);
  padding: .75rem 2rem;
  border-radius: 3rem;
}
.blog-return a.blog-return-btn:hover {
  background: #a53925;
}
/*============================ */
/* DEFAULT POPUP STYLES:
============================== */
.default-popup .form-wrap {
  background: #fff;
}
.default-popup .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.default-popup .form-wrap h3 {
  color: var(--blueDark);
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .4rem;
  font-weight: 700;
}
.default-popup .form-wrap p {
  color: var(--blueDark);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  text-align: center;
}
.default-popup .wpcf7-form-control-wrap input,
.default-popup .wpcf7-form-control-wrap select,
.default-popup .wpcf7-form-control-wrap textarea {
  background: var(--blueDark);
  color: #fff;
  border: #22343c;
}
.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: var(--blueDark);
}
.default-popup .wpcf7-form input[type="submit"] {
  background: var(--blue);
  padding: .6rem 2rem;
  border-radius: 3rem;
}
.default-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--blueDark);
}
.default-popup .loader-wrap {
  background: var(--blue);
}
.default-popup .button-wrap i {
  background: var(--blue);
}
.default-popup .form-wrap .close {
  background: var(--red);
}
.default-popup .form-wrap .close:hover {
  background: #8c3221;
}
.default-popup ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.default-popup ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.default-popup :-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.default-popup :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .default-popup .form-wrap .content p {
    display: none;
  }
}
/*============================ */
/* DEFAULT SEO STYLES:
============================== */
.content.seo {
  background: var(--blue);
}
.content.seo i {
  color: #fff;
}
.content.seo p a:hover {
  color: var(--blue);
}
/*============================ */
/* DEFAULT INTERIOR PLACEHOLDERS
============================== */
.interior-placeholder-header {
  border-color: var(--defaultMainDark);
  background: var(--blue);
}
.interior-placeholder-header h1 {
  color: #FFF;
}


/*INTERIOR PAGES*/

.interior-header-01 {
  padding: 4rem 0;
  background: #314c58;
  /*background: url(img/h1.jpg) center center no-repeat;*/
  background-size: cover;
  box-shadow: 0 2px 5px -2px #000;
}
.page-id-273 .interior-header-01 {
  background: #314c58;
  /*background: url(img/h2.jpg) center center no-repeat;*/
  background-size: cover;
}
.page-id-274 .interior-header-01 {
  background: #314c58;
  /*background: url(img/h3.jpg) center center no-repeat;*/
  background-size: cover;
}
.interior-header-01 .flex-container {
  justify-content: center;
  align-items: center;
}
.interior-header-01 h1 {
  font-weight: 700;
  color: #fff;
  letter-spacing: .4rem;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .interior-header-01 {
    margin-top: -8rem;
    padding: 18rem 0 9rem;
  }
	body.single-post .interior-header-01 {
		padding:3rem 0;
	}
}
@media only screen and (max-width: 991px) {
  .interior-header-01 {
    padding: 6rem 0 5rem;
  }
}
/*============================ */
/* Content 04
============================== */
.hollow-content-04 {
  padding: 4rem 0;
}
.hollow-content-04 .flex-container {
  align-items: center;
  justify-content: space-between;
}
.hollow-content-04 .text-wrap {
  flex-basis: 58%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
body.page-id-356 .hollow-content-04 .text-wrap {
  flex-basis: 100%;
}
/* .hollow-content-04 .password-protected {
  flex-basis: 100% !important;
} */
.hollow-content-04.b .text-wrap {
  flex-basis: 98%;
}
.hollow-content-04 .title-wrap {
  margin-bottom: 1rem;
}
.hollow-content-04 .title-wrap h2 {
  color: var(--blueDark);
  font-weight: 700;
  letter-spacing: .4rem;
  margin-bottom: .25rem;
  text-transform: uppercase;
}
.hollow-content-04 h3 {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .2rem;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hollow-content-04 .text-wrap p {
  color: var(--blueDark);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.hollow-content-04 .list-wrap {
  display: flex;
  width: 100%;
}
.hollow-content-04 .list-wrap ul {
  display: block;
  margin-right: 4rem;
}
.hollow-content-04 .list-wrap ul li i {
  color: var(--blueDark);
  vertical-align: top;
  margin-top: .3rem;
  padding-right: .75rem;
  font-size: .5rem;
}
.hollow-content-04 .list-wrap ul li p {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: top;
}
.hollow-content-04 .img-wrap {
  flex-basis: 38%;
  display: flex;
  object-fit: cover;
  overflow: hidden;
  flex-direction: column; 
}
.hollow-content-04 img.doc-preview {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 5px #000;
}
/*Download Buttons*/
.hollow-content-04 .button-list {
  display: flex;
  margin-top: 0rem;
  flex-wrap: wrap;
}
.hollow-content-04 .button-list a {
  border-radius: 3rem;
  border: 1px solid #fff;
  color: #fff;
  background: var(--blueDark);
  padding: .75rem 2rem;
  margin: .5rem 0.5rem;
  display: flex;
  align-items: center;
  transition: all .3s ease;
}
.hollow-content-04 .button-list a i {
  margin-right: .4rem;
  font-size: 1.5rem;
}
.hollow-content-04 .button-list a:hover {
  background: #fff;
  color: var(--blueDark);
}
@media only screen and (max-width: 991px) {
  .hollow-content-04 .flex-container > * {
    flex-basis: 48%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-04 {
    padding: 2rem 0;
  }
  .hollow-content-04 .flex-container {
    flex-direction: column;
  }
  .hollow-content-04 .flex-container > * {
    width: 100%;
  }
  .hollow-content-04 .text-wrap {
    margin-bottom: 2rem;
  }
  .hollow-content-04 .list-wrap ul {
    margin-right: 1rem;
  }
  .hollow-content-04 .img-wrap {
    max-height: 55vh;
    min-height: 16rem;
    flex-direction: column;   
  }
}
.hollow-content-04 img {
  max-width: 100%;
}

.interior-testimonial {
  padding: 2rem 0 1rem;
}
.interior-testimonial .flex-container {
  justify-content: center;
}
.interior-testimonial .box-a {
  background: #fff;
  padding: 2rem;
  margin-bottom: 2rem;
}
.interior-testimonial .quote {
  display: flex;
  justify-content: center;
}
.interior-testimonial i {
  text-align: center;
  color: var(--blue);
  font-size: 2rem;
  margin-bottom: .5rem;
}
.interior-testimonial p {
  color: var(--blueDark);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1rem;
  text-align: center;
}
.interior-testimonial h3 {
  color: var(--blueDark);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: .2rem;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.interior-testimonial h4 {
  text-align: center;
  color: var(--blueDark);
  text-transform: uppercase;
  font-size: 1rem;
}
.interior-testimonial a {
  text-decoration: underline;
}
.interior-testimonial .box-b {
  background: #f5f5f5;
  padding: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .interior-testimonial .box-a {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .interior-testimonial .box-b {
    margin-bottom: 1rem;
  }
}



/*============================ */
/* Contact 10
============================== */
.hollow-contact-10 {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
.hollow-contact-10 .flex-container {
  position: relative;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hollow-contact-10 h2 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--blueDark);
  text-transform: uppercase;
  letter-spacing: .5rem;
}
.hollow-contact-10 p {
  margin-bottom: 2rem;
  color: var(--blueDark);
  font-size: 1rem;
  font-weight: 400;
}
.hollow-contact-10 .your-email {
  float: left;
  width: 50%;
  padding-right: 15px;
}
.hollow-contact-10 .your-phone {
  float: left;
  width: 50%;
}
.hollow-contact-10 input:not([type="submit"]),
.hollow-contact-10 textarea {
  font-family: 'Arial';
  font-size: 1rem;
  font-weight: 300;
  width: 100%;
  border: transparent;
  padding: .6em;
  margin-bottom: 1rem;
  color: #FFF;
  background: var(--blueDark);
  border-radius: 5px;
}
.hollow-contact-10 textarea {
  height: calc(100vh / 4);
  min-height: 8rem;
}
.hollow-contact-10 .wpcf7-form-control.wpcf7-submit {
  background: var(--blue);
  border: none;
  border-radius: var(--root--borderRadius);
  padding: .75rem 2rem;
  border-radius: 3rem;
  color: #FFF;
  cursor: pointer;
  font-weight: 300;
  font-size: 1rem;
  text-transform: uppercase;
  width: 100%;
  justify-content: center;
  transition: .3s ease;
}
.hollow-contact-10 .wpcf7-form-control.wpcf7-submit:hover {
  background: #1a5f80;
}
.hollow-contact-10 ::placeholder { 
  color: #FFF;
}
@media only screen and (min-width: 992px) {
  .hollow-contact-10 .flex-container {
    width: calc(100vw / 2);
  }
}
@media only screen and (max-width: 991px) {
  .hollow-contact-10 {
    background-attachment: unset;
  }
  .page-template-page-contact .hollow-contact-10 {
    padding: 3rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-contact-10 {
    padding: 2rem 0;
  }
  .page-template-page-contact .hollow-contact-10 {
    padding: 2rem 0;
  }
}




.hollow-testimonials-08 .grid-container {
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
}
.hollow-testimonials-08 .box {
  width: 98%;
}
.hollow-testimonials-08 .box h4 a {
  text-decoration: underline;
  transition: all 0.4s ease;
}
.hollow-testimonials-08 .box h4 a:hover {
  color: var(--red);
}
.single-quote {
  font-style: italic;
}
.single-quote span {
  font-style: initial;
}
.quote-wrap {
  text-align: left;
}
.hollow-content-04.b .grid-container {
  grid-template-columns: repeat(2, 1fr);
}
.hollow-content-04.b .box {
  text-align: center;
  margin: auto auto 3rem;
}
.hollow-content-04.b .box a {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .2rem;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hollow-action-03 a {
  border-radius: 3rem;
  border: 1px solid #fff;
  color: #fff;
  padding: .75rem 2rem;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  transition: all .3s ease;
}
.hollow-action-03 a:hover {
  background: #fff;
  color: var(--blueDark);
}
@media only screen and (max-width: 991px) {
  .hollow-content-04.b .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .hollow-content-04.b img {
    max-width: 100%;
    min-height: auto;
  }
}

.content.seo {
  display: none;
}

/*============================ */
/* Testimonial 06
============================== */
.hollow-testimonial-06 {
  padding: 1rem 0;
  background: #F9F9F9;
  text-align: left;
}
body.home .hollow-testimonial-06 {background:transparent;}
.hollow-testimonial-06 h1 {
  color: grey;
  text-align: center;
  margin-bottom: 2rem;
}
.hollow-testimonial-06 hr.liner {
  border: none;
  height: 2px;
  background: #e2e2e2;
  width: 0;
  margin: 0 auto 0 4px;
  max-width: calc(100% - 8px);
}
.hollow-testimonial-06 .flex-container {
  flex-direction: column;
}
.hollow-testimonial-06 .testimonial-slider-wrap {
  padding: 1rem;
  box-shadow: 0 3px 32px rgba(0,0,0,0.1);
  background: #FFF;
  border-radius: 5px;
}
.hollow-testimonial-06 .text p {
  font-size: 1rem;
  font-weight: 400;
  color: grey;
  font-style: italic;
}
.hollow-testimonial-06 .creds {
  padding: 0 1rem;
}
.hollow-testimonial-06 .creds .arrow {
  display: block;
  width: 0px;
  height: 0px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #FFF;
  margin: 0 2rem 1rem;
}
.hollow-testimonial-06 .creds h3 {
  font-size: 1.3rem;
  margin-bottom: .25rem;
}
.hollow-testimonial-06 .creds p {
  font-size: 1rem;
}
@media only screen and (max-width: 767px) {
  .hollow-testimonial-06 {
    padding: 2rem 0;
  }
}
/*============================ */
/* Password Protected Pages
============================== */
.post-password-form {
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  padding: 2rem 0;
  max-width:800px;
  margin:0 auto;
}
.post-password-form input {
  font-family: 'Arial';
  font-size: 1rem;
  font-weight: 300;
  width: 100%;
  border: transparent;
  padding: .6em;
  margin-bottom: 1rem;
  color: #FFF;
  background: var(--blueDark);
  border-radius: 5px;
}
.post-password-form input[type="submit"] {
  background: var(--blue);
  border: none;
  border-radius: var(--root--borderRadius);
  padding: .75rem 2rem;
  border-radius: 3rem;
  color: #FFF;
  cursor: pointer;
  font-weight: 300;
  font-size: 1rem;
  text-transform: uppercase;
  width: 100%;
  justify-content: center;
  transition: .3s ease;
}
.post-password-form input[type="submit"]:hover {
  background: #1a5f80;
}
.page-id-354 .hollow-header-08,
.page-id-355 .hollow-header-08,
.page-id-356 .hollow-header-08 {
  background: var(--blueDark);
}

.post-content .thumbnail-wrap {height:auto; max-height:16rem;}

.blog-post-content ul {
	text-indent:0;
	margin-left: 1.5rem;
}
.blog-post-content ul li {
	display:list-item;
	color: var(--blueDark);
    font-weight: 400;
    font-size: 1rem;
}

#subscribe-email input[type="email"] {
	font-family: 'Lato';
    font-size: 1rem;
    padding: 0.5rem 0.7rem;
    border: 1px solid #ccc;	
}
.keep.logo {
    width: initial;
    height: initial;
    max-height: 140px;
    max-width: 100%;
    margin: 5px 0px;
    display: inline-block;	
}
.center-logos .col-xs-6 {
	text-align:center;
}