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

  --blue: #263D8E;
  --blueDark: #1A2B5B;
  --blueLight: #3759B7;
  --red: #BD202D;
  --redDark: #911726;

  --poiret: 'Poiret One', cursive;

}

h1,h2 {
  font-family: var(--poiret);
}

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

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

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

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

@media screen and (min-width:992px) {
  .hollow-header-08 .logo {
    /*width: 25%;*/
    margin-right: 1rem;
  }
  .hollow-header-08 .menu-item-has-children .dropdown-menu {
    position: absolute;
    flex-direction: column;
  }
  .hollow-header-08 .menu-item-has-children:hover > .dropdown-menu {
    display: inline-flex;
  }
  .hollow-header-08 .menu-item.open>a,
  .hollow-header-08 .menu-item:hover>a,
  .hollow-header-08 .menu-item.active a,
  .hollow-header-08 .menu-item.active:hover>a {
    background: var(--blueDark);
    color: white;
  }
  .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);
    color: white;
  }
  .hollow-header-08 .mobile-logo,
  .hollow-header-08 .mobile-toolbar {
    display: none;
  }
  .hollow-header-08 #mobile {
    display: none;
  }
}
@media only screen and (max-width:1199px) and (min-width:992px) {
  .hollow-header-08 nav li a {
    text-transform: capitalize;
  }
}
@media only screen and (max-width:991px) {
  .hollow-header-08 .flex-container {
    flex-direction: column-reverse;
  }
  .hollow-header-08 .logo {
    justify-content: center;
    padding: calc(2rem + 46px) 0 2rem;
    margin: 0 auto;
  }
  .hollow-header-08 .desktop-logo {
    display: none;
  }
  body:not(.home) .hollow-header-08 .logo {
    display: none;
  }
  .hollow-header-08 .content-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: block;
  }
  .hollow-header-08 .meta-wrap {
    display: none;
  }
  .hollow-header-08 .menu {
    background: var(--blue);
    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: white;
  }
  .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;
  }
}

/*============================ */
/* Hero 13
============================== */
.hollow-hero-13 {
  position: relative;
  overflow: hidden;
}

/*Image Slider*/
.hollow-hero-13 .img-slider {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.hollow-hero-13 .img-slider.slick-initialized {
  visibility: visible;
}
.hollow-hero-13 .img-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 45, 62, 0.8);
}
.hollow-hero-13 .img-slider .slick-list,
.hollow-hero-13 .img-slider .slick-track {
  height: 100%;
  overflow: visible;
}
.hollow-hero-13 .img-slider img {
  object-fit: cover;
}
.hollow-hero-13 .img-slider .slick-arrow {
  font-size: 1rem;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 1;
  color: white;
  cursor: pointer;
  transition: all .3s ease;
  padding: .6rem;
  background: rgba(0,0,0,0.2);
}
.hollow-hero-13 .img-slider .slick-arrow:hover {
  background: rgba(0,0,0,0.7);
}
.hollow-hero-13 .img-slider .next {
  right: 1rem;
}
.hollow-hero-13 .img-slider .prev {
  left: 1rem;
}

/*Caption Slider*/
.hollow-hero-13 .cap-slider {
  width: 100%;
  padding: 12rem 0;
  visibility: hidden;
}
.hollow-hero-13 .cap-slider.slick-initialized {
  visibility: visible;
}
.hollow-hero-13 .cap-slider .slick-track {
  display: flex;
  align-items: center;
}
.hollow-hero-13 .caption {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  padding: 0 4rem;
}
.hollow-hero-13 .caption h1 {
  font-weight: 700;
  color: white;
  margin-bottom: .5rem;
  opacity: 0;
}
.hollow-hero-13 .caption.slick-active h1 {
  animation: hollowHeroSlide .5s ease-out forwards;
}
.hollow-hero-13 .caption h3 {
  color: white;
  margin-bottom: 2rem;
  opacity: 0;
}
.hollow-hero-13 .caption.slick-active h3 {
  animation: hollowHeroSlide .5s ease-out .2s forwards;
}
.hollow-hero-13 .caption p {
  color: white;
  margin-bottom: 2rem;
  opacity: 0;
  max-width: 60%;
  font-size: 1rem;
}
.hollow-hero-13 .caption.slick-active p {
  animation: hollowHeroSlide .5s ease-out .4s forwards;
}
.hollow-hero-13 .caption a {
  display: inline-flex;
  align-items: center;
  color: white;
  padding: .5rem 1rem;
  border: 2px solid white;
  transition: all .3s ease;
  opacity: 0;
}
.hollow-hero-13 .caption.slick-active a {
  animation: hollowHeroSlide .5s ease-out .6s forwards;
}
.hollow-hero-13 .caption a:hover {
  background: var(--blue);
}
.hollow-hero-13 .caption a i {
  font-size: 1rem;
  padding-right: .5rem;
  color: white;
}
@media (max-width: 767px) {
  /* Image Slider */
  .hollow-hero-13 .img-slider .slick-arrow {
    bottom: 1rem;
    transform: none;
  }
  .hollow-hero-13 .img-slider .next {
    right: 40%;
  }
  .hollow-hero-13 .img-slider .prev {
    left: 40%;
  }
  /* Caption Slider */
  .hollow-hero-13 .caption {
    padding: 0 2rem;
  }
  .hollow-hero-13 .cap-slider {
    padding: 4rem 0 6rem;
  }
  .hollow-hero-13 .caption p {
    max-width: 100%;
  }
}

@keyframes hollowHeroSlide {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}

/*============================ */
/* Action 03
============================== */
.hollow-action-09 {
  padding: 6rem 0 4rem;
  background: whitesmoke;
}
.hollow-action-09 .flex-container {
  align-items: flex-start;
  justify-content: space-between;
}
.hollow-action-09 .box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  width: 23%;
}
.hollow-action-09 .icon-wrap-outer {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 5.5rem;
  height: 5.5rem;
  margin-bottom: 1rem;
  background: var(--blueDark);
  transition: all .3s ease;
}
.hollow-action-09 .icon-wrap-inner {
  width: 100%;
  height: 100%;
  background: var(--blue);
  border-radius: 50%;
  transition: all .3s ease;
}
.hollow-action-09 .box:hover .icon-wrap-inner {
  transform: scale(0.875);
}
.hollow-action-09 .box i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2.25rem;
  transform: translate(-50%,-50%);
  color: #FFF;
  transition: all .3s;
}
.hollow-action-09 .box p {
  color: var(--blue);
  text-align: center;
}
/*.hollow-action-09 .box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}*/
/*@media only screen and (max-width: 991px) {
  .hollow-action-09 {
    background-attachment: unset;
  }
}*/
@media only screen and (max-width: 767px) {
  .hollow-action-09 {
    padding: 2rem 0 0rem;
  }
  .hollow-action-09 .flex-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hollow-action-09 .box {
    width: 49%;
  }
  .hollow-action-09 .icon-wrap-outer {
    width: 6rem;
    height: 6rem;
  }
  .hollow-action-09 .box i {
    font-size: 2.5rem;
  }
  .hollow-action-09 .box p {
    font-size: 1.3rem;
    font-weight: 400;
  }
}

/*============================ */
/* Action 11
============================== */
.hollow-action-11 {
  padding: 1rem 0;
  background: var(--blue);
}
.hollow-action-11 .flex-container,
.hollow-action-11 .flex-container-fluid {
  justify-content: center;
  align-items: center;
}
.hollow-action-11 h3 {
  color: white;
  font-weight: 300;
  font-size: 1.4rem;
  text-align: center;
  margin-right: 2rem;
  max-width: 40rem;
}
.hollow-action-11 a {
  display: flex;
  align-items: center;
  background: var(--red);
  border: 2px solid white;
  color: white;
  padding: .5rem 1.5rem;
  transition: all .3s ease;
}
.hollow-action-11 a:hover {
  background: var(--redDark);
}
.hollow-action-11 a i {
  margin-right: .75rem;
  font-size: 1.5rem;
}
@media only screen and (max-width: 991px) {
  .hollow-action-11 {
    padding: 2rem 1rem;
  }
  .hollow-action-11 .flex-container,
  .hollow-action-11 .flex-container-fluid {
    flex-flow: column;
  }
  .hollow-action-11 h3 {
    margin: 0 0 1rem;
    padding: 0;
  }
  .hollow-action-11 h3 span {
    border: none;
    padding: none;
    font-weight: 300;
  }
}

/*============================ */
/* Service Images 19
============================== */
.service-images-19 {
  background: whitesmoke;
  padding: 4rem 0 2rem;
}
.service-images-19 .header-wrap {
  padding: 4rem 2rem;
  align-items: center;
}
.service-images-19 .header-wrap h1 {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 700;
  margin-right: 1rem;
}
.service-images-19 .header-wrap hr {
  flex: 1;
  margin: 0;
  border: none;
  height: 2px;
  background: var(--blue);
}
.service-images-19 .box-wrap {
  justify-content: space-between;
}
.service-images-19 .service-box {
  width: 31%;
  position: relative;
  display: flex;
  flex-flow: column;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 2rem;
}
.service-images-19 .service-box img {
  width: 100%;
}
.service-images-19 .text-wrap {
  background: white;
  position: relative;
  padding: 2rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  height: 100%;
}
.service-images-19 .text-wrap h3 {
  color: var(--blue);
  margin-bottom: 1rem;
}
.service-images-19 .text-wrap p {
  color: grey;
  font-size: 1rem;
}
.service-images-19 .text-wrap span {
  display: flex;
  align-items: center;
  padding-bottom: .2rem;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
}
.service-images-19 .text-wrap span i {
  width: 0;
  transform: translateX(-100%);
  opacity: 0;
  transition: all .3s ease;
}
.service-images-19 .service-box:hover .text-wrap span i {
  opacity: 1;
  width: 10px;
  margin-left: .5rem;
  transform: none;
}
@media (max-width: 767px) {
  .service-images-19 {
    padding: 2rem 0 0;
  }
  .service-images-19 .box-wrap {
    flex-flow: column;
  }
  .service-images-19 .header-wrap {
    padding: 2rem 1rem;
  }
  .service-images-19 .header-wrap h1 {
    margin: 0;
  }
  .service-images-19 .header-wrap hr {
    display: none;
  }
  .service-images-19 .service-box {
    width: 100%;
  }
  .service-images-19 .text-wrap span {
    font-size: 1.3rem;
  }
}

/*============================ */
/* Hollow Content 18
============================== */
.hollow-content-18 {
  padding-bottom: 4rem;
}
/* Header Wrap */
.hollow-content-18 .header-wrap {
  padding: 4rem 0;
  flex-flow: column-reverse;
  align-items: center;
  text-align: center;
}
.hollow-content-18 .header-wrap h2 {
  color: var(--blue);
  font-family: 'Poiret One', cursive;
}
.hollow-content-18 .header-wrap h3 {
  color: var(--blue);
  display: flex;
  align-items: center;
}
.hollow-content-18 .header-wrap span {
  padding: 0 1rem;
}
.hollow-content-18 .header-wrap hr {
  width: 75px;
  margin: 0;
  padding: 0;
  border: none;
  height: 1px;
  background: var(--blue);
}
/* Content Wrap */
.hollow-content-18 .content-wrap {
  justify-content: space-between;
}
/* Text Wrap */
.hollow-content-18 .text-wrap {
  width: 48%;
}
.hollow-content-18 .text-wrap h3 {
  font-family: 'Poiret One', cursive;
  margin-bottom: 1rem;
  color: var(--red);
  font-weight: 600;
}
.hollow-content-18 .text-wrap p {
  font-size: 1.1rem;
  color: grey;
}
.hollow-content-18 .text-wrap ul {
  list-style-type: disc;
  padding-left: 1.2rem;
}
.hollow-content-18 .text-wrap ul li {
  display: list-item;
  font-size: 1.1rem;
}
/* Images Wrap */
.hollow-content-18 .img-wrap {
  width: 40%;
}
.hollow-content-18 .img-grid {
  display: grid;
  grid-template-rows: repeat(3, 12rem);
  grid-gap: 2rem;
}
.hollow-content-18 .img-grid img {
  border-top: 4px solid var(--blue);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .hollow-content-18 .text-wrap {
    max-width: 48%;
  }
}
@media(max-width: 991px) {
  .hollow-content-18 .content-wrap {
    flex-flow: column-reverse;
  }
  .hollow-content-18 .text-wrap {
    width: 100%;
  }
  .hollow-content-18 .text-wrap ul {
    padding-left: 2rem;
  }
  .hollow-content-18 .img-wrap {
    margin-bottom: 2rem;
    width: 100%;
  }
  .hollow-content-18 .img-grid {
    grid-template-rows: 1fr;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  }
  .hollow-content-18 .img-grid img {
    min-height: 16rem;
  }
  .hollow-content-18 .img-grid img:last-of-type {
    display: none;
  }
}
@media(max-width: 767px) {
  .hollow-content-18 {
    padding-bottom: 2rem;
  }
  .hollow-content-18 .header-wrap {
    padding: 2rem 0;
  }
  .hollow-content-18 .img-grid img:not(:first-of-type) {
    display: none;
  }
}

/*============================ */
/* Action 18
============================== */
.k_action {
  padding: 4rem 0;
}
.k_action .action-container {
  flex-flow: column;
}
.k_action .action-text {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}
.k_action .action-text h3 {
  font-size: 2rem;
  color: var(--blueDark);
  margin-bottom: 1rem;
}
.k_action .action-text p {
  max-width: 700px;
  color: var(--blue);
  margin-bottom: 2rem;
}
.k_action img {
  display: flex;
  object-fit: cover;
  width: 100%;
}
.k_action a {
  border: 2px solid var(--blue);
  padding: .5rem 1.5rem;
  color: var(--blue);
  transition: all .3s ease;
}
.k_action a:hover {
  background: var(--blue);
  color: white;
}
@media(max-width: 767px) {
  .k_action {
    padding: 2rem 0;
  }
  .k_action .action-text {
    margin-bottom: 2rem;
  }
}
/*============================ */
/* Contact 02
============================== */
.hollow-contact-02 {
  padding: 4rem 0 7rem;
  background: whitesmoke;
}
.hollow-contact-02 h2 {
  color: var(--blue);
  margin-bottom: .5rem;
}
.hollow-contact-02 p {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}
.hollow-contact-02 .grid-container {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
}
.hollow-contact-02 .grid-item {
  align-items: start;
}
.page-template-page-contact .hollow-contact-02 .location {
  align-self: flex-end;
  margin-bottom: 1rem;
}
.hollow-contact-02 .map-wrap iframe {
  height: 100%;
  width: 100%;
  pointer-events: none;
}
.hollow-contact-02 .map-wrap iframe.clicked {
  pointer-events: auto;
}
.hollow-contact-02 ul li {
  color: #333;
  line-height: 1.4;
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0;
}
.hollow-contact-02 .your-email {
  float: left;
  width: 50%;
  padding-right: 15px;
  z-index: 5;
}
.hollow-contact-02 .your-phone {
  float: left;
  width: 50%;
  z-index: 10;
}
.hollow-contact-02 .form-wrap {
  position: relative;
}
.hollow-contact-02 input:not([type="submit"]),
.hollow-contact-02 textarea {
  font-size: 1rem;
  width: 100%;
  background: white;
  border: 1px solid rgba(72,81,103,0.5);
  color: var(--blue);
  padding: .4rem .7rem;
  margin-bottom: 1rem;
  font-weight: 300;
}
.hollow-contact-02 textarea {
  z-index: 0;
  height: 15rem;
  max-height: 215px;
  margin: 0;
}
.hollow-contact-02 .wpcf7-form-control.wpcf7-submit {
  background: var(--blue);
  border: none;
  padding: .5rem 1.5rem;
  margin: 1rem 0 0;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 300;
  width: unset;
  transition: .3s ease;
}
.hollow-contact-02 .wpcf7-form-control.wpcf7-submit:hover {
  background: var(--blue);
}
@media only screen and (min-width: 768px) {
  .hollow-contact-02 .grid-container {
    /*grid-template-columns: repeat(4, 1fr);*/
    grid-template-columns: repeat(2, 1fr);
  }
  .hollow-contact-02 .wpcf7-form-control.wpcf7-submit {
    position: absolute;
    left: 0;
  }
  /*MS EDGE BUTTON LOCATION*/
  @supports (-ms-ime-align: auto) {
    .hollow-contact-02 .wpcf7-form-control.wpcf7-submit {
      bottom: -50px;
    } 
  }
}
/*@media only screen and (max-width: 991px) {
  .hollow-contact-02 {
    background-attachment: unset;
  }
}*/
@media only screen and (max-width:767px) {
  .hollow-contact-02 {
    padding: 2rem 0;
  }
  /*.page-template-page-contact .hollow-contact-02 {
    padding-top: 3rem;
  }*/
  .hollow-contact-02 .map-wrap iframe {
    height: 350px;
  }
  .hollow-contact-02 input:not([type="submit"]),
  .hollow-contact-02 textarea {
    font-size: 1.3rem;
    font-weight: 400;
  }
  .hollow-contact-02 ul li {
    font-size: 1.3rem;
  }
}

.hollow-web-design-01 {
  display:block;
}
.hollow-web-design-01 .top-half {
  padding:3rem 0 0;
}
.hollow-web-design-01 .top-half h1 {
  color:var(--blue);
  text-align:center;
  font-size:2rem;
  font-weight:500;
  margin-bottom:1rem;
}
.hollow-web-design-01 .top-half h2 {
  color:var(--red);
  text-align:center;
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: none;
  line-height: 24px;
  letter-spacing: 0px;
  margin:0 12rem 1rem;  
}
.hollow-web-design-01 .top-half p {
  font-size:1rem;
  color:#333;
  font-weight:300;
  width:75%;
  margin:0 auto 1rem;
}
.hollow-web-design-01 .bottom-half {
  padding:2rem 0 2rem;
}
.hollow-web-design-01 .bottom-half .form-wrap {
  width:50%;
  margin:0 auto;
  text-align: -webkit-center;
}
.hollow-web-design-01 .bottom-half .form-wrap input:not([type="submit"]),
.hollow-web-design-01 .bottom-half .form-wrap textarea {
  font-size: 1rem;
  width: 100%;
  background: white;
  border: 1px solid rgba(72, 81, 103, 0.5);
  color: var(--blue);
  padding: .4rem .7rem;
  margin-bottom: 1rem;
  font-weight: 300;
}
.hollow-web-design-01 .bottom-half .form-wrap textarea { height:9em; }
.hollow-web-design-01 .bottom-half .form-wrap textarea::placeholder { color:#333; }
.hollow-web-design-01 .bottom-half .form-wrap input[type="submit"] {
  background: var(--blue);
  border: none;
  padding: .5rem 1.5rem;
  margin: 1rem 0 0;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 300;
  width: unset;
  transition: .3s ea
}
@media only screen and (max-width:767px) {
  .hollow-web-design-01 .top-half h2 {
    margin:0 3rem 1rem;
  }
  .hollow-web-design-01 .top-half p {
    font-size:1rem !important;
  }
  .hollow-web-design-01 .bottom-half .form-wrap {
    width:80%;
  }
}

/*============================ */
/* Footer 04
============================== */
.hollow-footer-04 {
  position: relative;
  overflow: hidden;
  background: var(--blue);
}
.hollow-footer-04 .main .flex-container {
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
}
.hollow-footer-04 img {
  margin-bottom: 2rem;
  max-width: 90%;
}
.hollow-footer-04 h3 {
  color: white;
  font-weight: 300;
  text-align: center;
}
.hollow-footer-04 .social {
  display: flex;
  border-top: 2px dotted white;
  padding-top: .5rem;
  justify-content: center;
}
.hollow-footer-04 .main a {
  padding: .5rem;
  width: 3rem;
  margin: 0 .25rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 6px;
}
.hollow-footer-04 .main a i {
  color: white;
  font-size: 1.3rem;
  transition: all .3s ease;
}
.hollow-footer-04 .main a:hover i {
  color: var(--blue);
}

/* Meta */
.hollow-footer-04 .meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  padding: 1rem 0;
}
.hollow-footer-04 .meta .flex-container {
  justify-content: space-between;
  align-items: center;
}
.hollow-footer-04 .meta span {
  color: white;
  font-weight: 300;
  padding: 0 2rem;
}
.hollow-footer-04 .meta span a {
  color: white;
  transition: all .3s ease;
}
.hollow-footer-04 .meta span a:hover {
  color: var(--blue);
}
.hollow-footer-04 .meta i.top {
  position: absolute;
  margin-right: 1rem;
  right: 0;
  top: 0;
  color: white;
  padding: .5rem;
  opacity: 0.5;
  background: var(--red);
  cursor: pointer;
  transition: all .3s ease;
}
.hollow-footer-04 .meta i.top:hover {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .hollow-footer-04 img {
    max-width: 90%;
  }
  .hollow-footer-04 .meta {
    flex-direction: column;
  }
  .hollow-footer-04 .meta .flex-container {
    flex-flow: column;
  }
  .hollow-footer-04 .meta span:first-of-type {
    margin-bottom: 1rem;
  }
}

/*DEFAULT STYLE OVERWRITES*/

/*============================ */
/* DEFAULT BLOG STYLES: 
============================== */
/*Search Form*/
.search-form-wrap button {
  background: var(--red);
}
.search-form-wrap button:hover {
  background: var(--redDark);
}
/*Blog Page*/
.blog-wrap .post-item-header h1 {
  background: var(--blue);
}
.blog-wrap .post-item .post-item-header h1:hover {
  background: var(--blueDark);
}
.blog-wrap .post-item .post-content a {
  background: var(--red);
}
.blog-wrap .post-item .post-content a:hover {
  background: var(--redDark);
}
.blog-wrap .post-item p {
  border-color: var(--blue);
  color: grey;
  font-size: 1.1rem;
}
.blog-wrap .post-item .date-wrap i {
  color: var(--blue);
}
/*Sidebars*/
.blog-sidebar {
  border-color: var(--blue);
}
.blog-sidebar .post-item-header h2 {
  background: var(--blue);
}
/*Post Content*/
.blog-post-content h1 {
  color: var(--blue);
}
.blog-post-content h2 {
  color: var(--blueDark);
}
.blog-post-content h3 {
  color: var(--red);
}
.blog-post-content p {
  color: grey;
  font-size: 1.1rem;
}
.blog-post-content p a {
  color: var(--red);
}
.blog-post-content p a:hover {
  color: var(--redDark);
}
/*Post Return Button*/
.blog-return a.blog-return-btn {
  background: var(--red);
}
.blog-return a.blog-return-btn:hover {
  background: var(--redDark);
}
/*============================ */
/* DEFAULT POPUP STYLES:
============================== */
.default-popup .form-wrap {
  background: white;
}
.default-popup .form-wrap h3 {
  color: var(--blue);
}
.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);
}
.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 V2:
============================== */
.default-popup .form-wrap {
  width: 70%;
  padding: 1.5rem;
}
.default-popup .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.default-popup .content-wrap h2 {
  font-size: 1.3rem;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: .5rem;
}
.default-popup .content-wrap h3 {
  font-size: 1.5rem;
  text-align: center;
}
.default-popup .content-wrap p {
  text-align: center;
  font-size: 1.1rem;
  color: grey;
}
.default-popup .location {
  margin-bottom: 2rem;
}
.default-popup .location ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.default-popup .location ul li {
  display: flex;
  line-height: 1.4;
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0 1.5rem 0 0;
  color: grey;
}
.default-popup .location ul li i {
  color: var(--blue);
  padding-right: .5rem;
  padding-top: .3rem;
}
@media only screen and (max-width: 767px) {
  .default-popup .form-wrap {
    width: 95%;
  }
  .default-popup .content-wrap {
    align-items: flex-start;
  }
  .default-popup .content-wrap p {
    display: none;
  }
  .default-popup .content-wrap h2 {
    display: none;
  }
  .default-popup .content-wrap h3 {
    text-align: left;
    padding-right: 1rem;
  }
  .default-popup .location {
    width: 100%;
    text-align: left;
    margin-bottom: 0;
  }
  .default-popup .location ul li {
    width: 100%;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
  }
}
/*============================ */
/* DEFAULT SEO STYLES:
============================== */
.content.seo {
  background: var(--blueDark);
}
.content.seo i {
  color: white;
}
.content.seo p a:hover {
  color: var(--blue);
}
/*============================ */
/* DEFAULT INTERIOR PLACEHOLDERS
============================== */
.interior-placeholder-header {
  border-color: var(--blueDark);
  background: var(--blue);
}
.interior-placeholder-header h1 {
  color: white;
}


/*INTERIOR PAGES*/

.interior-hero-img {
  padding: 12rem 0;
  background: url(img/h1.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  box-shadow: 0px 0px 4px #000;
}
.page-id-276 .interior-hero-img {
  background: url(img/h2.jpg) center center no-repeat;
  background-size: cover;
}
.page-id-277 .interior-hero-img {
  background: url(img/h3.jpg) center center no-repeat;
  background-size: cover;
}
.page-id-278 .interior-hero-img {
  background: url(img/h4.jpg) center center no-repeat;
  background-size: cover;
}
.page-id-279 .interior-hero-img {
  background: url(img/h5.jpg) center center no-repeat;
  background-size: cover;
}
.page-id-280 .interior-hero-img {
  background: url(img/h6.jpg) center center no-repeat;
  background-size: cover;
}
.page-id-281 .interior-hero-img {
  background: url(img/h7.jpg) center center no-repeat;
  background-size: cover;
}
.page-id-282 .interior-hero-img {
  background: url(img/h8.jpg) center center no-repeat;
  background-size: cover;
}
.interior-hero-img:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 45, 62, 0.57);
  z-index: 1;
}


/*============================ */
/* Content 04
============================== */
.hollow-content-04 {
  padding: 4rem 0;
}
.page-id-274 .hollow-content-04 {
  padding: 4rem 0 2rem;
}
.hollow-content-04 .flex-container {
  align-items: center;
  justify-content: space-between;
}
.hollow-content-04 .text-wrap {
  flex-basis: 58%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hollow-content-04 .title-wrap {
  margin-bottom: 4rem;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.hollow-content-04 .title-wrap h1 {
  color: var(--blue);
  font-weight: 300;
  margin-bottom: .25rem;
  display: flex;
  align-items: center;
  text-align: center;
}
.hollow-content-04 .title-wrap hr {
  width: 75px;
  margin: 0;
  padding: 0;
  border: none;
  height: 1px;
  background: var(--blue);
}
.hollow-content-04 .title-wrap span {
  padding: 0 1rem;
}
.hollow-content-04 .title-wrap span.nowrap {
  padding: 0;
}
.hollow-content-04 .title-wrap h3 {
  color: var(--blue);
  text-align: center;
}
.hollow-content-04 .title-wrap p {
  font-size: 1rem;
  width: 70%;
  text-align: center;
  margin-top: 1rem;
  color: var(--blue);
}
.hollow-content-04 .text-wrap h3 {
  color: var(--red);
  margin-bottom: 1rem;
}
.hollow-content-04 .text-wrap h3:last-of-type {
  margin-top: 2rem;
}
.hollow-content-04 .text-wrap p {
  color: grey;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.hollow-content-04 .text-wrap .list-wrap {
  display: flex;
  justify-content: space-between;
}
.hollow-content-04 .text-wrap .list-wrap ul {
  display: block;
}
.hollow-content-04 .text-wrap .list-wrap ul:first-of-type {
  margin-right: 4rem;
}
.hollow-content-04 .text-wrap .list-wrap ul li i {
  color: var(--blue);
  vertical-align: top;
  padding-right: .75rem;
}
.hollow-content-04 .text-wrap .list-wrap ul li p {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 0;
}
.hollow-content-04 img {
  flex-basis: 38%;
  display: flex;
  object-fit: cover;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .hollow-content-04 .nextgen_pro_thumbnail_grid .image-wrapper img {
    height: 18rem!important;
    object-fit: cover;
  }
}
@media only screen and (max-width: 991px) {
  .hollow-content-04 .flex-container > * {
    flex-basis: 48%;
  }
  .hollow-content-04 .title-wrap {
    margin-bottom: 2rem;
  }
  .hollow-content-04 .text-wrap .list-wrap {
    flex-direction: column;
  }
  .hollow-content-04 .title-wrap hr {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-content-04 {
    padding: 2rem 0;
  }
  .page-id-274 .hollow-content-04 {
    padding: 2rem 0 0;
  }
  .hollow-content-04 .flex-container {
    flex-direction: column;
  }
  .hollow-content-04 .flex-container > * {
    width: 100%;
  }
  .hollow-content-04 .text-wrap {
    margin-bottom: 1rem;
  }
  .hollow-content-04 .text-wrap h3:last-of-type {
    margin-top: 1rem;
  }
  .hollow-content-04 .title-wrap p {
    width: 100%;
  }
  .hollow-content-04 img {
    max-height: 55vh;
    min-height: 16rem;
  }
}
/*============================ */
/* Content 01
============================== */
.interior-content-01 {
  padding: 0 0 4rem;
}
.interior-content-01 .box {
  background: whitesmoke;
  padding: 2rem;
}
.interior-content-01 h3 {
  color: var(--blue);
  margin-bottom: 1rem;
}
.interior-content-01 p {
  color: grey;
  font-size: 1.1rem;
}
.interior-content-01 .list-wrap {
  display: flex;
  justify-content: space-between;
}
.interior-content-01 ul {
  display: block;
  width: 50%;
}
.interior-content-01 ul li i {
  color: var(--blue);
  vertical-align: top;
  /*margin-top: .3rem;*/
  padding-right: .75rem;
}
.interior-content-01 ul li p {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .interior-content-01 {
    padding: 0 0 2rem;
  }
  .interior-content-01 .list-wrap {
    flex-wrap: wrap;
  }
  .interior-content-01 .list-wrap ul {
    width: 100%;
  }
}


/*============================ */
/* Tabs 03
============================== */
.hollow-tabs-03 {
  padding: 0;
}
.hollow-tabs-03 .flex-container {
  flex-direction: column;
}
.hollow-tabs-03 .tabs {
  display: flex;
  align-items: flex-start;
  margin-bottom: .5rem;
}
 .hollow-tabs-03 .tabs li:not(:last-child) {
  margin-right: .5rem;
}
 .hollow-tabs-03 .tabs li a {
  line-height: 1;
  padding: .5rem 0;
  border-radius: var(--root--borderRadius);
  color: var(--blue);
  font-size: 1.5rem;
  transition: all 0.1s ease-in-out;
  font-family: var(--poiret);
  font-weight: 700;
  margin-right: 1rem;
}
 .hollow-tabs-03 .tabs li.active a,
.hollow-tabs-03 .tabs li a:hover {
  opacity: 1;
  border-bottom: 1px solid var(--red);
  color: var(--red);
}
 .hollow-tabs-03 .tabs-content {
  position: relative;
  z-index: 2;
  border-radius: 0 4px 4px 4px;
}
 .hollow-tabs-03 .tabs-panel {
  display: none;
}
.hollow-tabs-03 .tabs-panel h3 {
  color: #3e73a8;
  margin-bottom: .5rem;
}
.hollow-tabs-03 .tabs-panel p {
  color: #223f5c;
  margin-bottom: 1rem;
}
 
.hollow-tabs-03 .tabs-panel.active {
  display: block;
}




/*============================ */
/* Testimonials 08
============================== */
.testimonials-08 {
  padding: 0;
}
.testimonials-08 .flex-container {
  justify-content: center;
}
.testimonials-08 .box-wrap {
  padding: 2rem;
  margin-bottom: 2rem;
}
.testimonials-08 .box-a {
  background: #fff;
  width: 100%;
}
.testimonials-08 .box-b {
  background: #efefef;
  width: 100%;
}
.testimonials-08 .quote {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.testimonials-08 .box-wrap i {
  color: var(--blue);
  font-size: 2rem;
  text-align: center;
  margin-bottom: .5rem;
}
.testimonials-08 .box-wrap p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: center;
  color: grey;
}
.testimonials-08 .box-wrap p.client-name {
  font-family: var(--poiret);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .testimonials-08 {
    padding: 0;
  }
  .testimonials-08 .box-a {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .testimonials-08 .box-b {
    padding: 2rem 1rem;
    margin-bottom: 1rem;
  }
}




/*============================ */
/* Action 07
============================== */
.hollow-action-07 {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
.hollow-action-07 .one {
  position: relative;
  flex-flow: column;
  align-items: flex-start;
  padding: 6rem 0;
}
.hollow-action-07 .one h2 {
  color: #fff;
  margin-bottom: .5rem;
  font-weight: 300;
}
.hollow-action-07 .one h3 {
  font-weight: 400;
  color: #fff;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.4;
  width: 50%;
}
.hollow-action-07 .one a {
  color: #FFF;
  padding: .5rem 1rem;
  border: 1px solid #FFF;
  border-radius: 5px;
  background: var(--red);
  transition: all .3s ease;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.hollow-action-07 .one a i {
  margin-right: .75rem;
  font-size: 1.5rem;
}
.hollow-action-07 .one a:hover {
  background: var(--redDark);
}
.hollow-action-07 .two {
  height: 57%;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  justify-content: flex-end;
  pointer-events: none;
  transform: translateY(-50%);
}
.hollow-action-07 .two ul {
  position: absolute;
  top: 50%;
  right: 4%;
  display: flex;
  flex-flow: column;
  /*justify-content: space-evenly;*/
  align-items: flex-start;
  padding: 1rem 0.5rem;
  height: 95%;
  width: 25%;
  background: #FFF;
  border-radius: 5px;
  transform: translateY(-50%);
  z-index: 2;
}
.hollow-action-07.animated .two ul {
  animation-name: listSlide;
  animation-duration: .75s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hollow-action-07.unanimated .two ul {
  animation-name: listUnSlide;
  animation-duration: .75s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hollow-action-07 .two ul li {
  display: flex;
  justify-content: space-between;
}
.hollow-action-07 .two ul li i {
  color: var(--blue);
  font-size: 1.3rem;
  padding: 0.1rem 0.75rem 0 0;
  line-height: 1.2;
}
.hollow-action-07 .two ul li p {
  color: var(--blue);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.2;
  font-family: var(--poiret);
  margin-bottom: 0.75rem;
}
.hollow-action-07 .two .slide-cover {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 25%;
  background: rgba(201, 70, 61, 0.96);
  border-radius: 5px;
  z-index: 3;
}
.hollow-action-07.animated .two .slide-cover {
  animation-name: coverSlide;
  animation-duration: .75s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hollow-action-07.unanimated .two .slide-cover {
  animation-name: coverUnSlide;
  animation-duration: .75s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hollow-action-07 .two .slide-cover-tab {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.hollow-action-07.animated .two .slide-cover-tab {
  animation-name: tabSlide;
  animation-duration: .75s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hollow-action-07.unanimated .two .slide-cover-tab {
  animation-name: tabUnSlide;
  animation-duration: .75s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-direction: reverse;
}
.hollow-action-07 .two .slide-cover-tab .triangle {
  top: 0;
  right: 25%;
  height: 0px;
  border-top: 138px solid transparent;
  border-bottom: 138px solid transparent;
  border-right: 80px solid #9a352e;
}
.hollow-action-07 .two .slide-cover-tab .box {
  height: 100%;
  width: 25%;
  background: #9a352e;
  border-radius: 0 5px 5px 0;
}
@keyframes listSlide {
  0% {
    z-index: 2;
  }
  50% {
    transform: translate(-50%,-50%);
  }
  75% {
    z-index: 3;
  }
  100% {
    transform: translate(0,-50%);
    z-index: 3;
  }
}
@keyframes listUnSlide {
  0% {
    transform: translate(0,-50%);
    z-index: 3;
  }
  50% {
    transform: translate(-50%,-50%);
  }
  100% {
    z-index: 2;
  }
}
@keyframes coverSlide {
  0% {
    z-index: 3;
  }
  50% {
    transform: translateX(10rem);
  }
  100% {
    transform: translateY(0);
    z-index: 2;
  }
}
@keyframes coverUnSlide {
  0% {
    transform: translateY(0);
    z-index: 2;
  }
  50% {
    transform: translateX(10rem);
  }
  100% {
    z-index: 3;
  }
}
@keyframes tabSlide {
  50% {
    transform: translateX(10rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes tabUnSlide {
  50% {
    transform: translateX(10rem);
  }
  100% {
    transform: translateY(0);
  }
}
@media only screen and (max-width: 1199px) {
  .hollow-action-07 .two .slide-cover-tab .triangle {
    border-top: 116px solid transparent;
    border-bottom: 116px solid transparent;
  }
}
@media only screen and (max-width: 1024px) {
  .hollow-action-07 .two ul {
    z-index: 3;
  }
  .hollow-action-07 .two ul li p {
    font-size: 1.1rem;
  }
  .hollow-action-07 .two .slide-cover {
    z-index: 2;
  }
  .hollow-action-07 .two .slide-cover-tab .triangle {
    border-top: 130px solid transparent;
    border-bottom: 130px solid transparent;
  }
  .hollow-action-07 .one {
    align-items: center;
    text-align: center;
    padding: 3rem 0;
  }
  .hollow-action-07 .two {
    position: relative;
    align-self: center;
    justify-content: center;
    padding-bottom: 2rem;
    transform: none;
    top: unset;
    margin-top: 2rem;

    display: none;
  }
  .hollow-action-07 .two ul {
    position: relative;
    transform: none;
    top: unset;
    right: unset;
    width: 100%;
  }
  .hollow-action-07 .two ul li {
    margin-bottom: .5rem;
  }
  .hollow-action-07 .two .slide-cover {
    display: none;
  }
  .hollow-action-07 .two .slide-cover-tab {
    display: none;
  }
  .hollow-action-07 .one h3 {
    width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-action-07 .one {
    padding: 2rem 0;
  }
  .hollow-action-07 .one h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .hollow-action-07 .one h3 {
    margin-bottom: 1.5rem;
  }
}

/*HIDE RECAPTCHA BADGE*/
.grecaptcha-badge{
  visibility: collapse !important;  
}
