/* GENERAL */
:root{
  --green: #00DCC6;
  --blue: #1C59E7;
  --red: #F71823;
  --purple: #6433F8;
  --purple-light: #F0EBFF;
  --purple-dark: #4A23BE;
  --light-blue: #99B6FC;
  --gray-100: #EEEFF0;
  --gray-300: #DCE0E1;
  --gray-800: #414141;
  --gray-900: #2B2B2B;
  --breakpoint-mb: 480px;
  --top-transition-timing: 0.5s;
  --animation4-timing: 6s;
  --radius-xl: 32px;
}
* {
  box-sizing: border-box;
}
/* */
html {
  font-size: 100.01%;
}
body {
  margin: 0;
  font-size: 64%;
  background: #fff;
  font-family: tt-commons-pro, Helvetica, Arial, sans-serif;
  color: #313339;
  overflow-x: hidden;
}
body *:not(.tooltip) {
  transition: all .2s ease-out;
}
img, video {
  border: 0;
  display: block;
  max-width: 100%;
}
form, h1, h2, h3, h4, h5, h6, table, tbody, tr, td, p, ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
}
b, strong, h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}
section h2 {
  font-size: 18px;
  line-height: 23px;
  text-transform: uppercase;
  color: var(--gray-800);
  text-align: center;
  width: 100%;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.08em;
}
section h2:before {
  content: '';
  width: 40px;
  height: 2px;
  margin: 0 auto 15px;
  background: rgba(255,255,255,0.7);
  display: block;
  background: var(--gray-800);
}
section h2.no-line:before {
  content: unset;
}
h2.text-blue {
  color: rgba(60, 92, 170, 1);
  font-weight: 400;
}
h2.text-blue:before {
  background: rgba(60, 92, 170, 0.7);
}
h3 {
  font-size: 32px;
  color: var(--gray-900);
  font-weight: 600;
}
a {
  text-decoration: underline;
  color: var(--blue);
}
a:hover {text-decoration: none;}
a:focus {
  outline: none;
}
.none {
  display: none;
}
.hidden {
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
.flex {
  display: flex;
}
.holder:after {
  display: block;
  content: '';
  clear: both;
}
.holder-box {
  overflow: hidden;
}
.float-left {float: left !important;}
.float-right {float: right !important;}
.text-left {text-align: left !important;}
.text-right {text-align: right !important;}
.text-center {text-align: center !important;}
.no-padding {padding: 0 !important;}
.nowrap { white-space: nowrap; }
.preload {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.relative {
  position: relative;
}
.fixed {
  position: fixed !important;
  top: 0;
}
.bg-light-purple { background: var(--purple-light); }
.bg-light-green { background: #E5F9F5; }
.bg-light-red { background: rgba(229,84,93,0.2); }
.text-blue { color: var(--blue); }
.p-gutter { padding: 30px; }
.border-radius-xl { border-radius: var(--radius-xl); }
/* BUTTONS */
.button {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 50px;
  background: var(--purple);
  padding: 0 30px;
  display: inline-block;
  border: 0;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  border-radius: var(--radius-xl);
}
.button:hover {
  background: var(--purple-dark);
  color: #fff;
  text-decoration: none;
}

/* BIG BUTTON */
.button-big {
  font-size: 30px;
  line-height: 83px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .button-big {
    padding: 0 15px;
  }
}
@media (max-width: 710px) {
  .button-big {
    font-size: 23px;
  }
}
@media (max-width: 600px) {
  .button-big {
    font-size: 20px;
  }
  .button-big i {
    margin-bottom: 5px;
  }
}
.button-big i {
  color: #fff;
  font-size: 12px;
  line-height: normal;
  vertical-align: middle;
  margin-bottom: 6px;
}
.button-big span {
  padding: 0 10px;
}

/* SMALL BUTTON */
.button-small {
  font-size: 14px;
  line-height: 36px;
  font-weight: normal;
  padding: 0 20px;
}

/* */
.button[disabled] {
  background: #B4B7C1;
  cursor: default;
}
/* CENTERED */
.centered {
  padding: 0 60px;
}
.centered .inner {
  padding: 100px 0 50px;
  font-size: 18px;
}
@media (max-width: 991.98px) {
  .centered {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .centered {
    padding-left: 0;
    padding-right: 0;
  }
}
.centered .inner .flex {
  justify-content: space-between;
}
.centered .inner .flex .column {
  flex: 0 0 45%;
}
@media (max-width: 1440px) {
  .centered {
    width: 100%;
  }
}

/* HEADER */
header {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--gray-300);
  border-radius: 0 0 32px 32px;
}
header {
  padding: 0 60px;
}
@media (max-width: 1500px) {
  header {
    width: 100%;
    padding: 0 30px;
  }
}
header .column {
  height: 100px;
  display: flex;
  align-items: center;
  flex-direction: row;
}
header .logo a {
  background: url(../images/logo.svg) no-repeat 0 0;
  background-size: contain;
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  width: 210px;
  height: 30px;
}
@media (max-width: 400px) {
  header .logo a {
    width: 82px;
    height: 32px;
    background-size: unset;
    background-position: 100% 0;
  }
}

/* FOOTER */
.footer-holder {
  background: var(--gray-900);
  color: #fff;
  padding: 50px 0;
  font-family: tt-commons-pro, Helvetica, Arial, sans-serif;
  border-radius: 32px 32px 0 0;
}
footer {
  line-height: 1.5;
  overflow: hidden;
}
footer .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
footer .row + .row {
  margin-top: 50px;
}
footer .col,
footer [class*="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
footer h4 {
  font-size: 16px;
  margin: 10px 0;
  color: #fff;
  font-weight: 500;
}
footer ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
footer ul li {
  margin-bottom: 10px;
}
footer a {
  color: var(--green);
  font-size: 14px;
  font-weight: 300;
  text-decoration: underline;
}
footer a:hover {
  color: var(--green-900);
  text-decoration: none;
}
ul.social li a {
  font-size: 14px;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
footer ul.social {
  overflow: hidden;
  margin-bottom: 0;
}
footer ul.social li {
  float: left;
  margin-right: 20px;
}
footer ul.social li:last-child {
  margin-right: 0;
}
footer ul.social li a {
  color: var(--green);
}
@media (max-width: 991.98px) {
  footer .row {
    padding: 0 30px;
  }
}

/* SECTION 2 */
.section2 {
  margin-top: 32px;
}
.section2 .image1,
.section2 .image2 {
  position: relative;
  overflow: visible;
  height: 640px;
  height: min(640px, 100vw);
  border-radius: var(--radius-xl);
}

.section2 .image1 .image-media,
.section2 .image2 .image-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

@media (min-width: 768px) {
  .section2 .image1,
  .section2 .image2 {
    height: min(640px, 50vw);
  }

  .section2 #top_section .image1,
  .section2 #top_section .image2 {
    max-width: calc((100% - 8px) / 2);
    flex: 0 0 calc((100% - 8px) / 2);
  }

  .section2 #top_section .image1 {
    margin-right: 8px;
  }

  .section2 #top_section .image2 {
    margin-left: 0;
  }
}

.section2 .image1 .image-media img,
.section2 .image2 .image-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: all var(--top-transition-timing) ease-out;
  max-width: none;
  z-index: -1;
}

.section2 .content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -70px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  z-index: 10;
  padding: 0;
}

@media (max-width: 1280px) {
  .section2 .content {
    bottom: -90px;
  }
}

.section2 .content h4 {
  font-size: 40px;
  line-height: 1.1;
  text-align: center;
  font-weight: 500;
  margin: 0 0 6px;
}

.section2 .vs {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #EFEAFB;
  color: #313339;
  font-size: 28px;
  z-index: 20;
  text-transform: uppercase;
}
.section2 .content {
  transition: all var(--top-transition-timing) ease-out;
}
.section2 .hidden-content {
  font-size: 22px;
  font-weight: 300;
}
.section2 .content>div {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 36px;
  padding: 22px 28px;
  width: min(720px, 85%);
  text-align: center;
}
.section2 .image1 .content>div {
  background: var(--purple);
}
.section2 .image2 .content>div {
  background: var(--red);
}

@media (max-width: 991.98px) {
  .section2 .content h4 {
    font-size: 36px;
  }

  .section2 .hidden-content {
    font-size: 18px;
  }
}

@media (max-width: 766px) {
  .section2 #top_section {
    position: relative;
  }

  .section2 .content {
    min-width: 350px;
    top: auto;
    bottom: 60px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    align-items: flex-end;
    justify-content: center;
    text-align: center;
  }

  .section2 .content>div {
    width: 85%;
  }

  .section2 .vs {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }

  .section2 .image1,
  .section2 .image2 {
    border-radius: 0;
  }
}

/* SECTION 3 */
.section3 .centered .inner {
  padding-top: 0;
}
.section3 .row {
  align-items: center;
  flex-direction: row;
  margin: 0;
}
@media (min-width: 768px) {
  .section3 .col-fixed {
    flex: 0 0 480px;
    max-width: 480px;
  }
  .section3 .col-flexible {
    flex: 0 0 calc(100% - 480px);
    max-width: calc(100% - 480px);
  }
}

@media (max-width: 880px) {
  .section3 .centered .inner {
    padding-left: 0;
    padding-right: 0;
  }
  .section3 .centered .inner .row:nth-child(2n+1) .col-flexible {
    padding-right: 30px;
  }
  .section3 .centered .inner .row:nth-child(2n) .col-flexible {
    padding-left: 30px;
  }
}

@media (max-width: 767.98px) {
  .section3 .centered .inner .col-flexible {
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .section3 .centered {
    overflow-x: hidden;
    overflow-y: visible;
  }
}

.section3 .corner {
  background: url(../images/corner.svg) no-repeat left top;
  background-size: 100% 100%;
  background-origin: border-box;
  background-clip: border-box;
  width: 480px;
  height: 480px;
  padding: 40px;
  border-radius: 0;
}
@media (max-width: 480px) {
  .section3 .corner {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: max(0px, calc(50% - 200px));
  }
}

.section3 .corner.bottom-right {
  background: url(../images/corner-bottom-right.svg) no-repeat right bottom;
  background-size: 100% 100%;
}

.section3 .animation-box {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  overflow: hidden !important;
  position: relative !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.section3 .animation-box > * {
  position: absolute;
}
.section3 .animation-box .green,
.section3 .animation-box .light-blue {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.section3 .animation-box .green {
  background: var(--green);
  opacity: 0;
}
.section3 .animation-box .light-blue {
  background: var(--light-blue);
}

.section3 ul {
  font-size: 22px;
}

.section3 ul li {
  padding-left: 40px;
  margin-top: 28px;
  font-weight: 300;
}

.section3 ul li strong {
  font-weight: 500;
}

.section3 ul li:first-child {
  background: url(../images/surface2.svg) no-repeat 0 3px;
}
.section3 ul li:last-child {
  background: url(../images/surface1.svg) no-repeat 0 3px;
}

@media (max-width: 1020px) {
  .section3 .col-flexible h3 {
    font-size: 30px;
  }

  .section3 .col-flexible ul {
    font-size: 20px;
  }

  .section3 .col-flexible ul li {
    background-position: 0 0 !important;
    padding-left: 32px;
  }
}

@media (max-width: 480px) {
  .section3 .col-flexible h3 {
    font-size: 27px;
  }

  .section3 .col-flexible ul {
    font-size: 18px;
  }

  .section3 .col-flexible ul li {
    padding-top: 2px;
  }
}

/* COMPARE */
.compare {
  margin: 0 30px;
}
.compare .vs {
  color: var(--blue);
  font-size: 35px;
  line-height: 45px;
  font-weight: bold;
}
.compare ul {
  margin-top: 20px;
  margin-bottom: 20px;
}
.compare ul li {
  font-size: 20px;
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 10px 0;
  font-weight: 300;
}
.compare ul li img:first-child {
  margin-right: 15px;
  width: 36px;
  flex: 0 0 36px;
}
.compare ul li img[data-tooltip] {
  margin-left: 10px;
}
.compare ul li span {
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .compare {
    margin: 0;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .compare h3 {
    font-size: 30px;
  }
  .compare .col-6 {
    flex-grow: 1;
    max-width: unset;
  }
  .compare ul li {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .compare {
    margin: 0;
    width: 200%;
  }

  .compare .row {
    width: 100%;
    margin: 0;
    flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .compare .row {
    justify-content: flex-start;
    gap: 8px;
  }
  .compare .row > [class*="col-"] {
    flex: 0 0 calc((100% - 8px) / 2);
    max-width: calc((100% - 8px) / 2);
  }
}

/* SECTION 4 */
.section4 .inner {
  padding-top: 80px;
  padding: 80px 30px 50px;
  text-align: center;
}

.section4 .inner > div {
  max-width: 660px;
  margin: 0 auto;
}

.section4 h3 {
  color: #fff;
  font-weight: 500;
}

.section4 h3 a {
  color: #D6E2FE;
}

.section4 p {
  font-size: 24px;
  line-height: 31px;
  color: #fff;
  font-weight: 300;
}

/* TOOLTIPS */
.tooltip.show {
  opacity: 1;
}
.tooltip .tooltip-inner {
  max-width: 220px;
  background: #fff;
  color: #313339;
  text-align: left;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  padding: 15px;
  border-radius: 0;
  border: 1px solid var(--green);
  text-align: center;
  font-family: din-2014, Helvetica, Arial, sans-serif;
}

.tooltip .arrow {
  width: calc(1rem - 1px);
}
.tooltip .arrow:before,
.tooltip .arrow:after {
  border-width: .45rem 0.5rem 0;
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.tooltip .arrow:before {
  border-top-color: var(--green);
}
.tooltip .arrow:after {
  border-top-color: #fff;
}
.bs-tooltip-auto[x-placement^=top] .arrow:after,
.bs-tooltip-top .arrow:after {
  top: -1px;
}
.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^=bottom] .arrow::after,
.bs-tooltip-bottom .arrow::after {
  border-width: 0 0.45rem .5rem;
}
.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
  border-bottom-color: var(--green);
}
.bs-tooltip-auto[x-placement^=bottom] .arrow::after,
.bs-tooltip-bottom .arrow::after {
  top: 1px;
  border-bottom-color: #fff;
}

/* ANIMATION 1 */
#animation1 {
  border-radius: 0;
}
#animation1 img {
  position: absolute;
  margin-left: -90px;
  top: -80px;
  animation: fall 3s ease-out infinite;
  transition: none;
  will-change: top;
}
#animation1 .bag1 {
  left: 124px;
  animation-delay: 0s;
}
#animation1 .bag2 {
  left: 148px;
  animation-delay: 2.2s;
}
#animation1 .bag3 {
  left: 178px;
  animation-delay: 1s;
}
#animation1 .bag4 {
  left: 211px;
  animation-delay: 0.6s;
}
#animation1 .bag5 {
  left: 260px;
  animation-delay: 1.8s;
}
#animation1 .bag6 {
  left: 328px;
  animation-delay: 1.1s;
}
#animation1 .bag7 {
  left: 359px;
  animation-delay: 3.3s;
}
#animation1 .bag8 {
  left: 370px;
  animation-delay: 1.6s;
}
#animation1 .bag9 {
  left: 437px;
  animation-delay: 2s;
}
#animation1 .bag10 {
  left: 463px;
  animation-delay: 0.4s;
}
#animation1 .bag11 {
  left: 482px;
  animation-delay: 2.5s;
}
@keyframes fall {
  0% {
    opacity: 1;
    top: -80px;
  }
  97% {
    opacity: 1;
    top: calc(100% + 80px);
  }
  98% {
    opacity: 0;
    top: calc(100% + 80px);
  }
  99% {
    opacity: 0;
    top: -80px;
  }
  100% {
    opacity: 1;
    top: -80px;
  }
}

/* ANIMATION 2 */
#animation2 {
  border-radius: 0 !important;
  overflow: visible !important;
}
#animation2 .cover {
  position: absolute;
  top: -110%;
  opacity: 0;
}
#animation2 .set img,
#animation2 .meal-holder {
  width: 360px;
  height: 360px;
  margin: 20px;
}
#animation2 .meal-holder img {
  margin: 0;
  width: 100% !important;
  height: 100% !important;
}
#animation2 .set {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 2400px;
  float: right;
  transition: none;
}
#animation2 .set > img {
  opacity: 0;
}
#animation2 .frame {
  left: -400%;
  right: -100%;
  top: -100%;
  bottom: -100%;
  width: 2400px;
  height: 2400px;
  transition: transform 1s ease-out;
  transform: scale(1);
  transform-origin: 75% 25%;
  will-change: transform, margin-top;
}
#animation2 .alternate-meal {
  display: none;
}
#animation2.set1 {
  overflow: hidden !important;
}
#animation2.set1 .frame {
  transform: scale(0.33);
}
#animation2.set1 .set > img {
  opacity: 1;
}
#animation2.set1 .meal-holder {
  display: none;
}
#animation2.set1 .alternate-meal {
  display: block;
}
#animation2.set2 .set {
  opacity: 0;
}
#animation2 .full-set {
  opacity: 0;
  transform: scale(1.25);
  transform-origin: 100% 0%;
  transition: transform 1s ease-out;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
#animation2 .full-set img {
  width: 100%;
}
#animation2.set2 .full-set {
  opacity: 1;
}
#animation2.set3 .full-set {
  transform: scale(0.6);
}
#animation2 .labels {
  position: absolute;
  top: 0;
  left: 0;
}
#animation2 .final-text {
  opacity: 0;
  position: absolute;
  left: -78px;
  color: var(--blue);
  font-size: 20px;
  white-space: nowrap;
}
#animation2 .group-a {
  top: 0;
}
#animation2 .group-b {
  top: 208px;
  margin-top: 4px;
}
#animation2.finish .final-text {
  opacity: 1;
}
#animation2.finish {
  overflow: visible !important;
}
@media (min-width: 480.02px) and (max-width: 520px) {
  #animation2 .final-text {
    left: calc(480px - 100vw);
    margin-left: -37px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  #animation2.set1 .frame {
    transform: scale(0.3);
  }
  #animation2 .labels {
    position: absolute;
    top: -24px;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #animation2 .labels .final-text {
    font-size: 16px;
    flex-grow: 1;
    position: static;
    margin-left: calc((100vw - 600vw * 0.16) / 2);
    padding-left: 10px;
  }
}
@media (max-width: 420px) {
  #animation2.finish {
    margin-top: -5px;
  }
}
@media (max-width: 400px) {
  #animation2 .frame {
    width: 540vw;
    height: 500vw;
  }
  #animation2 .set {
    width: 600vw;
  }
  #animation2 .set img,
  #animation2 .meal-holder {
    width: calc(100vw - 40px);
    height: calc(100vw - 40px);
  }
}

/* ANIMATION 3 */
#animation3 {
  border-radius: 0 !important;
}
#animation3 .screen {
  position: absolute;
  top: 55px;
  left: 37px;
  right: 37px;
  bottom: 134px;
  padding-top: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  overflow: hidden;
}
#animation3 .screen img {
  position: relative;
  transition: top .8s;
  transition-timing-function: cubic-bezier(.25,.1,.25,1.2);
  top: 300px;
}
#animation3 .screen.loaded img {
  top: 0;
}
#animation3 .screen img:nth-child(1) { transition-delay: .2s; }
#animation3 .screen img:nth-child(2) { transition-delay: .4s; }
#animation3 .screen img:nth-child(3) { transition-delay: .6s; }
#animation3 .screen img:nth-child(4) { transition-delay: .8s; }
#animation3 .screen img:nth-child(5) { transition-delay: 1s; }

/* ANIMATION 4 */
#animation4 {
  border-radius: 0 !important;
  overflow: visible !important;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  margin: -10px 0 0 -10px;
}
#animation4 .burrito {
  position: absolute;
  top: 7%;
  left: 0;
}
#animation4 .price {
  background-color: #F9B040;
  border-radius: 100%;
  width: 125px;
  height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: #fff;
  font-weight: bold;
  top: 4%;
  right: 16%;
}
#animation4 .price > * {
  background-color: #F9B040;
  border-radius: 100%;
}
#animation4 .price .danger {
  background-color: #FF3008;
}
#animation4 .item {
  right: -20px;
  bottom: -20px;
  width: 200px;
  height: 200px;
  font-size: 30px;
  color: #FF3008;
  font-weight: bold;
}
#animation4 .price > *,
#animation4 .item > * {
  opacity: 0;
  transition: opacity 1s ease-out;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#animation4 .price > .active,
#animation4 .item > .active {
  opacity: 1;
}
#animation4 .item1 {
  background-color: transparent;
}
#animation4 .item2 {
  background-color: #fff;
  border-radius: 100%;
}
#animation4 .item3 {
  background-color: #fff;
  border-radius: 100%;
  line-height: 1.2;
}

/* Section Reliable */
.section-reliable .inner {
  background: linear-gradient(124deg, #E7FFFD 7.68%, var(--purple-light) 103.52%);
  padding: 40px 50px 40px 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-xl);
}
.section-reliable h3 {
  color: var(--gray-900);
  font-size: 40px;
  margin-right: 30px;
  max-width: 455px;
  font-weight: 300;
}
.section-reliable .squares {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.section-reliable .square {
  width: 325px;
  height: 325px;
  color: #313339;
  position: relative;
}
.section-reliable .square .square-front,
.section-reliable .square .square-back {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 15px 30px;
  background: #fff;
}
.section-reliable .square + .square {
  margin-left: 50px;
}
.section-reliable .square-front h4,
.section-reliable .square-back span {
  background: linear-gradient(197deg, #6433F8 5.4%, #02B7A5 90.03%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-reliable .square-front p,
.section-reliable .square-back p {
  color: var(--gray-800);
}
.flip-card__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  transition: all 0.2s ease-out;
  transform-style: preserve-3d;
}
.flip-card.hover .flip-card__card {
  transform: rotateY(180deg);
}
.flip-card__front, .flip-card__back {
  grid-row-start: 1;
  grid-column-start: 1;
  backface-visibility: hidden;
}
.flip-card__front {
  transform: rotateY(0deg);
}
.flip-card__back {
  transform: rotateY(180deg);
  opacity: 0;
}
.flip-card.hover .flip-card__front {
  opacity: 0;
}
.flip-card.hover .flip-card__back {
  opacity: 1;
}
.section-reliable .square h4 {
  font-size: 80px;
  font-weight: bold;
}
.section-reliable .square p {
  font-size: 35px;
  font-weight: 300;
  line-height: 1.3;
}
.section-reliable .square span {
  font-size: 50px;
  font-weight: bold;
  line-height: 1.3;
}
@media (max-width: 1280px) {
  .section-reliable .inner {
    padding-left: 50px;
  }
  .section-reliable h3 {
    font-size: 50px;
  }
}
@media (min-width: 581px) and (max-width: 1170px), (max-width: 480px) {
  .section-reliable .square {
    width: 250px;
    height: 250px;
  }
  .section-reliable .square .square-front,
  .section-reliable .square .square-back {
    padding: 15px;
  }
  .section-reliable .square h4 {
    font-size: 60px;
  }
  .section-reliable .square p {
    font-size: 25px;
  }
  .section-reliable .square span {
    font-size: 40px;
  }
}
@media (max-width: 1000px) {
  .section-reliable .inner {
    flex-direction: column;
    background-size: cover;
    padding-left: 30px;
    padding-right: 30px;
  }
  .section-reliable h3 {
    margin-bottom: 50px;
    text-align: center;
    margin-right: 0;
  }
  .section-reliable .squares {
    justify-content: space-evenly;
    width: 100%;
  }
  .section-reliable .square + .square {
    margin-left: 0;
  }
}
@media (max-width: 630px) {
  .section-reliable .squares {
    justify-content: space-between;
  }
}
@media (max-width: 580px) {
  .section-reliable .inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-reliable h3 {
    font-size: 30px;
  }
  .section-reliable .squares {
    flex-direction: column;
    align-items: center;
  }
  .section-reliable .square + .square {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  #animation4 .item {
    right: calc(100px - 25%);
    bottom: calc(100px - 25%);
    width: 180px;
    height: 180px;
  }
}

/* Testimonials */
section.testimonials h2 {
  margin: 25px 0 50px 0;
  text-align: center;
}

section.testimonials .inner {
  position: relative;
  padding-bottom: 80px;
  overflow: hidden;
}

.testimonials-drag {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  cursor: grab;
  user-select: none;
  padding: 0 60px;
}

.testimonials-drag.dragging {
  cursor: grabbing;
}

.testimonials-drag.dragging .testimonial-card {
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .testimonials-drag {
    max-width: 100%;
    padding: 0 20px;
  }
}

.testimonials-track {
  display: flex;
  gap: 30px;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonials-track.dragging {
  transition: none;
}

@media (max-width: 991.98px) {
  .testimonials-track {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .testimonials-track {
    gap: 15px;
  }
}

.testimonial-card {
  height: 500px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .testimonial-card {
    width: 400px;
    max-width: 400px;
  }
}

@media (max-width: 991.98px) and (min-width: 576px) {
  .testimonial-card {
    width: 350px;
    max-width: 350px;
  }
}

@media (max-width: 767.98px) {
  .testimonial-card {
    width: 280px;
    max-width: 280px;
    padding: 25px;
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    width: 260px;
    max-width: 260px;
    padding: 20px;
  }
}

.testimonial-logo {
  text-align: center;
  margin-bottom: 25px;
  min-height: 60px;
}

.testimonial-logo img {
  max-width: 180px;
  max-height: 60px;
  object-fit: contain;
}

@media (max-width: 480px) {
  .testimonial-logo {
    margin-bottom: 20px;
    min-height: 50px;
  }

  .testimonial-logo img {
    max-width: 150px;
    max-height: 50px;
  }
}

.testimonial-content blockquote {
  flex: 1;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 20px 0;
  color: var(--gray-900);
  position: relative;
}

.testimonial-content blockquote p:first-child::before {
  content: "\201C";
}

.testimonial-content blockquote p:last-child::after {
  content: "\201D";
}

.testimonial-content blockquote p {
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-content blockquote p:last-child {
  margin-bottom: 0;
}

.testimonial-content blockquote strong {
  color: var(--gray-900);
  font-weight: 500;
}

@media (max-width: 1000px) {
  .testimonial-content blockquote p {
    font-size: 14px;
    line-height: 1.5;
  }
}

.testimonial-content cite {
  font-style: normal;
  font-size: 12px;
  color: var(--gray-900);
  font-weight: 300;
  margin-top: auto;
  text-transform: uppercase;
}

.testimonial-content cite strong {
  color: var(--gray-900);
  font-weight: 600;
}

/* Trusted by carousel */
section.trusted .inner {
  padding-top: 40px;
  padding-bottom: 20px;
}

section.trusted h2 {
  font-weight: 300;
  margin-bottom: 32px;
}

section.trusted h2:before {
  background: white;
}

.trusted-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.trusted-track {
  display: flex;
  gap: 80px;
  align-items: center;
  will-change: transform;
  user-select: none;
  height: 81px;
}

.trusted-track>li {
  flex: 0 0 auto;
  opacity: 0.9;
}

.trusted-track>li div {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .trusted-track {
    gap: 40px;
  }
}

/* WAITING FOR */
.waiting-for .centered .inner {
  margin-top: 50px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--gray-300, #DCE0E1);
}

.waiting-for .centered .inner h2 {
  text-transform: inherit;
  font-weight: 300;
}

@media (max-width: 767.98px) {
  .waiting-for {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Testimonials CTA */
.testimonials-cta .inner {
  padding-top: 0;
  padding-bottom: 60px;
}

/* DIFFERENCE */
.section-difference {
  overflow: hidden;
  position: relative;
}
.section-difference:before {
  position: absolute;
  right: 50%;
  top: 0;
  width: 50%;
  height: 100%;
}
.section-difference .col:first-child {
  background: var(--purple-light);
}
.section-difference .col:last-child {
  background: #FDE8E6;
}
@media (max-width: 767.98px) {
  .section-difference {
    overflow: hidden;
  }
}
.section-difference .row .col:first-child img {
  margin-right: -4px;
  max-width: calc(100% + 4px);
  width: calc(100% + 4px);
}
.section-difference .row .col:last-child img {
  width: 100%;
}
.section-difference .dot {
  position: absolute;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 100%;
  cursor: pointer;
}
.section-difference .dot:before {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background-color: transparent;
  content: '';
  display: block;
  border-radius: 100%;
  z-index: 1;
  animation: pulse-before 3s linear infinite;
  transform: scale(1);
}
.section-difference .dot:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #01FFD1;
  content: '';
  display: block;
  border-radius: 100%;
  z-index: 2;
  animation: pulse-after 3s linear infinite;
  transform: scale(1);
}
.section-difference .dot:hover:before {
  background-color: rgba(0, 255, 208, 0.29);
  transform: scale(1.5);
  animation: none;
}
.section-difference .dot:hover:after {
  transform: scale(1.5);
  animation: none;
}
@keyframes pulse-before {
  50% {
    background-color: rgba(0, 255, 208, 0.29);
    transform: scale(1.5);
  }
}
@keyframes pulse-after {
  50% {
    transform: scale(1.5);
  }
}
.section-difference .dot1 {
  top: 39%;
  left: 34%;
}
.section-difference .dot2 {
  top: 56%;
  right: 18%;
}
.section-difference .dot3 {
  top: 49%;
  left: 25%;
}
.section-difference .dot4 {
  top: 59%;
  right: 29%;
}
@media (max-width: 767.98px) {
  .section-difference .dot1 {
    top: 43%;
  }
  .section-difference .dot2 {
    top: 55%;
    right: 22%;
  }
}
.section-difference .tooltip .tooltip-inner {
  font-size: 12px;
  color: #717272;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
}
.section-difference .tooltip .arrow {
  display: none;
}
.section-difference .dot1 .tooltip {
  transform: translate3d(-78px, -140px, 0px) !important;
  width: 170px;
}
.section-difference .dot2 .tooltip {
  transform: translate3d(-82px, 30px, 0px) !important;
  width: 170px;
}
.section-difference .dot3 .tooltip {
  transform: translate3d(-80px, -100px, 0px) !important;
  width: 170px;
}
.section-difference .dot4 .tooltip {
  transform: translate3d(-80px, 30px, 0px) !important;
  width: 170px;
}

.section-difference .tooltip .tooltip-inner {
  background: #fff;
  border: 1px solid var(--green);
  border-radius: 8px;
  background-image: none;
  height: auto;
  padding: 12px 16px;
  position: relative;
}

.section-difference .tooltip .arrow { display: none !important; }

.section-difference .dot1 .tooltip .tooltip-inner::before,
.section-difference .dot3 .tooltip .tooltip-inner::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: var(--green) transparent transparent transparent;
}
.section-difference .dot1 .tooltip .tooltip-inner::after,
.section-difference .dot3 .tooltip .tooltip-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7px;
  border-style: solid;
  border-width: 7px 7px 0 7px;
  border-color: #fff transparent transparent transparent;
}

.section-difference .dot2 .tooltip .tooltip-inner::before,
.section-difference .dot4 .tooltip .tooltip-inner::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -8px;
  border-style: solid;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent var(--green) transparent;
}
.section-difference .dot2 .tooltip .tooltip-inner::after,
.section-difference .dot4 .tooltip .tooltip-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -7px;
  border-style: solid;
  border-width: 0 7px 7px 7px;
  border-color: transparent transparent #fff transparent;
}
