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

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 100%; /* 1rem = 10px */
}

body {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  color: #3d3536;
  background-color: white;
}

h1,
.row h1 {
  font-size: 3.5rem;
  line-height: 3.4rem;
  letter-spacing: -2%;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;    
  margin-bottom:16px;
}

h2,
.row h2 {
  font-size: 2rem;
  line-height: 2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase; 
}

h3,
.row h3 {
  font-size: 2rem;
  line-height: 2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;   
  margin:0;
}

h4,
.row h4 {
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: normal;  
  text-transform: uppercase; 
}

p,
.row p {
  margin:0;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-family: "Lexend", sans-serif;
  font-weight: 400;  
  font-style:normal;
  letter-spacing: -1px;
}

li,
.row li {
  margin:0;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-family: "Lexend", sans-serif;
  font-weight: 400;  
  font-style:normal;
  letter-spacing: -1px;
  list-style: disc;
}


.btn-link:hover {
  color:#fff;
  text-decoration: none!important;
}


td,
th,
.row td,
.row th {
  color:#fff;
  margin:0;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-family: "Lexend", sans-serif;
  font-weight: 400;  
  font-style:normal;
  letter-spacing: -1px;
}

a,
.row a {
  color: #FFCF4C;
  text-decoration: none;
  text-wrap: nowrap;
}

a:hover,
.row a:hover {
  color: #DF9E0F!important;
  text-decoration: none;
}




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

Primary Style

-------------------------------- */
.cd-header {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(2, 23, 37, 0.95);
  height: 80px;
  width: 100%;
  z-index: 999;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 80px;
    background: transparent;
    box-shadow: none;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-header {
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .cd-header.is-fixed {
    /* when the user scrolls down, we hide the header right above the viewport */
    position: fixed;
    top: -80px;
    background-color: rgba(2, 23, 37, 0.96);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
  }
  .cd-header.is-visible {
    /* if the user changes the scrolling direction, we show the header */
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  .cd-header.menu-is-open {
    /* add a background color to the header when the navigation is open */
    background-color: rgba(2, 23, 37, 0.96);
  }
}

.cd-logo {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: .875em;
}
.cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cd-logo {
    left: 2.6em;
  }
}

.cd-secondary-nav {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 4em;
}
.cd-secondary-nav li {
  display: inline-block;
  margin-left: 2.2em;
}
.cd-secondary-nav a {
  display: inline-block;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .cd-secondary-nav {
    display: block;
    right: 6em;
  }
}

.cd-primary-nav-trigger {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
}
.cd-primary-nav-trigger .cd-menu-text {
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  /* hide the text on small devices */
  display: none;
}
.cd-primary-nav-trigger .cd-menu-icon {
  /* this span is the central line of the menu icon */
  display: inline-block;
  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%);
  width: 18px;
  height: 2px;
  background-color: white;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
  /* these are the upper and lower lines in the menu icon */
}
.cd-primary-nav-trigger .cd-menu-icon::before, .cd-primary-nav-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: white;
  right: 0;
  -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
  -moz-transition: -moz-transform .3s, top .3s, background-color 0s;
  transition: transform .3s, top .3s, background-color 0s;
}
.cd-primary-nav-trigger .cd-menu-icon::before {
  top: -5px;
}
.cd-primary-nav-trigger .cd-menu-icon::after {
  top: 5px;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked {
  background-color: rgba(255, 255, 255, 0);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before, .cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  background-color: white;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  top: 0;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
@media only screen and (min-width: 768px) {
  .cd-primary-nav-trigger {
    width: 50px;
    padding-left: 1em;
    background-color: transparent;
    height: 30px;
    line-height: 30px;
    right: 2.2em;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .cd-primary-nav-trigger .cd-menu-text {
    display: inline-block;
  }
  .cd-primary-nav-trigger .cd-menu-icon {
    left: auto;
    right: 1em;
    -webkit-transform: translateX(0) translateY(-50%);
    -moz-transform: translateX(0) translateY(-50%);
    -ms-transform: translateX(0) translateY(-50%);
    -o-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
  }
}

.cd-primary-nav {
  /* by default it's hidden - on top of the viewport */
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(69, 1, 20, .9) 0%, rgba(32, 0, 11, .9) 100%);
  z-index: 99;
  text-align: center;
  padding: 120px 0 0 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: auto;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.cd-primary-nav li {
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 800;
  font-family: "Barlow Condensed", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: .2em 0;
  text-transform: capitalize;
}

@media only screen and (max-width: 576px) {
.cd-primary-nav li {
  font-size: 2rem;
  line-height: 1.5rem;
}
}

.cd-primary-nav a {
  display: inline-block;
  padding: .4em 1em;
  border-radius: 0.25em;
  color: #ffffff;
  text-transform: uppercase;  
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
.no-touch .cd-primary-nav a:hover {
  background-color: #DF9E0F!important;
}
.cd-primary-nav .cd-label {
  color: #DF9E0F;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 2.4em 0 .8em;
}
.cd-primary-nav .cd-social {
  display: inline-block;
  margin: 0 .4em;
}
.cd-primary-nav .cd-social a {
  width: 44px;
  height: 44px;
  padding: 0;
  background-image: url("../img/cd-socials.svg");
  background-repeat: no-repeat;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.cd-primary-nav .cd-facebook a {
  background-position: 0 0;
}
.cd-primary-nav .cd-instagram a {
  background-position: -44px 0;
}
.cd-primary-nav .cd-dribbble a {
  background-position: -88px 0;
}
.cd-primary-nav .cd-twitter a {
  background-position: -132px 0;
}
.cd-primary-nav.is-visible {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
@media only screen and (min-width: 768px) {
  .cd-primary-nav {
    padding: 140px 0 0 0;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-primary-nav li {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .cd-primary-nav .cd-label {
    font-size: 16px;
    font-size: 1rem;
  }
}

.headbanner {
  position: fixed;
  top:80px;
  min-height:40px;
  padding-top:5px;
  width:100%;
  background-color: #9A4EFF;
  color:#1A1A1A;
  z-index: 3;
  text-align: center;
}

.headbanner h2 {
  text-transform: uppercase;
  font-weight: bold;
}

@media only screen and (max-width: 576px) {
.headbanner {
  position: relative;
}  
.headbanner h2,
.row .headbanner  h2 {
  font-size: 1.3rem;
  line-height: 1.5rem; 
}
}

/***********/

.rh-fixed-bg {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}

.rh-fixed-bg__content, .rh-fixed-bg h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 3rem;
}

.rh-fixed-bg h1, .rh-fixed-bg h2 {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}

.rh-fixed-bg.rh-fixed-bg--1 {
  background-image: url("../img/tso-background-1.png");
}

.rh-fixed-bg.rh-fixed-bg--2 {
  background-image: url("../img/rh-background-2.jpg");
}

.rh-fixed-bg.rh-fixed-bg--3 {
  background-image: url("../img/rh-background-3.jpg");
}

.rh-fixed-bg.rh-fixed-bg--4 {
  background-image: url("../img/rh-background-4.jpg");
}

@media only screen and (min-width: 768px) {
  .rh-fixed-bg h1, .rh-fixed-bg h2 {
    font-size: 3.6rem;
  }
}

@media only screen and (min-width: 1170px) {
  .rh-fixed-bg h1, .rh-fixed-bg h2 {
    font-size: 4.8rem;
    font-weight: 300;
  }
  @supports (background-attachment: fixed) {
    /* fix bug on IE11 and below */
    .rh-fixed-bg {
      background-attachment: fixed;
    }
  }
}

.rh-scrolling-bg {
  position: relative;
  min-height: 100%;
  padding: 4em 0;
  line-height: 1.6;
  z-index: 2;
}

.rh-scrolling-bg2 {
  position: relative;
  min-height: 100%;
  padding: 1em 0;
  line-height: 1.6;
  z-index: 2;
}

.rh-scrolling-bg.rh-scrolling-bg--color-1 {
  background-color: #ffffff;
  color: #20000B;
}

.rh-scrolling-bg.rh-scrolling-bg--color-2 {
  background-color: #1A1A1A;
  color: #FCCE4B;
}

.rh-scrolling-bg.rh-scrolling-bg--color-3 {
  background-color: #1A1A1A;
  color: #FFFFFF;
}

.rh-scrolling-bg2.rh-scrolling-bg2--color-4,
.rh-scrolling-bg.rh-scrolling-bg--color-4 {
  background-image: url("../img/tso-background-1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  overflow:hidden;
}

.rh-scrolling-bg__content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.rh-scrolling-bg__content2 {
  width: 100%;
  margin: 0 auto;
  overflow:hidden;
}

@media only screen and (min-width: 768px) {
  .rh-scrolling-bg {
    padding: 1em 0;
    font-size: 2rem;
    line-height: 2;
    font-weight: 300;
  }
}

.appbanner {
  display:block;
  position: fixed;
  bottom:0px;
  min-height:70px;
  width:100%;
  background-color: #1A1A1A;
  color:#FCCE4B;
  z-index: 99;
  text-align: center;
  border-top: 2px solid #FCCE4B;
}

.appbtn {
  height:50px;
  margin:0 10px;
}

.ctabtn {
  height:50px;
  margin-top:20px;
}

@media only screen and (max-width: 576px) {
.appbtn {
  height:40px;
}  
.ctabtn {
  height:40px;
}
.off {
  display:none!important;
}
}

.breaker {
  position: relative;
  top:0;
  height:2px;
  width:100%;
  z-index: 1;
}

/*ADJUSTMENTS*/

.space {
  margin:800px 0;
}

.rounds {
  border-radius: 40px;
}

.bords {
  border: 10px solid #FFCF4C;  
}

.card {
  background-color:#1A1A1A!important;
}

.vid-bkgd1 {
  background-image: url("../img/vid-bkgd1.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media only screen and (max-width: 576px) {
.space {
  margin:400px 0;
}
}

/*HERO VIDEO*/

.hero-video {
  position: relative;
  margin-top:100px;
  background-color: #ffffff;
  height: 90vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.hero-video .container {
  position: relative;
  z-index: 1;
}

.hero-video .herocontainer {
  position: absolute;
  z-index: 1;
  bottom:0;
  margin: 0 auto;
  padding:0 10%;
  width:100%;
}

.hero-video .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #450114;
  background: linear-gradient(0deg, rgba(69, 1, 20, 1) 0%, rgba(69, 1, 20, 0) 100%);
  z-index: 1;
}


@media only screen and (max-width: 576px) {
.hero-video {
  position: relative;
  margin-top:120px;
  background-color: #ffffff;
  height: 80vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}
.hero-video video {
  position: absolute;
  top: 220px;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 250%;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.hero-video .herocontainer {
  position: absolute;
  z-index: 1;
  bottom:0;
  margin: 0 auto;
  padding:0 5%;
  width:100%;
}
}


.carousel-indicators li {
  list-style: none!important;
}

.carousel {
  margin-top: 0px;
  min-width:100%;
  height:auto;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  margin-top:200px;
}

.carousel-inner {
  min-width:100%;
  height:auto;
}

.carousel:before {
content: "";
position: absolute;
right: 0;
bottom: 0;
left: 0;
width:100%;
height:30%;
background: #450114;
background: linear-gradient(0deg, rgba(69, 1, 20, 1) 0%, rgba(69, 1, 20, 0) 100%);
z-index: 9;
}

.carousel-inner img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 576px) {
.carousel {
  margin-top: 0;
}
.carousel-inner img {
  width: 150%;
  height: auto;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  margin-top:0;
}
}

/*CAROUSEL*/

/* Variables */
/* Cards Icon */
.icon-cards {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 654px;
  transform: translate(-50%, -50%);
  perspective: 2000px;
  /* This rotates with the animation */
  /* Individual cards */
}
.icon-cards__content {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: translateZ(-145px) rotateY(0);
  -webkit-animation: carousel 10s infinite cubic-bezier(1, 0.015, 0.295, 1.225) forwards;
          animation: carousel 10s infinite cubic-bezier(1, 0.015, 0.295, 1.225) forwards;
}
.icon-cards__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 654px;
  opacity: .95;
  border-radius: 20px;
}
.icon-cards__item img {
  max-width:300px;
}

.icon-cards__item:nth-child(1) {
  transform: rotateY(72deg) translateZ(290px);
}
.icon-cards__item:nth-child(2) {
  transform: rotateY(144deg) translateZ(290px);
}
.icon-cards__item:nth-child(3) {
  transform: rotateY(216deg) translateZ(290px);
}
.icon-cards__item:nth-child(4) {
  transform: rotateY(288deg) translateZ(290px);
}
.icon-cards__item:nth-child(5) {
  transform: rotateY(360deg) translateZ(290px);
}

@media only screen and (max-width: 576px) {
.icon-cards {
  width: 200px;
  height: 357px;
}
.icon-cards__item {
  width: 200px;
  height: 357px;
  max-width:200px;
}
.icon-cards__item img {
  max-width:200px;
}
}

/* Animation */
@-webkit-keyframes carousel {
  0%, 15% {
    transform: translateZ(-145px) rotateY(0);
  }
  25%, 40% {
    transform: translateZ(-145px) rotateY(-72deg);
  }
  50%, 65% {
    transform: translateZ(-145px) rotateY(-144deg);
  }
  75%, 90% {
    transform: translateZ(-145px) rotateY(-216deg);
  }
}
@keyframes carousel {
  0%, 15% {
    transform: translateZ(-145px) rotateY(0);
  }
  25%, 40% {
    transform: translateZ(-145px) rotateY(-72deg);
  }
  50%, 65% {
    transform: translateZ(-145px) rotateY(-144deg);
  }
  75%, 90% {
    transform: translateZ(-145px) rotateY(-216deg);
  }
}



/*GRADIENTS*/

.dark_grad_ltr {
background: #450114;
background: linear-gradient(90deg, rgba(32, 0, 11, 1) 0%, rgba(69, 1, 20, 1) 100%);
}

.dark_grad_btt {
background: #450114;
background: linear-gradient(180deg, rgba(69, 1, 20, 1) 0%, rgba(32, 0, 11, 1) 100%);
}

.red_grad_btt {
background: #450114;
background: linear-gradient(0deg, rgba(166, 0, 30, 1) 0%, rgba(69, 1, 20, 1) 100%);
}

.gold_grad {
background: #DF9E0F;
background: linear-gradient(90deg, rgba(223, 158, 15, 1) 0%, rgba(253, 207, 76, 1) 46%, rgba(137, 74, 19, 1) 100%);
}


#MuteButton::before {
    content: url("../img/mute.svg");
}

#MuteButton.muted::before {
    content: url("../img/unmute.svg");
}

#MuteButton {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  padding:10px;
background: #DF9E0F;
  border: none;
  color: #fff;
  z-index: 5;
  font-size: 2rem;
  border-radius: 2rem;
  width: 3rem;
  height: 3rem;
  line-height: 1.5rem;
  text-align: center;
}

@media only screen and (max-width: 576px) {
#MuteButton {
  bottom: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
}
}

/* Utility classes for inline styles */
.logo-header {
  height: 60px;
}

.logo-secondary {
  height: 40px;
}

.logo-footer {
  height: 100px;
}

.social-icon {
  height: 20px;
  margin: 0 10px;
}

.hero-video-section {
  position: relative;
  min-height: 55vh;
}

.hero-video-container.embed-responsive {
  min-height: 55vh;
}

.hero-countdown-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.hero-countdown-overlay > * {
  pointer-events: auto;
  width: 100%;
}

.hero-video-container {
  margin-top: 100px;
  background-color: #1a1a1a;
}

/* Mobile: video (background) 70% width, 120px from top; banner height 80vh */
@media (max-width: 575px) {
  .hero-video-section {
    overflow: hidden;
    min-height: 90vh;
  }

  .hero-video-container.embed-responsive {
    margin-top: 0;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 60vh;
    height: 60vh;
  }

  .hero-video-container.embed-responsive::before {
    padding-bottom: 0;
  }

  .hero-video-container video {
    top: 120px!important;
    left: 50%;
    right: auto;
    width: 100%;
    height: calc(90% - 120px);
    object-fit: cover;
    object-position: top center;
  }

  .hero-countdown-overlay {
    top: 0;
  }
}

.vimeo-wrapper {
  padding: 170% 0 0 0;
  position: relative;
}

.vimeo-iframe {
  border: 10px solid #FFCF4C;
  border-radius: 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card-header-red {
  background-color: #A6001E!important;
}

.card-header-title {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 0;
}

.footer-padding {
  padding-bottom: 200px;
}

.footer-link {
  font-size:1.2rem;
  margin: 0 20px;
}

.carousel-img {
  max-width: 100%;
}

.content-top-margin {
  margin-top: 120px;
}

.quiz-page {
  overflow: hidden;
  overscroll-behavior: none;
}
