html {
  height: auto;
}

/* -- Global -- */

.w-embed svg {
  height: 100% !important;
  width: 100% !important;
}

@media (min-width: 990px) {
  :root {
    --size: 1600;
  }

  html {
    height: auto !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
    font-size: calc(15.8 * 100vw / var(--size));
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.line-wrapper {
  overflow: hidden;
}

main {
  overflow: hidden;
}

/* -- Rules -- */

:root {
  --cubic-default: cubic-bezier(0.625, 0.05, 0, 1);
  --duration-default-double: 1.6s;
  --duration-default-onehalf: 1.2s;
  --duration-default: 0.8s;
  --duration-default-half: 0.4s;
  --animation-default-double: var(--duration-default-double)
    var(--cubic-default);
  --animation-default-onehalf: var(--duration-default-onehalf)
    var(--cubic-default);
  --duration-default-quarter: 0.2s;
  --animation-default: var(--duration-default) var(--cubic-default);
  --animation-default-half: var(--duration-default-half) var(--cubic-default);
  --animation-default-quarter: var(--duration-default-quarter)
    var(--cubic-default);
  --animation-ease: 0.2s ease;
  --animation-ease-double: 0.4s ease;
}

.button {
  position: relative;
  z-index: 1;
}

/* .button::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    z-index: -1;
    pointer-events: none;
    border-radius: 6.25rem;
    background-color: transparent;
    border: 0.063rem solid #1b1b14;
    transition: transform var(--animation-default),
      background-color 0.2s ease-in-out;
    position: absolute;
  }
  
  .button.is--v2::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    z-index: -1;
    pointer-events: none;
    border-radius: 6.25rem;
    background-color: #1b1b14;
    border: 0.063rem solid #1b1b14;
    transition: transform var(--animation-default),
      background-color 0.2s ease-in-out;
    position: absolute;
  }
  
  .button.is--nav2::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    z-index: -1;
    pointer-events: none;
    border-radius: 6.25rem;
    background-color: #1b1b14;
    border: 0.063rem solid #1b1b14;
    transition: transform var(--animation-default),
      background-color 0.2s ease-in-out;
    position: absolute;
  }
  
  .button.is--plan::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    z-index: -1;
    pointer-events: none;
    border-radius: 6.25rem;
    background-color: #9a9e74;
    border: 0.063rem solid #9a9e74;
    transition: transform var(--animation-default),
      background-color 0.2s ease-in-out;
    position: absolute;
  }
  
  .button.is--submit::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    z-index: 1;
    pointer-events: none;
    border-radius: 6.25rem;
    background-color: #fdfdfc;
    border: 0.063rem solid #fdfdfc;
    transition: transform var(--animation-default),
      background-color 0.2s ease-in-out;
    position: absolute;
  }
  
  .button:hover::before {
    transform: scale(0.95);
  }
   */

/* Keyframes */

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes marqueeRev {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes marqueeVert {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}

@keyframes marqueeVertRev {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}

/* Keyframes Assignment */

.lp_members-list.is--front {
  animation: marqueeRev 20s linear infinite;
}

.lp_members-list.is--backw {
  animation: marquee 20s linear infinite;
}

.lp_trustpilot-list_group.is--front .lp_trustpilot-list {
  animation: marqueeVertRev 20s linear infinite;
}

.lp_trustpilot-list_group.is--backw .lp_trustpilot-list {
  animation: marqueeVert 20s linear infinite;
}

@media only screen and (max-width: 990px) {
  .lp_trustpilot-rews-group::before {
    opacity: 0;
  }

  .lp_trustpilot-rews-group::after {
    opacity: 0;
  }
}

.lp_trustpilot-rews-group {
  position: relative;
}

.lp_trustpilot-rews-group:hover::before {
  height: 15%;
}

.lp_trustpilot-rews-group:hover::after {
  height: 15%;
}

.lp_trustpilot-rews-group::before {
  content: "";
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 1;
  position: absolute;
  width: 100%;
  height: 20%;
  pointer-events: none;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.2s ease;
}

.lp_trustpilot-rews-group::after {
  content: "";
  z-index: 2;
  bottom: 0;
  left: 0;
  opacity: 1;
  position: absolute;
  width: 100%;
  height: 20%;
  pointer-events: none;
  background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.2s ease;
}

/* -- Button Animation -- */

.stagger-wrapper {
  overflow: hidden;
}

a .stagger-text {
  text-shadow: 0px 1.5em 0px;
  position: relative;
  top: 0em;
  transition: all var(--animation-default), background-color 0.2s ease-in-out;
}

a:hover .stagger-text {
  top: -1.5em;
}

/* -- Button -- */

.lp_button {
  background-color: transparent !important;
  z-index: 1;
  position: relative;
}

.lp_button::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  z-index: -1;
  pointer-events: none;
  border-radius: 6.25rem;
  background-color: var(--_brand-v2---brand--400) !important;
  border: 0.063rem solid transparent;
  transition: transform var(--animation-default),
    background-color 0.2s ease-in-out;
  position: absolute;
}

.lp_button.is--v2::before {
  background-color: var(--_brand-v2---brand--700) !important;
}

.lp_button.is--outline {
  background-color: transparent !important;
  border: 0.063rem solid transparent !important;
}

.lp_button.is--outline::before {
  background-color: transparent !important;
  border: 0.063rem solid var(--_brand-v2---brand--400) !important;
}

.lp_button.is--article {
  background-color: transparent !important;
  border: 0.125rem solid transparent !important;
}

.lp_button.is--article::before {
  background-color: transparent !important;
  border: 0.125rem solid #000000 !important;
}

.lp_button:hover::before {
  transform: scale(0.95);
}

.lp_form-button.is--inv {
  z-index: 3;
}

/* -- BLOG -- */

.lp_article-card .lp_shape-overflow {
  z-index: 2;
}

.lp_article-card .lp_article-info {
  z-index: 3;
}

.lp_article-card img {
  transition: transform var(--animation-default),
    background-color 0.25s ease-in-out;
}

.lp_article-card:hover img {
  transform: scale(1.05);
}
