:root {
    --app-height: 100%;
    --base-font: "sofia-pro", sans-serif;
}

[data-theme="light"] {
    --base-color: #232323;
    --inverse-color: #E9E9E9;
    --section-background-color: white;
    --dropdown-background-color: white;
    --dropdown-text-color: #232323;
    --footer-background-color: white;
    --text-color-description: #6E6E6E;
    --slider-color-dot: #6E6E6E;
    --slider-color-active-dot: #6E6E6E;
}

[data-theme="dark"] {
    --base-color: #EEEEEE;
    --inverse-color: #505050;
    --section-background-color: #000000;
    --dropdown-background-color: #505050;
    --dropdown-text-color: #EEEEEE;
    --footer-background-color: #121212;
    --text-color-description: #8A8A8A;
    --slider-color-dot: #EEEEEE;
    --slider-color-active-dot: #6E6E6E;
}

[data-header-theme="light"] {
    --header-text-color: #232323;
    --header-background-color: white;
}
[data-header-theme="dark"] {
    --header-text-color: #EEEEEE;
    --header-background-color: #121212;
}

body{
    font-family: 'sofia-pro';
    font-weight: 400;
    color: var(--base-color);
    background-color: var(--section-background-color);
}

/* fix for admin comments overlapping */
turbo-frame[id^="comment_"] div:nth-child(2) {
  width: auto !important;
}

turbo-frame[id*="-users-liked-preview"] .text-ds-default {
  color: black !important;
}
/* *********** */

.theme\:section{
    background: var(--section-background-color);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    color: var(--base-color);
}
@media (min-width: 1024px) {
    .theme\:section {
        padding: 64px 0;
    }
}
/* Container */
.container, .theme\:container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 20px;
}
@media (min-width: 768px) {
    .container, .theme\:container {
        max-width: 720px;
    }
}
@media (min-width: 1024px) {
    .container, .theme\:container {
        max-width: 960px;
    }
}
@media (min-width: 1280px) {
    .container, .theme\:container {
        max-width: 1280px;
    }
}
/* Image */

.theme\:image-container {
    height: 100%;
}
.theme\:image-container.square img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.theme\:image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
/* Video */
.theme\:video{
    position: relative;
    overflow: hidden;
}
.theme\:video-poster{
    opacity: 1;
    transition: opacity .1s linear;
}
.theme\:video--play-button{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.theme\:video--play-button button {
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    color: var(--primary-color);
}
.theme\:video-poster img{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
}
.theme\:video-overlay{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

/* Theme typography */
.theme\:section-title {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
    font-family: 'sofia-pro';
    margin-bottom: 1.5rem;
}
.section-title-left {
    text-align: left;
}
.theme\:title {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-family: 'sofia-pro';
}
.theme\:subtitle {
    font-size: 0.875rem;
    line-height: 1.35;
}
.theme\:paragraph {
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 400;
}
.theme\:microcopy {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
}
@media (min-width: 1024px) {
    .theme\:section-title {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }
    .section-title-left-lg {
        text-align: left;
    }
    .theme\:title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    .theme\:subtitle {
        font-size: 1rem;
    }
}

/* Button */
.theme\:button {
    display: inline-block;
    padding: 12px 24px;
    line-height: 1.55;
    text-decoration: none;
    box-sizing: border-box;
    text-align: center;
    color: var(--contrast-to-primary-color);
    position: relative;
    font-size: 1.125rem;
    font-weight: 600;
}
.button-bg {
     display: block;
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
     opacity: 1;
     background: var(--primary-color);
     border: 1px solid var(--primary-color);
     border-radius: 52px;
 }
.button--secondary {
    color: var(--base-color);
    font-size: 1.125rem;
    white-space: nowrap;
    padding: 12px 24px;
}
.button--secondary .button-bg {
    border-color: var(--base-color);
    background-color: transparent;
}
@media (min-width: 1024px) {
    .theme\:button:hover .button-bg, .theme\:button:focus .button-bg {
        filter: brightness(0.9);
    }
    .button--secondary:hover .button-bg, .button--secondary:focus .button-bg {
        opacity: 0.8;
        filter: none;
    }
    .button--secondary:hover, .button--secondary:focus {
        opacity: 0.8;
    }
}
.button-content{
    position: relative;
    z-index: 2;
}
.button-margin:not(:first-child) {
    margin-top: 1rem;
}
@media (min-width: 1024px) {
    .button-margin:not(:first-child) {
        margin-top: 1.5rem;
    }
}

.theme\:link,
.theme\:navigation-url {
    text-decoration: none;
}

@media (min-width: 1024px) {
    .theme\:link:hover {
        text-decoration: none;
        color: inherit;
    }
    .theme\:navigation-url:hover {
        text-decoration: underline;
    }
}

.theme\:background-image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
}

.theme\:background-image figure{
    height: 100%;
}

.theme\:background-image img{
    object-fit: cover;
    object-position: left top;
    width: 100%;
    height: 100%;
}

.color-black .theme\:button{
    color: black;
}

@media (max-width: 640px) {
    .theme\:title{
        font-size: 50px;
        line-height: 1.3;
        font-weight: 400;
    }
    .theme\:subtitle{
        font-size: 16px;
        line-height: 1.5;
    }
    .theme\:button{
        display: block;
    }
    .theme\:video-poster img:last-child{
        display: none;
    }
}

.page-content {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 1.25rem 0;
}

.page {
    min-height: calc(100vh - 320px);
}

.page-content a {
    color: var(--primary-color);
}

.page-content a:hover {
    opacity: 0.9;
}

/*THEME IMAGE PLACEHOLDER*/
.image-empty {
    background-color: #f9f9f9;
}
[data-theme="dark"] .image-empty {
    background-color: #3b3b3b;
}
.image-empty .theme\:image-source[src=""] {
    display: none;
}
.image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.image-placeholder .theme\:image-source[src=""]{
    content: url("data:image/svg+xml,%3Csvg width='400' height='224' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23F9F9F9' d='M0 0h400v224H0z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M176 84a8 8 0 0 0-8 8v40a8 8 0 0 0 8 8h48a8 8 0 0 0 8-8V92a8 8 0 0 0-8-8h-48Zm48 48h-48l16-32 12 24 8-16 12 24Z' fill='%23E9E9E9'/%3E%3C/svg%3E");
}
[data-theme="dark"] .image-placeholder .theme\:image-source[src=""]{
    content: url("data:image/svg+xml,%3Csvg width='400' height='224' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%233b3b3b' d='M0 0h400v224H0z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M176 84a8 8 0 0 0-8 8v40a8 8 0 0 0 8 8h48a8 8 0 0 0 8-8V92a8 8 0 0 0-8-8h-48Zm48 48h-48l16-32 12 24 8-16 12 24Z' fill='%23E9E9E9'/%3E%3C/svg%3E");
}

.theme\:image-container.square{
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
    margin: 0;
}

/*THEME HEADER*/
.theme\:header{
    position: relative;
    color: var(--header-text-color);
    background-color: rgba(0, 0, 0, 0.32);
    font-weight: 600;
    z-index: 11;
}
.header-outlined-link {
    color: var(--dropdown-text-color);
    font-weight: 400;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 100px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--dropdown-text-color);
    display: block;
    text-align: center;
}
.header-logo {
    color: var(--header-text-color);
}
.theme\:header.transparent-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
}
body.overflow-hidden .theme\:header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 40;
}
.theme\:navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.theme\:navigation li {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: left;
}
.header .navigation-wrapper {
    flex: 1 0 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.theme\:navigation .navigation-list {
    display: flex;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}
.theme\:navigation .navigation-item {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.navigation-item-link {
    display: block;
    white-space: nowrap;
    user-select: none;
    text-decoration: none;
}
.header .navigation-item-link {
    font-size: 1.125rem;
    color: var(--base-color);
    font-weight: normal;
}
.header .navigation-item {
    margin-bottom: 1.5rem;
}
.header .navigation-item:last-child {
    margin-bottom: 0;
}
@media (min-width: 1024px) {
    .header-outlined-link {
        width: auto;
        padding: 0;
        border-radius: 0;
        border-width: 0;
        color: var(--header-text-color);
    }
    .header-outlined-link:hover {
        color: var(--primary-color);
    }
    .header .navigation-item-link {
        font-size: 1rem;
        color: var(--header-text-color);
    }
    .header .navigation-item {
        margin-bottom: 0;
    }
    .navigation-item-link:hover {
        opacity: 0.8;
        color: inherit;
    }
    .header-logo:hover .header-logo-title {
        opacity: 0.8;
    }
}
.header-navigation .navigation-dropdown {
    margin-top: 1rem;
    display: none;
}
.navigation-item-opened .navigation-dropdown {
    display: block;
}
.navigation-arrow {
    display: inline-flex;
    margin-left: 0.5rem;
}
.navigation-item-opened .navigation-arrow {
    transform: rotateX(180deg);
}
@media (min-width: 1024px) {
    .navigation-item-with-dropdown:hover .navigation-dropdown {
        visibility: visible;
        opacity: 1;
    }
    .navigation-item-with-dropdown:hover .navigation-arrow {
        transform: rotateX(180deg);
    }
    .navigation-dropdown-list {
        box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.06), 0px 1px 3px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        max-height: 8rem;
        overflow-y: auto;
        background: var(--dropdown-background-color);
        overflow-x: hidden;
    }
    .navigation-dropdown {
        min-width: 200px;
        position: absolute;
        visibility: hidden;
        opacity: 0;
        right: 0;
        top: 100%;
        padding-top: 8px;
        z-index: 3;
    }
    .header-navigation .navigation-dropdown {
        margin-top: 0;
        display: block;
    }
}

[dir="rtl"] .theme\:navigation-dropdown{
    right: inherit;
    left: 0;
}

@media (min-width: 1024px) {
    .navigation-dropdown-list {
        max-height: 12rem;
    }
}

.navigation-dropdown-link {
    padding: 0;
    position: relative;
    color: var(--dropdown-text-color);
    display: block;
    text-align: center;
}
.header .navigation-dropdown-link {
    font-size: 1.125rem;
}
.header .navigation-dropdown-item {
    margin-bottom: 1rem;
}
.header .navigation-dropdown-item:last-child {
    margin-bottom: 0;
}
.navigation-dropdown-link:hover {
    text-decoration: none;
}
.navigation-dropdown-link:hover:before,
.navigation-dropdown-link:focus:before{
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: transparent;
    opacity: .1;
}

@media (min-width: 1024px) {
    .navigation-dropdown-link:hover:before,
    .navigation-dropdown-linkk:focus:before{
        background: var(--primary-color);
    }
    .navigation-dropdown-link {
        padding: 8px 16px;
    }
    .header .navigation-dropdown-link {
        font-size: 1rem;
    }
    .header .navigation-dropdown-item {
        margin-bottom: 0;
    }
}

.header--menu {
    flex: 1 1 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    z-index: 2;
}
.header-navigation {
    display: none;
}
.header-navigation .navigation-list {
    justify-content: center;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: auto;
}
.header--menu-hamburger {
    display: block;
}
.opened-menu .header--menu-hamburger {
    display: none;
}
.header--menu-close {
    display: none;
    color: var(--base-color);
}
.opened-menu .header--menu-close {
    display: block;
}

.header--menu-side {
    display: flex;
    justify-content: center;
}
.header--menu-account {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.menu-account-dropdown-item {
    margin-bottom: 1.5rem;
}
.header-menu-sign-out-link {
    display: none;
}
.header-mobile-sign-out-button {
    order: 3;
    margin-top: 1.5rem;
}
.header-cta {
    width: 100%;
    font-weight: normal;
}
.header-addon {
    display: none;
}
.navigation-avatar {
    display: none;
}
.header .navigation-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.theme\:navigation .header--menu-side {
    display: block;
}
.theme\:navigation .sign-in-list {
    display: grid;
    order: 3;
    gap: 1rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-top: 1.5rem;
}
.sign-in-item {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.theme\:navigation .menu-account-dropdown-item {
    margin-bottom: 1.5rem;
}
.theme\:navigation .navigation-user-item {
    order: 0;
}
.opened-menu .header-navigation {
    position: fixed;
    display: flex;
    flex-direction: column;
    visibility: visible;
    opacity: 1;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    height: var(--app-height);
    background: var(--section-background-color);
    padding: 70px 20px 40px 20px;
    box-sizing: border-box;
}
.opened-menu {
    overflow: hidden;
}
.header-avatar {
    display: inline-flex;
    align-items: center;
}
.header-avatar-arrow {
    margin-left: 0.5rem;
}
[dir="rtl"] .header-avatar-arrow {
    margin-left: 0;
    margin-right: 0.5rem;
}
@media (min-width: 1024px) {
    .opened-menu {
        overflow: visible;
    }
    .opened-menu .header-navigation {
        position: relative;
        background: transparent;
        padding: 0;
        height: auto;
    }
    .header .navigation-wrapper {
        overflow-x: visible;
        overflow-y: visible;
        justify-content: flex-end;
    }
    .header .navigation-avatar,
    .header .navigation-user-item {
        display: none;
    }
    .theme\:navigation .menu-account-dropdown-item {
        margin-bottom: 0;
    }
    .theme\:navigation .header--menu-side, .theme\:navigation .sign-in-list {
        display: none;
    }
    .header--menu {
        padding: 0 1.5rem;
    }
    .header-addon {
        display: block;
        flex: 0 0 auto;
    }
    .header-cta {
        width: auto;
    }
    .header-menu-sign-out-link {
        display: block;
    }
    .header-mobile-sign-out-button {
        display: none;
    }
    .menu-account-dropdown-item {
        margin-bottom: 0;
    }
    .header--menu-side {
        order: 2;
        width: auto;
    }
    .header-navigation {
        display: flex;
        flex-wrap: wrap;
        flex: 1 0 0;
        justify-content: center;
    }
    .header--menu-sign-out {
        display: block;
    }
    .header-navigation .navigation-list {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .sign-in-list {
        display: flex;
        gap: 0;
        flex-direction: row;
        align-items: center;
        margin-top: 0;
    }
    .header-cta {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}


.header-logo-image img {
    object-fit: contain;
}

/*THEME FOOTER*/
.theme\:footer {
    background: var(--footer-background-color);
    color: var(--base-color);
}
.footer--copyright {
    grid-area: copyright;
}
.footer--copyright-link {
    line-height: 1;
    color: var(--base-color);
    font-size: 0.875rem;
}
.footer--services {
    grid-area: services;
}
.footer--social {
    grid-area: social;
}
.footer--menu {
    grid-area: menu;
    font-size: 0.875rem;
}
.footer--menu .navigation-dropdown {
    top: unset;
    bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.uscreen-block {
    grid-area: uscreen;
}
.footer-wrapper {
    position: relative;
    display: grid;
    align-items: center;
    justify-content: center;
    row-gap: 2.5rem;
    text-align: center;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-areas: "copyright"
    "menu"
    "social"
    "services"
    "uscreen";
}
.footer--menu .theme\:navigation .navigation-list {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -0.5rem;
}
.footer--menu .navigation-item-with-dropdown {
    width: 100%;
}
.footer--menu .navigation-item {
    margin-top: 0.5rem;
}
.footer--menu .navigation-dropdown-item {
    margin-top: 0.5rem;
}
@media (min-width: 1024px) {
    .footer--menu .navigation-dropdown-item {
        margin-top: 0;
    }
    .footer--menu .theme\:navigation .navigation-list {
        margin-top: 0;
    }
    .footer--menu .navigation-item-with-dropdown {
        width: auto;
    }
    .footer--menu .navigation-item {
        margin-top: 0;
    }
    .footer--menu .navigation-dropdown {
        padding-bottom: 1.5rem;
    }
    .footer-wrapper {
        text-align: left;
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas: "copyright services social"
                       "menu menu uscreen";
    }
}
.footer-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #E9E9E9;
}
[data-theme="dark"] .footer-wrapper:before {
    background-color: #323232;
}
.footer--social {
    display: flex;
    justify-content: center;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}
@media (min-width: 1024px) {
    .footer--social {
        justify-content: flex-end;
    }
}
.footer--social-link {
    display: inline-flex;
    color: #000;
    margin-right: 0.75rem;
    margin-left: 0.75rem;
}
[data-theme="dark"] .footer--social-link {
    color: #EEEEEE;
}
.footer--social-link:hover {
    opacity: 0.9;
}
.footer--social-icon {
    height: 2rem;
    width: 2rem;
}
@media (min-width: 1024px) {
    .footer--social-icon {
        height: 1.5rem;
        width: 1.5rem;
    }
}

/* benefits */
[data-theme="light"] {
    --benefit-text-color: #6E6E6E;
}

[data-theme="dark"] {
    --text-color-description: #8A8A8A;
}
.benefit--title {
    font-weight: 600;
    margin-bottom: 12px;
}
.benefit--text {
    color: var(--benefit-text-color);
}
.benefits--row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}
.benefits--card {
    text-align: center;
    margin-bottom: 24px;
    padding: 0 12px;
    width: 100%;
}
.benefits--cta  {
    text-align: center;
    margin-bottom: 24px;
}
.benefits--card .theme\:image{
  max-width: 112px;
  margin: 0 auto;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
    .benefits--card {
        width: 50%;
    }
}

@media only screen and (max-width:639px) {
  .theme\:section.benefits {
    padding-bottom: 0;
  }
}

/*HERO BANNER SECTION*/
[data-hero-theme="light"] {
    --hero-text-color: #232323;
}
[data-hero-theme="dark"] {
    --hero-text-color: #fff;
}
.hero-banner {
    min-height: 619px;
    color: var(--hero-text-color);
    display: flex;
}
.hero-banner-container {
    display: flex;
    align-items: end;
    justify-content: flex-start;
}
.hero-banner--content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 0;
    z-index: 2;
    text-align: left;
    max-width: 39.5rem;
}
.hero-banner-title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    line-height: 2.75rem;
    font-weight: 700;
}
.hero-banner-text {
    font-size: 1rem;
    line-height: 1.5rem;
}
.hero-banner-button {
    width: 100%;
    margin-top: 1.5rem;
}
.hero-banner--background-image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.hero-banner--background-image img {
    object-position: center;
}
.hero-banner--background-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.hero-banner--mobile-image {
    display: none;
}
@media (min-width: 1024px) {
    .hero-banner-container {
        align-items: center;
    }
    .hero-banner--content {
        padding: 75px 0;
    }
    .hero-banner {
        min-height: 724px;
    }
    .hero-banner-title {
        font-size: 4rem;
        margin-bottom: 1rem;
        line-height: 4rem;
    }
    .hero-banner-text {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}
@media (min-width: 640px) {
    .hero-banner-button {
        width: auto;
    }
}

@media (max-width: 640px) {
    .hero-banner .theme\:video--play-button{
        display: flex;
    }

    .hero-banner--background-video video{
        display: none;
    }

    .hero-banner--background-video {
        display: none;
    }

    .hero-banner--mobile-image {
        display: block;
    }

    .hero-banner--content {
        padding-bottom: 0;
    }
}

/* GALLERY */
.slider--container .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.slider--container .swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.slider--container .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    box-sizing: border-box;
}
.slider-dots.swiper-pagination {
    position: relative;
    padding-top: 2rem;
    line-height: 1;
    display: flex;
    visibility: visible;
    justify-content: center;
}
.hide-navigation .slider-dots.swiper-pagination {
    display: none;
}
@media (min-width: 1024px) {
    .slider-dots.swiper-pagination {
        padding-top: 2.5rem;
    }
}

.slider-dots.swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    margin: 0 4px;
    background-color: var(--slider-color-dot);
    opacity: 0.16;
}

.slider-dots.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--slider-color-active-dot);
}

.slider--container .swiper-button-item {
    display: none;
}

.slider--container.slider-with-navigation .swiper-button-item {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='18' viewBox='0 0 11 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.41412 9.00007L10.707 1.70718L9.29277 0.292969L0.585693 9.00007L9.29277 17.7072L10.707 16.293L3.41412 9.00007Z' fill='%23232323'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: 13px;
    width: 40px!important;
    height: 40px!important;
    border-radius: 50%;
    border: 1px solid var(--base-color);
    opacity: 1;
    padding: 0;
    transition: 0.2s;
    position: absolute;
    top: 50%;
    left: auto;
    margin-top: -21px;
    display: block;
}
.hide-navigation.slider--container.slider-with-navigation {
    padding-left: 0;
    padding-right: 0;
}
.hide-navigation.slider--container.slider-with-navigation .swiper-button-item {
    display: none;
}
.slider-with-navigation .swiper-button-item.swiper-button-disabled {
    opacity: .5;
    cursor: auto;
}

.slider-image--slide img {
    width: 100%;
}

.slider--container .swiper-button-item {
    display: none;
}

[data-theme="dark"] .slider--container .swiper-button-item{
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='18' viewBox='0 0 11 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.41412 9L10.707 1.7071L9.29277 0.292892L0.585693 9L9.29277 17.7071L10.707 16.2929L3.41412 9Z' fill='%23EEEEEE'/%3E%3C/svg%3E%0A");
}

.slider-with-navigation .swiper-button-prev{
    left: -55px;
    right: initial;
}

.slider-with-navigation .swiper-button-next{
    transform: rotate(180deg);
    right: -55px;
}

.slider-image--duration {
    font-size: 0.75rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.64);
    border-radius: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    position: absolute;
    padding: 0.25rem 0.5rem;
    display: inline-flex;
    align-items: center;
}

.slider-rounded-images {
    text-align: center;
    margin-top: 0;
}
.slider-with-navigation.slider--container .swiper-button-next{
    right: -55px;
}
.slider-with-navigation.slider--container .swiper-button-prev{
    left: -55px;
}

.slider-rounded-images .slider-image--slide {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.slider-rounded-images .theme\:image {
    max-width: 96px;
    max-height: 96px;
    width: 100%;
    height: 100%;
}
.slider-title {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
}
.slider-subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    color: var(--text-color-description);
}

@media (max-width: 1380px){
    .slider-with-navigation {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 1024px){
    .slider--container .swiper-button-item {
        display: none;
    }
    .slider-with-navigation {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 1023px) {
    .slider--container .swiper{
        overflow: visible;
    }

    .slider--container.slider-rounded-images .swiper{
        overflow: hidden;
    }
}
/* TEXT */
.text-block-center {
    text-align: center;
}
.text-block-left {
    text-align: left;
}

/* IMAGE_TEXT */
.image-text-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.image-text-content {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    order: 2;
}
.image-text-image {
    width: 100%;
}
.image-text-image__left {
    order: 1;
    padding-bottom: 2rem;
}
.image-text-image__right {
    order: 3;
    padding-top: 2rem;
}
[dir="rtl"] .image-text-image.image-text-image__left {
    order: 3;
    padding-top: 2rem;
    padding-bottom: 0;
}
[dir="rtl"] .image-text-image.image-text-image__right {
    order: 1;
    padding-top: 0;
    padding-bottom: 2rem;
}
.image-text-image .theme\:image, .image-text img {
    width: 100%;
    aspect-ratio: 1/1;
}
.image-text-image-wrapper {
    border-radius: 0.5rem;
    overflow: hidden;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}
.image-text-button {
    width: 100%;
}
@media (min-width: 768px) {
    .image-text-image {
        width: 50%;
    }
    .image-text-image__left {
        padding-right: 5rem;
        padding-bottom: 0;
        padding-top: 0;
    }
    .image-text-image__right {
        padding-left: 5rem;
        padding-top: 0;
        padding-bottom: 0;
    }
}
@media (min-width: 640px) {
    .image-text-button {
        text-align: left;
    }
    [dir="rtl"] .image-text-button {
        text-align: right;
    }
}

/* VIDEO */
.video-text-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.video-text-content {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    order: 2;
}
.video-text-video__left {
    order: 1;
    padding-bottom: 2rem;
}
.video-text-video__right {
    order: 3;
    padding-top: 2rem;
}
[dir="rtl"] .video-text-video.video-text-video__left {
    order: 3;
    padding-top: 2rem;
    padding-bottom: 0;
}
[dir="rtl"] .video-text-video.video-text-video__right {
    order: 1;
    padding-top: 0;
    padding-bottom: 2rem;
}
.video-text-video-wrapper {
    border-radius: 0.5rem;
    overflow: hidden;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}
.video-text-button {
    text-align: center;
    width: 100%;
}
@media (min-width: 768px) {
    .video-text-video {
        width: 50%;
    }
    .video-text-video__left {
        padding-right: 5rem;
        padding-bottom: 0;
        padding-top: 0;
    }
    .video-text-video__right {
        padding-left: 5rem;
        padding-top: 0;
        padding-bottom: 0;
    }
}
@media (min-width: 640px) {
    .video-text-button {
        text-align: left;
    }
    [dir="rtl"] .video-text-button {
        text-align: right;
    }
}


[dir="rtl"] .image-text .text-center,
[dir="rtl"] .video-text .text-center {
    text-align: right;
}

/* TESTIMONIALS */

.slider-testimonial-name {
    padding-left: 16px;
}
.slider-rounded-images {
    text-align: center;
    margin-top: 0;
    padding-left: 60px;
    padding-right: 60px;
}
.testimonials .slider--container.slider-with-navigation .swiper-button-item {
    top: calc(50% - 20px);
}
.testimonials .slider-with-navigation.slider--container .swiper-button-next {
    right:  0;
}
.testimonials .slider-with-navigation.slider--container .swiper-button-prev {
    left:  0;
}
.slider-rounded-images .slider-image--slide {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 32px 32px 16px 32px;
    background-color: #F9F9F9;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    margin-bottom: 0;
}
.slider-rounded-images .slider-subtitle {
    font-weight: 500;
    color: #232323;
}
.slider-rounded-images .theme\:image {
    max-width: 48px;
    max-height: 48px;
    width: 100%;
    height: 100%;
}

.slider-rounded-images .columns--card {
    padding: 0px 32px 32px 32px;
    background-color: #F9F9F9;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    text-align: left;
    box-sizing: border-box;
}

[data-theme="dark"] .slider-rounded-images .slider-image--slide,
[data-theme="dark"] .slider-rounded-images .columns--card {
    background-color: #323232;
}

[data-theme="dark"] .slider-rounded-images .slider-subtitle {
    color: #fff;
}

@media (max-width: 1024px) {
    .slider--container.slider-with-navigation .swiper-button-item {
        display: none;
    }
    .slider-rounded-images {
        padding-left: 0;
        padding-right: 0;
    }
}

[dir="rtl"] .slider-testimonial-name {
    padding-left: 0;
    padding-right: 16px;
}
[dir="rtl"] .slider-subtitle {
    text-align: right;
}

/* OTT TV */
.ott-tv-wrapper {
   position: relative;
}
.theme\:image.ott-tv-background {
    position: absolute;
    top: 1%;
    left: .7%;
    width: 98.6%;
    overflow: hidden;
}


/* OTT WATCH OFFLINE */
.ott-watch-offline-background {
    background-color: #f9f9f9;
}
[data-theme="dark"] .ott-watch-offline-background  {
    background-color: #3b3b3b;
}
.ott-watch-offline-wrapper {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}
.theme\:image.ott-watch-offline-device {
    position: relative;
    z-index: 2;
}
.theme\:image.ott-watch-offline-background {
    position: absolute;
    top: 3%;
    left: 4.6%;
    width: 90.9%;
    overflow: hidden;
    z-index: 1;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 85%;
}

.ott-watch-offline-download {
    padding: 16px;
    background: #F9F9F9;
    border: 1px solid #E9E9E9;
    border-radius: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 377px;
    margin: 0 auto;
    margin-top: -44px;
    position: relative;
    z-index: 2;
}
.ott-watch-offline-download svg {
    margin-left: auto;
    margin-right: 0;
}
.ott-watch-offline-download-title {
    font-size: 18px;
}
.ott-watch-offline-download .theme\:subtitle {
    color: var(--primary-color);
}
.theme\:image.ott-watch-offline-download-image {
    width: 80px;
    height: 80px;
    margin-right: 16px;
    border-radius: 8px;
    overflow: hidden;
}

[data-theme="dark"] .ott-watch-offline-download {
    background-color: #323232;
    border-color: #505050;
}

[dir="rtl"] .theme\:image.ott-watch-offline-download-image {
    margin-right: 0;
    margin-left: 16px;
}

/* OTT WATCH OFFLINE */
.theme\:image.ott-devices-tv,
.theme\:image.ott-devices-laptop,
.theme\:image.ott-devices-phone,
.theme\:image.ott-devices-tablet {
    background-color: #f9f9f9;
}
[data-theme="dark"] .theme\:image.ott-devices-tv,
[data-theme="dark"] .theme\:image.ott-devices-laptop,
[data-theme="dark"] .theme\:image.ott-devices-phone,
[data-theme="dark"] .theme\:image.ott-devices-tablet  {
    background-color: #3b3b3b;
}

.ott-devices-wrapper,
.ott-devices-placeholder {
    position: relative;
    z-index: 2;
}

.ott-devices-tv,
.ott-devices-laptop,
.ott-devices-phone,
.ott-devices-tablet {
    position: absolute;
}

.theme\:image.ott-devices-tv {
    top: 8%;
    width: 77%;
    left: 11.48%;
}
.theme\:image.ott-devices-laptop {
    width: 34.6%;
    height: 40%;
    top: 56.5%;
    left: 4.5%;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    overflow: hidden;
}

.theme\:image.ott-devices-phone {
    width: 8.1%;
    top: 68.5%;
    left: 60.23%;
    border-radius: 4%;
    overflow: hidden;
    height: 31%;
}
.theme\:image.ott-devices-tablet {
    width: 26.5%;
    bottom: 1%;
    right: .5%;
    height: 36%;
}

/* PRICING */
.pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pricing-list {
    margin-top: 0;
    max-width: 53rem;
}
.pricing-card {
    margin-bottom: 0.75rem;
    background-color: #F9F9F9;
    color: #232323;
    display: grid;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 1rem;
}
[data-theme="dark"] .pricing-card {
    background-color: #323232;
    color: #EEEEEE;
}
.pricing-card.featured {
    background-color: var(--primary-color);
}
.pricing-light.pricing-card.featured {
    color: #232323;
}
.pricing-dark.pricing-card.featured,
.pricing-dark.pricing-card.featured p {
    color: #EEEEEE;
}
.pricing-card .button--secondary {
    color: #232323;
}
[data-theme="dark"] .pricing-card .button--secondary {
    color: #EEEEEE;
}
.pricing-card .button--secondary .button-bg {
    border-color: #232323;
}
[data-theme="dark"] .pricing-card .button--secondary .button-bg {
    border-color: #EEEEEE;
}
.pricing-card.featured .button--secondary {
    color: var(--primary-color);
}
.pricing-card.featured .button--secondary .button-bg {
    border-color: #232323;
    background-color: #232323;
}
.pricing-dark.pricing-card.featured .button--secondary .button-bg {
    border-color: #EEEEEE;
    background-color: #EEEEEE;
}
.pricing-list .pricing-card:last-child {
    margin-bottom: 0;
}
.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .pricing-list {
        margin-top: 1.5rem;
    }
    .pricing-card {
        margin-bottom: 1rem;
        grid-template-columns: 1fr auto;
        padding: 2rem;
    }
    .pricing-list .pricing-card .button--secondary:hover .button-bg, .pricing-list .pricing-card .button--secondary:focus .button-bg {
        opacity: 1;
        filter: none;
        background-color: var(--primary-color);
    }
    .pricing-card .button--secondary:hover, .pricing-card .button--secondary:focus {
        opacity: 1;
    }
    .pricing-card .pricing-button-white:hover,
    .pricing-card .pricing-button-white:hover .button-bg,
    .pricing-card .pricing-button-white:focus,
    .pricing-card .pricing-button-white:focus .button-bg {
        color: #EEEEEE;
        border-color: var(--primary-color);
    }
    .pricing-card .pricing-button-dark:hover,
    .pricing-card .pricing-button-dark:hover .button-bg,
    .pricing-card .pricing-button-dark:focus,
    .pricing-card .pricing-button-dark:focus .button-bg {
        color: #232323;
        border-color: var(--primary-color);
    }
    .pricing-card.featured .button--secondary:hover, .pricing-card.featured .button--secondary:focus {
        color: #232323;
    }
    .pricing-dark.pricing-card.featured .button--secondary:hover, .pricing-dark.pricing-card.featured .button--secondary:focus {
        color: #EEEEEE;
    }
}

/* FAQ */
[data-theme="light"] {
    --faq-color-bg: #FFF;
    --faq-content-text-color: #FFF;
}
[data-theme="dark"] {
    --faq-color-bg: #3D3535;
    --faq-content-text-color: #FFF;
}
.faq-wrapper {
    max-width: 53rem;
    margin-left: auto;
    margin-right: auto;
}
.faq-list {
    display: grid;
    row-gap: 1rem;
}
.faq-item {
    background-color: var(--faq-color-bg);
    color: var(--base-color);
    border-radius: 0.5rem;
}
.faq-header {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 1.5rem;
    padding: 1.5rem;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}
.faq-title {
    font-size: 1.125rem;
    font-weight: 700;
}
.faq-content {
    height: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}
.faq-content-wrapper {
    color: var(--faq-content-text-color);
    padding: 0.5rem 1.5rem 1.5rem 1.5rem;
}
.faq-opened .faq-header {
    padding-bottom: 0;
}
.faq-opened .faq-content {
    height: auto;
    visibility: visible;
}
.faq-opened .faq-arrow {
    transform: scaleY(-1);
}

/* DEVICES */
.platforms--content {
    max-width: 632px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 2.5rem;
}
.platforms-svg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
    margin-bottom: -1rem;
}
@media (min-width: 1024px) {
    .platforms--content {
        margin-bottom: 4rem;
    }
    .platforms-svg {
        margin-bottom: -2rem;
    }
}

/* swiper-carousel */
.swiper-carousel.swiper-initialized {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: visible;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.swiper-carousel.swiper-initialized .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-wrap: nowrap;
    transition-property: transform;
    box-sizing: content-box;
}
.swiper-carousel.swiper-initialized .swiper-slide {
    flex-shrink: 0;
    height: 100%;
    position: relative;
    transition-property: transform;
}
.swiper-carousel .swiper-pagination {
    display: none;
}
.swiper-carousel.swiper-initialized .swiper-pagination {
    display: flex;
}
/* UTILS */
/*
  Some elements default styles are reset by Tailwind Preflight.
  Add .reset-tailwind-preflight class to your tag to restore reset elements styles with the following values
 */
.reset-tailwind-preflight ul, ol {
    padding-left: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.reset-tailwind-preflight ul {
    list-style: disc outside;
}

.reset-tailwind-preflight ol {
    list-style: decimal outside;
}

.reset-tailwind-preflight p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.reset-tailwind-preflight h1 {
    font-size: 3rem;
    line-height: 1;
}

.reset-tailwind-preflight h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.reset-tailwind-preflight h3 {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.reset-tailwind-preflight h4 {
    font-size: 1.5rem;
    line-height: 2rem;
}

.reset-tailwind-preflight h5 {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
