:root {
  color-scheme: light dark;
  --body-color: #FFF;
  --text-color: #111;
  --outline: #111;
}

@media (prefers-color-scheme: dark) {
  :root {
    --body-color: #111;
    --text-color: #EEE;
    --outline: rgba(255,255,255, .8);
  }
}

html,
body {
  background: var(--body-color);
  color: var(--text-color);
  text-align: left;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  font-family: system-ui, sans-serif;
  overflow-x: hidden;
}

html,
body,
footer,
header,
nav,
section,
picture,
main {
  display: block;
  box-sizing: border-box;
  border: none;
  margin: 0;
  padding: 0;
}

div,
a,
li,
button,
span {
  box-sizing: border-box;
  font-family: inherit;
}

a,
button {
  color: var(--text-color);
}

audio,
canvas,
img,
svg,
video {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

picture {
  max-width: 100%;
  display: block;
}

img {
  border: none;
  outline: none;
  height: auto;
  color: var(--text-color);
}

.hidden,
[hidden] {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0 !important;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: none;
}

a {
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

#page {
  width: 100%;
  min-height: 100dvh;
}

/* Main */

main {
  position: relative;
}

.content {
  width: 980px;
  max-width: 100%;
  padding: 0 24px;
  margin: auto;
}

@media (min-width: 768px) {
  .content {
    padding: 0 48px;
  }
}

h1,
h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
}

h1,
b,
.red {
  color: #EF3939;
}

h1+.large {
  margin-top: .5rem;
}

.center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 1.25rem 0;
}

.large {
  font-size: 1.25rem;
}

b,
strong {
  font-weight: 700;
}

p {
  font-size: 1rem;
  font-weight: 400;
  margin: .75rem 0;
}

p:last-child {
  margin-bottom: 0;
}

p:first-child {
  margin-top: 0;
}

a,
a:hover,
a:focus,
a:active {
  outline-offset: -2px;
}

button, .btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  text-align: center;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  background: #EF3939;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  text-decoration: none;
}

@media (min-width: 960px) {
  .btn {
    font-size: 1.1rem;
    padding: 12px 32px;
  }
}

.limitwidth {
  max-width: 764px;
  font-size: 1.1rem;
}

.nowrap {
  white-space: nowrap;
}

/* Hero */

.logo {
  max-width: 80%;
  margin: 32px auto;
}

.video {
  position: relative;
  border-radius: 12px;
}

.videobg {
  padding: 24px 0;
  background-color: #111;
  color: #FFF;
}

video {
  display: block;
  border-radius: 12px;
  width: 100%;
}

@media (max-width: 440px) {
  .videobg .content {
    padding: 0;
  }
  .videobg {
    padding: 8px;
  }
  video, .video {
    border-radius: 8px;
  }
}

video:focus {
  outline: 3px solid var(--outline);
}

/* Hide for mobile since they will use the default video controls */
.video-controls {
  display: none;
}

@media (min-width: 768px) {
  .logo {
    margin: 48px auto;
  }
  .video-controls {
    display: block;
    position: absolute;
    width: 104px;
    height: 104px;
    margin: -52px 0 0 -52px;
    top: 50%;
    left: 50%;
    cursor: pointer;
  }
  .play-pause-btn {
    background: transparent url("../img/play.svg") center no-repeat;
    background-size: 104px;
    color: white;
    width: 104px;
    height: 104px;
    border: none;
    padding: 0;
    border-radius: 100%;
    transition: all 0.15s ease-in-out;
  }
}

@media (min-width: 1280px) {
  .video-controls {
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
  }

  .play-pause-btn {
    background-size: 120px;
    width: 120px;
    height: 120px;
  }
}

.video:hover .play-pause-btn,
.video:focus .play-pause-btn {
  transform: scale(1.06);
}

.play-pause-btn:focus {
  outline: none;
}

.play-pause-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Increase sizes for larger screens */

@media (min-width: 1400px) and (min-height: 920px) {
  .content {
    width: 1280px;
  }
  .logo {
    width: 585px;
    margin: 64px auto;
  }
}

@media (min-width: 2000px) and (min-height: 1080px) {
  .content {
    width: 1440px;
  }
  html {
    font-size: 24px;
  }
}

/* Sections */

section {
  padding: 48px 0 0 0;
}

@media (min-width: 1024px) {
  section {
    padding-top: 64px;
  }
}

.w100 {
  width: 100%;
}

.rounded {
  border-radius: 12px;
}

.relative {
  position: relative;
}

.limited-offer {
  width: 56px;
  height: 56px;
  position: absolute;
  top: -20px;
  right: -20px;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  transform: scale(0.3) rotate(0deg);
}

.limited-offer.animate {
  animation: growAndRotate 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@media (min-width: 640px) {
  .limited-offer {
    width: 80px;
    height: 80px;
    top: -30px;
    right: -30px;
  }
}

@media (min-width: 1024px) {
  .limited-offer {
    width: 120px;
    height: 120px;
    top: -48px;
    right: -48px;
  }
}

@media (min-width: 1400px) and (min-height: 920px) {
  .limited-offer {
    width: 160px;
    height: 160px;
    top: -64px;
    right: -64px;
  }
}

@media (min-width: 2000px) and (min-height: 1080px) {
  .limited-offer {
    width: 180px;
    height: 180px;
    top: -72px;
    right: -72px;
  }
}

@keyframes growAndRotate {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(0deg);
  }
  
  50% {
    opacity: 1;
    transform: scale(1.3) rotate(8deg);
  }
  
  100% {
    transform: scale(1.16) rotate(15deg);
  }
}

/* Columns */

.flex {
  display: flex;
  flex-direction: column;
  align-items: start;
  flex-wrap: wrap;
  width: 100%;
  gap: 1rem;
}

.stretch {
  flex: 1;
}

@media (min-width: 960px) {
  .flex {
    display: flex;
    align-items: center;
    flex-direction: row;
  }
}

/* Footer */

footer {
  padding: 48px 0 20px 0;
}

footer p {
  font-size: 15px;
}

footer span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}

/* Logo animation */

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.logo {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}


@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* For screen readers */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}