
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Allow percentage-based heights in the application*/
html,
body {
  min-height: 100%;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Default link styles */
a {
  text-decoration-skip-ink: auto;
  color: inherit;
}

/* Make images easier to work with */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul:where([role="list"]),
ol:where([role="list"]) {
  list-style-type: none;
  padding: 0;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01s !important;
    scroll-behavior: auto !important;
  }
}
[hidden] {
  display: none !important;
}


@font-face {
  font-family: "Inter";
  src: url(/fonts/Inter/Inter-VariableFont.ttf);
}

body {
  font-family: "Inter", sans-serif;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  scroll-margin-top: 100px;
}

body {
  background-color: #0d1b2a;
  letter-spacing: normal;
}

html,
body {
  position: relative;
  overflow-x: hidden;
}

/* ------------------------ Typography ------------------------ */
h2 {
  font-size: 62px;
  font-weight: 600;
  font-style: Semi Bold;
  text-align: center;
  letter-spacing: 1.2px;
  line-height: 1;
}
h2 span {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(50%, #ffffff), to(#adadad));
  background: linear-gradient(#ffffff 0%, #ffffff 50%, #adadad 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

h3 {
  font-size: 34px;
  color: white;
}

h4 {
  font-size: 16px;
  font-weight: 400;
  font-style: Regular;
  line-height: 21px;
}

p {
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  opacity: 0.5;
  font-weight: 400;
}

/* ------------------------ Layout ------------------------ */
section {
  max-width: 1162px;
  margin: 50px auto;
  padding: 20px;
}

/* ------------------------ Title ------------------------ */
.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.title__tagline {
  opacity: 0;
  font-weight: 700;
  color: #e63946;
  font-size: 12.76px;
  line-height: 100%;
  letter-spacing: 0;
}
.title__heading {
  font-weight: 700;
  font-size: 30px;
  color: white;
  line-height: 1.4;
  overflow: hidden;
  letter-spacing: 0.5px;
}
.title__heading span {
  display: block;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
}

/* ------------------------ Buttons ------------------------ */
.btn {
  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;
  text-align: center;
  height: 40px;
  border-radius: 100px;
  padding-top: 3px;
  padding-right: 52px;
  padding-bottom: 3px;
  padding-left: 52px;
  text-decoration: none;
  font-size: 15px;
  line-height: 26px;
}
.btn-primary {
  color: white;
  background: -webkit-gradient(linear, left top, left bottom, from(#e63946), to(#c22e39));
  background: linear-gradient(180deg, #e63946 0%, #c22e39 100%);
  -webkit-box-shadow: 0px 4px 19px 0px rgba(230, 57, 70, 0.2901960784);
          box-shadow: 0px 4px 19px 0px rgba(230, 57, 70, 0.2901960784);
}
.btn-secondary {
  color: white;
  background: transparent;
  border: 1px solid #ffffff;
}

/* ------------------------ Base Media Queries ------------------------ */
@media only screen and (max-width: 1200px) {
  h2 {
    font-size: 50px;
  }
  section {
    margin: 25px auto;
  }
}
@media screen and (max-width: 768px) {
  section {
    margin: 40px auto;
    padding: 0 20px;
  }
  section.no-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  section.no-padding .title {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media only screen and (max-width: 600px) {
  h2 {
    font-size: 32px;
  }
  p {
    font-size: 14px;
    line-height: 21px;
  }
  .title__tagline {
    font-size: 10.76px;
    line-height: 100%;
    letter-spacing: 0;
  }
  .title__heading {
    font-weight: 700;
    font-size: 26px;
  }
}
.header {
  position: fixed;
  top: 0px;
  background-color: #0d1b2a;
  z-index: 100;
  width: 100%;
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1112px;
  margin: 0 auto;
  padding: 33px 20px;
  -webkit-transition: 0.2s padding;
  transition: 0.2s padding;
}
.header__content-sticky {
  padding: 20px 20px;
}
.header__logo {
  font-size: 0;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-weight: 600;
  font-style: Bold;
  color: white;
  text-transform: uppercase;
  font-size: 11.76px;
  line-height: 32.97px;
  letter-spacing: 0;
  gap: 7px;
  position: relative;
}
.header__nav-link.rec::before {
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #a80909;
}
.header__nav-link.active:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  background: white;
  bottom: 7px;
}
.header__menu-open, .header__menu-close {
  cursor: pointer;
  display: none;
}
.header__menu-close {
  position: absolute;
  top: 22px;
  right: 16px;
}
.header .btn {
  height: 33px;
  font-size: 11.76px;
  line-height: 32.97px;
  text-transform: uppercase;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .header__content {
    padding: 20px 20px;
  }
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #0d1b2a;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 100;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    pointer-events: none;
    gap: 16px;
  }
  .header__nav-active {
    pointer-events: all;
    opacity: 1;
  }
  .header__nav-link {
    line-height: 1.6;
  }
  .header__nav-link.active:after {
    display: none;
  }
  .header__menu-open, .header__menu-close {
    display: block;
  }
}
/* ------------------------------ Hero ----------------------------- */
.hero {
  background: radial-gradient(64.84% 64.84% at 50% 88.77%, rgba(230, 57, 70, 0.4) 0%, rgba(13, 27, 42, 0.4) 100%);
  margin-bottom: 150px;
  padding-top: 100px;
}
.hero__content {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1140px;
  padding: 20px;
  margin: 0 auto;
}
.hero__text {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  text-align: center;
  max-width: 771px;
  margin: 20px auto;
  margin-bottom: 60px;
}
.hero .video__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .video__wrapper {
  margin-bottom: -100px;
  border: 1px solid rgba(230, 57, 70, 0.3019607843);
  -webkit-box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1490196078);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 100%;
  font-size: 0;
  background-color: black;
}
.hero .video__wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero .video__wrapper-top {
  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;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.5490196078);
}
.hero .video__wrapper-start {
  padding: 25px;
  border-radius: 50%;
  background: #e63946;
  font-size: 0;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  -webkit-transition: 0.3s background;
  transition: 0.3s background;
  cursor: pointer;
}
.hero .video__wrapper-start:hover {
  background: #c21a28;
}

/* ------------------------------ Cards ----------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  row-gap: 25px;
  margin: 24px 0;
}

.card {
  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-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 21px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background-color: #172539;
  color: white;
  gap: 15px;
  border-radius: 10px;
  min-height: 195px;
}
.card__icon {
  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;
  border-radius: 5px;
  overflow: hidden;
  background: -webkit-gradient(linear, left bottom, left top, from(#253854), to(#253854)), -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.046)), to(rgba(255, 255, 255, 0.08)));
  background: linear-gradient(0deg, #253854, #253854), linear-gradient(180deg, rgba(255, 255, 255, 0.046) 0%, rgba(255, 255, 255, 0.08) 100%);
  width: 55px;
  height: 55px;
  border-radius: 5px;
  border-width: 0.5px;
}
.card__streamer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.card__streamer-image {
  width: 55px;
  height: 55px;
  border-radius: 5px;
  border-width: 0.5px;
  padding: 1px;
  background: linear-gradient(148.65deg, #6688c1 -4.13%, #30405b 81.07%);
}
.card__streamer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.card__streamer-name {
  font-weight: 700;
  color: white;
  font-size: 17px;
  letter-spacing: 0;
}
.card__streamer-username {
  color: #e63946;
  opacity: 1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}
.card__title {
  font-weight: 700;
  color: white;
  font-size: 17px;
  margin-bottom: -5px;
}
.card__title-highlight {
  color: #e63946;
}
.card__description {
  font-weight: 400;
  font-size: 13px;
  line-height: 21px;
}

/* ------------------------------ Table ----------------------------- */
.table__wrapper {
  width: 100%;
  opacity: 0;
}
.table__wrapper.animate {
  opacity: 0;
  -webkit-animation: 1s fadeIn forwards;
          animation: 1s fadeIn forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.table {
  display: grid;
  grid-template-columns: 5fr 3.5fr 3.5fr;
  background-color: #0d1b2a;
  color: white;
  width: 646px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  margin: 20px auto;
  margin-bottom: 100px;
}
.table__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.table__col-highlight {
  background: rgba(230, 57, 70, 0.1019607843);
}
.table__col:first-child .table__row,
.table__col:first-child .table__row-top1 {
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.table__col:first-child .table__row__text {
  font-size: 15px;
  line-height: 21.74px;
  font-weight: 500;
  font-style: Medium;
  letter-spacing: 0;
}
.table__row {
  height: 43px;
  padding: 0 15px
}
.table__row__text, .table__row__heading {
  opacity: 1;
}
.table__row__text-negative {
  color: #e63946;
}
.table__row__text-positive {
  color: #00ca27;
}
.table__row__text-highlight {
  background-color: #e63946;
  border-radius: 7px;
  /*   padding: 5px 7px; */
  text-transform: uppercase;
  font-weight: 600;
  height: 22px;
  width: 86px;
  letter-spacing: 0;
  font-size: 10px !important;
  line-height: 21.74px !important;
}
.table__row__heading {
  color: #e63946;
}
.table__row-center {
  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;
  text-align: center;
}
.table__row-center .table__row__text {
  font-size: 11px;
  line-height: normal;
  letter-spacing: 0;
}
.table__row-top1 {
  background: #0d1b2a;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  border-top-left-radius: 10px;
  font-size: 12.76px;
  color: #e63946;
  height: 60px;
  padding: 15px;
  font-weight: 500;
}
.table__row-top2 {
  background: #e63946;
  color: white !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  font-size: 19.62px;
  line-height: 21.74px;
  height: 48px;
  padding: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}
.table__row-top2 .table__row__heading {
  color: white;
}
.table__row-top3 {
  background: #0d1b2a;
  color: white !important;
  border-top-right-radius: 10px;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  font-size: 19.62px;
  line-height: 21.74px;
  height: 48px;
  padding: 15px;
  font-weight: 500;
  margin-bottom: 12px;
}
.table__row-top3 .table__row__heading {
  color: white;
}
.table__row-bottom {
  background: #e63946;
  color: white;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  font-size: 11px;
  height: 34px;
  margin-top: 20px;
  text-decoration: none;
}

.tab__wrapper {
  padding: 0 20px;
}

.tab {
  display: table;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.3019607843);
  border-radius: 50px;
  margin: 0 auto;
  margin-top: 50px;
  max-width: 384px;
  width: 100%;
}
.tab__link {
  padding: 7px 20px;
  background: transparent;
  border: none;
  width: 50%;
  color: white;
  font-family: inherit;
  cursor: pointer;
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
  font-size: 13px;
  letter-spacing: 0;
}
.tab__link.active {
  background: #e63946;
  border-radius: 50px;
}

/* ------------------------------ Packages ----------------------------- */
.packages {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin: 20px auto;
  max-width: 1076px;
}

.package {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
}
.package-content {
  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-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 20px;
  padding: 25px 30px;
  width: 100%;
  border-radius: 10px;
  background: rgba(42, 58, 88, 0.5019607843);
}
.package-border {
  padding: 3px;
  background: -webkit-gradient(linear, left top, left bottom, from(#802027), color-stop(55%, #e63946), to(#802027));
  background: linear-gradient(180deg, #802027 0%, #e63946 55%, #802027 100%);
}
.package-basic {
  background: #2a3a58;
}
.package-basic .package-name {
  background-color: rgba(0, 0, 0, 0.2);
}
.package-pro {
  background: -webkit-gradient(linear, left top, left bottom, from(#2a3a58), color-stop(50%, #405377), to(#2a3a58));
  background: linear-gradient(180deg, #2a3a58 0%, #405377 50%, #2a3a58 100%);
}
.package-pro .package-name {
  background-color: #e63946;
  color: white;
}
.package-name {
  background-color: #24324c;
  padding: 8px 18px;
  border-radius: 6px;
  opacity: 1;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  font-weight: 600;
  font-style: Semi Bold;
}
.package__price-cost {
  font-size: 43.5px;
  color: white;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 1px;
}
.package__price-month {
  font-size: 13px;
  color: white;
  font-weight: 400;
  opacity: 0.5;
  padding-left: 5px;
  letter-spacing: 0;
}
.package__price-duration {
  opacity: 1;
  font-size: 13px;
  height: 21px;
  line-height: 21px;
}
.package__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 20px 0;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.package__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  list-style-type: none;
  gap: 10px;
}
.package__feature-text {
  line-height: 21px;
  font-size: 13px;
  opacity: 1;
  position: relative;
  font-weight: 600;
}
.package__feature-highlight {
  color: #e63946;
}
.package__feature-underline::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  background: white;
  bottom: 0;
}
.package__bottom {
  margin-top: auto;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.package__bottom-btn {
  display: block;
  background-color: #d9d9d9;
  border-radius: 100px;
  width: 100%;
  text-decoration: none;
  color: black;
  text-align: center;
  padding: 11.5px 15px;
  font-weight: bold;
  font-size: 16px;
  line-height: 21px;
}
.package__note {
  display: none;
  text-align: center;
}

/* ------------------------ Main Media Queries ------------------------ */
@media only screen and (max-width: 1200px) {
  .hero .video__wrapper {
    width: 95%;
    max-width: 768px;
  }
}
@media only screen and (max-width: 992px) {
  .cards {
    gap: 25px;
  }
  .package-content {
    padding: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .cards {
    display: flex;
    flex-direction: column;
  }
  .card__wrapper {
    position: static;
  }
  .hero {
    margin-bottom: 110px;
  }
  .hero__text {
    margin-top: 25px;
    margin-bottom: 40px;
  }
  .hero .video__wrapper-start {
    padding: 20px;
  }
  .hero .video__wrapper-icon {
    width: 25px;
    height: 25px;
  }
  .packages {
    overflow-x: scroll;
    padding: 0 30px;
  }
  .package {
    width: calc(92vw - 30px);
    border-radius: 30px;
  }
  .package-content {
    border-radius: 30px;
    padding: 25px 30px;
  }
  .tab {
    margin-top: 20px;
    max-width: 270px;
  }
  .hide-padding {
    padding: 0;
  }
  .hide-padding .hero__text {
    padding-right: 20px;
    padding-left: 20px;
  }
  .sticky__container {
    position: sticky;
    top: 50px;
    width: 100%;
    overflow: hidden;
    overflow-x: scroll;
  }
  .card__wrapper {
    height: 100%;
    will-change: transform;
    -webkit-transition: -webkit-transform 0.1s ease-out;
    transition: -webkit-transform 0.1s ease-out;
    transition: transform 0.1s ease-out;
    transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
  }
  .card {
    width: 95vw;
    width: calc(100vw - 40px);
    left: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    padding: 15px;
    gap: 10px;
  }
  .table__wrapper {
    overflow-x: scroll;
    padding: 0 20px;
  }
  .sticky__container,
  .table__wrapper,
  .packages {
    scrollbar-color: #e63946 transparent;
    scrollbar-width: thin;
  }
  .package__note {
    display: block;
    text-align: center;
    font-weight: 400;
    width: 90%;
    margin: 0 auto;
    font-style: Regular;
    font-size: 13px;
    line-height: normal;
  }
}
@media only screen and (max-width: 380px) {
  .package {
    width: calc(90vw - 30px);
  }
  .package-content {
    gap: 10px;
  }
}
@media (hover: none) {
  .sticky__container,
  .table__wrapper,
  .packages {
    scrollbar-width: none;
  }
}
/* ------------------------------ Footer ----------------------------- */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
}
.footer__content {
  display: grid;
  grid-template-columns: 8fr 3fr 4fr;
  gap: 20px;
  max-width: 1116px;
  margin: 0 auto;
  padding: 20px;
}
.footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__col-main {
  width: 100%;
}
.footer__col-logo {
  font-weight: bold;
  font-style: Regular;
  font-size: 29.76px;
  leading-trim: NONE;
  line-height: 32.97px;
  letter-spacing: 0%;
  color: white;
  margin-bottom: 10px;
}
.footer__col-link {
  text-decoration: none;
  color: white;
  opacity: 0.5;
  font-size: 12px;
  line-height: 32.97px;
  font-weight: 400;
}
.footer__col-title {
  color: white;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 32.97px;
}
.footer__col-text {
  max-width: 279px;
  font-size: 10px;
  line-height: 16px;
  font-weight: 400;
}

/* ------------------------ Footer Media Queries ------------------------ */
@media only screen and (max-width: 992px) {
  .footer {
    padding: 0;
    border: none;
  }
  .footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .footer__col:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
/* ------------------------ Animations ------------------------ */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInSlide {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes fadeInSlide {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes reveal {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes reveal {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
/* ------------------------ Animated Elements ------------------------ */
/* --- Header Animation --- */
.header {
  opacity: 0;
  -webkit-animation: 0.8s fadeIn linear forwards;
          animation: 0.8s fadeIn linear forwards;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

/* --- Hero Animation --- */
.hero {
  opacity: 0;
  -webkit-animation: 0.5s fadeIn linear forwards;
          animation: 0.5s fadeIn linear forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.hero__content {
  opacity: 0;
  -webkit-animation: 1s fadeIn linear forwards;
          animation: 1s fadeIn linear forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.hero__content--inanimate {
  opacity: 1;
  -webkit-animation: none;
          animation: none;
}
.hero video,
.hero .btn {
  opacity: 0;
  -webkit-animation: 0.8s fadeIn linear forwards;
          animation: 0.8s fadeIn linear forwards;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

/* --- Text Animation --- */
.reveal__text {
  overflow: hidden;
}
.reveal__text.animate span,
.reveal__text.animate h3,
.reveal__text.animate p {
  display: block;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  -webkit-animation: reveal 2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
          animation: reveal 2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

/* --- Title Animation --- */
.title.animate .title__tagline {
  -webkit-animation: 2s fadeIn forwards;
          animation: 2s fadeIn forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.title__heading.animate span {
  -webkit-animation: reveal 1.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
          animation: reveal 1.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

/* --- Package and Card Animation --- */
.packages,
.sticky__container {
  opacity: 0;
}
.packages.animate,
.sticky__container.animate {
  -webkit-animation: 1s fadeInSlide forwards;
          animation: 1s fadeInSlide forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

/* --- Cards Staggered Animation --- */
.cards {
  opacity: 0;
}
.cards.animate {
  opacity: 1;
}
.cards.animate .card {
  opacity: 0;
  -webkit-animation: 0.8s fadeInSlide forwards;
          animation: 0.8s fadeInSlide forwards;
}
.cards.animate .card:nth-child(1) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.cards.animate .card:nth-child(2) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.cards.animate .card:nth-child(3) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.cards.animate .card:nth-child(4) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.cards.animate .card:nth-child(5) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.cards.animate .card:nth-child(6) {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

/* --- Generic Animation --- */

.animate-1 span, .animate-1 p {
  animation-delay: 0.6s !important;
}

.animate-2 span, .animate-2 p {
  animation-delay: 0.8s !important;
}

.animate-3 span, .animate-3 p {
  animation-delay: 1s !important;
} 

.btn.animate-3 {
  animation-delay: 2s !important;
}

.tab__wrapper {
  opacity: 0;
}
.tab__wrapper.animate {
  -webkit-animation: 1s fadeIn forwards;
          animation: 1s fadeIn forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}/*# sourceMappingURL=styles.css.map */
.footer__i18n {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 40px;
}
.footer__i18nLink {
  text-decoration: none;
  color: white;
  opacity: 0.5;
  font-size: 12px;
  line-height: 32.97px;
  font-weight: 400;
}
.footer__i18nLink.is-active {
  opacity: 1;
}

.textContent {
  color: white;

}

.textContent p,
.textContent h3,
.textContent h4,
.textContent h2,
.textContent h1,
.textContent ul,
.textContent ol {
  margin-bottom: 16px;
  opacity: 1;
  text-align: left;
}

@media (max-width: 769px) {
  .textContent {
    padding: 0 32px;
  }
}

.noHero {
  padding-top: 80px;
}
.hero__buttons {
  display: flex;
  gap: 10px;
}
