/* ELEVATE 2026 GLOBAL STYLES */

:root{
    --lime: #C4FD9A;
    --green: #00CA72;
    --purple: #9A59FF;
    --blue: #6161FF;
    --bluish: #97AEFF;
    --gray: #323338;
    --lightblue: #E7ECFF;
    --whitish: #F3F4F5;
}

/* DEFAULT CTA */

.e26-cta{
    display: flex;
}
.blue-bubble{
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    width: 175px;
    height: 58px;
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 200px;
    color: #fff;
}
.header-right-hand .blue-bubble{
    height: 42px;
    width: 138px;
    font-size: 14px;
}
.green-bubble{
    background-color: var(--green);
    border-radius: 100%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-right-hand .green-bubble{
    width: 42px;
    height: 42px;
}
.green-bubble svg {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}
.header-right-hand .green-bubble svg {
    width: 18px;
    height: 18px;
}
.e26-cta:hover svg{
    transform: rotate(45deg);
}
.e26-cta:hover{
    text-decoration: none;
    color: #fff;
}

@media (max-width: 1024px){
    .header-elevate .green-bubble{
        width: 42px;
        height: 42px;
    }
    .green-bubble svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 767px){
    .header-elevate .e26-cta{
        display: none;
    }
}

/* Container */
.secondary-container {
  margin: 0 auto;
}
.secondary-container--1280 {
  max-width: 1280px;
  padding: 0 24px;
  box-sizing: content-box;
}
.secondary-container--almost-fw {
  max-width: none;
  padding: 0 20px;
}
@media (max-width: 1280px) {
  .secondary-container--1280 {
    max-width: 1110px;
  }
  .secondary-container--almost-fw {
    max-width: none;
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .secondary-container--1280 {
    max-width: 930px;
  }
  .secondary-container--almost-fw {
    max-width: none;
    padding: 0 10px;
  }
}
@media (max-width: 850px) {
  .secondary-container--1280 {
    max-width: none;
    padding: 0 42px;
  }
  .secondary-container--almost-fw {
    max-width: none;
    padding: 0 10px;
  }
}
@media (max-width: 500px) {
  .secondary-container--1280 {
    max-width: none;
    padding: 0 24px;
  }
  .secondary-container--almost-fw {
    max-width: none;
    padding: 0;
  }
}

/* GLOBAL COMPONENT - FAQS */

.brands {
    padding: 100px 0 120px;
    position: relative;
}

.brands::before,
.brands::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 300px;
    z-index: 2;
    pointer-events: none;
}

.brands::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.brands::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}
.brands__title {
    color: var(--Text-primary, #000);
    font-family: Poppins;
    font-size: 52px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 78px */
    text-align: center;
    position: relative;
    z-index: 10;
}
.brands__items {
  visibility: hidden;
  padding: 87px 0 0;
}
.brands__items.slick-initialized {
  visibility: visible;
}

.brands__item-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 140px;
    padding: 0;
}
.brands__item-container img {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: 100%;
}

/* Brands carousel — gap between items */
.brands__items .slick-slide {
  margin: 0 16px;
}
@media (min-width: 768px) {
  .brands__items .slick-slide {
    margin: 0 45px;
  }
}
@media (min-width: 1024px) {
  .brands__items .slick-slide {
    margin: 0 40px;
  }
}
@media (min-width: 1280px) {
  .brands__items .slick-slide {
    margin: 0 60px;
  }
}

@media (max-width: 1279px) {
  .brands__title {
      font-size: 42px;
  }
}
@media (max-width: 768px) {
  .brands {
      padding: 50px 0 70px;
  }
  .brands::before, .brands::after {
      width: 100px;
  }
  .brands__title {
    padding: 0 123px;
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .brands__title {
    font-size: 40px;
    max-width: 330px;
    margin: 0 auto;
    padding: 0;
  }
}
@media (max-width: 435px) {
  .brands {
      padding: 50px 0;
  }

  .brands__items {
      padding: 57px 0 0;
  }
  .brands::before, .brands::after {
      width: 60px;
  }
}

/* Numbers behind */

.numbers-behind{
    padding: 0 20px;
}
.numbers-behind__inner{
    background-color: #000;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 20px;
}
.numbers-behind__title{
    color: var(--snow-white, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: 52px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 67.6px */
}
.numbers-behind__items{
    margin-top: 50px;
    display: flex;
    gap: 12px;
}
.numbers-behind__column{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 418px;
}
.numbers-behind__column:nth-child(2){
    flex-direction: column-reverse;
}
.numbers-behind-image{
    width: 418px;
    border-radius: 24px;
    overflow: hidden;
}
.numbers-behind-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.numbers-behind-info{
    display: flex;
    flex-direction: column;
    gap: 0px;
    color: #fff;
    padding: 32px;
    border-radius: 24px;
    min-height: 196px;
    justify-content: center;
    flex: 1;
}
.numbers-behind__column:first-child .numbers-behind-info{
    color: #000;
}
.numbers-behind__item-number{
    font-family: Poppins;
    font-size: 62px;
    font-style: normal;
    font-weight: 400;
    line-height: 115%; /* 71.3px */
}
.numbers-behind__item-text{
    font-family: Poppins;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 56px */
}
@media (max-width: 1439px) {
    .numbers-behind__items {
        gap: 12px;
    }
    .numbers-behind__column {
        width: 362px;
        height: 514px;
    }
    .numbers-behind-image {
        width: 362px;
        height: 304px;
        border-radius: 16px;
        overflow: hidden;
    }
    .numbers-behind__item-text {
        font-size: 36px;
    }
    .numbers-behind-info {
        padding: 24px;
        min-height: 172px;
    }
    .numbers-behind__column:nth-child(2) .numbers-behind-image img{
        height: 100%;
        border-radius: 16px;
    }
}
@media (max-width: 1279px) {
    .numbers-behind__title {
        font-size: 42px;
    }
    .numbers-behind__column {
        width: 302px;
        height: 494px;
    }
    .numbers-behind-image {
        width: 302px;
        height: 293px;
    }
    .numbers-behind__item-text {
        font-size: 28px;
    }
    .numbers-behind-info {
        padding-right: 24px;
    }
    .numbers-behind__column:nth-child(2) .numbers-behind-image img{
        height: 100%;
    }
    .numbers-behind__item-number {
        font-size: 52px;
    }
    .numbers-behind__items {
        width: 930px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .numbers-behind__column {
        width: auto;
        height: 426px;
    }
    .numbers-behind-image {
        width: 100%;
        height: 293px;
    }
}
@media (max-width: 1023px) {
    .numbers-behind__column {
        width: 220px;
        height: 426px;
    }
    .numbers-behind-image {
        width: 220px;
        height: 293px;
    }
    .numbers-behind__item-text {
        font-size: 24px;
    }
    .numbers-behind-info {
        padding: 16px;
    }
    .numbers-behind__column:nth-child(2) .numbers-behind-image img{
        height: 255px;
    }
    .numbers-behind__item-number {
        font-size: 42px;
    }
    .numbers-behind__inner {
        padding: 50px 20px;
    }
    .numbers-behind-image img {
        height: 288px;
        max-height: 288px;
    }
    .numbers-behind__column:nth-child(2) .numbers-behind-image img {
        height: 100%;
    }
    .numbers-behind__column:nth-child(1) .numbers-behind-info {
        min-height: 151px;
    }
    .numbers-behind__column:nth-child(2) .numbers-behind-info {
        min-height: 145px;
    }
    .numbers-behind__column:nth-child(3) .numbers-behind-info {
        min-height: 117px;
    }
    .numbers-behind-info {
        min-height: 117px;
        border-radius: 16px;
        flex: 0;
    }
    .numbers-behind__items {
        width: calc(100% - 25px);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .numbers-behind__column {
        width: auto;
        height: 426px;
    }
    .numbers-behind-image {
        width: 100%;
        height: 293px;
    }
}
@media (max-width: 767px) {
    .numbers-behind__title {
        font-size: 40px;
    }
    .numbers-behind__items {
        flex-direction: column;
        display: flex;
    }
    .numbers-behind__column {
        width: 100%;
        height: fit-content;
    }
    .numbers-behind-image {
        width: 100%;
        height: 200px;
    }
    .numbers-behind-info {
        gap: 0px;
        height: 117px;
    }
    .numbers-behind {
        padding: 0 10px;
    }
    .numbers-behind__column:nth-child(2) {
        flex-direction: column;
    }
    .numbers-behind-image img {
        height: 200px;
    }
    .numbers-behind-info {
        max-height: 117px;
    }
    .numbers-behind__column:nth-child(2) .numbers-behind-info,
    .numbers-behind__column:nth-child(1) .numbers-behind-info,
    .numbers-behind__column:nth-child(3) .numbers-behind-info {
        min-height: 117px;
    }
    .numbers-behind__column:nth-child(2) .numbers-behind-image img {
        width: 100%;
    }
}
@media (min-width: 1440px) {
  .numbers-behind__column {
    height: 514px;
  }
  .numbers-behind__column:nth-child(odd) .numbers-behind-image {
    width: 418px;
    height: 308px;
  }
  .numbers-behind__column:nth-child(odd) .numbers-behind-info {
    width: 418px;
    height: 151px;
  }
  .numbers-behind__column:nth-child(even) .numbers-behind-image {
    width: 418px;
    height: 260px;
  }
  .numbers-behind__column:nth-child(even) .numbers-behind-info {
    width: 418px;
    height: 242px;
  }
}

/* FAQs */
.faqs {
  margin-top: 32px;
}
.faqs-component{
  background: #E7ECFF;
  padding: 120px 0 120px;
  margin-bottom: 0;
  border-radius: 24px;
}
.faqs-component-container{
  max-width: none;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faqs-component-title {
  text-align: center;
}
.faqs-component-title h2 {
  font-weight: 400;
  font-size: 52px;
  line-height: 130%;
  vertical-align: middle;
  color: #000;
  margin-bottom: 50px;
}
.faqs-list {
  width: 923px;
}
.faq-item {
  background-color: #fff;
  border-radius: 16px;
}
.faq-item:not(:first-child) {
  margin-top: 16px;
}
.faq-item-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px 0 0;
  padding: 21px 32px;
  cursor: pointer;
}
.faq-item-question-text{
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.01em;
  text-align: left;
  max-width: calc(100% - 160px);
  color: #000;
}
.faq-item-arrow{
    background: #fff;
    padding: 7px;
    border-radius: 100%;
    width: 50px;
    text-align: center;
    color: #000;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-item-arrow svg{
    transition: transform .15s;
}
.faq-item-question.active .faq-item-arrow svg{
    transform: rotate(45deg);
}
.faq-item-answer{
    font-size: 16px;
    font-weight: 300;
    line-height: 23.94px;
    letter-spacing: -0.01em;
    text-align: left;
    padding: 0px 84px 0px 32px;
    margin-top: -1px;
}
.faq-item-answer p{
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 160%;
}
.faq-item-answer p span {
  font-weight: 300 !important;
}
.faq-item-answer ul{
    list-style-type: none;
    margin-left: 19px;
}
.faq-item-answer li{
    position:relative;
    margin: 10px 0;
}
.faq-item-answer li a{
    color: unset;
}
.faq-item-answer li::before{
    content: '';
    width: 4px;
    height: 4px;
    position: absolute;
    top: 10px;
    left: -18px;
    background: #000000;
    border-radius: 50px;
}
.faq-item-answer li a:hover{
    text-decoration: underline;
}
.faq-item-answer.active{
    padding-bottom: 20px;
}
.faq-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    color: #000;
    font-weight: 300;
  }
@media (max-width: 1024px) {
  .faqs-component {
    padding: 100px 0;
  }
  .faqs-component-title h2 {
    font-size: 42px;
    margin-bottom: 50px;
  }
  .faqs-list {
    width: 100%;
    padding: 0 36px;
  }
}
@media (max-width: 768px) {
  .faqs-component {
    padding: 50px 0;
  }
  .faqs-component-title h2 {
    font-size: 42px;
    margin-bottom: 50px;
  }
  .faqs-list {
    padding: 0 32px;
  }
}
@media (max-width: 500px) {
  .faqs {
    margin-top: 20px;
  }
  .faqs-component-title h2 {
    font-size: 40px;
  }
  .faqs-list {
    padding: 0 24px;
  }
  .faq-item-question {
    padding: 20px 16px 20px 24px;
  }
  .faq-item-question-text {
    max-width: calc(100% - 70px);
  }
  .faq-item-answer {
    padding: 0px 16px 0 24px;
  }
  .faq-item-answer.active {
    padding-bottom: 12px;
  }
}


/* AI EDGE */
.ai-edge-container{
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ai-edge-text-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    opacity: 0;
    position: relative;
    z-index: 0;
}
.ai-edge-title{
    font-family: Poppins;
    font-weight: 400;
    font-size: 72px;
    line-height: 112%;
    letter-spacing: 0%;
    text-align: center;
}
.ai-edge-subtitle{
    font-family: Poppins;
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}
.ai-edge-cta{
    margin-top: 8px;
}
.ai-edge-images{
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.ai-edge-images img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    background-color: transparent;
}
.ai-edge-images img:nth-child(5) {
    max-width: 500px;
}
.ai-edge-images img:nth-child(9) {
    max-width: 555px;
}

@media (max-width: 1919px){
    .ai-edge-title {
        font-size: 67px;
    }
}

@media (max-width: 1439px){
    .ai-edge-title {
        font-size: 68px;
    }
    .ai-edge-subtitle{
        font-size: 18px;
    }
}

@media (max-width: 1279px) {
    .ai-edge-title {
        font-size: 60px;
    }
}

@media (max-width: 1024px){
    .ai-edge{
        padding: 50px 0;
    }
}

@media (max-width: 1023px) {
    .ai-edge-title {
        font-size: 42px;
    }
}

@media (max-width: 850px){
    .ai-edge-images img:nth-child(4) {
        max-width: 250px;
    }

    .ai-edge-images img:nth-child(5) {
        max-width: 340px;
    }
}
@media (max-width: 768px){
    .ai-edge-container,
    .ai-edge{
        height: 110vh;
    }
}
@media (max-width: 767px) {
    .ai-edge {
        height: 80vh;
    }
    .ai-edge-container, .ai-edge {
        height: 70vh;
    }
    .ai-edge-title {
        font-size: 40px;
        max-width: 350px;
    }
    .ai-edge-subtitle{
        font-size: 16px;
        max-width: 350px;
    }
    .ai-edge-images img:nth-child(2),
    .ai-edge-images img:nth-child(9),
    .ai-edge-images img:nth-child(8){
        display: none;
    }
}
@media (max-width: 690px){
    .ai-edge {
        height: 80vh;
    }
    .ai-edge-images img:nth-child(9) {
        width: 200vw;
        max-width: unset;
    }
    .ai-edge-images img:nth-child(5) {
        z-index: 1;
    }
}

/* VIDEO PLAYER (Watch) */
.watch{
    padding: 80px 0;
}
.watch-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}
.watch-container-title{
    font-family: Poppins;
    font-weight: 400;
    font-size: 52px;
    line-height: 130%;
    letter-spacing: 0px;
    text-align: center;
}
.watch-menu{
    display: flex;
    gap: 40px;
    margin: 5px 0 20px;
}
.watch-tax-term{
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    cursor: pointer;
    position: relative;
}
.watch-tax-term::after{
    position: absolute;
    top: 35px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #000;
    display: none;
}
.watch-tax-term:hover::after{
    display: block;
    background-color: #cacbcd;
}
.watch-tax-term.active::after{
    display: block;
    background-color: #000000;
}
.watch-video-container{
    padding-top: 20px;
}
.watch-player-container{
    gap: 34px;
    display: none;
}
.watch-player-container.active{
    display: flex;
}
.watch-player-block{
    display: flex;
    flex-direction: column;
    width: 733px;
    position: relative;
}
.watch-player-wrapper{
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
}
.watch-player-overlay{
    background-color: #00000060;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.watch-player-overlay.show{
    opacity: 1;
    pointer-events: all;
}
.watch-play-button{
    background: #000000B2;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
    z-index: 10;
}
.watch-player{
    border-radius: 24px;
    background-color: color-mix(in srgb, #97AEFF, white 60%);
    overflow: hidden;
    height: auto;
    aspect-ratio: 1.78;
}
.watch-player iframe{
    width: 100%;
    height: 100%;
}
.watch-player-info{
    border-radius: 24px;
    background-color: #000;
    color: #fff;
    height: 100%;
    padding: 25px 30px;
    position: relative;
    top: -1px;
}
.wpi-above{
    display: flex;
    justify-content: space-between;
    margin-bottom: 11px;
}
.wpi-above-tag{
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
}
.wpi-above-tag-mobile{
    display: none;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
}
.wpi-above-next{
    display: flex;
    gap: 7px;
    align-items: center;
    position: relative;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.wpi-above-next::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #7c7c7b;
    bottom: -2px;
}
.wpi-above-next span{
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
}
.wpi-above-next.hide-next{
    opacity: 0;
    pointer-events: none;
}
.wpi-title{
    font-family: Poppins;
    font-weight: 400;
    font-size: 26px;
    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
    max-width: 500px;
}
.watch-player-playlist-container{
    display: flex;
    flex-direction: column;
    width: 515px;
    border-radius: 24px;
    overflow: hidden;
    background-color: var(--lightblue);
}
.watch-player-playlist{
    padding: 10px;
    margin-bottom: 20px;
}
.video-item{
    display: flex;
    padding: 16px;
    border-radius: 16px;
    gap: 24px;
    cursor: pointer;
}
.video-item:hover{
    background-color: #fff;
}
.video-item.active{
    background-color: #fff;
}
.video-item-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.video-item-image{
    min-width: 115px;
    max-width: 115px;
    height: 65px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.video-item-image img{
    width: 100%;
    height: 100%;
}
.video-item-image svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-item-tag{
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0px;
    vertical-align: middle;
}
.video-item-title{
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.video-item iframe{
    display: none;
}
.watch-player-see-all{
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    width: 190px;
    height: 50px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    white-space: nowrap;
    margin: auto 30px 30px;
    color: #000;
}
.watch-player-see-all:hover{
    text-decoration: none;
    color: #000;
    background-color: #FFFFFF99;
}
@media (max-width: 1440px) {
  .watch-video-container {
    width: calc(100% - 160px);
  }
}
@media (max-width: 1280px) {
    .watch-video-container {
      width: calc(100% - 170px);
    }
    .watch-play-button {
        width: 95px;
        height: 95px;
    }
    .watch-play-button svg{
        width: 33px;
        height: 33px;
    }
    .watch-player-playlist .video-item:nth-child(5){
        display: none;
    }
    .watch-player-container {
      gap: 37px;
    }
    .watch-player-block{
        flex: 1;
    }
    .watch-player-playlist-container {
        flex: 0 0 439px;
        max-width: 439px;
    }
    .watch-tax-term {
        font-size: 16px;
    }
    .wpi-title {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-width: 430px;
    }
}
@media (max-width: 1024px) {
    .watch-video-container {
      width: calc(100% - 94px);
    }

    .watch-container-title {
        font-size: 42px;
    }

    .watch-tax-term{
        font-size: 16px;
    }

    .watch-menu {
        gap: 45px;
    }

    .watch-tax-term:after {
        top: 28px;
    }

    .watch-video-container {
        width: calc(100% - 94px);
    }

    .watch-player-wrapper {
        border-radius: 16px;
    }

    .watch-player-info {
        border-radius: 16px;
        padding: 20px 16px 48px;
    }

    .wpi-above-tag {
        font-size: 14px;
    }

    .wpi-title {
        font-size: 20px;
        line-height: 160%;
    }

    .watch-player-playlist .video-item:nth-child(4) {
        display: none;
    }
    .watch-player-container {
        gap: 32px;
    }
    .watch-player-block{
        flex: 1;
    }
    .watch-player-playlist-container {
        flex: 1;
        max-width: none;
    }
    .wpi-above {
        margin-bottom: 21px;
    }
}
@media (max-width: 1023px) {
    .watch-video-container {
        width: calc(100% - 40px);
    }
    .watch-player-container{
        flex-direction: column;
    }
    .watch-tax-term {
        font-size: 16px;
    }
    .watch-tax-term.active {
        text-underline-offset: 15px;
    }
    .watch-player-block {
        width: 100%;
    }
    .watch-player-playlist-container {
        width: 100%;
    }
    .watch-play-button {
        width: 67px;
        height: 67px;
    }
    .watch-play-button svg{
        width: 23px;
        height: 23px;
    }
    .wpi-title {
        font-size: 24px;
        line-height: 1.6;
        max-width: unset;
    }
    .watch-player-playlist .video-item:nth-child(5),
    .watch-player-playlist .video-item:nth-child(4){
        display: none;
    }
    .watch-player-info {
        padding: 23px 20px 18px;
    }
    .wpi-above {
        margin-bottom: 18px;
    }
}
@media (max-width: 768px) {
  .watch-video-container {
    width: calc(100% - 84px);
    padding-top: 5px;
  }
  .watch-menu {
    gap: 40px;
  }
  .watch-player-container {
    gap: 24px;
  }
  .watch-player-see-all {
    margin-top: 18px;
  }
}
@media (max-width: 767px){
    .watch-player-wrapper {
        border-radius: 16px;
    }

    .watch-player-playlist-container {
        border-radius: 16px;
    }

    .video-item-image {
        min-width: 95px;
        max-width: 95px;
        height: 53px;
    }

    .watch-player-container.active {
        flex-direction: column;
    }

    .watch {
        padding: 30px 0;
    }

    .watch-container-title {
        font-size: 40px;
        max-width: 350px;
    }

    .watch-menu {
        gap: 40px 30px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 20px;
    }

    .watch-tax-term {
        font-size: 16px;
    }

    .watch-video-container {
        padding-top: 0;
    }

    .watch-play-button {
        width: 49px;
        height: 49px;
    }

    .watch-play-button svg{
        width: 17px;
        height: 17px;
    }

    .wpi-above {
        margin-top: 17px;
        margin-bottom: 4px;
    }

    .wpi-above-tag{
        display: none;
    }

    .wpi-above-tag-mobile{
        display: block;
        margin-bottom: 16px;
    }

    .watch-player-info {
        padding: 17px 16px 14px;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: space-between;
    }

    .watch-player-playlist-container {
        width: 100%;
    }

    .video-item {
        align-items: center;
        padding: 10px;
    }
}
@media (max-width: 500px) {
  .watch-video-container {
    width: calc(100% - 48px);
  }
  .watch-player-container {
    gap: 24px;
  }
  .watch-player-see-all {
    margin: auto 20px 20px;
  }
  .watch-player-playlist {
    margin-bottom: 5px;
  }
  .wpi-title {
    font-size: 20px;
    -webkit-line-clamp: 3;
  }
  .video-item-title {
    -webkit-line-clamp: 3;
  }
}

/* --------------------------- END OF GLOBAL COMPONENTS --------------------------- */
