@charset "UTF-8";
.display-flex {
  display: -webkit-flex;
  display: flex;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 999;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 'opacity 0.3s ease';
  -moz-transition: 'opacity 0.3s ease';
  transition: 'opacity 0.3s ease';
}
.preloader.done {
  opacity: 0;
}
.preloader:after {
  position: relative;
  content: '';
  display: block;
  width: 4em;
  height: 4em;
  border-radius: 2em;
  border: 4px solid #ddd;
  border-top-color: #e86c6c;
  animation: spin 1s infinite linear;
}
.animation-chain {
  visibility: hidden;
}
.animated {
  visibility: visible !important;
  animation-duration: 0.8s;
  -webkit-transform: translateZ(0);
  -o-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.bg-primary-color {
  background-color: #e86c6c;
  color: rgba(255, 255, 255, 0.75);
}
.bg-primary-color h1,
.bg-primary-color h2,
.bg-primary-color h3,
.bg-primary-color h4,
.bg-primary-color h5,
.bg-primary-color h6 {
  color: rgba(255, 255, 255, 0.5);
}
.bg-primary-color a:link,
.bg-primary-color a:visited {
  color: #ffffff;
}
.bg-primary-color a:hover,
.bg-primary-color a:active {
  color: #fff;
}
.bg-dark-gray {
  background-color: #4a4a4a;
  color: #fff;
}
.bg-dark-gray h1,
.bg-dark-gray h2,
.bg-dark-gray h3,
.bg-dark-gray h4,
.bg-dark-gray h5,
.bg-dark-gray h6 {
  color: #fff;
}
.bg-dark-gray a:link,
.bg-dark-gray a:visited {
  color: #979797;
}
.bg-dark-gray a:hover,
.bg-dark-gray a:active {
  color: #fff;
}
.bg-light-gray {
  background-color: #f4f4f4;
  background-image: url('../img/seigaiha.webp');
}
.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}
.uppercase {
  text-transform: uppercase;
  letter-spacing: 3px;
}
a:link,
a:visited {
  color: #e86c6c;
  outline: 0;
}
a:hover,
a:active {
  color: #f6c4c4;
}
.btn {
  border-width: 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'Montserrat', sans-serif;
  padding: 1em 1.5em;
  border-radius: 0 !important;
}
.btn:focus {
  outline: none;
}
.btn:active,
.btn.active {
  box-shadow: none;
}
.btn.btn-primary {
  background-color: #e86c6c;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}
.btn.btn-primary:hover {
  background-color: #e14040;
  color: #fff;
}
ul.social {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1em;
}
ul.social > li {
  display: inline-block;
}
ul.social > li > a {
  font-size: 1.5em;
  width: 1em;
  display: block;
}
ul.social > li > a:link,
ul.social > li > a:visited {
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
ul.social > li > a:hover,
ul.social > li > a:active {
  color: rgba(255, 255, 255, 0.8);
  color: #fff;
}
ul.social > li + li {
  margin-left: 0.8rem;
}
@keyframes scroll-down {
  0% {
    -webkit-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0,10px,0);
    -o-transform: translate3d(0,10px,0);
    -ms-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
    opacity: 0;
  }
}
/*
	Loader
	Adapted from: http://www.w3schools.com/howto/howto_css_loader.asp
*/
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*
	Custom Scrollbar Styling
	Adapted from: http://cssdeck.com/labs/css3-webkit-vertical-scrollbars/
*/
::-webkit-scrollbar-track {
  background-color: #dbdbdb;
}
::-webkit-scrollbar {
  width: 9px;
  background-color: #dbdbdb;
}
::-webkit-scrollbar-thumb {
  background-color: #e86c6c;
}
/* Handling super long words / urls
   Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
.hyphens {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
img {
  max-width: 100%;
}
html,
body {
  height: 100% !important;
  font-size: 18px;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #4a4a4a;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
a:hover,
a:active,
a:focus {
  text-decoration: none;
}
.fonts-loaded body {
  font-family: 'Montserrat', sans-serif, sans-serif;
}
body {
  /*------------------------------------------------------------------
[3. Navigation / body>nav]
*/
  /*------------------------------------------------------------------
[4. Footer / body>footer]
*/
}
body > nav {
  position: relative;
  z-index: 9;
  height: 3rem;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
body > nav .menu-wrapper {
  position: relative;
  min-height: 3rem;
  background-color: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
  color: #4a4a4a;
  padding: 0 8rem;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
body > nav .menu-wrapper a:link,
body > nav .menu-wrapper a:visited {
  color: #4a4a4a;
  display: block;
}
body > nav .menu-wrapper a:hover,
body > nav .menu-wrapper a:active {
  color: #e86c6c;
}
body > nav .menu-wrapper ul.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0 auto;
  text-align: center;
  font-size: 0.7em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  letter-spacing: 2px;
}
body > nav .menu-wrapper ul.menu > li {
  display: inline-block;
  line-height: 3rem;
}
body > nav .menu-wrapper ul.menu > li + li {
  margin-left: 3em;
}
body > nav .menu-wrapper ul.menu > li.current-menu-item {
  position: relative;
}
body > nav .menu-wrapper ul.menu > li.current-menu-item a:link,
body > nav .menu-wrapper ul.menu > li.current-menu-item a:visited {
  color: #e86c6c;
}
body > nav .menu-wrapper ul.menu > li.current-menu-item:before {
  position: absolute;
  content: '';
  display: block;
  background-image: url('../img/record.svg');
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  top: calc(1.428em - 12px);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
}
body > nav.nav-fixed .menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
body > nav button.open-menu {
  display: none;
  position: absolute;
  top: 0.75rem;
  left: 50%;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: -0.75rem;
  border-radius: 0;
  text-indent: -9999px;
  border-width: 0;
  padding: 0;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: transparent;
  overflow: hidden;
}
body > nav button.open-menu:before,
body > nav button.open-menu:after {
  position: absolute;
  display: block;
  content: '';
  top: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #9b9b9b;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
body > nav button.open-menu:before {
  box-shadow: 10px 11px 0 #9b9b9b;
}
body > nav button.open-menu:after {
  -webkit-transform: translate3d(0, 22px, 0);
  -o-transform: translate3d(0, 22px, 0);
  -ms-transform: translate3d(0, 22px, 0);
  transform: translate3d(0, 22px, 0);
  width: 75%;
}
body > nav.opened .menu-wrapper ul.menu {
  display: block;
}
body > nav.opened .menu-wrapper button.open-menu {
  -webkit-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
body > nav.opened .menu-wrapper button.open-menu:before {
  -webkit-transform: translate3d(0, 11px,0) rotate(45deg);
  -o-transform: translate3d(0, 11px,0) rotate(45deg);
  -ms-transform: translate3d(0, 11px,0) rotate(45deg);
  transform: translate3d(0, 11px,0) rotate(45deg);
  box-shadow: 0 -17px 0 transparent;
}
body > nav.opened .menu-wrapper button.open-menu:after {
  width: 100%;
  -webkit-transform: translate3d(0, 11px,0) rotate(-45deg);
  -o-transform: translate3d(0, 11px,0) rotate(-45deg);
  -ms-transform: translate3d(0, 11px,0) rotate(-45deg);
  transform: translate3d(0, 11px,0) rotate(-45deg);
}
body > nav:not(.opened) .menu-wrapper {
  overflow: hidden !important;
}
body > footer {
  padding: 4rem 8rem;
  position: relative;
  background-color: #f4f4f4;
  text-align: center;
}
body > footer:after {
  position: absolute;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 2em solid transparent;
  z-index: 2;
  bottom: 0;
  right: 0;
  border-bottom-color: #fff;
  border-right-color: #fff;
}
body > footer > * {
  position: relative;
  z-index: 2;
  color: #fff;
}
body > footer .footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-filter: contrast(60%);
  -moz-filter: contrast(60%);
  -ms-filter: contrast(60%);
  filter: contrast(60%);
  background-position: center center;
  background-size: cover;
  z-index: 1;
}
body > footer .nwdj-icon {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
body > footer h2 {
  font-size: 2em;
  font-family: 'Shadows Into Light', cursive;
  font-weight: 400;
  margin-top: 0.5em;
  margin-bottom: 0.25em;
  padding-top: 3rem;
}
body > footer h3 {
  font-size: 1em;
  font-size: 1.5em;
  margin: 0 0 1em;
}
body > footer a.scroll-up {
  display: block;
  font-size: 1.25em;
  position: absolute;
  bottom: 0;
  right: 1.5vmin;
  z-index: 3;
}
body > footer a.scroll-up:link,
body > footer a.scroll-up:visited {
  color: #9b9b9b;
}
/*------------------------------------------------------------------
[5. Options/General]
*/
/* COMMENT THIS OUT IF YOU GO BACK TO IMAGE SLIDEWHOW */
/* .owl-theme .owl-dots .owl-dot span {
    height: 0px !important;
    width: 0px !important;
  } */
.ring {
  fill: white;
}
.note {
  fill: white;
}
.nwdj-logo {
  height: 100px;
  width: 100px;
  display: block;
  margin: auto;
  margin-bottom: 20px;
}
.contact-us-intro {
  margin-bottom: 2em;
}
.contact-us-addy {
  margin-top: 2em;
}
.terms-column {
  float: left;
  width: 50%;
  padding-top: 15px;
}
.terms-privacy {
  text-align: center;
}
.terms-privacy:after {
  content: '';
  display: table;
  clear: both;
}
.parallax {
  -ms-background-position-x: center;
  background-position-x: center;
  position: relative;
  overflow: hidden;
}
.parallax > * {
  position: relative;
  z-index: 3;
}
.parallax .parallax-bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  max-width: none;
  z-index: -1;
}
.parallax .parallax-bg-img.mode-2 {
  top: 0;
}
#equally-wed-badge {
  border-style: none;
  width: 250px;
}
nav + section {
  margin-top: 6rem;
}
#message-and-data {
  font-size: 0.75rem;
  color: white;
}
section {
  margin: 4rem 0;
  padding: 2rem 8rem;
  overflow: hidden;
  position: relative;
}
section.section-rsvp {
  text-align: center;
}
section.section-rsvp .contact-us-addy p {
  margin-bottom: 0;
}
section.bg-light-gray {
  margin: 6rem 0;
  padding-top: 4rem;
  padding-bottom: 2em;
  margin-bottom: 0;
  padding-bottom: 4rem;
}
section h2 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.8em;
  margin: 0;
  padding: 1.1em 0;
  padding-top: 3em;
  margin-bottom: 1em;
  position: relative;
}
section h2:after {
  position: absolute;
  content: '';
  display: block;
  background-image: url('../img/logo/nwdj-horizontal-line.webp');
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 1em;
  top: 0;
  left: 0;
  opacity: 0.85;
}
section h2:after {
  top: auto;
  bottom: 0;
  -webkit-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
section .section-intro {
  width: 36em;
  max-width: 80%;
  margin: 2em auto 3em;
  text-align: center;
}
section .checkcherry__widget__contact-form {
  margin: auto;
  max-width: 80%;
}
section .checkcherry__widget__contact-form .control-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}
section .checkcherry__widget__contact-form .btn.btn-lg.btn-primary {
  margin: auto !important;
  background-color: #e86c6c !important;
}
section.section-hero {
  margin: 0 !important;
  height: 100%;
  min-height: 320px;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: #f4f4f4;
  z-index: 1;
}
section.section-hero:after {
  position: absolute;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 3em solid transparent;
  z-index: 2;
  bottom: 0;
  left: 0;
  border-bottom-color: #fff;
  border-left-color: #fff;
}
section.section-hero .owl-carousel {
  z-index: 1;
}
section.section-hero .owl-carousel .item {
  position: relative;
  -webkit-filter: contrast(60%);
  -moz-filter: contrast(60%);
  -ms-filter: contrast(60%);
  filter: contrast(60%);
}
section.section-hero .owl-carousel .item:before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.section-hero .owl-carousel.owl-theme .owl-nav.disabled + .owl-dots {
  -webkit-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: 50%;
  margin-top: 0;
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 2em;
}
section.section-hero .owl-carousel.owl-theme .owl-dots .owl-dot span {
  margin: 7px;
  box-shadow: none;
  display: none;
}
section.section-hero .title-card-wrapper {
  text-align: center;
  position: relative;
  position: absolute;
  z-index: 2;
}
section.section-hero .title-card-wrapper .title-card {
  position: relative;
  margin-bottom: 0;
  font-size: 1.25em;
  margin-bottom: 2em;
}
section.section-hero .title-card-wrapper .title-card .decor svg {
  display: block;
  margin: 0 auto;
  height: 7.65vmin;
  width: 42.15vmin;
}
section.section-hero .title-card-wrapper .title-card .decor svg use {
  fill: #fff;
}
section.section-hero .title-card-wrapper .title-card h1,
section.section-hero .title-card-wrapper .title-card h2 {
  color: #fff;
}
section.section-hero .title-card-wrapper .title-card h2 {
  margin: 0;
  padding: 0;
  font-size: 2em;
  font-size: 6.75vmin;
  font-family: 'Shadows Into Light', cursive;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #e86c6c !important;
}
section.section-hero .title-card-wrapper .title-card h2:before,
section.section-hero .title-card-wrapper .title-card h2:after {
  position: absolute;
  content: '';
  display: none;
}
section.section-hero .title-card-wrapper .title-card h1 {
  margin: 0;
  font-size: 2em;
  font-size: 6.75vmin;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
section.section-hero .title-card-wrapper .title-card p {
  text-align: center;
}
section.section-hero .title-card-wrapper .title-card .phone {
  margin: 0;
  overflow: hidden;
  font-size: 1em;
  font-size: 3.375vmin;
}
section.section-hero .title-card-wrapper .title-card .phone span {
  position: relative;
  display: inline-block;
  color: #fff;
}
section.section-hero .title-card-wrapper .title-card .phone span:before,
section.section-hero .title-card-wrapper .title-card .phone span:after {
  position: absolute;
  content: '';
  display: block;
  top: 50%;
  height: 1px;
  width: 500px;
  background-color: #fff;
}
section.section-hero .title-card-wrapper .title-card .phone span:before {
  right: 100%;
  margin-right: 1em;
}
section.section-hero .title-card-wrapper .title-card .phone span:after {
  left: 100%;
  margin-left: 1em;
}
section.section-hero .title-card-wrapper .cta {
  visibility: hidden;
}
section.section-hero .title-card-wrapper .cta .call-us-button-spacer {
  padding-top: 1em;
}
section.section-hero .scroll-down {
  position: absolute;
  z-index: 3;
  bottom: -0.5555em;
  left: 1.67em;
  width: 25px;
  height: 40px;
  border-radius: 12.5px;
  border: 2px solid #9b9b9b;
  cursor: pointer;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
section.section-hero .scroll-down:before {
  position: absolute;
  content: '';
  display: block;
  width: 3px;
  height: 8px;
  background-color: #9b9b9b;
  top: 8px;
  left: 9px;
  animation: 'scroll-down' 1s ease infinite;
}
section.section-services {
  margin-top: 0;
  padding-top: 1em;
}
section.section-services .dj-record {
  overflow: hidden;
}
section.section-services .dj-record:before,
section.section-services .dj-record:after {
  position: absolute;
  content: '';
  display: block;
  width: 16rem;
  width: 43.2vmin;
  height: 16rem;
  height: 43.2vmin;
  background-image: url('../img/homepage/dj-record.svg');
  background-position: center center;
  background-size: cover;
  opacity: 0.1;
  top: -4.8rem;
}
section.section-services .dj-record:before {
  left: -8rem;
  left: -21.6vmin;
}
section.section-services .dj-record:after {
  right: -8rem;
  right: -21.6vmin;
}
section.section-services .all-services {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
}
section.section-services .all-services:before {
  position: absolute;
  display: block;
  font-family: 'Shadows Into Light', cursive;
  margin-top: 17.6%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-size: 4em;
  color: #9b9b9b;
  visibility: visible;
}
section.section-services .all-services > .photo-booth,
section.section-services .all-services > .lighting,
section.section-services .all-services > .dj-mc {
  width: 44%;
  text-align: center;
}
section.section-services .all-services > .photo-booth .profile-pic,
section.section-services .all-services > .lighting .profile-pic,
section.section-services .all-services > .dj-mc .profile-pic {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 1em;
  overflow: hidden;
  position: relative;
}
section.section-services .all-services > .photo-booth .profile-pic:after,
section.section-services .all-services > .lighting .profile-pic:after,
section.section-services .all-services > .dj-mc .profile-pic:after {
  position: absolute;
  content: '';
  display: block;
  top: 0.5em;
  left: 0.5em;
  right: 0.5em;
  bottom: 0.5em;
  border: 1px solid #fff;
  visibility: visible;
}
section.section-services .all-services > .photo-booth h3,
section.section-services .all-services > .lighting h3,
section.section-services .all-services > .dj-mc h3 {
  font-size: 1.55em;
  margin: 0;
  line-height: 1.25;
}
section.section-services .all-services > .photo-booth h4,
section.section-services .all-services > .lighting h4,
section.section-services .all-services > .dj-mc h4 {
  font-size: 1.25em;
  font-weight: 400;
  margin: 0;
  margin-bottom: 1em;
}
section.section-services .all-services > .photo-booth p,
section.section-services .all-services > .lighting p,
section.section-services .all-services > .dj-mc p {
  color: #9b9b9b;
  max-width: 20em;
  margin: 0 auto;
}
section.section-services .all-services > .photo-booth ul.social,
section.section-services .all-services > .lighting ul.social,
section.section-services .all-services > .dj-mc ul.social {
  margin-top: 1em;
}
section.section-services .all-services > .photo-booth ul.social a:link,
section.section-services .all-services > .lighting ul.social a:link,
section.section-services .all-services > .dj-mc ul.social a:link,
section.section-services .all-services > .photo-booth ul.social a:visited,
section.section-services .all-services > .lighting ul.social a:visited,
section.section-services .all-services > .dj-mc ul.social a:visited {
  color: #9b9b9b;
}
section.section-services .all-services > .photo-booth ul.social a:hover,
section.section-services .all-services > .lighting ul.social a:hover,
section.section-services .all-services > .dj-mc ul.social a:hover,
section.section-services .all-services > .photo-booth ul.social a:active,
section.section-services .all-services > .lighting ul.social a:active,
section.section-services .all-services > .dj-mc ul.social a:active {
  color: #e86c6c;
}
section.section-how-it-works ul.how-it-works-details {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
section.section-how-it-works ul.how-it-works-details:before {
  position: absolute;
  content: '';
  display: block;
  width: 1px;
  left: 50%;
  top: 0;
  bottom: 0;
  background-color: rgba(155, 155, 155, 0.5);
}
section.section-how-it-works ul.how-it-works-details > li {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
section.section-how-it-works ul.how-it-works-details > li:hover .meta .how-it-works-details-thumbnail {
  -webkit-filter: contrast(100%);
  -moz-filter: contrast(100%);
  -ms-filter: contrast(100%);
  filter: contrast(100%);
}
section.section-how-it-works ul.how-it-works-details > li:nth-child(2n) {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
section.section-how-it-works ul.how-it-works-details > li:nth-child(2n) .meta {
  padding-right: 0;
  padding-left: 4em;
  padding-left: 6vw;
}
section.section-how-it-works ul.how-it-works-details > li:nth-child(2n) .meta .how-it-works-thumbnail {
  margin-right: 0;
  margin-left: auto;
  position: relative;
}
section.section-how-it-works ul.how-it-works-details > li:nth-child(2n) .meta .p-word {
  left: 2em;
  left: 6vw;
  right: auto;
}
section.section-how-it-works ul.how-it-works-details > li:nth-child(2n) .desc {
  padding-left: 0;
  padding-right: 4em;
  padding-right: 6vw;
}
section.section-how-it-works ul.how-it-works-details > li + li {
  margin-top: 1em;
}
section.section-how-it-works ul.how-it-works-details > li .meta,
section.section-how-it-works ul.how-it-works-details > li .desc {
  width: 50%;
}
section.section-how-it-works ul.how-it-works-details > li .meta {
  position: relative;
  padding-right: 4em;
  padding-right: 6vw;
}
section.section-how-it-works ul.how-it-works-details > li .meta:before {
  position: absolute;
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background-color: rgba(155, 155, 155, 0.5);
  top: 50%;
  left: 0;
}
section.section-how-it-works ul.how-it-works-details > li .meta .how-it-works-thumbnail {
  width: 225px;
  height: 225px;
  width: 18vw;
  height: 18vw;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  -webkit-filter: contrast(60%);
  -moz-filter: contrast(60%);
  -ms-filter: contrast(60%);
  filter: contrast(60%);
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
section.section-how-it-works ul.how-it-works-details > li .meta .p-word {
  font-size: 2em;
  font-size: 3vw;
  font-family: 'Shadows Into Light', cursive;
  position: absolute;
  top: 50%;
  right: 2em;
  right: 6vw;
  -webkit-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  color: #9b9b9b;
}
section.section-how-it-works ul.how-it-works-details > li .desc {
  overflow: hidden;
  padding-left: 4em;
  padding-left: 6vw;
}
section.awards-button-wrapper {
  margin-top: 0;
  padding-top: 0;
  text-align: center;
}
section.book-with-confidence {
  text-align: center;
  margin-top: 1em;
  margin-bottom: 1em;
}
section.book-with-confidence .book-with-confidence-badge {
  float: left;
  width: 25%;
  padding: 10px;
  margin-top: 20px;
}
section.section-gallery .gallery-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 102;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background-color: rgba(0, 0, 0, 0.7);
}
section.section-gallery .gallery-overlay:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #e86c6c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  animation: spin 1s linear infinite;
}
section.section-gallery .gallery-overlay.opened {
  opacity: 1;
}
section.section-gallery .gallery-overlay.loaded:before {
  display: none;
}
section.section-gallery .gallery-overlay .gallery-modal {
  width: 80%;
  -webkit-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.2);
}
section.section-gallery .gallery-overlay .gallery-modal ul.modal-nav {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #e86c6c;
  color: #fff;
  display: -webkit-flex;
  display: flex;
  box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.2);
}
section.section-gallery .gallery-overlay .gallery-modal ul.modal-nav:before {
  display: block;
  content: '';
  position: absolute;
  right: 100%;
  top: 0;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #e86c6c;
  color: #fff;
  width: 60px;
  height: 60px;
  box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
section.section-gallery .gallery-overlay .gallery-modal ul.modal-nav:after {
  position: absolute;
  content: '';
  display: block;
  top: 100%;
  height: 50px;
  width: 170px;
  right: 0;
  background-color: #fff;
  z-index: 1;
}
section.section-gallery .gallery-overlay .gallery-modal ul.modal-nav > li {
  font-size: 1.25em;
  text-align: center;
  width: 0;
  height: 40px;
  line-height: 40px;
  background-color: #e86c6c;
  color: #fff;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
section.section-gallery .gallery-overlay .gallery-modal ul.modal-nav > li:hover {
  background-color: #e14040;
}
section.section-gallery .gallery-overlay .gallery-modal ul.modal-nav > li.enabled {
  width: 40px;
}
section.section-gallery .gallery-overlay .gallery-modal ul.modal-nav > li a:link,
section.section-gallery .gallery-overlay .gallery-modal ul.modal-nav > li a:visited {
  color: #fff;
  display: block;
}
section.section-gallery .gallery-overlay .gallery-modal ul.modal-nav > li a:link:after,
section.section-gallery .gallery-overlay .gallery-modal ul.modal-nav > li a:visited:after {
  display: none;
}
section.section-gallery .gallery-overlay .gallery-modal ul.modal-nav > li a:hover,
section.section-gallery .gallery-overlay .gallery-modal ul.modal-nav > li a:active {
  text-decoration: none;
}
section.section-gallery .gallery-overlay .gallery-modal .overflow-wrapper {
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}
section.section-gallery .gallery-overlay .gallery-modal .modal-main {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding: 0;
  -webkit-align-items: center;
  align-items: center;
}
section.section-gallery .gallery-overlay .gallery-modal .modal-main .left {
  width: 30%;
  padding-right: 4rem;
}
section.section-gallery .gallery-overlay .gallery-modal .modal-main .left .gallery-info .name-cat h3 {
  text-align: center;
}
section.section-gallery .gallery-overlay .gallery-modal .modal-main .left ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
section.section-gallery .gallery-overlay .gallery-modal .modal-main .left ul > li {
  margin-bottom: 2em;
}
section.section-gallery .gallery-overlay .gallery-modal .modal-main .left ul > li:last-child {
  margin-bottom: 0;
}
section.section-gallery .gallery-overlay .gallery-modal .modal-main .left ul > li.name-cat h3 {
  color: #e86c6c;
  font-size: 1.4em;
  line-height: 1.25;
  margin: 0;
  margin-bottom: 0.25em;
}
section.section-gallery .gallery-overlay .gallery-modal .modal-main .left ul > li.name-cat h3 + p {
  color: #4a4a4a;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 3px;
}
section.section-gallery .gallery-overlay .gallery-modal .modal-main .left ul > li.desc {
  font-size: 0.9em;
}
section.section-gallery .gallery-overlay .gallery-modal .modal-main .right {
  width: 70%;
  line-height: 0;
}
section.section-gallery .gallery-overlay .gallery-modal .modal-main .right .wide-screen {
  height: 0;
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
section.section-gallery .gallery-overlay .gallery-modal .modal-main .right .wide-screen > iframe,
section.section-gallery .gallery-overlay .gallery-modal .modal-main .right .wide-screen > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.section-gallery .gallery-overlay .gallery-modal .modal-main .right .wide-screen > a:link,
section.section-gallery .gallery-overlay .gallery-modal .modal-main .right .wide-screen:visited {
  display: block;
}
section.section-gallery .gallery-overlay .gallery-modal .modal-main .right .wide-screen > a:link:before,
section.section-gallery .gallery-overlay .gallery-modal .modal-main .right .wide-screen:visited:before {
  display: block;
  position: absolute;
  content: '';
  background-image: url('../img/youtube-play.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
section.section-gallery .gallery-overlay .gallery-modal .modal-main .right .wide-screen > a:link:hover:before,
section.section-gallery .gallery-overlay .gallery-modal .modal-main .right .wide-screen:visited:hover:before,
section.section-gallery .gallery-overlay .gallery-modal .modal-main .right .wide-screen > a:link:active:before,
section.section-gallery .gallery-overlay .gallery-modal .modal-main .right .wide-screen:visited:active:before {
  opacity: 0.8;
}
section.section-gallery .gallery-overlay .gallery-modal .modal-main .right .wide-screen > a:link:after,
section.section-gallery .gallery-overlay .gallery-modal .modal-main .right .wide-screen:visited:after {
  display: none;
}
section.section-gallery .gallery-overlay .gallery-modal .modal-main .left,
section.section-gallery .gallery-overlay .gallery-modal .modal-main .right {
  z-index: 1;
  position: relative;
}
section.section-gallery .gallery-overlay .gallery-modal.opened {
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
section.section-gallery header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 2.4rem;
}
section.section-gallery header h2 {
  margin: 0;
}
section.section-gallery header ul.gallery-cats {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 2px;
  padding-top: 1em;
  text-align: center;
}
section.section-gallery header ul.gallery-cats > li {
  display: inline-block;
}
section.section-gallery header ul.gallery-cats > li + li {
  margin-left: 2em;
}
section.section-gallery header ul.gallery-cats > li > a {
  display: block;
  padding: 0.5em 0;
}
section.section-gallery .gallery-grid {
  margin: -1rem;
}
section.section-gallery .gallery-grid > .gallery-grid-item {
  width: 33.33%;
  padding: 1rem;
  overflow: hidden;
  position: relative;
}
section.section-gallery .gallery-grid > .gallery-grid-item img.gallery-video-icon {
  width: 72px;
  height: 72px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0.5;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: opacity ease 0.3s;
  -moz-transition: opacity ease 0.3s;
  transition: opacity ease 0.3s;
  z-index: 2;
}
section.section-gallery .gallery-grid > .gallery-grid-item img:not(.gallery-video-icon) {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-filter: contrast(60%);
  -moz-filter: contrast(60%);
  -ms-filter: contrast(60%);
  filter: contrast(60%);
}
section.section-gallery .gallery-grid > .gallery-grid-item:hover {
  cursor: pointer;
}
section.section-gallery .gallery-grid > .gallery-grid-item:hover img.gallery-video-icon {
  opacity: 0.8;
}
section.section-gallery .gallery-grid > .gallery-grid-item:hover img:not(.gallery-video-icon) {
  -webkit-filter: contrast(100%);
  -moz-filter: contrast(100%);
  -ms-filter: contrast(100%);
  filter: contrast(100%);
}
section.section-gallery .gallery-grid > .gallery-grid-item .gallery-hidden {
  display: none;
}
section.section-meet-the-team p {
  text-align: center;
}
section.section-meet-the-team .meet-the-team-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 102;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background-color: rgba(0, 0, 0, 0.7);
}
section.section-meet-the-team .meet-the-team-overlay:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #e86c6c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  animation: spin 1s linear infinite;
}
section.section-meet-the-team .meet-the-team-overlay.opened {
  opacity: 1;
}
section.section-meet-the-team .meet-the-team-overlay.loaded:before {
  display: none;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal {
  width: 80%;
  -webkit-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.2);
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal ul.modal-nav {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #e86c6c;
  color: #fff;
  display: -webkit-flex;
  display: flex;
  box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.2);
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal ul.modal-nav:before {
  display: block;
  content: '';
  position: absolute;
  right: 100%;
  top: 0;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #e86c6c;
  color: #fff;
  width: 60px;
  height: 60px;
  box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal ul.modal-nav:after {
  position: absolute;
  content: '';
  display: block;
  top: 100%;
  height: 50px;
  width: 170px;
  right: 0;
  background-color: #fff;
  z-index: 1;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal ul.modal-nav > li {
  font-size: 1.25em;
  text-align: center;
  width: 0;
  height: 40px;
  line-height: 40px;
  background-color: #e86c6c;
  color: #fff;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal ul.modal-nav > li:hover {
  background-color: #e14040;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal ul.modal-nav > li.enabled {
  width: 40px;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal ul.modal-nav > li a:link,
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal ul.modal-nav > li a:visited {
  color: #fff;
  display: block;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal ul.modal-nav > li a:link:after,
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal ul.modal-nav > li a:visited:after {
  display: none;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal ul.modal-nav > li a:hover,
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal ul.modal-nav > li a:active {
  text-decoration: none;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .overflow-wrapper {
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding: 0;
  -webkit-align-items: center;
  align-items: center;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .left {
  width: 30%;
  padding-right: 4rem;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .left ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .left ul > li {
  margin-bottom: 1em;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .left ul > li:last-child {
  margin-bottom: 0;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .left ul > li.name-cat h3 {
  color: #e86c6c;
  font-size: 1.4em;
  line-height: 1.25;
  margin: 0;
  margin-bottom: 0.25em;
  text-align: left;
  font-family: 'Shadows Into Light', cursive !important;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .left ul > li.name-cat h6 {
  font-size: 1em !important;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .left ul > li.name-cat :nth-child(2),
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .left ul > li.name-cat :nth-child(3) {
  letter-spacing: 1px;
  color: #4a4a4a;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: left;
  margin-bottom: 0.2em;
  letter-spacing: 0em;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .left ul > li.name-cat :nth-child(3) {
  padding-top: 0;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .left ul > li.desc p {
  text-align: left !important;
  font-size: 0.8em;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .right {
  width: 70%;
  line-height: 0;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .right .wide-screen {
  height: 0;
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .right .wide-screen > iframe,
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .right .wide-screen > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .right .wide-screen > a:link,
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .right .wide-screen:visited {
  display: block;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .right .wide-screen > a:link:before,
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .right .wide-screen:visited:before {
  display: block;
  position: absolute;
  content: '';
  background-image: url('../img/youtube-play.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .right .wide-screen > a:link:hover:before,
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .right .wide-screen:visited:hover:before,
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .right .wide-screen > a:link:active:before,
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .right .wide-screen:visited:active:before {
  opacity: 0.8;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .right .wide-screen > a:link:after,
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .right .wide-screen:visited:after {
  display: none;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .left,
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .right {
  z-index: 1;
  position: relative;
}
section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal.opened {
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
section.section-meet-the-team header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 2.4rem;
}
section.section-meet-the-team header h2 {
  margin: 0;
}
section.section-meet-the-team header ul.meet-the-team-cats {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 2px;
  padding-top: 1em;
  text-align: center;
}
section.section-meet-the-team header ul.meet-the-team-cats > li {
  display: inline-block;
}
section.section-meet-the-team header ul.meet-the-team-cats > li + li {
  margin-left: 2em;
}
section.section-meet-the-team header ul.meet-the-team-cats > li > a {
  display: block;
  padding: 0.5em 0;
}
section.section-meet-the-team .meet-the-team-grid {
  margin: 1rem;
}
section.section-meet-the-team .meet-the-team-grid > .meet-the-team-grid-item {
  width: 25%;
  padding: 1rem;
  overflow: hidden;
  position: relative;
}
section.section-meet-the-team .meet-the-team-grid > .meet-the-team-grid-item img.meet-the-team-video-icon {
  width: 72px;
  height: 72px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0.5;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: opacity ease 0.3s;
  -moz-transition: opacity ease 0.3s;
  transition: opacity ease 0.3s;
  z-index: 2;
}
section.section-meet-the-team .meet-the-team-grid > .meet-the-team-grid-item img:not(.meet-the-team-video-icon) {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-filter: contrast(60%);
  -moz-filter: contrast(60%);
  -ms-filter: contrast(60%);
  filter: contrast(60%);
}
section.section-meet-the-team .meet-the-team-grid > .meet-the-team-grid-item:hover {
  cursor: pointer;
}
section.section-meet-the-team .meet-the-team-grid > .meet-the-team-grid-item:hover img.meet-the-team-video-icon {
  opacity: 0.8;
}
section.section-meet-the-team .meet-the-team-grid > .meet-the-team-grid-item:hover img:not(.meet-the-team-video-icon) {
  -webkit-filter: contrast(100%);
  -moz-filter: contrast(100%);
  -ms-filter: contrast(100%);
  filter: contrast(100%);
}
section.section-meet-the-team .meet-the-team-grid > .meet-the-team-grid-item .meet-the-team-hidden {
  display: none;
}
section.section-meet-the-team .name-cat p:last-child {
  text-align: left;
  padding-top: 1em;
}
section.handling-time {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
section.section-preferred-vendors .vendor-list .row .col-sm-6 {
  width: 33.33%;
}
section.section-preferred-vendors .vendor-list .row .vendor-thumbnail {
  display: block;
  border: 1px solid rgba(155, 155, 155, 0.5);
  height: 100px;
  text-align: center;
  line-height: calc(100px - 2em);
  padding: 1em 2em;
  margin-bottom: 1em;
}
section.section-preferred-vendors .vendor-list .row .vendor-thumbnail span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  /* fixes overlap error in IE7/8, 
						   make sure you have an empty gif */
  background-image: url('../img/homepage/preferred-vendor/empty-360x120.webp');
}
section.section-preferred-vendors .vendor-list .row .vendor-thumbnail > img {
  max-height: 100%;
}
section.section-preferred-vendors .vendor-list .row .vendor-thumbnail + h4 {
  text-align: center;
  font-weight: 400;
  margin: 0.5em 0 0;
  font-size: 1em;
}
section.were-hiring {
  text-align: center;
  margin: 0 !important;
  padding: 0.5em 0;
  background-color: rgba(58, 168, 242, 0.18);
}
section.were-hiring p {
  margin-bottom: 0;
  padding: 0 0.5em;
}
section + footer {
  margin-top: 6rem;
}
.separator {
  margin: 4.8rem 0;
  padding: 2rem 0;
}
.separator:before,
.separator:after {
  position: absolute;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 1.6em solid transparent;
}
.separator:before {
  top: 0;
  right: 0;
  border-top-color: #fff;
  border-right-color: #fff;
}
.separator:after {
  bottom: 0;
  left: 0;
  border-bottom-color: #fff;
  border-left-color: #fff;
}
.separator .record-separator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.separator .record-separator:before,
.separator .record-separator:after {
  position: absolute;
  content: '';
  display: block;
  width: 14.4rem;
  width: 38.9vmin;
  height: 14.4rem;
  height: 38.9vmin;
  background-image: url('../img/homepage/dj-record.svg');
  background-position: center center;
  background-size: cover;
  opacity: 0.4;
}
.separator .record-separator:before {
  left: -9rem;
  left: -24.3vmin;
  top: -1.44rem;
}
.separator .record-separator:after {
  right: -9rem;
  right: -24.3vmin;
  bottom: -1.44rem;
}
.separator .separator-carousel .owl-carousel {
  overflow: hidden;
  position: relative;
}
.separator .separator-carousel .owl-carousel .item {
  position: relative;
  display: block;
  height: 0;
  padding-top: 100%;
  background-size: cover;
  background-position: center center;
  margin: 0 auto;
  -webkit-filter: contrast(60%);
  -moz-filter: contrast(60%);
  -ms-filter: contrast(60%);
  filter: contrast(60%);
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.separator .separator-carousel .owl-carousel .item:hover {
  -webkit-filter: contrast(100%);
  -moz-filter: contrast(100%);
  -ms-filter: contrast(100%);
  filter: contrast(100%);
}
.separator.parallax {
  padding: 4rem 8rem;
  color: #fff;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 20em;
}
.separator.parallax .parallax-bg-img {
  -webkit-filter: contrast(60%);
  -moz-filter: contrast(60%);
  -ms-filter: contrast(60%);
  filter: contrast(60%);
}
.separator.parallax .decor {
  font-size: 2em;
  font-size: 3vw;
  display: inline-block;
  position: relative;
  margin: 0.75em 0 0;
  margin: 1.125vw 0 0;
}
.separator.parallax .decor:before,
.separator.parallax .decor:after {
  position: absolute;
  content: '';
  display: block;
  top: 50%;
  width: 100px;
  height: 2px;
  margin-top: -3px;
  background-color: #fff;
}
.separator.parallax .decor:before {
  right: 100%;
  margin-right: 0.5rem;
}
.separator.parallax .decor:after {
  left: 100%;
  margin-left: 0.5rem;
}
.owl-theme .owl-dots .owl-dot span {
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 0 1px #e86c6c;
}
.owl-theme .owl-dots .owl-dot {
  display: block;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 1em;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #e86c6c;
  box-shadow: none;
}
.owl-theme .owl-nav .owl-prev,
.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  margin: 0;
  width: 6em;
  height: 6em;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-indent: -9999px;
  background-size: 2em auto !important;
  background-repeat: no-repeat !important;
}
.owl-theme .owl-nav {
  margin-top: 0;
}
.owl-theme .owl-nav .owl-prev {
  left: 0;
  transform: translateY(-50%) translateX(-50%);
  background-image: url('../img/arrow-left.svg') !important;
  background-position: 3.4em center !important;
}
.owl-theme .owl-nav .owl-next {
  right: 0;
  transform: translateY(-50%) translateX(50%);
  background-image: url('../img/arrow-right.svg') !important;
  background-position: 0.6em center !important;
}
.owl-theme .owl-nav [class*='owl-']:hover {
  background-color: rgba(0, 0, 0, 0.15);
}
.owl-carousel.owl-full-width {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.owl-carousel.owl-full-width .owl-stage-outer,
.owl-carousel.owl-full-width .owl-stage,
.owl-carousel.owl-full-width .owl-item {
  width: 100%;
  height: 100%;
}
.owl-carousel.owl-full-width .item {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  #hero-background-video {
    display: none;
  }
  .section-hero {
    background-image: url('/img/homepage/hero/mobile-homepage-hero-image-1024x768.webp');
    background-color: white;
  }
  .event-details .desc.animated p {
    text-align: left;
  }
}
@media only screen and (max-width: 991px) {
  .flex-responsive {
    display: block !important;
  }
  .flex-responsive > div,
  .flex-responsive > li,
  .flex-responsive > ul,
  .flex-responsive > aside {
    width: 100% !important;
    margin: 0 !important;
  }
  body > nav .menu-wrapper {
    padding-left: 0;
    padding-right: 0;
    background-color: rgba(255, 255, 255, 0.95);
  }
  body > nav .menu-wrapper ul.menu {
    padding-top: 3rem;
  }
  body > nav .menu-wrapper ul.menu > li {
    display: block;
  }
  body > nav .menu-wrapper ul.menu > li + li {
    margin-left: 0;
  }
  body > nav button.open-menu {
    display: block;
  }
  body > nav:not(.opened) .menu-wrapper {
    max-height: 3rem !important;
  }
  section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  section .call-us {
    visibility: 0 !important;
  }
  section.section-services .all-services:before {
    top: 50%;
    margin-top: 0;
  }
  section.section-services .all-services > .dj-mc {
    padding-bottom: 2em;
  }
  section.section-services .all-services > .photo-booth {
    padding-top: 8em;
  }
  section.section-services .all-services > .lighting {
    padding-top: 8em;
  }
  section.section-preferred-vendors .section-intro p {
    text-align: center !important;
  }
  section.section-how-it-works ul.how-it-works-details {
    margin-top: 2em;
  }
  section.section-how-it-works ul.how-it-works-details:before {
    display: none;
  }
  section.section-how-it-works ul.how-it-works-details > li .meta .date {
    font-size: 1.5em;
  }
  section.section-how-it-works ul.how-it-works-details > li svg.nwdj-logo-icon {
    display: none !important;
  }
  section.section-how-it-works ul.how-it-works-details > li .desc {
    padding-left: 0;
    padding-top: 1em;
  }
  section.section-how-it-works ul.how-it-works-details > li + li {
    margin-top: 2em;
  }
  section.section-rsvp .section-intro .contact-us-intro p {
    text-align: center !important;
  }
  section.section-rsvp .contact-us-addy p {
    text-align: center !important;
  }
  body > section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal.opened,
  body > .main-wrapper #secondary section .meet-the-team-overlay .meet-the-team-modal.opened {
    height: calc(100% - 160px);
  }
  body > section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .overflow-wrapper,
  body > .main-wrapper #secondary section .meet-the-team-overlay .meet-the-team-modal .overflow-wrapper {
    overflow: auto;
    height: 100%;
  }
  body > section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .left,
  body > .main-wrapper #secondary section .meet-the-team-overlay .meet-the-team-modal .modal-main .left {
    padding-right: 0;
  }
  body > section.section-meet-the-team .meet-the-team-overlay .meet-the-team-modal .modal-main .right,
  body > .main-wrapper #secondary section .meet-the-team-overlay .meet-the-team-modal .modal-main .right {
    margin-bottom: 4rem !important;
  }
  #meet-the-team p {
    text-align: center !important;
  }
  body > section.section-gallery .gallery-overlay .gallery-modal.opened,
  body > .main-wrapper #secondary section .gallery-overlay .gallery-modal.opened {
    height: calc(100% - 160px);
  }
  body > section.section-gallery .gallery-overlay .gallery-modal .overflow-wrapper,
  body > .main-wrapper #secondary section .gallery-overlay .gallery-modal .overflow-wrapper {
    overflow: auto;
    height: 100%;
  }
  body > section.section-gallery .gallery-overlay .gallery-modal .modal-main .left,
  body > .main-wrapper #secondary section .gallery-overlay .gallery-modal .modal-main .left {
    padding-right: 0;
  }
  body > section.section-gallery .gallery-overlay .gallery-modal .modal-main .right,
  body > .main-wrapper #secondary section .gallery-overlay .gallery-modal .modal-main .right {
    margin-bottom: 4rem !important;
  }
  .separator.parallax,
  body > footer {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  #hero-background-video {
    display: none;
  }
  section,
  .separator.parallax,
  body > footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .section-hero {
    background-image: url('/img/homepage/hero/mobile-homepage-hero-image-768x1024.webp');
    background-color: white;
  }
  section .section-intro {
    max-width: 100%;
  }
  section.section-meet-the-team .meet-the-team-grid > .meet-the-team-grid-item {
    width: 100%;
  }
  section.section-meet-the-team p:last-child {
    text-align: center;
  }
  section.section-gallery .gallery-grid > .gallery-grid-item {
    width: 100%;
  }
  section.section-gallery header ul.gallery-cats > li {
    display: block;
  }
  section.section-gallery header ul.gallery-cats > li + li {
    margin-left: 0;
  }
  section.section-preferred-vendors .vendor-list .row .col-sm-6 {
    width: 100% !important;
  }
  section.book-with-confidence .badge-wrapper .book-with-confidence-badge {
    width: 100% !important;
  }
  .separator.parallax h2 {
    font-size: 1.5em;
    margin-bottom: 0;
  }
  .separator.parallax .decor {
    font-size: 1.5em;
  }
}
@media only screen and (max-width: 599px) {
  #hero-background-video {
    display: none;
  }
  section.section-hero .owl-carousel.owl-theme .owl-nav.disabled + .owl-dots {
    display: none;
  }
  .section-hero {
    background-image: url('/img/homepage/hero/mobile-homepage-hero-image-599x798.webp');
    background-color: white;
  }
  section,
  .separator.parallax,
  body > footer {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 2em !important;
    margin-bottom: 2em !important;
  }
  /* BEGIN SERVICES SECTION   */
  section .photo-booth.flex-responsive,
  .dj-mc.flex-responsive,
  .lighting.flex-responsive {
    padding-top: 2em !important;
    padding-bottom: 1em !important;
  }
  .section-services {
    margin-bottom: 2em !important;
    margin-top: 2em !important;
    padding-top: 2em !important;
  }
  /* END SERVICES SECTION   */
  #separator1 {
    margin-top: 2em !important;
    margin-bottom: 2em !important;
  }
  /* BEGIN HOW IT WORKS SECTION */
  ul.how-it-works-details::before {
    display: none !important;
  }
  #how-it-works {
    margin-top: 2em !important;
  }
  .nwdj-logo-icon {
    display: none !important;
  }
  .btn-primary {
    margin: auto;
    margin-top: 2em;
  }
  .desc {
    text-align: center !important;
  }
  .p-word {
    font-size: 1.3em !important;
    font-weight: bolder !important;
  }
  #gallery h2 {
    margin-top: 0;
    padding-top: 0;
  }
  #gallery header ul.gallery-cats a {
    font-size: 1.3em;
  }
}
