@font-face {
  font-family: "Helvetica Neue LT Std 93";
  font-style: normal;
  font-weight: normal;
  src: local("Helvetica Neue LT Std 93"), url("../fonts/HelveticaNeueLTStd-Md.otf") format("opentype");
}
html, body, .site {
  height: 100%;
  min-height: 100vh;
  font-family: "Helvetica Neue LT Std 93", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: auto;
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .site {
    display: block;
  }
}

body {
  display: flex;
  flex-direction: column;
  transition: background 1s ease-in-out;
}
body.navopen {
  overflow: hidden;
}
body.purple-bg {
  background: #86b6de;
}
body.blue-bg {
  background: #90bce1;
}
body.red-bg {
  background: #ffcfcf;
}
body.green-bg {
  background: #bbe6dd;
}
body.white-bg {
  background: #fff;
}

.content {
  flex: 1 0 auto;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.content.page-fadein {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.footer {
  flex-shrink: 0;
}

a {
  text-decoration: none;
  color: initial;
}

.cta-btn {
  text-transform: uppercase;
  background: #f6dac4;
  padding: 15px 20px 10px;
  display: block;
  max-width: 180px;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.cta-btn:hover {
  background: #000;
  color: #f6dac4;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 240px;
  opacity: 0;
  transition: all 0.1s ease-in-out;
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .site-header {
    position: absolute;
    width: 100%;
    top: 0;
    height: 100px;
  }
}
.site-header.fade-in {
  opacity: 1;
}
.site-header .navs-container {
  width: 95%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1660px) {
  .site-header {
    flex: 0 0 150px;
  }
}
@media screen and (max-width: 991px) {
  .site-header {
    flex: 0 0 125px;
  }
}
@media screen and (max-width: 768px) {
  .site-header {
    transition: all 1s ease-in-out;
  }
}
.site-header .menu-main-left-container {
  flex: 0 0 40%;
}
@media screen and (max-width: 991px) {
  .site-header .menu-main-left-container {
    display: none;
  }
}
.site-header .menu-main-right-container {
  flex: 0 0 30%;
}
@media screen and (max-width: 991px) {
  .site-header .menu-main-right-container {
    display: none;
  }
}
.site-header .menu-social-menu-container {
  flex: 0 0 10%;
}
@media screen and (max-width: 991px) {
  .site-header .menu-social-menu-container {
    display: none;
  }
}
.site-header .menu-main-left-container .menu li a,
.site-header .menu-main-right-container .menu li a {
  position: relative;
  top: 5px;
}
@media screen and (max-width: 991px) {
  .site-header .menu-main-left-container .menu li a,
.site-header .menu-main-right-container .menu li a {
    top: 0;
  }
}
.site-header .menu {
  display: flex;
  justify-content: space-around;
}
.site-header .menu li a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}
.site-header .menu li a:after {
  content: "";
  display: block;
  margin: auto;
  height: 5px;
  width: 0px;
  background: transparent;
  transition: width 0.3s ease, background-color 0.5s ease;
}
.site-header .menu li a:hover:after {
  width: 100%;
  background: #f6dac4;
}
.site-header .menu .active a {
  cursor: default;
  pointer-events: none;
  cursor: default;
}
.site-header .menu .active a:after {
  width: 100%;
  background: #f6dac4;
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  .site-header .menu .active a:after {
    height: 3px;
  }
}
.site-header .menu-social-menu-container li a {
  transition: color 0.3s ease-in-out;
}
.site-header .menu-social-menu-container li a:hover {
  color: #f6dac4;
}
.site-header .menu-social-menu-container li a:after {
  content: none;
}
.site-header .header-logo-link {
  margin: 0 5%;
}
@media screen and (max-width: 1200px) {
  .site-header .header-logo-link {
    margin: 0 0;
  }
}
@media screen and (max-width: 991px) {
  .site-header .header-logo-link {
    position: absolute;
    left: 5%;
    z-index: 6;
  }
}
.site-header .header-logo-link .homelogo {
  height: auto;
  width: 150px;
  margin: 20px 0;
}
@media screen and (max-width: 991px) {
  .site-header .header-logo-link .homelogo {
    width: 95px;
  }
}
.site-header .header-logo-link .homelogo path {
  fill: #fff;
}
@media screen and (max-width: 991px) {
  .site-header .header-logo-link .homelogo path {
    fill: #fff;
  }
  .page-template-page-contact .site-header .header-logo-link .homelogo path {
    fill: #000;
  }
}
.site-header .ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 1;
}
@media screen and (min-width: 991px) {
  .site-header .ham {
    display: none;
  }
}
.site-header .hamRotate.active {
  transform: rotate(45deg);
}
.site-header .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #fff;
  stroke-width: 5.5;
}
.page-template-page-contact .site-header .line {
  stroke: #000;
}
.site-header .ham4 .top {
  stroke-dasharray: 40 121;
}
.site-header .ham4 .bottom {
  stroke-dasharray: 40 121;
}
.site-header .ham4.active .top {
  stroke-dashoffset: -68px;
}
.site-header .ham4.active .bottom {
  stroke-dashoffset: -68px;
}
.site-header .navtoggle {
  position: absolute;
  right: 5%;
  width: 80px;
  z-index: 6;
}
@media screen and (max-width: 768px) {
  .site-header .navtoggle {
    width: 60px;
  }
}
.site-header .mobile-nav-container {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: -120vh;
  left: 0;
  background: #262626;
  z-index: 5;
  color: #f6dac4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: top 0.5s ease-in-out;
}
.site-header .mobile-nav-container__open {
  top: 0;
}
.site-header .mobile-nav-container .menu li a {
  color: #f6dac4;
  font-size: 25px;
}
.site-header .mobile-nav-container .menu li a:hover:after {
  background: #fff;
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  .site-header .mobile-nav-container .menu li a {
    font-size: 18px;
  }
  .site-header .mobile-nav-container .menu li a:hover:after {
    height: 3px;
  }
}
.site-header .mobile-nav-container .menu-mobile-menu-container {
  height: 50%;
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  .site-header .mobile-nav-container .menu-mobile-menu-container {
    height: 60%;
  }
}
.site-header .mobile-nav-container #menu-mobile-menu {
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.site-header .mobile-nav-container .menu-social-menu-container {
  position: absolute;
  bottom: 20%;
  width: 70%;
  max-width: 300px;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  display: block;
}
.site-header .mobile-nav-container #menu-social-menu {
  justify-content: space-between;
  align-items: center;
}
.site-header .mobile-nav-container #menu-social-menu li a {
  color: #fff;
  transition: color 0.3s ease-in-out;
}
.site-header .mobile-nav-container #menu-social-menu li a:hover {
  color: #f6dac4;
}
.site-header .mobile-nav-container #menu-social-menu li a:after {
  content: none;
}

.footer {
  z-index: 1;
}
.footer .upper {
  background: #fff;
  height: 72px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .footer .upper {
    height: auto;
    padding: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .footer .upper {
    padding: 10px 0;
  }
}
.footer .upper .signup-copy {
  margin-bottom: 0;
  margin-right: 30px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .footer .upper .signup-copy {
    font-size: 12px;
    flex: 0 0 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.footer .upper .cta-btn {
  max-width: 180px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer .upper .cta-btn {
    padding: 8px 20px 5px;
  }
}
.footer .lower {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #262626;
  color: #f6dac4;
  height: 43px;
  position: relative;
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  .footer .lower {
    flex-direction: column;
    font-size: 10px;
    height: auto;
    padding: 10px 5px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .footer .lower {
    font-size: 8px;
    padding-top: 40px;
  }
}
.footer .lower a {
  color: #f6dac4;
}
.footer .lower .menu {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer .lower .menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer .lower .menu li a {
  color: #f6dac4;
  position: relative;
  padding-bottom: 5px;
}
.footer .lower .menu li a:before {
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 0px;
  background: transparent;
  transition: width 0.3s ease, background-color 0.5s ease;
}
.footer .lower .menu li a:hover:before {
  width: calc(100% - 10px);
  background: #f6dac4;
}
.footer .lower .menu li a:after {
  content: "|";
  margin: 0 5px;
}
@media screen and (max-width: 768px) {
  .footer .lower .menu li a:after {
    margin: 0 2px;
  }
}
.footer .lower .menu li:last-of-type a::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .footer .lower .menu li:first-of-type {
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 5px;
  }
  .footer .lower .menu li:first-of-type a::after {
    content: none;
  }
}
.footer .lower #facebookMessageButton {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 22px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer .lower #facebookMessageButton {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    margin: 0;
    flex-direction: row;
    flex-wrap: wrap;
    width: 123px;
    height: 22px;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }
}
.footer .lower #credit {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .footer .lower #credit {
    display: none;
    position: relative;
    right: 0;
    row-gap: 0;
    transform: none;
    margin-top: 10px;
  }
}
.footer .lower #credit a {
  color: #535353;
}

.page-template-page-home,
.page-template-page-newsletter {
  background: #86b6de;
}
.page-template-page-home .home-content,
.page-template-page-newsletter .home-content {
  text-align: center;
  display: block;
  margin: auto;
  width: 45%;
  width: 32%;
  max-width: 680px;
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  min-height: 500px;
}
@media screen and (max-width: 991px) {
  .page-template-page-home .home-content,
.page-template-page-newsletter .home-content {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-home .home-content,
.page-template-page-newsletter .home-content {
    width: 90%;
    margin-top: auto;
  }
}
@media screen and (max-width: 480px) {
  .page-template-page-home .home-content,
.page-template-page-newsletter .home-content {
    margin-top: auto;
    height: 100%;
    min-height: 400px;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media screen and (max-height: 1065px) and (min-width: 1200px) {
  .page-template-page-home .home-content,
.page-template-page-newsletter .home-content {
    width: 25%;
  }
}
@media screen and (max-height: 975px) and (min-width: 1200px) {
  .page-template-page-home .home-content,
.page-template-page-newsletter .home-content {
    width: 35vw;
  }
}
@media screen and (max-height: 865px) and (min-width: 1200px) {
  .page-template-page-home .home-content,
.page-template-page-newsletter .home-content {
    margin-top: 20px;
    min-height: 500px;
  }
}
@media screen and (max-height: 975px) and (min-width: 1490px) {
  .page-template-page-home .home-content,
.page-template-page-newsletter .home-content {
    width: 25vw;
    min-height: 500px;
  }
}
@media screen and (max-height: 975px) and (min-width: 1660px) {
  .page-template-page-home .home-content,
.page-template-page-newsletter .home-content {
    width: 25vw;
    position: relative;
    top: -60px;
  }
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  .page-template-page-home .home-content,
.page-template-page-newsletter .home-content {
    align-items: flex-start;
    height: 100%;
    width: 50%;
    display: block;
    margin-bottom: 150px;
  }
}
.page-template-page-home .home-content__img,
.page-template-page-newsletter .home-content__img {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1660px) {
  .page-template-page-home .home-content__img,
.page-template-page-newsletter .home-content__img {
    width: 25vw;
  }
}
.page-template-page-home .home-content__img--container,
.page-template-page-newsletter .home-content__img--container {
  position: absolute;
  height: 100%;
}
.page-template-page-home .home-content__img--container img,
.page-template-page-newsletter .home-content__img--container img {
  max-height: 100%;
  max-width: 100%;
  height: 80%;
}
.page-template-page-home .home-content__img--bg,
.page-template-page-newsletter .home-content__img--bg {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  margin-bottom: 20px;
}
.page-template-page-home .home-content__img--fg1,
.page-template-page-newsletter .home-content__img--fg1 {
  position: absolute;
  width: 100%;
  top: 5%;
  left: 0;
}
@media screen and (max-width: 480px) {
  .page-template-page-home .home-content__img--fg1,
.page-template-page-newsletter .home-content__img--fg1 {
    top: 3%;
  }
}
.page-template-page-home .home-content__img--fg2,
.page-template-page-newsletter .home-content__img--fg2 {
  position: absolute;
  width: 100%;
  top: 6%;
  left: 0;
}
@media screen and (max-width: 480px) {
  .page-template-page-home .home-content__img--fg2,
.page-template-page-newsletter .home-content__img--fg2 {
    top: 2.5%;
  }
}
.page-template-page-home .home-content__btns,
.page-template-page-newsletter .home-content__btns {
  display: flex;
}
.page-template-page-home .home-content__title,
.page-template-page-newsletter .home-content__title {
  font-size: 26px;
  text-transform: uppercase;
}
@media screen and (max-height: 975px) {
  .page-template-page-home .home-content__title,
.page-template-page-newsletter .home-content__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .page-template-page-home .home-content__title,
.page-template-page-newsletter .home-content__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-home .home-content__title,
.page-template-page-newsletter .home-content__title {
    font-size: 15px;
  }
}
.page-template-page-home .home-content .cta-btn,
.page-template-page-newsletter .home-content .cta-btn {
  font-size: 20px;
  margin: 20px auto;
}
@media screen and (min-width: 1200px) and (max-width: 1300px) and (min-height: 975px) {
  .page-template-page-home .home-content .cta-btn,
.page-template-page-newsletter .home-content .cta-btn {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .page-template-page-home .home-content .cta-btn,
.page-template-page-newsletter .home-content .cta-btn {
    font-size: 16px;
    margin: 10px auto;
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-home .home-content .cta-btn,
.page-template-page-newsletter .home-content .cta-btn {
    max-width: none;
    display: inline-block;
    padding: 8px 20px 5px;
  }
}

.page-template-page-home {
  background: linear-gradient(to bottom, #4480b2 1%, #94bad8 100%);
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .page-template-page-home {
    background: #94bad8;
  }
}
.page-template-page-home .home-content {
  margin: 0 auto auto;
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .page-template-page-home .home-content {
    top: 5%;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-home .home-content {
    margin: auto;
  }
}

.page-template-page-music {
  background: #90bce1;
}
.page-template-page-music .music-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-page-music .music-carousel {
  width: 80%;
  margin: auto;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.page-template-page-music .music-carousel.flickity-enabled {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .page-template-page-music .music-carousel {
    margin: auto auto 5vh;
  }
}
.page-template-page-music .flickity-button {
  background: none;
  color: #262626;
  transition: color 0.3s ease-in-out;
}
.page-template-page-music .flickity-button:hover {
  background: none;
  color: #f6dac4;
}
.page-template-page-music .flickity-button.previous {
  left: -5%;
}
@media screen and (max-width: 768px) {
  .page-template-page-music .flickity-button.previous {
    left: -10%;
  }
}
.page-template-page-music .flickity-button.next {
  right: -5%;
}
@media screen and (max-width: 768px) {
  .page-template-page-music .flickity-button.next {
    right: -10%;
  }
}
.page-template-page-music .carousel-cell {
  width: calc(25% - 50px);
  margin: 0 25px;
}
@media screen and (max-width: 991px) {
  .page-template-page-music .carousel-cell {
    width: calc(50% - 50px);
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-music .carousel-cell {
    width: calc(100% - 50px);
  }
}
.page-template-page-music img {
  width: 100%;
}
.page-template-page-music .cta-btn {
  width: 100%;
  text-align: center;
  max-width: none;
  padding: 15px 0 10px;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .page-template-page-music .cta-btn {
    margin: 15px 0;
  }
}
.page-template-page-music .spotify-playlist iframe {
  height: 80px;
  width: 100%;
  overflow: hidden;
}

.page-template-page-video {
  background: #ffcfcf;
}
.page-template-page-video .video-content {
  width: 85%;
  max-width: 1150px;
  display: block;
  margin: 30px auto;
}
.page-template-page-video .video-content #video-wrapper {
  position: relative;
  width: calc(100% - 50px);
  margin: 0 auto 30px;
}
@media screen and (max-width: 991px) {
  .page-template-page-video .video-content #video-wrapper {
    width: calc(100% - 25px);
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-video .video-content #video-wrapper {
    width: calc(100% - 10px);
  }
}
.page-template-page-video .video-content #video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-template-page-video .video-carousel-nav {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.page-template-page-video .video-carousel-nav.flickity-enabled {
  opacity: 1;
}
.page-template-page-video .carousel-cell {
  width: calc(25% - 50px);
  margin: 0 25px;
}
@media screen and (max-width: 991px) {
  .page-template-page-video .carousel-cell {
    width: calc(50% - 25px);
    margin: 0 12.5px;
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-video .carousel-cell {
    width: calc(50% - 10px);
    margin: 0 5px;
  }
}
.page-template-page-video .carousel-cell .video-thumb img {
  width: 100%;
}
.page-template-page-video .flickity-button {
  background: none;
  color: #262626;
  transition: color 0.3s ease-in-out;
}
.page-template-page-video .flickity-button:hover {
  background: none;
  color: #d67070;
}
.page-template-page-video .flickity-button.previous {
  left: -5%;
}
@media screen and (max-width: 768px) {
  .page-template-page-video .flickity-button.previous {
    left: -10%;
  }
}
.page-template-page-video .flickity-button.next {
  right: -5%;
}
@media screen and (max-width: 768px) {
  .page-template-page-video .flickity-button.next {
    right: -10%;
  }
}

.page-template-page-tour {
  background: #bbe6dd;
}
.page-template-page-tour .tour-content {
  width: 95%;
  display: block;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-page-tour .tour-content .umg_live_table {
  width: 100%;
  max-width: 850px;
}
.page-template-page-tour .tour-content .umg_live_table tbody {
  display: flex;
  flex-wrap: wrap;
}
.page-template-page-tour .tour-content .umg_live_table tr {
  text-transform: uppercase;
  height: 50px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .page-template-page-tour .tour-content .umg_live_table tr {
    height: auto;
  }
}
.page-template-page-tour .tour-content .umg_live_table td.umg_live_date {
  flex: 0 0 15%;
}
@media screen and (max-width: 768px) {
  .page-template-page-tour .tour-content .umg_live_table td.umg_live_date {
    flex: 0 0 100%;
    text-align: center;
    margin: 5px 0;
  }
}
.page-template-page-tour .tour-content .umg_live_table td.umg_live_venue,
.page-template-page-tour .tour-content .umg_live_table td.umg_live_location {
  flex: 0 0 30%;
}
@media screen and (max-width: 768px) {
  .page-template-page-tour .tour-content .umg_live_table td.umg_live_venue,
.page-template-page-tour .tour-content .umg_live_table td.umg_live_location {
    flex: 0 0 100%;
    text-align: center;
    margin: 5px 0;
  }
}
.page-template-page-tour .tour-content .umg_live_table td.umg_live_tickets {
  flex: 0 0 20%;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .page-template-page-tour .tour-content .umg_live_table td.umg_live_tickets {
    flex: 0 0 100%;
    text-align: center;
    margin: 20px 0;
  }
}
.page-template-page-tour .tour-content .umg_live_table td.umg_live_tickets a.umg_live_ticket_link {
  background: #f6dac4;
  padding: 15px 20px 10px;
  transition: all 0.3s ease-in-out;
}
.page-template-page-tour .tour-content .umg_live_table td.umg_live_tickets a.umg_live_ticket_link:hover {
  background: #000;
  color: #f6dac4;
}
.page-template-page-tour .umg_live_bit_control_bar.umg_live_bit_control_bar_top,
.page-template-page-tour .umg_live_bit_control_bar.umg_live_bit_control_bar_bottom {
  display: none !important;
}

.page-template-page-contact {
  background: #86b6de;
}
.page-template-page-contact .contact-content__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #262626;
}
@media screen and (max-width: 768px) {
  .page-template-page-contact .contact-content__container {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 90%;
    margin: auto auto 50px;
  }
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  .page-template-page-contact .contact-content__container {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }
}
.page-template-page-contact .contact-content__container h1 {
  position: relative;
  font-size: 34px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 45px;
  color: #fff;
}
.page-template-page-contact .contact-content__container h1:before {
  content: attr(data-duplicate-text);
  position: absolute;
  left: 0;
  top: 5px;
  text-align: center;
  opacity: 0;
}
.page-template-page-contact .contact-content__container h1:last-of-type {
  margin-top: 80px;
}
.page-template-page-contact .contact-content__container p {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .page-template-page-contact .contact-content__container p {
    font-size: 14px;
  }
}
.page-template-page-contact .contact-content__container a {
  text-transform: uppercase;
  background: #f6dac4;
  padding: 10px 20px;
  display: inline-block;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.page-template-page-contact .contact-content__container a:hover {
  background: #000;
  color: #f6dac4;
}
@media screen and (max-width: 480px) {
  .page-template-page-contact .contact-content__container a {
    padding: 10px;
  }
}

.jquery-modal.blocker.current {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blocker {
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.ae-cform-modal-container.modal {
  box-shadow: none !important;
  background: transparent !important;
}
.ae-cform-modal-container.modal .captcha-badge-holder {
  display: none !important;
}
.ae-cform-modal-container.modal a.close-modal {
  background: none !important;
  color: transparent !important;
  text-indent: 0 !important;
}

#_evh-link {
  right: 100% !important;
}

@media screen and (max-width: 991px) {
  #_evidon_banner {
    text-align: center !important;
  }
}

#_evh-button {
  display: none;
}/*# sourceMappingURL=styles.css.map */