:root {
  --app-height: 100%;
}

[data-theme="light"] {
  --base-color: #232323;
  --inverse-color: #E9E9E9;
  --section-background-color: white;
  --header-background-color: white;
  --footer-background-color: #F9F9F9;
}

[data-theme="dark"] {
  --base-color: #EEEEEE;
  --inverse-color: #505050;
  --section-background-color: #121212;
  --header-background-color: #121212;
  --footer-background-color: #323232;
}

body{
  font-family: var(--base-font);
  font-weight: 400;
  color: var(--base-color);
  background-color: var( --section-background-color);
}

.theme\:section{
  background: var(--section-background-color);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  color: var(--base-color);
}

@media (max-width: 768px) {
  .theme\:section {
    padding: 40px 0;
  }
}

.theme\:image .theme\:image-source[src=""]{
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='224' viewBox='0 0 400 224' fill='none'%3E%3Crect width='400' height='224' fill='%23F9F9F9'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M176 84C171.582 84 168 87.5817 168 92V132C168 136.418 171.582 140 176 140H224C228.418 140 232 136.418 232 132V92C232 87.5817 228.418 84 224 84H176ZM224 132H176L192 100L204 124L212 108L224 132Z' fill='%23E9E9E9'/%3E%3C/svg%3E");
}

.theme\:image-container{
  height: 100%;
}

.theme\:image-container.image-bg {
  background-color: #f2f2f2;
}

[data-theme="dark"] .theme\:image-container.image-bg {
  background-color: #3b3b3b;
}

.theme\:image-container.square{
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
}

.theme\:image-container.square img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.theme\:image.rectangle-ratio .theme\:image-container{
  width: 100%;
  padding-bottom: 60%;
  overflow: hidden;
  position: relative;
}

.theme\:image.rectangle-ratio 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;
}

.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\:title{
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.theme\:subtitle{
  font-size: 18px;
  line-height: 1.5;
}

.theme\:paragraph{
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.theme\:microcopy{
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}

.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: 18px;
}

.button--secondary {
  color: var(--base-color);
}

[data-theme="dark"] .button--secondary {
  color: var(--contrast-to-primary-color);
}

@media (max-width: 768px) {
  [data-theme="dark"] .button--secondary {
    color: var(--primary-color);
  }
}

.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: 4px;
}

.theme\:button:hover .button-bg, .theme\:button:focus .button-bg{
  opacity: 0.9;
}

.button-content{
  position: relative;
  z-index: 2;
}

.theme\:link,
.theme\:navigation-url {
  text-decoration: none;
}

.theme\:link:hover,
.theme\:navigation-url:hover {
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .theme\:navigation-url:hover {
    text-decoration: none;
    color: inherit;
  }
}

.button--secondary .button-bg{
  opacity: 0.1;
}

.button--secondary:hover .button-bg, .button--secondary:focus .button-bg {
  opacity: 0.24;
}

[data-theme="dark"] .button--secondary .button-bg{
  opacity: 0.4;
}

[data-theme="dark"] .button--secondary:hover .button-bg, [data-theme="dark"] .button--secondary:focus .button-bg{
  opacity: 0.6;
}

.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%;
}

.theme\:footer{
  padding: 50px 0;
  background: var(--footer-background-color);
  color: var(--base-color);
}

.theme\:footer hr{
  margin: 24px 0;
  border-color: var(--inverse-color);
}

@media (max-width: 768px) {
  .footer--menu .theme\:navigation li {
    max-width: 100%;
  }
  .footer--menu .theme\:navigation a {
    white-space: inherit;
    max-width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
  .footer--menu .theme\:navigation {
    flex-direction: column;
    align-items: center;
  }
  .footer--menu .theme\:navigation-dropdown {
    position: relative;
    background: transparent;
    box-shadow: none !important;
    visibility: visible;
    opacity: 1;
    display: block;
  }
  .footer--menu .navigation-dropdown-button {
    font-weight: bold;
  }
  .footer--menu .navigation-dropdown-button svg {
    display: none;
  }
}


.footer--social-link:hover {
  opacity: 0.9;
}

.color-black .theme\:button{
  color: black;
}

.theme\:header{
  background-color: var(--header-background-color);
  color: var(--base-color);
  position: relative;
}

body.overflow-hidden .theme\:header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.theme\:navigation a{
  display: block;
  padding: 8px;
  white-space: nowrap;
  user-select: none;
}

.theme\:navigation svg{
  display: inline-block;
}

.theme\:navigation li{
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: left;
}

@media (max-width: 768px) {
  .theme\:navigation a{
    display: inline-block;
  }
  .theme\:navigation li{
    text-align: center;
  }
}

.header--logo-image .theme\:image-source {
  object-fit: contain;
}

.theme\:navigation-dropdown{
  min-width: 200px;
  position: absolute;
  background: var(--header-background-color);
  visibility: hidden;
  overflow-x: hidden;
  opacity: 0;
  right: 0;
  display: none;
  z-index: 3;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.1);
  max-height: 8rem;
  overflow-y: auto;
}

[data-theme="dark"] .theme\:navigation-dropdown{
  box-shadow: 0 1px 2px rgb(58 56 56 / 35%), 0 1px 3px rgb(100 99 99 / 56%);
}

.open + .theme\:navigation-dropdown {
  visibility: visible;
  opacity: 1;
  display: block;
}

[dir="rtl"] .theme\:navigation-dropdown{
  right: inherit;
  left: 0;
}

@media (min-width: 768px) {
  .theme\:navigation-dropdown{
    max-height: 12rem;
  }
}

.theme\:navigation-dropdown li a{
  padding: 8px 16px;
  position: relative;
  text-align: left;
}

.theme\:navigation-dropdown a:hover:before,
.theme\:navigation-dropdown a:focus:before{
  content: ' ';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: var(--primary-color);
  opacity: .1;
}

@media(max-width: 768px) {
  .theme\:navigation-dropdown a:hover:before,
  .theme\:navigation-dropdown a:focus:before{
    background: transparent;
  }
}

.theme\:navigation-url.open > svg {
  transform: rotateX(180deg);
  transition: 0.2s;
}

.theme\:navigation .theme\:button{
  padding: 8px 16px;
  margin: 0 8px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .theme\:navigation .theme\:button{
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

.uscreen-block a{
  justify-content: center;
  padding: 0;
}

@media (max-width: 640px) {
  .theme\:title{
    font-size: 24px;
    line-height: 1.3;
  }
  .theme\:subtitle{
    font-size: 16px;
    line-height: 1.5;
  }
  .theme\:button{
    display: block;
  }
  .theme\:video-poster img:last-child{
    display: none;
  }
}

/* HERO BANNER */
.hero-banner {
  min-height: 640px;
}

@media (max-width: 640px) {
  .hero-banner {
    min-height: 600px;
  }
}

.hero-banner--content{
  position: relative;
  max-width: 640px;
  padding: 75px 0;
  z-index: 2;
}

.hero-banner--background-image, .hero-banner--background-video{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.hero-banner--background-image img {
  object-position: center;
}

.hero-banner--background-image img, .hero-banner--background-video video{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-banner--background-video video{
  object-position: center top;
}

.hero-banner .theme\:container{
  display: flex;
  align-items: center;
}

.hero-banner .theme\:video--play-button{
  top: 0;
  bottom: auto;
  display: none;
}

.hero-banner--mobile-image {
  display: none;
}

@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--desktop-image {
    display: none;
  }

  .hero-banner--mobile-image {
    display: block;
  }
}

/* Sections */
.theme\:section.benefits {
  padding: 80px 0;
}

.benefits--card .theme\:image{
  max-width: 112px;
  margin: 0 auto;
  margin-bottom: 24px;
}

/* GALLERY */
.theme\:section {
  --swiper-pagination-bullet-inactive-color: #838383;
  --swiper-pagination-color: #838383;
}

.slider--container{
  margin-top: 32px;
}

@media (min-width: 640px){
  .slider--container{
    margin-top: 64px;
  }
}

.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;
}

.slider--container .swiper-pagination{
  position: relative;
  padding-top: 40px;
  line-height: 1;
  display: flex;
  visibility: visible;
  justify-content: center;
}

.slider--container .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin: 0 4px;
  background-color: #838383;
  opacity: 0.16;
}

.slider--container .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
[data-theme="dark"] .slider--container .swiper-pagination-bullet {
  background: #EEEEEE;
}

[data-theme="dark"] .slider--container .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #8A8A8A;
}

.slider--container .swiper-button-item{
  background-color: #E9E9E9;
  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%;
  opacity: 1;
  padding: 0;
  transition: 0.2s;
  position: absolute;
  top: 50%;
  left: auto;
  margin-top: -28px;
}

.slider--container .swiper-button-item.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}

.slider-image--slide img {
  width: 100%;
}

[data-theme="dark"] .slider--container .swiper-button-item{
  background-color: #323232;
  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--container .swiper-button-prev{
  left: -55px;
  right: initial;
}

.slider--container .swiper-button-next{
  transform: rotate(180deg);
  right: -55px;
}

.slider--container .swiper-button-item:after{
  display: none;
}

.slider-image--duration {
  font-size: 12px;
  color: var(--white);
  height: 24px;
  background: rgba(0, 0, 0, 0.64);
  border-radius: 4px;
  right: 12px;
  bottom: 12px;
  position: absolute;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
}

.slider-rounded-images {
  text-align: center;
}

.slider-rounded-images .slider-image--slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-rounded-images .theme\:image {
  max-width: 194px;
  max-height: 194px;
  width: 100%;
  height: 100%;
}

@media (max-width: 1380px){
  .slider--container{
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1024px){
  .slider--container .swiper-button-item{
    display: none;
  }
  .slider--container{
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1023px) {
  .slider--container .swiper{
    overflow: visible;
  }

  .slider--container.slider-rounded-images .swiper{
    overflow: hidden;
  }
}

/* IMAGE_TEXT */
[dir="rtl"] .image-text--image.order-1{
  order: 3;
}

[dir="rtl"] .image-text--image.order-3{
  order: 1;
}

.image-text--image .theme\:image, .image-text img{
  width: 100%;
}

.image-text .image-text--button:not(:first-child) {
  margin-top: 32px;
}

/* VIDEO */
[dir="rtl"] .video-text--video.order-1{
  order: 3;
}

[dir="rtl"] .video-text--video.order-3{
  order: 1;
}

.video-text--content .theme\:button:not(:first-child) {
  margin-top: 32px;
}

  /* PRICING */
.pricing--content{
  position: relative;
}

.pricing--background-image{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.pricing--cards{
  display: flex;
  align-items: center;
  z-index: 2;
  position: relative;
  margin: 40px 0 0 0;
}

.pricing--card{
  background-color: white;
  border: 1px solid #E9E9E9;
  border-radius: 10px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.06), 0px 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow .1s ease-in-out;
  min-width: 272px;
  margin: 16px 0 0 0;
}

.pricing--card-centered {
  flex: 1 1 auto;
}

[data-theme="dark"] .pricing--card{
  color: var(--base-color);
  border-color: #323232;
}

@media (min-width: 640px){
  .pricing--cards{
    margin: 64px -8px 0 -8px;
  }
  .pricing--card{
    margin: 16px 8px 0 8px;
  }
}

.pricing--card:hover{
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.pricing--card.featured{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-width: 2px;
  border-radius: 10px;
}

.pricing--card.featured:before{
  content: attr(data-text);
  width: 100%;
  display: block;
  color: var(--contrast-to-primary-color);
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 8px;
  letter-spacing: 2px;
}

.pricing--card-content{
  border-radius: 8px;
  background-color: white;
  padding: 24px;
}

[data-theme="dark"] .pricing--card-content{
  background-color: var(--inverse-color);
  outline-color: transparent;
}

.pricing--card-title{
  font-size: 18px;
  line-height: 0;
}

.pricing--card-title{
  font-size: 18px;
  line-height: 0;
}

.pricing--card-price{
  line-height: 80px;
  font-size: 64px;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  margin: 8px 0;
}

.pricing--card-price sup{
  font-weight: 500;
  font-size: 24px;
  vertical-align: super;
  margin-right: -15px;
}

.pricing--card-price-sub{
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
}

[data-theme="light"] .devices--screen {
  background: linear-gradient(180deg, #FFFFFF 0%, #E9E9E9 33.33%, #F9F9F9 51.56%, #FFFFFF 100%);
}

[data-theme="dark"] .devices--screen {
  background: linear-gradient(180deg, #121212 0%, #323232 33.33%, #323232 51.56%, #121212 100%);
}

.devices--platforms svg{
  max-width: 100%;
  height: auto;
  margin: 12px;
}

.svg-laptop--image img {
  width: 100%;
}

.mobile-apps{
  padding-bottom: 0;
}

[data-theme="dark"] .mobile-apps--block-image {
  background: linear-gradient(180deg, #121212 0%, #323232 40.33%, #323232 58.56%, #121212 100%);
}

[data-theme="light"] .mobile-apps--block-image {
  background: linear-gradient(180deg, #FFFFFF 0%, #E9E9E9 40.33%, #F9F9F9 58.56%, #FFFFFF 100%);
}

.mobile-apps--platforms a{
  margin: 6px;
}

.mobile-apps img{
  width: 100%;
}

.svg_mobile, .svg_mobile .theme\:image-container {
  height: 100%;
  width: 100%;
}

.svg_mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HEADER */
.header--menu{
  margin-right: -8px;
}

.header--menu a svg{
  display: inline-block;
  margin-left: 3px;
}

.header--menu-hamburger{
  height: 100%;
  align-items: center;
  margin-right: 8px;
}

.header-navigation {
  display: none;
}

.header--menu-sign-out {
  display: none;
}

@media (min-width: 768px) {
  .header-navigation {
    display: flex;
  }

  .header--menu-sign-out {
    display: block;
  }
}

.header--menu-hamburger svg:first-child{
  display: block!important;
}

.header--menu-hamburger svg:last-child{
  display: none!important;
}

.header--menu-checkbox {
  display: none;
}

.header--menu-checkbox:checked ~ .header--menu-hamburger svg:first-child{
  display: none!important;
}

.header--menu-checkbox:checked ~ .header--menu-hamburger svg:last-child{
  display: block!important;
}

.header--menu-checkbox:checked ~ .theme\: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(--header-background-color);
  padding: 70px 20px 20px 20px;
  box-sizing: border-box;
}

.header--menu-checkbox:checked ~ .theme\:navigation .theme\:image{
  display: inline-block;
}
.header--menu-checkbox:checked ~ .theme\:navigation li{
  order: 2;
  width: 100%;
}
.header--menu-checkbox:checked ~ .theme\:navigation .header--menu-account{
  order: 1;
}

.header--menu-checkbox:checked ~ .theme\:navigation:before{
  content: ' ';
  margin-top: auto;
}
.header--menu-checkbox:checked ~ .theme\:navigation a{
  text-align: center;
}
.header--menu-checkbox:checked ~ .theme\:navigation a:before{
  display: none;
}

.header--menu-checkbox:checked ~ .theme\:navigation .theme\:navigation-dropdown{
  position: relative;
  border: none;
  box-shadow: none;
  padding: 0;
}

.header--menu-checkbox:checked ~ .theme\:navigation .header--menu-account .theme\:navigation-dropdown{
  display: block;
  visibility: visible;
  opacity: 1;
}

.header--menu-checkbox:checked ~ .theme\:navigation .header--menu-devider{
  margin-top: auto;
}

.header--menu-checkbox:checked ~ .theme\:navigation .theme\:button{
  width: 100%;
  margin: 8px 0;
}

.text-block .theme\:button:not(:first-child) {
  margin-top: 32px;
}

.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: 768px;
  }
}

@media (min-width: 1024px) {
  .container,
  .theme\:container {
    max-width: 1280px;
  }
}

@media (min-width: 1280px) {
  .container,
  .theme\:container {
    max-width: 1280px;
  }
}

.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;
}

/* 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;
}
