::selection {
  background: #222222 !important;
}

/*.expand-btn {
  pointer-events: none;
  opacity: 0;
}*/

/*:root.light body:not(.menu-force-opacity):not(.navbar-hover) .style-dark-override:not(.is_stuck:not(.menu-desktop-transparent)):not(.is_mobile_open).menu-transparent .menu-horizontal-inner > .nav > .menu-smart > li > a:not(.un-submenu *) {
  color: #121212 !important;
}*/

:root {
  color-scheme: light dark;

  --invalid: #732323;
  --blue: #2639e6f2;
  --orange: #b32400;
  --darkgreen: #003608;

  --bg: light-dark(#ffffff, #000000);
  --text: light-dark(#121212, #ededed);
  --icon: light-dark(#a1a1a1eb, #3a3a3aeb);
  --label: light-dark(#737373, #d1d1d1);
  --border: light-dark(#ececec, #343434);
  --blur: light-dark(hsla(0, 0%, 94%, 0.62), hsla(0, 0%, 20%, 0.62));
  --link: light-dark(#2639e6f2, hsla(0, 0%, 68%, 0.62));
}

:root.light {
  color-scheme: light;
}

:root.dark {
  color-scheme: dark;
}

body {
  background-color: light-dark(transparent, #000000) !important;
}

.row-menu {
  background: var(--blur);
}

h1, h2, h3, h4 {
  font-family: 'Libre Franklin' !important;
  letter-spacing: -0.5px !important;
  font-weight: 450 !important;
  margin: 0 !important;
  color: var(--text) !important;
}

h1 {
  font-size: 4.375rem !important;
  letter-spacing: -2px !important;
}

h2 {
  font-size: 2.1rem !important;
  font-weight: 500 !important;
  letter-spacing: -1.6px !important;
}

h3 {
  font-size: 1.625rem !important;
  letter-spacing: -1.1px !important;
}

h4 {
  font-size: 1rem !important;
  letter-spacing: 0 !important;
  letter-spacing: -0.5px !important;
  padding: 6px 8px;
  border-radius: 10px;
  background: var(--blur);
  backdrop-filter: blur(10px);
  color: var(--text) !important;
  display: inline-flex;
  width: fit-content;
  font-weight: 550 !important;
  font-size: 13px !important;
}

p {
  font-family: 'Libre Franklin' !important;
  letter-spacing: -0.3px;
  font-size: 1rem !important;
  font-weight: 450 !important;
  margin: 0 !important;
  color: var(--text);
}

.style-dark p a {
  color: var(--text);
  text-decoration: underline;
  font-weight: 500;
  transition: all ease-in-out 0.25s;
}

@media (width < 960px) {
  h1 {
    font-size: 2.7rem !important;
    line-height: 1.1 !important;
    letter-spacing: -2.5px !important;
    font-weight: 500 !important;
    display: none;
  }

  h2 {
    font-size: 1.55rem !important;
    letter-spacing: -1.2px !important;
  }

  .hero h2, .hero-mobile h2 {
    font-weight: 580 !important;
  }

  h3 {
    font-size: 1.4rem !important;
    letter-spacing: -0.8px !important;
  }

  h4 {
    font-size: 0.9rem !important;
  }

  .hero {
    display: none !important;
  }
}

section {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section > div {
  max-width: min(1200px, 100%) !important;
}

.banner {
  position: relative;
  max-width: 100vw !important;
  overflow-x: visible;
}

video {
  transition: all ease-in-out 0.25s;
  will-change: transform;
  transform: scale(1);
}

section .banner:nth-child(2) video, .hero-mobile video {
  object-fit: cover !important;
  position: relative;
  left: 48px;
  border-radius: 2.25rem;
  width: calc(100vw + 16px);
  aspect-ratio: 16 / 9;
  filter: contrast(1.3);
  cursor: pointer;
}

@media (width < 960px) {
  section .banner:nth-child(2) video {
    left: 0 !important;
    width: calc(100vw - 24px);
  }
}

.package-list video {
  object-fit: cover !important;
  position: relative;
  left: -64px;
  border-radius: 2.25rem !important;
  width: calc(100vw + 16px);
  aspect-ratio: 16 / 9;
  cursor: grab;
}

@media (width >= 960px) {
  .package-list video {
    filter: contrast(1.3);
  }

  .hero-mobile {
    position: relative;
    max-width: 100vw !important;
  }

  .source-container.mobile {
    display: none;
  }

  .style-dark p a:not(.btn-text-skin):hover {
    color: var(--text);
    opacity: 0.5;
  }

  video:hover {
    transform: scale(1.005);
  }

/*  button:hover, button:focus {
    transform: scale(1);
  }*/
}

@media (width < 960px) {
  .package-list {
    margin: 20px 0 0 0 ;
  }

  .hero-mobile video {
    border-radius: 0 !important;
  }
}

.video-data {
  position: relative;
  display: flex;
  align-items: center;
  left: -52px;
  padding-top: 6px;
  gap: 8px;
  justify-content: end;
}

.video-title {
  position: relative;
  font-size: 0.875rem;
  font-weight: 550;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; 
  line-clamp: 1;
  text-overflow: ellipsis;
  font-family: 'Libre Franklin';
  letter-spacing: -0.2px;
  width: fit-content;
  color: var(--text);
}

.video-data button {
  display: flex;
  position: relative;
  top: -1px;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  height: 24px;
  width: 24px;
  border-radius: 9999px;
  margin-right: 6px;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  will-change: transform;
}

.video-data button .bi {
  margin: 0 !important;
}

.video-data button .bi::before {
  position: relative;
  left: 1px;
  top: 1px;
}

.video-data button .bi.bi-pause-fill::before {
  position: relative;
  left: 0px;
  top: 0.5px;
}

@media (width < 960px) {
  .video-data {
    left: -18px;
  }
}

/* containers ----------------------------------------------------------------*/

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 85vh !important;
  justify-content: center;
  gap: 26px;
}

.media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  bottom: 38px;
  right: 80px;
  height: 48px;
  width: 48px;
  background: var(--blur);
  backdrop-filter: blur(10px);
  color: var(--text);
  z-index: 2;
}

@media (width < 960px) {
  .hero-mobile .media:nth-of-type(1) {
    top: 24px;
    right: 24px;
  }

  .hero-mobile .media:nth-of-type(2) {
    top: 80px;
    right: 24px;
  }

  .package-list .media {
    bottom: 26px;
    right: 30px;
    height: 36px;
    width: 36px;
  }

  .package-list .media i::before {
    font-size: 24px;
  }

  .hero-mobile .media i::before {
    font-size: 32px;
  }
}

.media {
  border-radius: 9999px;
}

.media svg {
  width: 100%;
  height: 100%;
}

.media i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  height: 100%;
  width: 100%;
}

@media (width >= 960px) {
  .media i::before {
    font-size: 32px;
  }

  .hero-mobile .media {
    top: 28px;
    left: 80px;
  }

  .hero-mobile .hero-outer {
    display: none;
  }
}

.media .bi-play-fill::before {
  position: relative;
  left: 1px;
}

@media (width < 960px) {
  .hero, .hero-mobile {
    position: relative;
    height: 70vh !important;
    margin-bottom: 36px;
    width: 100vw;
    max-width: 100vw !important;
    overflow-x: visible;
    margin: 0;
  }

  .hero :is(h1, h3, h4), .hero-mobile :is(h1, h3, h4) {
    color: var(--bg) !important;
  }
}

.hero-outer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  z-index: 1;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.splide-vid {
  margin: 6px 0;
}

@media (width < 960px) {
  .hero-outer {
    height: 100%;
    padding: 24px 18px;
  }

  .hero-inner h2 {
    max-width: 90%;
  }

  .hero-mobile h2 {
    color: #ffffff !important;
  }

  .hero-inner {
    height: 100%;
    justify-content: flex-end;
  }

  .splide-vid {
    display: flex;
    justify-content: center;
    margin: 6px 0;
  }
}

.queue {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 160px 0;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
  width: 75%;
}

@media (width < 960px) {
  .source-container.desktop {
    display: none;
  }

  section {
    max-width: 100vw !important;
    padding: 0 18px;
  }

  .container {
    gap: 20px;
  }

  .hero video, .hero-mobile video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }

  .container {
    width: 100%;
  }

  .package-list video {
    aspect-ratio: 4 / 6;
    border-radius: 32px !important;
    width: calc(100% - 24px);
    left: 0;
  }

  .banner {
    width: 100vw;
    overflow-x: visible;
  }

  .stack {
    margin: 36px 0 0 0 !important;
  }

  .stack.last {
    margin: 40px 0 80px 0 !important;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.expand-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  padding: 4px 2px 3px 2px;
  max-width: 24px;
  background-color: var(--blue);
  border-radius: 10px;
  cursor: pointer;
  transition: all ease-in-out 0.25s;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.seo-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.seo-content.expansion.contract {
  margin-top: -24px;
}

.seo-content.expansion {
  margin-top: 12px;
}

.expansion {
  opacity: 1;
  transform: scale(1);
  transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
  font-size: 13px !important;
  opacity: 0.8;
}

.expansion.contract {
  opacity: 0;
  height: 0;
  transform: scale(0.85);
}

button {
  display: inline-flex;
  width: min-content;
  padding: 10px 12px;
  background-color: var(--blue);
  border-radius: 16px;
  font-size: 1rem;
  transition: all ease-in-out 0.25s !important;

  font-family: 'Libre Franklin' !important;
  letter-spacing: -0.6px;
  font-weight: 600 !important;

  will-change: transform !important;
  transform: scale(1);
}

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

/*@media (width >= 960px) {
  .bi-chevron-left {
    transform: translateX(50%);
    position: absolute !important;
    bottom: -60px;
    left: 50% !important;
    transform: translate(-50%, 0);
  }
}*/

.group-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

@media (width < 960px) {
  .group-content {
    gap: 40px;
  }

  .queue > .stack {
    margin-top: 24px !important;
  }
}

.source-link {
  color: var(--link) !important;
  font-family: 'Libre Franklin' !important;
  letter-spacing: -0.8px;
  font-weight: 550 !important;
  font-size: 18px;
  width: fit-content;
}

.source-link .bi {
  color: var(--link) !important;
  position: relative;
  top: -0.5px;
  margin-left: 3px;
  -webkit-text-stroke-width: 1.05px;
  font-size: 13px;
}

.source-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 16px;
}

@media (width >= 960px) {
  .source-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
  }
}

.media-header {
  position: absolute;
  top: 28px;
  right: 40px;
  width: 45%;
  pointer-events: none;
}

@media (width >= 960px) {
  .media-header {
    top: 30px;
    right: 82px;
    max-width: 180px;
  }
}

.media-content {
  position: absolute;
  bottom: 70px;
  left: 34px;
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

@media (width >= 960px) {
  .media-content {
    width: 400px;
  }

  button:hover {
    transform: scale(1.05);
  }

  .source-link:hover {
    text-decoration: underline;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

h5 {
  margin: 0 !important;
}

.media-tag {
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: -0.8px !important;
  text-align: right;
  line-height: 1.3;
  color: #ffffff !important;
}

.media-desc {
  font-size: 15px !important;
  font-weight: 580 !important;
  letter-spacing: -0.8px !important;
  text-align: right;
  line-height: 1.3;
  color: #ffffffd6 !important;
}

@media (width >= 960px) {
  .media-tag {
    font-size: 22px !important;
    font-weight: 600 !important;
    letter-spacing: -1.2px !important;
    line-height: 1.3;
  }

  .media-desc {
    font-size: 18px !important;
    font-weight: 550 !important;
    letter-spacing: -1px !important;
    line-height: 1.3;
  }
}

.media-label {
  font-size: 24px !important;
  font-weight: 580 !important;
  letter-spacing: -0.8px !important;
  color: #ffffffd6 !important;
}

.media-title {
  font-size: 44px !important;
  font-weight: 590 !important;
  letter-spacing: -2.2px !important;
  line-height: 1.1;
  color: #ffffff !important;
}

.cform {
  margin-top: 0 !important;
}