/*
  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 {--green: #e3e619;--purple: #510559;--purpleDark: #3c0342;--pop: 'Poppins', sans-serif;--pt: 'PT Serif', serif;}

h1 {
  font-family: var(--pop);
}
a {
  font-family: var(--pop);
}

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

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

/*CONTENT*/
.hollow-header-08 .content-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
/*Meta*/
.hollow-header-08 .meta-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(98%);
}
/*.hollow-header-08 .meta-wrap a {*/
.hollow-header-08 .meta-wrap .meta-link {
  display: inline-block;
  background: #fff;
  white-space: nowrap;
  padding: .5rem 1rem;
  margin-right: .25rem;
  box-shadow: 0 3px 3px -2px #2f2f2f;
  color: var(--purpleDark);
  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(--purple);
}
.hollow-header-08 .meta-wrap a i {
  color: var(--purple);
}
.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(--purple);
  padding: 0.4rem 0.5rem;
  font-size: 16px;
  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(--purpleDark);
  color: #fff;
}
.hollow-header-08 .menu-item-has-children .dropdown-menu {
  display: none;
  overflow: hidden;
  top: 100%;
  left: 0;
  min-width: 100%;
  z-index: 9999;
}
.hollow-header-08 .menu-item-has-children.open .dropdown-menu {
  display: flex;
  flex-direction: column;
}
/*Nav Mobile*/
.hollow-header-08 button#mobile {
  position: relative;
  width: 30px;
  background: none;
  outline: none;
  border: none;
  float: right;
}
.hollow-header-08 .hamburger {
  display: block;
  position: absolute;
  width: 30px;
  height: 20px;
  background: #FFF;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}
.hollow-header-08 .hamburger:hover {
  cursor: pointer;
}
.hollow-header-08 .hamburger:before,
.hollow-header-08 .hamburger:after {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 20%;
  background: var(--purpleDark);
  transition: transform .2s ease;
}
.hollow-header-08 .hamburger:after {
  top: 60%;
}
header.header-menu-open.hollow-header-08 #mobile,
header.header-menu-open.hollow-header-08 #mobile .hamburger {
  background: transparent;
}
header.header-menu-open.hollow-header-08 #mobile>.hamburger:before,
header.header-menu-open.hollow-header-08 #mobile>.hamburger:after {
  top: 40%;
  background: #FFF;
}
header.header-menu-open.hollow-header-08 #mobile>.hamburger:before {
  transform: rotate(45deg)
}
header.header-menu-open.hollow-header-08 #mobile>.hamburger:after {
  transform: rotate(-45deg)
}

/*MOBILE TOOLBAR*/
.hollow-header-08 .mobile-toolbar {
  width: 100%;
  display: flex;
  padding: .4rem 1rem;
  background: var(--purpleDark);
  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: 40%;
    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(--purple);
    color: #fff;
  }
  .hollow-header-08 nav .menu-item-has-children ul li.active a,
  .hollow-header-08 nav .menu-item-has-children ul li.active:hover a,
  .hollow-header-08 nav .menu-item-has-children ul li:hover a {
    background: var(--purple);
  }
  .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;
    padding: 0 0.4rem;
  }
}
@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) 1rem 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(--purpleDark);
    flex-direction: column;
    max-height: 0;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    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;
    text-transform: capitalize;
    white-space: normal;
  }
  .hollow-header-08 nav li a:hover,
  .hollow-header-08 nav li.active a:hover,
  .hollow-header-08 nav li.active a {
    background: var(--purple);
  }
  .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(--purple);
  }
  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: 0.6rem;
  }
  .hollow-header-08 .menu-item-has-children .dropdown-menu li a {
    padding: 0.6rem 2.5rem;
  }
}
@media screen and (orientation: portrait) and (max-width:767px) {
  .hollow-header-08 .menu a {
    font-size: 1.4rem;
    padding: 0.6rem;
  }
  .hollow-header-08 .menu-item-has-children .dropdown-menu li a {
    padding: 0.6rem 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(37, 37, 37, 0.4);
}*/
.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 img.add-filter {
  filter: brightness(.7);
}
.hollow-hero-13 .img-slider .slick-arrow {
  font-size: 1rem;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 1;
  color: #fff;
  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;
}
@media (max-width: 767px) {
  .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 .cap-slider {
  width: 100%;
  padding: 10rem 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;
  text-shadow: 1px 1px 2px #000;
}
.hollow-hero-13 .caption.caption-purple {
  text-shadow: none;
}
.hollow-hero-13 .caption.caption-purple > * {
  color: var(--purple);
  border-color: var(--purple);
}
.hollow-hero-13 .caption.caption-purple a:hover,
.hollow-hero-13 .caption.caption-purple a:hover i {
  color: #fff;
}
.hollow-hero-13 .caption h1 {
  font-weight: 700;
  max-width: 600px;
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0;
}
.hollow-hero-13 .caption.slick-active h1 {
  animation: fadeUp .5s ease-out forwards;
}
.hollow-hero-13 .caption h3 {
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0;
}
.hollow-hero-13 .caption.slick-active h3 {
  animation: fadeUp .5s ease-out .2s forwards;
}
.hollow-hero-13 .caption p {
  color: #fff;
  margin-bottom: 1rem;
  opacity: 0;
}
.hollow-hero-13 .caption.slick-active p {
  animation: fadeUp .5s ease-out .4s forwards;
}
.hollow-hero-13 .caption a {
  border-color: white;
  color: white;
  opacity: 0;
}
.hollow-hero-13 .caption.slick-active a {
  animation: fadeUp .5s ease-out .6s forwards;
}
.hollow-hero-13 .caption a:before {
  background: var(--purple);
}
.hollow-hero-13 .caption a i {
  font-size: 1rem;
  padding-right: .5rem;
  color: #fff;
}
.hollow-hero-13 .caption.caption-purple a i {
  color: var(--purple);
}
@media (min-width: 768px) {
  .hollow-hero-13 .caption p {
    max-width: 60%;
  }
}
@media (max-width: 767px) {
  .hollow-hero-13 .cap-slider {
    padding: 4rem 0 6rem;
  }
  .hollow-hero-13 .caption {
    padding: 0 2rem;
  }
  .hollow-hero-13 .caption.caption-purple > * {
    color: #fff;
    border-color: #fff;
  }
  .hollow-hero-13 .caption.caption-purple a i {
    color: #fff;
  }
  .hollow-hero-13 .caption h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .hollow-hero-13 .img-slider img {
    object-position: 65% 50%;
    filter: opacity(0.65);
  }
  .hollow-hero-13 .img-slider .slick-track {
    background: #000;
  }
}

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

/*============================ */
/* Service Boxes
============================== */
.service {
  padding-top: 2rem;
}
.service .flex-container {
  justify-content: center;
}
.service .flex-container-fluid .service-box {
  margin: -2rem 0 0;
  height: 14rem;
}
.service-box {
  position: relative;
  overflow: hidden;
  height: 12rem;
  width: 25%;
  margin-bottom: 2rem;
  text-align: center;
  background: var(--purpleDark);
}
.service-box:not(:last-of-type) {
  border-right: 2px solid white;
}
.service-box img {
  display: flex;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all .3s ease-in-out;
  opacity: 0.6;
}
.service-box:hover img {
  transform: translateY(100%);
  transition-delay: .1s;
}
.service-box_continue {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  transition: all .3s ease-in-out;
  transform: translateY(-100%);
  background:  var(--purple);
}
.service-box:hover .service-box_continue {
  transform: none;
}
.service-box_continue i {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: .5rem;
}
.service-box_continue p {
  color: white;
  font-weight: 500;
}
.service-box_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
  transition: all .3s ease-in;
}
.service-box:hover .service-box_overlay {
  transform: translateY(100%);
}
.service-box_overlay h3 {
  color: white;
  text-align: left;
  font-size: 1.25rem;
}
.service-box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .service .flex-container,
  .service .flex-container-fluid {
    flex-flow: column;
  }
  .service-box {
    width: 100%;
    border: none: !important;
  }
  .service .flex-container-fluid .service-box {
    margin: 0 auto 2rem;
    max-width: 90%;
  }
}

/*============================ */
/* Content
============================== */
.home-content {
  padding: 10rem 0;
  background: url(img/business.jpg) no-repeat center;
  background-size: cover;
}
.home-content .flex-container {
  justify-content: flex-end;
}
.home-content_text {
  width: 50%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.home-content_text h1 {
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--purple);
}
.home-content_text p {
  font-family: var(--pop);
  color: var(--purple);
  margin-bottom: 2rem;
}
.home-content_text_list {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.home-content_text_list ul {
  display: flex;
  flex-flow: column;
  width: 45%;
}
.home-content_text_list ul li {
  font-family: var(--pop);
  font-weight: 400;
  font-size: 1rem;
  color: var(--purple);
}
.home-content_text_list ul li i{
  color: var(--purple); 
}
.home-content_text a {
  color: white;
  border: none;
  background: var(--purple)
}
.home-content_text a:hover {
  background: var(--purple);
  color: var(--purple);
}
.home-content_text a:before {
  background: var(--green);
}
.home-content_text a i {
  font-size: 1.5rem;
  margin-right: .75rem;
  color: var(--green);
}
.home-content_text a:hover i {
  color: var(--purple);
}
@media only screen and (max-width: 767px) {
  .home-content {
    padding: 2rem 0;
    background: #E4E9EF;
  }
  .home-content .flex-container {
    justify-content: center;
  }
  .home-content_text {
    width: 100%;
  }
  .home-content_text_list {
    flex-flow: column;
    margin-bottom: 1rem;
  }
  .home-content_text_list ul {
    width: 100%;
  }
  .home-content_text_list ul li {
    font-size: 1.2rem;
  }
}

/*============================ */
/* Action 01
============================== */
.hollow-action-01 {
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
  text-align: center;
  background: url(img/strategy.jpg) no-repeat center;
  background-size: cover;
}
.hollow-action-01 .flex-container {
  align-items: flex-start;
  text-align: left;
}
.hollow-action-01 h1 {
  font-weight: 700;
  color: #FFF;
  margin-bottom: 1.5rem;
}
.hollow-action-01 p {
  color: #FFF;
  margin-bottom: 2rem;
  max-width: 50vw;
  font-family: var(--pop);
}
.hollow-action-01 a {
  color: #fff;
  border-color: #fff;
  background: transparent;
}
.hollow-action-01 a::before {
  background: var(--purple);
}
.hollow-action-01 a i {
  font-size: 1.5rem;
  margin-right: .75rem;
  transition: all .3s ease;
}
.hollow-action-01 a:hover i {
  color: var(--green);
}
/*@media only screen and (max-width: 991px) {
  .hollow-action-01 {
    background-attachment: unset;
  }
}*/
@media screen and (max-width:767px) {
  .hollow-action-01 {
    padding: 3rem 0;
  }
  .hollow-action-01 p {
    max-width: 90vw;
  }
  .hollow-action-01 h1 {
    font-size: 1.7rem;
  }
}

/*============================ */
/* Contact 15
============================== */
.hollow-contact-15 .flex-container {
  position: relative;
  width: 100%;
}
.hollow-contact-15 .get-in-touch {
  width: 50%;
  background: var(--purple);
  padding: 6rem;
}
.hollow-contact-15 .get-in-touch h4 {
  color: #fff;
  margin-bottom: 1rem;
}
.hollow-contact-15 .get-in-touch h1 {
  color: #fff;
  margin-bottom: 1rem;
}
.hollow-contact-15 .get-in-touch hr {
  height: 4px;
  width: 5rem;
  background: var(--green);
  margin: .5rem 0 3rem;
  border: none;
}
.hollow-contact-15 .get-in-touch p {
  color: #fff;
  margin-bottom: 2rem;
}
.hollow-contact-15 .get-in-touch li {
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
}
.hollow-contact-15 .get-in-touch li i {
  color: var(--green);
  font-size: 1.2rem;
  margin-right: .5rem;
  margin-top: .5rem;
}
.hollow-contact-15 .get-in-touch li a {
  color: #fff;
  font-weight: 400;
}
.hollow-contact-15 .get-in-touch li a:hover {
  color: var(--green);
}
.hollow-contact-15 .social a {
    color: #fff;
    margin-right: .7rem;
}
.hollow-contact-15 .social a:hover {
  color: var(--green);
}
.hollow-contact-15 .contact-us {
  width: 50%;
  background: #fff;
  padding: 6rem;
}
.hollow-contact-15 .contact-us h4 {
  color: var(--purple);
  margin-bottom: 1rem;
}
.hollow-contact-15 .contact-us h1 {
  color: var(--purple);
  margin-bottom: 1rem;
}
.hollow-contact-15 .contact-us hr {
  height: 4px;
  width: 5rem;
  background: var(--green);
  margin: .5rem 0 3rem;
  border: none;
}
.hollow-contact-15 .form-wrap {
  position: relative;
}

.hollow-contact-15 textarea {
  font-family: 'Lato';
  z-index: 0;
  height: 4.8rem;
  max-height: 100px;
}
.hollow-contact-15 .your-email {
  float: left;
  width: 50%;
  padding-right: 15px;
  z-index: 5;
}
.hollow-contact-15 .your-phone {
  float: left;
  width: 50%;
  z-index: 10;
}

.hollow-contact-15 input:not([type="submit"]),
.hollow-contact-15 textarea {
  font-size: 1.1rem;
  width: 100%;
  border: 1px solid transparent;
  border-bottom: 2px solid rgba(81, 5, 89, 0.59);
  color: var(--purple);
  padding: .6rem;
  margin-bottom: 1rem;
  font-weight: 400;
  font-family: var(--pop);
}

.hollow-contact-15 .wpcf7-form-control.wpcf7-submit {
  background: var(--purple);
  border: none;
  border-radius: var(--root--borderRadius);
  padding: .7rem 1.5rem;
  color: #FFF;
  cursor: pointer;
  font-family: 'Lato';
  font-size: 1rem;
  font-weight: 400;
  transition: .3s ease;
  margin: 0;
}
.hollow-contact-15 .wpcf7-form-control.wpcf7-submit:hover {
  background: var(--purpleDark);
}
.hollow-contact-15 .map-wrap {
  width: 100%;
  height: 550px;
}
.hollow-contact-15 .map-wrap iframe {
  height: 100%;
  width: 100%;
  pointer-events: none;
}
.hollow-contact-15 .map-wrap iframe.clicked {
  pointer-events: auto;
}
@media only screen and (max-width: 991px) {
  .hollow-contact-15 .get-in-touch {    
    padding: 6rem 3rem;
  }
  .hollow-contact-15 .contact-us {
    padding: 6rem 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-contact-15 .flex-container {
    flex-direction: column;
    padding: 0;
  }
  .hollow-contact-15 .get-in-touch {
    width: 100%;
    padding: 3rem;
  }
  .page-template-page-contact .hollow-contact-15 .get-in-touch {
    padding-top: 4rem;
  }
  .hollow-contact-15 .contact-us {
    width: 100%;
    padding: 3rem;
  }
  .hollow-contact-15 .map-wrap {
    max-height: 55vh;
  }
}

.hollow-web-design-01 {
  display:block;
  background:aliceblue;
}
.hollow-web-design-01 .top-half {
  padding:4rem 0 0;
}
.hollow-web-design-01 .top-half h1 {
  color:var(--defaultMainDark);
  text-align:center;
  font-size:2rem;
  font-weight:500;
  margin-bottom:1rem;
}
.hollow-web-design-01 .top-half h2 {
  color:var(--purple);
  text-align:center;
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: none;
  line-height: 24px;
  letter-spacing: 0px;
  margin:0 12rem 1rem;  
  font-family: var(--pop);
}
.hollow-web-design-01 .top-half p {
  font-size:1rem;
  color:var(--purple);
  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: 1.1rem;
  width: 100%;
  border: 1px solid aliceblue;
  border-bottom: 2px solid rgba(81, 5, 89, 0.59);
  color: var(--purple);
  padding: .6rem;
  margin-bottom: 1rem;
  font-weight: 400;
  font-family: var(--pop);
  background: aliceblue;
}
.hollow-web-design-01 .bottom-half .form-wrap textarea { height:9em; }
.hollow-web-design-01 .bottom-half .form-wrap textarea::placeholder { color:darkgrey; }
.hollow-web-design-01 .bottom-half .form-wrap input[type="submit"] {
  background: var(--purple);
  border: none;
  border-radius: var(--root--borderRadius);
  padding: .7rem 1.5rem;
  color: #FFF;
  cursor: pointer;
  font-family: 'Lato';
  font-size: 1rem;
  font-weight: 400;
  transition: .3s ease;
  margin: 0;
}
@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: #252525;
}
.hollow-footer-04 .main {
  display: none;
}
.hollow-footer-04 .main .flex-container {
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
}
.hollow-footer-04 img {
  margin-bottom: .5rem;
  max-width: 300px;
}
.hollow-footer-04 h3 {
  color: #FFF;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: center;
}
.hollow-footer-04 .social {
  display: flex;
  border-top: 2px dotted #FFF;
  padding-top: .5rem;
  justify-content: center;
}
.hollow-footer-04 .main a {
  padding: .5rem;
  width: 3rem;
  margin: 0 .25rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;

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

/* Meta */
.hollow-footer-04 .meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purpleDark);
  padding: 1rem 0;
}
.hollow-footer-04 .meta .flex-container {
  justify-content: space-between;
  align-items: center;
}
.hollow-footer-04 .meta span {
  color: #FFF;
  font-weight: 300;
  padding: 0 2rem;
}
.hollow-footer-04 .meta span a {
  color: #FFF;
  transition: all .3s ease;
}
.hollow-footer-04 .meta span a:hover {
  color: var(--green);
}
.hollow-footer-04 .meta i.top {
  position: absolute;
  margin-right: 1rem;
  right: 0;
  top: 0;
  color: #FFF;
  padding: .5rem;
  opacity: 0.5;
  background: var(--purpleDark);
  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(--purpleDark);
}
.search-form-wrap button:hover {
  background: var(--purple);
}
/*Blog Page*/
.blog-wrap .post-item-header h1 {
  background: var(--purpleDark);
}
.blog-wrap .post-item .post-item-header h1:hover {
  background: var(--purple);
}
.blog-wrap .post-item .post-content a {
  background: var(--purpleDark);
}
.blog-wrap .post-item .post-content a:hover {
  background: var(--purple);
}
.blog-wrap .post-item p {
  border-color: var(--purpleDark);
}
.blog-wrap .post-item .date-wrap i {
  color: var(--purpleDark);
}
/*Sidebars*/
.blog-sidebar {
  border-color: var(--purpleDark);
}
.blog-sidebar .post-item-header h2 {
  background: var(--purpleDark);
}
/*Post Content*/
.blog-post-content h1 {
  color: var(--purpleDark);
}
.blog-post-content h2 {
  color: var(--purple);
}
.blog-post-content h3 {
  color: var(--purpleDark);
}
.blog-post-content p a {
  color: var(--purpleDark);
}
.blog-post-content p a:hover {
  color: var(--purple);
}
.blog-return a.blog-return-btn {
  background: var(--purpleDark);
}
.blog-return a.blog-return-btn:hover {
  background: var(--purple);
}
/*============================ */
/* DEFAULT POPUP STYLES:
============================== */
.default-popup .form-wrap {
  background: #fff;
}
.default-popup .form-wrap h3 {
  color: var(--purpleDark);
}
.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(--purple);
}
.default-popup .wpcf7-form input[type="submit"] {
  background: var(--purpleDark);
}
.default-popup .wpcf7-form input[type="submit"]:hover {
  background: var(--purple);
}
.default-popup .loader-wrap {
  background: var(--purpleDark);
}
.default-popup .button-wrap i {
  background: var(--purpleDark);
}
/*============================ */
/* DEFAULT SEO STYLES:
============================== */
.content.seo {
  background: var(--purpleDark);

  display: none;

}
.content.seo i {
  color: var(--green);
}
.content.seo p a:hover {
  color: var(--green);
}

/*============================ */
/* Interior Page Settings
============================== */
/*Header*/
.interior-header {
  padding: 6rem 0 8rem;
  background: url(img/interior-header.jpg) no-repeat center/cover fixed;
}
.interior-header .flex-container {
  flex-flow: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.interior-header h1 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}
.interior-header h2 {
  color: white;
  font-size: 1.5rem;
  max-width: 700px;
}
@media only screen and (max-width: 991px) {
  .interior-header {
    background-attachment: unset;
  }
}

/*Content*/
.interior-content {
  margin: -2rem 0 4rem;
}
.interior-content .flex-container {
  flex-flow: column;
}
.interior-content_img {
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--green);
}
.interior-content_img img {
  display: flex;
  object-fit: cover;
  width: 100%;
}
.interior-content_text {
  padding: 2rem;
}
.interior-content_text:last-of-type {
  background: var(--purple);
}
.page-id-354 .interior-content_text:last-of-type,
.page-id-253 .interior-content_text:last-of-type {
  background: #fff;
}
.page-id-354 .interior-content_text:last-of-type h3,
.page-id-253 .interior-content_text:last-of-type h3,
.interior-content_text h3 {
  color: var(--purple);
  margin-bottom: 1rem;
  padding-bottom: .25rem;
  border-bottom: 2px dotted var(--purple);
  font-weight: 600;
}
.interior-content_text:last-of-type h3 {
  color: var(--green);
  border-color: var(--green);
}
.page-id-354 .interior-content_text:last-of-type p,
.page-id-253 .interior-content_text:last-of-type p,
.interior-content_text p {
  color: var(--purple);
}
.interior-content_text:last-of-type p {
  color: white;
}
@media only screen and (max-width: 767px) {
  .interior-content {
    margin: -2rem 0 2rem;
  }
  .interior-content_text {
    padding: 2rem 2rem 1rem;
  }
}

.page-id-354 .interior-content_img {
  overflow: visible;
}
.page-id-354 .interior-content_img img {
  display: flex;
  object-fit: contain;
  margin: auto;
  height: 25rem;
  margin-top: -6rem;
}

/*============================ */
/* Blog 01
============================== */
.hollow-blog-01 {
  padding: 4rem 0;
  background: aliceblue;
}
.hollow-blog-01 .grid-container {
  grid-gap: 2rem;
}
.hollow-blog-01 .item {
  display: flex;
  flex-direction: column;
  border: 1px solid #dadada;
  background: #FFF;
}
.hollow-blog-01 h1 {
  color: var(--purple);
  text-align: center;
  font-weight: 300;
  margin-bottom: 3rem;
}
.hollow-blog-01 .img-wrap img {
  width: 100%;
}
.hollow-blog-01 .text-wrap {
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 1rem;
}
.hollow-blog-01 h3 {
  margin-bottom: .5rem;
  color: var(--purple);
}
.hollow-blog-01 p {
  font-weight: 300;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.hollow-blog-01 a {
  color: var(--purple);
  padding-top: 1rem;
  border-top: 1px solid #dadada;
  font-size: 1.1rem;
}
.hollow-blog-01 a i {
  padding-left: .5rem;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.hollow-blog-01 a:hover i {
  padding-left: .75rem;
}
@media only screen and (min-width: 768px) {
  .hollow-blog-01 .grid-container {
    grid-template-columns: repeat(3, 1fr)
  }
}
@media only screen and (max-width: 767px) {
  .hollow-blog-01 {
    padding: 2rem 0;
  }
  .hollow-blog-01 h1 {
    padding: 0 2rem;
    margin-bottom: 2rem;
  }
}

/*============================ */
/* Testimonial 06
============================== */
.hollow-testimonial-06 {
  padding: 4rem 0;
  /*background: #F9F9F9;*/
}
.hollow-testimonial-06 h1 {
  color: var(--purple);
  text-align: center;
  margin-bottom: 2rem;
}
.hollow-testimonial-06 hr {
  border: none;
  height: 2px;
  background: #e2e2e2;
  width: 0;
  margin: 0;
}
.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;
  color: var(--purple);
}
.hollow-testimonial-06 .creds p {
  font-size: 1rem;
}
@media only screen and (max-width: 767px) {
  .hollow-testimonial-06 {
    padding: 2rem 0;
  }
}