:root {
  --primary: #C4182C;
  --dark: #222;
  --font1: "Raleway", sans-serif;
  --font2: "Roboto Condensed", sans-serif;
}

.hide {
  display: none !important;
}

.flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.overflow {
  overflow: hidden;
}

p {
  line-height: 1.5em;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary);
}

a {
  color: #fff;
  text-decoration: none;
}

.container-title {
  color: var(--primary);
  margin-bottom: 30px;
}

.container-title.center::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.button, .cta-btn {
  font-family: inherit;
  border: 1px solid;
  font-size: inherit;
  font-weight: 400;
  background-color: transparent;
  color: #fff;
  padding: 15px 25px;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.2s all ease-out;
  -webkit-transition: 0.2s all  ease-out;
  transition: 0.2s all  ease-out;
}

.button:hover, .cta-btn:hover, .button:focus, .cta-btn:focus {
  background-color: #fff;
  color: #222;
  border-color: #fff;
}

.button.none-btn, .none-btn.cta-btn {
  border: none;
  padding: 0;
}

.button.none-btn:hover, .none-btn.cta-btn:hover, .button.none-btn:focus, .none-btn.cta-btn:focus {
  background-color: transparent;
  color: #fff;
}

.cta-btn {
  color: #fff;
  border: none;
  text-decoration: none;
  -webkit-transition: 0.2s all ease-out;
  -webkit-transition: 0.2s all  ease-out;
  transition: 0.2s all  ease-out;
}

.cta-btn:hover, .cta-btn:active, .cta-btn:focus {
  color: #fff;
}

.divider {
  display: block;
  height: 3px;
  width: 200px;
  margin: 0 auto;
}

a.link {
  text-decoration: underline;
  font-style: italic;
}

.back-to-top {
  background: none;
  display: none;
  margin: 0;
  position: fixed;
  bottom: 250px;
  right: 23px;
  width: 35px;
  height: 35px;
  z-index: 100;
  text-decoration: none;
  color: #fff;
  opacity: 0.5;
  background-color: rgba(9, 9, 9, 0.6);
  border-radius: 60px;
  -webkit-transition: 0.2s all ease-out;
  -webkit-transition: 0.2s all  ease-out;
  transition: 0.2s all  ease-out;
}

.back-to-top i {
  font-size: 38px;
  position: relative;
  left: -1.5px;
  top: -1.5px;
}

.back-to-top:hover {
  opacity: 1;
}

.cd-container {
  padding: 0 20px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: 100%;
}

.cd-container ul {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.cd-container ul li {
  text-align: center;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  font-size: 1em;
  background: rgba(14, 20, 34, 0.6);
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 5px;
}

.cd-container ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.5em;
  font-weight: 500;
  color: #fff;
  background-color: rgba(14, 19, 32, 0.4);
  min-width: 120px;
  padding: 10px 20px;
  margin: 0;
  margin-bottom: 5px;
}

@media (max-width: 650px) {
  .cd-container ul li span {
    min-width: 90px;
    font-size: 3em;
  }
}

@media (max-width: 570px) {
  .cd-container {
    padding: 0;
  }
  .cd-container ul {
    max-width: 330px;
  }
  .cd-container ul li {
    font-size: 13px;
  }
  .cd-container ul li span {
    padding: 8px;
    min-width: 70px;
    font-size: 2.8em;
  }
}

#header {
  position: relative;
  height: 100%;
  max-height: 90vh;
  width: 100%;
  border-top: 2px solid rgba(255, 255, 255, 0.082);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#header video {
  width: 100%;
}

#header .header-content {
  height: 100%;
  width: 100%;
  text-align: center;
  color: #fff;
}

#header .header-content .text-wrap {
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

#header .header-content .text-wrap .text {
  color: #fff;
  font-family: var(--font1);
  text-align: center;
  padding: 30px 20px;
  width: 100%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

#header .header-content .text-wrap .text h1 {
  font-weight: 800;
  color: #fff;
  font-size: 2.5em;
}

#header .header-content .text-wrap .text p {
  font-size: 20px;
  margin-bottom: 40px;
  text-shadow: 1px 1px 10px #000;
}

#header .header-content .text-wrap .text button {
  margin: 0 10px;
}

#header .header-content #preview-item {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 950px) {
  #header .header-content .image {
    margin: 30px;
  }
  #header .header-content .image img {
    max-width: 500px;
  }
}

@media (max-width: 880px) {
  #header {
    min-height: auto;
  }
  #header .header-content .text h1 {
    margin: 0 0 20px 0;
    font-size: 2em;
  }
}

#header.item-header {
  background: #121418;
}

#faq {
  padding: 30px;
}

#faq h2 {
  text-align: center;
}

#faq .faq-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#faq .faq-info ul {
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

#faq .faq-info ul li {
  margin: 0.5em 0;
}

#faq .faq-info ul li a.toggle {
  display: block;
  border: 1px solid #808080;
  color: #cecece;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 0.3em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#faq .faq-info ul li a.toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

#faq .faq-info ul li a.toggle.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  font-weight: 500;
}

#faq .faq-info ul li .inner {
  padding: 1em;
  overflow: hidden;
  display: none;
  line-height: 1.5em;
  border: 1px solid rgba(121, 89, 84, 0.32);
  border-bottom-right-radius: 0.3em;
  border-bottom-left-radius: 0.3em;
  border-top: none;
}

@media (max-width: 950px) {
  #faq .faq-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #faq .faq-info ul {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  #faq .faq-info ul {
    width: 90%;
  }
}

#footer {
  border-top: 1px solid #808080;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer .link {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  text-decoration: none;
}

#footer .link:hover {
  color: var(--primary);
}

#footer h2 {
  font-family: var(--font1);
  margin-top: 0;
}

#footer .social-icons a {
  cursor: pointer;
}

#footer .social-icons a i {
  font-size: 20px;
  color: #fff;
  margin: 5px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

#footer .social-icons a i:hover {
  opacity: 0.7;
  color: var(--primary);
}

#footer #ip {
  font-family: var(--font1);
  text-transform: uppercase;
  opacity: 0.4;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 950px) {
  #footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #footer .f-left,
  #footer .f-right-container {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 10px 0;
  }
  #footer .f-right-container .f-right #ip {
    margin: 10px 0;
  }
}

.asset {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  background-image
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .asset .responsive-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
  }
  .asset .responsive-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.asset .inplayer-paywall {
  text-align: center;
}

html {
  padding: 0;
  margin: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

p {
  font-family: var(--font2);
}

body {
  background-color: var(--dark);
  color: #fff;
  margin: 0;
  padding: 0;
  font-family: var(--font1);
  -ms-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

body #nav-wrapper {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: var(--font1);
  color: #cecece;
  background-color: #000;
  font-size: 1em;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 60px;
}

body #nav-wrapper .nav-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 5px;
}

body #nav-wrapper .nav-container ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

body #nav-wrapper .nav-container ul li {
  display: inline;
  text-align: center;
  border-bottom: 2px solid transparent;
  margin: 0 15px;
  -webkit-transition: 0.2s all ease-out;
  -webkit-transition: 0.2s all  ease-out;
  transition: 0.2s all  ease-out;
}

body #nav-wrapper .nav-container ul li:hover, body #nav-wrapper .nav-container ul li:focus {
  border-bottom: 2px solid var(--primary);
}

body #nav-wrapper .nav-container ul li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.2s all ease-out;
  -webkit-transition: 0.2s all  ease-out;
  transition: 0.2s all  ease-out;
}

body #nav-wrapper .nav-container ul li a:hover {
  opacity: 0.8;
}

body #nav-wrapper .nav-container .nav-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  width: 100px;
}

body #nav-wrapper .nav-container .nav-logo .logo {
  width: 120px;
}

@media (min-width: 790px) {
  body #nav-wrapper .hamburger {
    display: none;
  }
}

@media (min-width: 790px) {
  body #menu.animated {
    -webkit-animation: none;
    animation: none;
  }
}

@media (max-width: 789px) {
  body #nav-wrapper {
    padding: 0;
  }
  body #nav-wrapper .nav-container {
    position: relative;
    padding: 20px;
  }
  body #nav-wrapper .nav-container ul {
    padding: 0 !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 40px;
    position: fixed;
    background-color: var(--dark);
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
  }
  body #nav-wrapper .nav-container ul li {
    margin: 20px 0;
  }
  body #nav-wrapper .nav-container ul .login-button {
    margin: 20px 0;
  }
  body #nav-wrapper .nav-container ul.slideInDown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/*# sourceMappingURL=style.min.css.map */