body {
  background-color: #343a40 !important;
}

@media (min-width: 768px) {
  header {
    height: auto !important;
  }
}

.navbar-dark .navbar-nav .nav-link {
  color: #009bbd;
  font-weight: bold;

}

.navbar-dark .navbar-nav .nav-link:hover {
  color: white !important;
}

/* --------------------------------

Slider

-------------------------------- */
.cd-hero {
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.cd-hero-slider li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}

.cd-hero-slider li.selected {
  /* this is the visible slide */
  position: relative;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.cd-hero-slider li.move-left {
  /* slide hidden on the left */
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}

.cd-hero-slider li.is-moving, .cd-hero-slider li.selected {
  /* the is-moving class is assigned to the slide which is moving outside the viewport */
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
}

@media only screen and (min-width: 768px) {
  .cd-hero-slider {
    height: calc(100vh - 126px);
  }
}

@media only screen and (min-width: 1170px) {
  .cd-hero-slider {
    height: calc(100vh - 126px);
  }
}

/* --------------------------------

Single slide style

-------------------------------- */
.cd-hero-slider li {
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cd-hero-slider li:first-of-type {
  background-image: url("../img/banner-carousel/carousel-1.jpg");
  background-position: center 60%;
}

.cd-hero-slider li:nth-of-type(2) {
  background-image: url("../img/banner-carousel/carousel-2.jpg");
  background-position: center;
}

.cd-hero-slider li:nth-of-type(3) {
  background-image: url("../img/banner-carousel/carousel-3.jpg");
  background-position: center 30%;
}

.cd-hero-slider li:nth-of-type(4) {
  background-image: url("../img/banner-carousel/carousel-4.jpg");
  background-position: center bottom;
}

.cd-hero-slider li:nth-of-type(5) {
  background-image: url("../img/banner-carousel/carousel-5.jpg");
  background-position: center 60%;
}

.cd-hero-slider li:nth-of-type(6) {
  background-image: url("../img/banner-carousel/carousel-6.jpg");
  background-position: center 25%;
}

.cd-hero-slider li:nth-of-type(7) {
  background-image: url("../img/banner-carousel/carousel-7.jpg");
  background-position: center 80%;
}

.cd-hero-slider li:nth-of-type(8) {
  background-image: url("../img/banner-carousel/carousel-8.jpg");
  background-position: center;
}

.cd-hero-slider li:nth-of-type(9) {
  background-image: url("../img/banner-carousel/carousel-9.jpg");
  background-position: center 80%;
}

.cd-hero-slider li:nth-of-type(10) {
  background-image: url("../img/banner-carousel/carousel-10.jpg");
  background-position: center;
}

.cd-hero-slider li:nth-of-type(11) {
  background-image: url("../img/banner-carousel/carousel-11.jpg");
  background-position: center 60%;
}

.cd-hero-slider li:nth-of-type(12) {
  background-image: url("../img/banner-carousel/carousel-12.jpg");
  background-position: center 60%;
}

.cd-hero-slider li:nth-of-type(13) {
  background-image: url("../img/banner-carousel/carousel-13.jpg");
  background-position: center 40%;
}

.cd-hero-slider li:nth-of-type(14) {
  background-image: url("../img/banner-carousel/carousel-14.jpg");
  background-position: center 60%;
}

.cd-hero-slider .cd-full-width {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0%;
  top: 0%;
  padding-top: 20%;
  text-align: center;
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

.cd-hero-slider .cd-img-container {
  /* hide image on mobile device */
  display: none;
}

.cd-hero-slider .cd-img-container img {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.cd-hero-slider .cd-bg-video-wrapper {
  /* hide video on mobile device */
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cd-hero-slider .cd-bg-video-wrapper video {
  /* you won't see this element in the html, but it will be injected using js */
  display: block;
  min-height: 100%;
  min-width: 100%;
  max-width: none;
  height: auto;
  width: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.cd-hero-slider p {
  line-height: 100%;
  margin: 0 auto;
  color: #ffffff;
  width: 40%;
  background-color: rgba(0, 0, 0, .6);
  border-radius: 30px 30px 0 0;
  margin-top: 7%;
}

.cd-hero-slider h2 {
  line-height: 100%;
  margin: 0 auto;
  color: #ffffff;
  width: 40%;
  background-color: rgba(0, 0, 0, .6);
  border-radius: 0 0 30px 30px;
}

.cd-hero-slider h2 {
  font-family: Montserrat;
  font-style: normal;
  font-weight: bold;
  text-transform: none;
  line-height: 50px;
  font-size: 50px;
  letter-spacing: -2px;
  color: #fff;
}

.cd-hero-slider h2.breakthrough-banner {
  font-family: Montserrat;
  font-style: normal;
  font-weight: bold;
  text-transform: none;
  line-height: 80px;
  font-size: 75px;
  letter-spacing: -2px;
  background-image: -webkit-linear-gradient(#fff, #DCD15D, #88741E, #DCD15D, #fff); /* For Chrome and Safari */
  background-image: -moz-linear-gradient(#fff, #DCD15D, #88741E, #DCD15D, #fff); /* For old Fx (3.6 to 15) */
  background-image: -ms-linear-gradient(#fff, #DCD15D, #88741E, #DCD15D, #fff); /* For pre-releases of IE 10*/
  background-image: -o-linear-gradient(#fff, #DCD15D, #88741E, #DCD15D, #fff); /* For old Opera (11.1 to 12.0) */
  background-image: linear-gradient(#fff, #DCD15D, #88741E, #DCD15D, #fff); /* Standard syntax; must be last */
  color: transparent;
  text-transform: uppercase;
  -webkit-background-clip: text;
  background-clip: text;
  width: 100%;
}

.cd-hero-slider p {
  font-family: Cabin;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  font-size: 21px;
  letter-spacing: -1px;
  color: #fff;
}

#videoModal .close {
  opacity: 1;
  color: white;
  font-size: 2em;
}

#videoModal .modal-content {
  background-color: black;
}

#videoModal .modal-title {
  color: white;
}

#videoModal .modal-header {
  padding: 15px;
  border-bottom: 1px solid black;
}

#about {
  padding: 0;
}

.box-column {
  padding: 0;
}

.box {
  height: 500px;
  width: auto;
  overflow: hidden;
}

.box.one {
  background: url(../img/banner-carousel/DSC04064.JPG) no-repeat center;
  -webkit-background-size: cover !important;
  background-size: cover !important;
}

.box.two {
  background: url(../img/banner-carousel/DSC03820.JPG) no-repeat center left;
  -webkit-background-size: cover !important;
  background-size: cover !important;
}

.box.three {
  background: url(../img/icdallas/dalic-entrance-0001-hor-clsc.jpg) no-repeat center;
  -webkit-background-size: cover !important;
  background-size: cover !important;
}

.box.four {
  background: url(../img/iStock-538624043.jpg) no-repeat left;
  -webkit-background-size: cover !important;
  background-size: cover !important;
}

.hid-box {
  top: 66%;
  position: relative;
  transition: all .3s ease-out;
  height: 73%;
  -webkit-clip-path: polygon(0 80px, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 80px, 100% 0, 100% 100%, 0% 100%);
  -webkit-transition: 0.25s ease-in;
  -o-transition: 0.25s ease-in;
}

@media (max-width: 1870px) and (min-width: 1200px) {
  .hid-box {
    top: 76%;
  }

}

@media (max-width: 1200px) and (min-width: 992px) {
  .hid-box {
    top: 78%;
  }

}

.schedule-background {
  /*margin: 25px 10%;*/
  background: rgba(255, 255, 255, .6);
  padding: 0 5%;
}

.schedule-background > .row {
  margin-bottom: 15px;
  margin-top: 15px;
}

.right-point.dayItem {
  text-align: center;
  padding: 2% 7% 2% 0px;
  max-width: 60%;
  margin-left: auto;
}

.left-point.dayItem {
  text-align: center;
  padding: 2% 0 2% 7%;
  max-width: 60%;
  margin-right: auto;
}

.box:hover > .hid-box {
  top: 33%;
}

.one > .hid-box {
  background: url(../img/pattern-one.svg) no-repeat center;
  background-size: cover !important;
}

.two > .hid-box {
  background: url(../img/pattern-two.svg) no-repeat center;
  background-size: cover !important;
}

.three > .hid-box {
  background: linear-gradient(rgba(189, 0, 155, .8), rgba(189, 0, 155, .8)), url(../img/pattern-three.svg) no-repeat center;
  background-size: cover !important;
}

.four > .hid-box {
  background: url(../img/pattern-four.svg) no-repeat center;
  background-size: cover !important;
}

.box-title {
  padding-top: 90px;
  padding-left: 15px;
  color: white;
  font-size: 1.2em;
}

.box-title img {
  max-height: 50px;
}

.box-paragraph {
  font-family: 'Quattrocento Sans', sans-serif;
  text-align: left;
  font-size: 16.5px;
  line-height: 28px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  color: #fff;
  padding: 15px;
}

.box-paragraph a {
  color: white;
  text-transform: uppercase;
}

.right-point {
  background-color: rgba(189, 0, 155, .8);
  color: white;
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.left-point {
  background-color: rgba(189, 0, 155, .8);
  color: white;
  -webkit-clip-path: polygon(25% 0%, 100% 1%, 100% 100%, 25% 100%, 0% 50%);
  clip-path: polygon(25% 0%, 100% 1%, 100% 100%, 25% 100%, 0% 50%);

}

@media only screen and (min-width: 768px) {

  .cd-hero-slider .cd-full-width {
    padding-top: 20%;
  }

  .cd-hero-slider .cd-bg-video-wrapper {
    display: block;
  }

  .cd-hero-slider .cd-half-width {
    width: 45%;
  }

  .cd-hero-slider .cd-half-width:first-of-type {
    left: 5%;
  }

  .cd-hero-slider .cd-half-width:nth-of-type(2) {
    right: 5%;
    left: auto;
  }

  .cd-hero-slider .cd-img-container {
    display: block;
  }

  .cd-hero-slider h2, .cd-hero-slider p {
    max-width: 100%;
  }

}

@media only screen and (min-width: 1170px) {
  .cd-hero-slider .cd-full-width {
    padding-top: 20%;
  }

  .cd-hero-slider p {
    /*margin-bottom: 20px;*/
  }

  .cd-hero-slider > li > .cd-full-width > h2.breakthrough-banner {
    margin-top: -150px;
  }

  .cd-hero-slider h2 {
    font-size: 50px;
  }

  .cd-hero-slider p {
    font-size: 21px;
  }
}

/* --------------------------------

Single slide animation

-------------------------------- */
@media only screen and (min-width: 768px) {
  .cd-hero-slider .cd-half-width {
    opacity: 0;
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    -o-transform: translateX(40px);
    transform: translateX(40px);
  }

  .cd-hero-slider .move-left .cd-half-width {
    -webkit-transform: translateX(-40px);
    -moz-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    -o-transform: translateX(-40px);
    transform: translateX(-40px);
  }

  .cd-hero-slider .selected .cd-half-width {
    /* this is the visible slide */
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  .cd-hero-slider .is-moving .cd-half-width {
    /* this is the slide moving outside the viewport
    wait for the end of the transition on the <li> parent before set opacity to 0 and translate to 40px/-40px */
    -webkit-transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
    -moz-transition: opacity 0s 0.5s, -moz-transform 0s 0.5s;
    transition: opacity 0s 0.5s, transform 0s 0.5s;
  }

  .cd-hero-slider li.selected.from-left .cd-half-width:nth-of-type(2),
  .cd-hero-slider li.selected.from-right .cd-half-width:first-of-type {
    /* this is the selected slide - different animation if it's entering from left or right */
    -webkit-transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
    -moz-transition: opacity 0.4s 0.2s, -moz-transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, transform 0.5s 0.2s;
  }

  .cd-hero-slider li.selected.from-left .cd-half-width:first-of-type,
  .cd-hero-slider li.selected.from-right .cd-half-width:nth-of-type(2) {
    /* this is the selected slide - different animation if it's entering from left or right */
    -webkit-transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s;
    -moz-transition: opacity 0.4s 0.4s, -moz-transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, transform 0.5s 0.4s;
  }

  .cd-hero-slider .cd-full-width h2,
  .cd-hero-slider .cd-full-width p,
  .cd-hero-slider .cd-full-width .cd-btn {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }

  .cd-hero-slider .move-left .cd-full-width h2,
  .cd-hero-slider .move-left .cd-full-width p,
  .cd-hero-slider .move-left .cd-full-width .cd-btn {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  .cd-hero-slider .selected .cd-full-width h2,
  .cd-hero-slider .selected .cd-full-width p,
  .cd-hero-slider .selected .cd-full-width .cd-btn {
    /* this is the visible slide */
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  .cd-hero-slider li.is-moving .cd-full-width h2,
  .cd-hero-slider li.is-moving .cd-full-width p,
  .cd-hero-slider li.is-moving .cd-full-width .cd-btn {
    /* this is the slide moving outside the viewport
    wait for the end of the transition on the li parent before set opacity to 0 and translate to 100px/-100px */
    -webkit-transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
    -moz-transition: opacity 0s 0.5s, -moz-transform 0s 0.5s;
    transition: opacity 0s 0.5s, transform 0s 0.5s;
  }

  .cd-hero-slider .selected .cd-full-width > h2.breakthrough-banner {
    background-image: -webkit-linear-gradient(#fff, #DCD15D, #88741E, #DCD15D, #fff); /* For Chrome and Safari */
    background-image: -moz-linear-gradient(#fff, #DCD15D, #88741E, #DCD15D, #fff); /* For old Fx (3.6 to 15) */
    background-image: -ms-linear-gradient(#fff, #DCD15D, #88741E, #DCD15D, #fff); /* For pre-releases of IE 10*/
    background-image: -o-linear-gradient(#fff, #DCD15D, #88741E, #DCD15D, #fff); /* For old Opera (11.1 to 12.0) */
    background-image: linear-gradient(#fff, #DCD15D, #88741E, #DCD15D, #fff); /* Standard syntax; must be last */
    color: transparent;
    text-transform: uppercase;
    -webkit-background-clip: text;
    background-clip: text;

  }

  .cd-hero-slider li.selected h2 {
    -webkit-transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
    -moz-transition: opacity 0.4s 0.2s, -moz-transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, transform 0.5s 0.2s;
  }

  .cd-hero-slider li.selected p {
    -webkit-transition: opacity 0.4s 0.3s, -webkit-transform 0.5s 0.3s;
    -moz-transition: opacity 0.4s 0.3s, -moz-transform 0.5s 0.3s;
    transition: opacity 0.4s 0.3s, transform 0.5s 0.3s;
  }

  .cd-hero-slider li.selected .cd-btn {
    -webkit-transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s, background-color 0.2s 0s;
    -moz-transition: opacity 0.4s 0.4s, -moz-transform 0.5s 0.4s, background-color 0.2s 0s;
    transition: opacity 0.4s 0.4s, transform 0.5s 0.4s, background-color 0.2s 0s;
  }
}

/* --------------------------------

Slider navigation

-------------------------------- */
.cd-slider-nav {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 2;
  text-align: center;
  height: 55px;
  background-color: rgba(0, 1, 1, 0.5);
}

.cd-slider-nav nav, .cd-slider-nav ul, .cd-slider-nav li, .cd-slider-nav a {
  height: 100%;
}

.cd-slider-nav nav {
  display: inline-block;
  position: relative;
}

.cd-slider-nav .cd-marker {
  position: absolute;
  bottom: 0;
  left: 40px;
  width: 80px;
  height: 100%;
  color: #D2C753;
  background-color: #ffffff;
  box-shadow: inset 0 2px 0 currentColor;
  -webkit-transition: -webkit-transform 0.2s, box-shadow 0.2s;
  -moz-transition: -moz-transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cd-slider-nav .cd-marker.item-2 {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.cd-slider-nav .cd-marker.item-3 {
  -webkit-transform: translateX(200%);
  transform: translateX(200%);
}

.cd-slider-nav .cd-marker.item-4 {
  -webkit-transform: translateX(300%);
  transform: translateX(300%);
}

.cd-slider-nav .cd-marker.item-5 {
  -webkit-transform: translateX(400%);
  transform: translateX(400%);
}

.cd-slider-nav .cd-marker.item-6 {
  -webkit-transform: translateX(500%);
  transform: translateX(500%);
}

.cd-slider-nav .cd-marker.item-7 {
  -webkit-transform: translateX(600%);
  transform: translateX(600%);
}

.cd-slider-nav .cd-marker.item-8 {
  -webkit-transform: translateX(700%);
  transform: translateX(700%);
}

.cd-slider-nav ul::after {
  clear: both;
  content: "";
  display: table;
}

.cd-slider-nav li {
  display: inline-block;
  width: 60px;
  float: left;
}

.cd-slider-nav li.selected a {
  color: #2c343b;
}

.no-touch .cd-slider-nav li.selected a:hover {
  background-color: transparent;
}

.cd-slider-nav a {
  display: block;
  position: relative;
  padding-top: 35px;
  font-size: 1rem;
  font-weight: 700;
  color: #a8b4be;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.cd-slider-nav a::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 8px;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media only screen and (min-width: 768px) {
  .cd-slider-nav {
    height: 82px;
  }

  .cd-slider-nav .cd-marker,
  .cd-slider-nav li {
    width: 90px;
  }

  .cd-slider-nav a {
    padding-top: 2px;
    font-size: 1.1rem;
    text-transform: uppercase;
  }

  .cd-slider-nav a::before {
    top: 18px;
  }
}

#map {
  height: 300px;
  width: 100%;
}

.gold-background {
  background-color: #330080;
}

.blue-background {
  background-color: #009bbd;
}

.pink-background {
  background-color: #F95B70;
}

.green-background {
  background-color: #009bbd;
}

.primary-title {
  color: #32CD34;
}

.about-content {
  min-height: auto !important;
}

.about-content {
  padding: 15px;
  border: 2px solid rgb(240, 240, 240);
}

.aboutRow {
  margin-top: 50px;
}

.schedule-bg {
  background-size: cover !important;
}

.separator {
  background: #32cd32;
}

white-bg {
  background-size: cover !important;
}

.ticketBtn a {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  font-size: 1.1em;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0px;
  color: #fff;
  padding: 20px 30px;
  border-radius: 2px;
  transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  background: #F95B70;
}

/************************ RESPONSIVE CHANGES FOR 2020 *************************/
@media only screen and (min-width: 1025px) {
  .navbar-nav > li {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1169px) {
  .cd-hero-slider h2.breakthrough-banner {
    font-size: 50px;
    line-height: 45px;
    margin-bottom: -6%;
  }
}

@media (max-width: 1024px) {
  .cd-full-width h2 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .navbar-header {
    float: none;
  }

  .navbar-left, .navbar-right {
    float: none !important;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }

  /*.navbar-collapse.collapse {
    display: none !important;
  }*/
  .navbar-nav {
    float: none !important;
    margin-top: 7.5px;
  }

  .navbar-nav > li {
    float: none;
  }

  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .collapse.in {
    display: block !important;
  }
}

@media only screen and (max-width: 552px) {
  .cd-hero-slider h2.breakthrough-banner {
    font-size: 35px;
    line-height: 35px;
    margin-bottom: -6%;
  }
}

@media only screen and (max-width: 375px) {
  .cd-hero-slider h2.breakthrough-banner {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: -6%;
  }
}

@media only screen and (max-width: 316px) {
  .cd-hero-slider h2.breakthrough-banner {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 32%;
  }
}

/***RESPONSIVENESS***/

.show-res {
  display: none !important;
}

.remove-outlines {
  outline: none !important;
}

.remove-shadow {
  box-shadow: none !important;
}

.row-fix {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.row-fix-pad {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.ticketNoPad {
  padding: 0;
  max-width: 80%;
}

.green i {
  position: absolute;
  right: 45px;
}

.red i {
  position: absolute;
  right: 47px;
}

.modal-home {
  margin-top: 150px;
  width: 100%;
  max-width: 820px;
}

#modalHome .modal-content {
  background: #631755 !important;
  color: #fff !important;
}

#modalHome .modal-title {
  color: #fff !important;
}

#modalHome .close {
  color: #fff !important;
  outline: none !important;
  opacity: 1;
  font-size: 26px;
}

.modal-numbers {
  font-size: 24px !important;
}

@media (min-width: 1200px) {
  .nav-space {
    height: 126px;
  }

}

@media (max-width: 1870px) and (min-width: 1366px) {
  .right-point.dayItem {
    max-width: 70%;
  }

}

@media (max-width: 1870px) {
  .box {
    height: 600px;
  }

}

@media (max-width: 1366px) {
  .box {
    height: 650px;
  }

  .col-res-three {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }

  .no-offset-three {
    margin-left: 0 !important;
  }

  .right-point.dayItem, .left-point.dayItem {
    text-align: center;
    padding: 15px;
    max-width: 100%;
    margin-left: auto;
    clip-path: none !important;
    -webkit-clip-path: none !important;
  }

  .center-image-res {
    margin: 0 auto 20px;
    display: block;
  }

  .dayBlock h4 {
    text-align: center;
  }

  .dayDesc {
    text-align: center;
  }

}

@media (max-width: 1200px) {
  .primary-title {
    font-size: 1.6em !important;
  }

  .secondary-title {
    font-size: 1.4em !important;
  }

  .nav-logo {
    max-width: 220px;
  }

  .first-banner {
    max-width: 450px !important;
    line-height: 40px !important;
  }

  .hotelSlideHead span {
    line-height: 10px !important;
    margin-top: 15px !important;
  }

  .box {
    height: 720px;
  }

  .col-res-two {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }

  .hotel-carousel .item img {
    width: 100%;
  }

  .nav-space {
    height: 87px;
  }

  .modal-numbers {
    font-size: 30px !important;
  }

}

@media (max-width: 992px) {
  .primary-title {
    font-size: 1.6em !important;
  }

  .secondary-title {
    font-size: 1.4em !important;
  }

  .col-res {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }

  .hide-res {
    display: none !important;
  }

  .show-res {
    display: block !important;
  }

  .no-offset-res {
    margin-left: 0 !important;
  }

  .remove-outlines-res {
    outline: none !important;
  }

  .remove-shadow-res {
    box-shadow: none !important;
  }

  .no-float-res {
    float: none !important;
  }

  .navbar-toggler {
    outline: none !important;
    box-shadow: none !important;

    transition: all 0.3s ease;
  }

  .navbar-toggler:focus {
    border-color: rgb(109, 106, 106);
    background: rgba(255, 255, 255, 0.0392156862745098) !important;
  }

  .navbar-toggler-icon {
    width: 1.2em;
    height: 1.5em;
  }

  .navbar {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .navbar-brand {
    padding-top: 4px;
  }

  .navbar-res {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
  }

  .hotelSlideHead span {
    line-height: 25px !important;
    margin-top: 15px !important;
    margin-bottom: 10px;
    display: block;
  }

  .right-point.dayItem, .left-point.dayItem {
    text-align: center;
    padding: 10px;
    max-width: 100%;
    margin-left: auto;
    clip-path: none !important;
    -webkit-clip-path: none !important;
  }

  .box-column {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }

  .box {
    height: 500px;
  }

  .hid-box {
    top: 70%;
  }

  .box:hover > .hid-box {
    top: 40%;
    height: 100%;
  }

  .nav-space {
    height: 0px;
  }

}

@media (max-width: 768px) {
  .box:hover > .hid-box {
    top: 25%;
    height: 100%;
  }

  .mfp-close {
    right: 0 !important;
  }

  #contactForm .checkbox label {
    margin-left: 0px;
    width: auto;
    margin-bottom: 2px;
    display: inline;
  }

}

@media (max-width: 480px) {
  .primary-title {
    font-size: 1.4em !important;
  }

  .secondary-title {
    font-size: 1.2em !important;
  }

  .primary-text {
    font-size: 16px !important;
  }

  .text-left-res {
    text-align: left !important;
  }

  .text-center-res {
    text-align: center !important;
  }

  .btn-res {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 10px auto !important;
  }

  .nav-logo {
    max-width: 200px;
  }

  .plr-res-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .box:hover > .hid-box {
    top: 22%;
    height: 100%;
  }

  .box.three:hover > .hid-box {
    top: 4%;
    height: 100%;
  }

  .container-schedule {
    padding-left: 0;
    padding-right: 0;
  }

  .bestValue {
    margin-top: 20px;
  }

  .ticketNoPad {
    max-width: 180px;
    margin-right: 10px;
  }

  .box-title {
    line-height: 10px;
  }

  .hotel-meals-image-res {
    margin-top: -10px !important;
  }

  .container-contactbox {
    padding-top: 40px;
  }

  #contactForm {
    width: 100%;
  }

  .btn-contact-message {
    display: block;
    width: 100%;
    font-size: 14px !important;
  }

  .modal-home {
    width: 96% !important;
  }

  .modal-numbers {
    font-size: 27px !important;
  }

}

/***SPECIAL OFFER***/

.pink-text {
  color: #e606be !important;
  font-size: inherit !important;
}

.pink-text-two {
  color: #e606be !important;
  font-size: inherit !important;
}

.orange-text {
  color: #ffbb00 !important;
  font-size: inherit !important;
}

.black-text {
  color: #000 !important;
}

.bold-text {
  font-weight: bold !important;
}

.special-offer-text {
  background: #ffffffd1;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 40px !important;
}

.middle-line-text-outer {
  text-decoration: line-through;
  font-size: inherit !important;
  color: #ffbb00 !important;
}

.middle-line-text-inner {
  color: #fff !important;
  font-size: inherit !important;
}

.ticketScholarship {
  max-width: 100% !important;
}

@media (min-width: 1200px) {
  .ticketContentScholar {
    font-size: 20px;
    padding: 10px 30px;
  }

  .number-scholar {
    font-size: 1.2em;
  }

}

@media (max-width: 992px) {
  .col-scholar {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }

}

@media (max-width: 480px) {
  .plr-0-res {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

}

.pb-0 {
  padding-bottom: 0 !important;
}

.purchase-tickets-title {
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}

.home-text-two {
  font-size: 24px;
}

.blue-link {
  color: #009bbd;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-home .modal-body {
  padding: 5px 15px 5px;
}


.livestream-nav-item {
  background: #F95B70;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.livestream-nav-item:hover {
  background: #F95B70;
}

.nav-link-livestream {
  color: #fff !important;
}

.schedule-hours-home {
  text-align: left !important;
  margin-top: 9px;
}

@media (max-width: 1366px) {
  .schedule-hours-home {
    text-align: center !important;
    margin-top: 5px;
  }

}

@media (min-width: 992px) {
  .mb-15-desk {
    margin-bottom: 15px !important;
  }

}

@media (max-width: 992px) {
  .livestream-nav-item {
    padding-left: 10px;
    max-width: 160px;
  }

}

@media (max-width: 480px) {
  .schedule-hours-home {
    font-size: 1.2em !important;
  }

}
