.btn {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.375;
  letter-spacing: 0.05em;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .btn {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.75;
  }
}

.btn-xs {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.5;
}

.btn-sm {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .btn-sm {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.btn-blue {
  --tw-bg-opacity: 1;
  background-color: rgba(25, 73, 217, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.btn-blue:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(80, 112, 215, var(--tw-bg-opacity));
}

.btn-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(25, 73, 217, var(--tw-text-opacity));
}

.btn-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(235, 236, 242, var(--tw-bg-opacity));
}

.btn-disabled {
  opacity: 0.25;
}

.btn-rounded-left {
  border-radius: 0;
  border-top-left-radius: 0.625rem;
  border-bottom-left-radius: 0.625rem;
}

.btn-rounded-right {
  border-radius: 0;
  border-top-right-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}

.list-disc-style ul {
  list-style-type: disc;
}

.input-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 25px;
  background: #FFFFFF;
  outline: none;
  transition: opacity .2s;
}

.input-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 10.5px solid;
  border-color: #FFFFFF;
  background: #5C87FF;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.input-range-slider::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 12.5px solid;
  border-color: #FFFFFF;
  background: #5C87FF;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.dot-flashing {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: black;
  color: black;
  animation: dotFlashing 1s infinite linear alternate;
  animation-delay: .5s;
}

.dot-flashing::before, .dot-flashing::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-flashing::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: black;
  color: black;
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 0s;
}

.dot-flashing::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: black;
  color: black;
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 1s;
}

@keyframes dotFlashing {
  0% {
    background-color: black;
  }

  50%,
  100% {
    background-color: #ebe6ff;
  }
}

.overflow-x-scroll-invisible-scrollbar {
  -ms-overflow-style: none;
  /* for Internet Explorer, Edge */
  scrollbar-width: none;
  /* for Firefox */
  overflow-x: scroll;
}

.overflow-x-scroll-invisible-scrollbar::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.overflow-x-visible {
  overflow-x: visible;
}

.the-markdown-textarea {
  position: relative;
}

.the-markdown-textarea h1 {
  font-size: 1.125rem;
  line-height: 1.75;
}

.the-markdown-textarea h2 {
  font-size: 1rem;
  line-height: 1.75;
}

.the-markdown-textarea h3 {
  font-size: 0.875rem;
  line-height: 1.5;
}

.the-markdown-textarea h4 {
  font-size: 0.75rem;
  line-height: 1.5;
}

.the-markdown-textarea h5 {
  font-size: 0.75rem;
  line-height: 1.5;
}

.the-markdown-textarea p {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.5;
}

.the-markdown-textarea p:first-child {
  margin-top: 0px;
}

.the-markdown-textarea p:last-child {
  margin-bottom: 1.5rem;
}

.the-markdown-textarea h1, .the-markdown-textarea h2, .the-markdown-textarea h3, .the-markdown-textarea h4, .the-markdown-textarea h5, .the-markdown-textarea h6 {
  --tw-text-opacity: 1;
  color: rgba(36, 37, 42, var(--tw-text-opacity));
  font-weight: 700;
  margin: .5em 0;
}

.the-markdown-textarea a {
  --tw-text-opacity: 1;
  color: rgba(25, 73, 217, var(--tw-text-opacity));
}

.the-markdown-textarea a:hover {
  --tw-text-opacity: 1;
  color: rgba(80, 112, 215, var(--tw-text-opacity));
}

.the-markdown-textarea ul {
  margin-left: 1.5rem;
  list-style-type: disc;
}

.the-markdown-textarea ol {
  margin-left: 0.5rem;
  counter-reset: ordered-list;
}

.the-markdown-textarea ol li {
  padding-left: 1rem;
  position: relative;
}

.the-markdown-textarea ol li::before {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.5;
  counter-increment: ordered-list;
  content: counter(ordered-list) ".";
  position: absolute;
  left: 0;
}

.the-markdown-textarea li {
  font-size: 0.75rem;
  line-height: 1.5;
}

.the-markdown-textarea hr {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.the-markdown-textarea::after {
  position: absolute;
  border-radius: 0.625rem;
  top: 0px;
  content: "";
  left: 5px;
  height: 99%;
  width: 86%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 76%, white 100%);
  pointer-events: none;
}

.turbolinks-progress-bar {
  height: 1px;
  --tw-bg-opacity: 1;
  background-color: rgba(25, 73, 217, var(--tw-bg-opacity));
}

.vertical-truncate-4-lines {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 1400px) {
  .smile-bg-curve-right {
    background-image: url("../images/shared/graphic-elements/smile-background.svg");
    background-position: calc(100vw - 320px) -280px;
    background-size: 1400px;
    background-repeat: no-repeat;
  }
}

@media (min-width: 1400px) {
  .smile-bg-curve-left-and-right, .smile-bg-curve-left-and-right-dark {
    background-image: url("../images/shared/graphic-elements/smile-background.svg"), url("../images/shared/graphic-elements/smile-background.svg");
    background-position: calc(100vw - 200px) -790px, calc(100vw - 2630px) 0px;
    background-repeat: no-repeat;
  }
}

@media (min-width: 1680px) {
  .smile-bg-curve-left-and-right, .smile-bg-curve-left-and-right-dark {
    background-position: calc(100vw - 320px) -800px, calc(100vw - 2980px) 100px;
  }
}

@media (min-width: 1400px) {
  .smile-bg-curve-left-and-right-dark {
    background-image: url("../images/shared/graphic-elements/smile-background-dark.svg"), url("../images/shared/graphic-elements/smile-background-dark.svg");
  }
}

@media (min-width: 1400px) {
  .smile-bg-curve-left-and-right-inversed {
    background-image: url("../images/shared/graphic-elements/smile-background-inversed.svg"), url("../images/shared/graphic-elements/smile-background-inversed.svg");
    background-position: calc(100vw - 780px) -610px, calc(100vw - 2650px) -470px;
    background-repeat: no-repeat;
  }
}

@media (min-width: 1680px) {
  .smile-bg-curve-left-and-right-inversed {
    background-position: calc(100vw - 850px) -570px, calc(100vw - 3020px) -470px;
  }
}

.smile-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .smile-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .smile-container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1400px) {
  .smile-container {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.checkmark-yago:checked:after {
  content: "\2713";
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.smile-error-page-status-code {
  font-size: 8.5rem;
}

@media (min-width: 640px) {
  .smile-error-page-status-code {
    font-size: 17rem;
  }
}

@media (min-width: 1400px) {
  .smile-error-page-status-code {
    font-size: 19rem;
  }
}

@media (min-width: 1680px) {
  .smile-error-page-status-code {
    font-size: 21rem;
  }
}

.btn-smile {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 500;
  line-height: 1.375;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-smile-indigo {
  --tw-bg-opacity: 1;
  background-color: rgba(92, 135, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.btn-smile-indigo:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(40, 95, 246, var(--tw-bg-opacity));
}

.btn-smile-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(2, 80, 75, var(--tw-text-opacity));
}

.btn-smile-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(92, 135, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.btn-smile-emerald-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(240, 246, 246, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(2, 80, 75, var(--tw-text-opacity));
}

.btn-smile-emerald-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(92, 135, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.btn-smile-emerald-200 {
  --tw-bg-opacity: 1;
  background-color: rgba(226, 238, 238, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(2, 80, 75, var(--tw-text-opacity));
}

.btn-smile-emerald-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(92, 135, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.btn-smile-orange {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 173, 61, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(2, 80, 75, var(--tw-text-opacity));
}

.btn-smile-orange:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 139, 61, var(--tw-bg-opacity));
}

.btn-smile-transparent {
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgba(92, 135, 255, var(--tw-text-opacity));
}

.btn-smile-transparent:hover {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(92, 135, 255, var(--tw-bg-opacity));
  --tw-bg-opacity: 1;
}

.btn-smile-sm {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.75;
}

.btn-smile-md {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.75;
}

.smile-hoverable-item:hover .btn-smile-indigo {
  --tw-bg-opacity: 1;
  background-color: rgba(40, 95, 246, var(--tw-bg-opacity));
}

.smile-hoverable-item:hover .btn-white {
  --tw-bg-opacity: 1;
  background-color: rgba(92, 135, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.smile-hoverable-item:hover .btn-smile-emerald-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(92, 135, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.smile-hoverable-item:hover .btn-smile-emerald-200 {
  --tw-bg-opacity: 1;
  background-color: rgba(92, 135, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.smile-hoverable-item:hover .btn-smile-orange {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 139, 61, var(--tw-bg-opacity));
}

html:not([data-static-scroll='0']) .smile-cloaked-navigation-scroll {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.smile-heading-1-bold, .smile-heading-1-semibold {
  font-family: Gellix, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 2.375rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .smile-heading-1-bold, .smile-heading-1-semibold {
    font-size: 3rem;
    line-height: 1.2;
  }
}

@media (min-width: 1024px) {
  .smile-heading-1-bold, .smile-heading-1-semibold {
    font-size: 5.5rem;
    line-height: 1;
  }
}

.smile-heading-1-bold {
  font-weight: 700;
}

.smile-heading-1-semibold {
  font-weight: 600;
}

@media (min-width: 640px) {
  .smile-heading-home {
    font-size: 4.875rem !important;
    line-height: 1.2;
  }
}

@media (min-width: 1024px) {
  .smile-heading-home {
    font-size: 4.875rem !important;
    line-height: 1;
  }
}



.smile-heading-2-bold, .smile-heading-2-semibold {
  font-family: Gellix, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 2.375rem;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .smile-heading-2-bold, .smile-heading-2-semibold {
    font-size: 3.5rem;
    line-height: 1.0667;
  }
}

.smile-heading-2-bold {
  font-weight: 700;
}

.smile-heading-2-semibold {
  font-weight: 600;
}

.smile-heading-3-bold, .smile-heading-3-semibold {
  font-family: Gellix, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.5rem;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .smile-heading-3-bold, .smile-heading-3-semibold {
    font-size: 2rem;
    line-height: 1.25;
  }
}

.smile-heading-3-bold {
  font-weight: 700;
}

.smile-heading-3-semibold {
  font-weight: 600;
}

.smile-heading-4-semibold, .smile-heading-4 {
  font-family: Gellix, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.25rem;
  line-height: 1.3;
  line-height: 1.575;
}

@media (min-width: 1024px) {
  .smile-heading-4-semibold, .smile-heading-4 {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

.smile-heading-4-semibold {
  font-weight: 600;
}

.seo-content h1, .seo-content h2, .seo-content h3, .seo-content h4, .seo-content h5, .seo-content h6 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  font-family: Gellix, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 600;
}

@media (min-width: 1024px) {
  .seo-content h1, .seo-content h2, .seo-content h3, .seo-content h4, .seo-content h5, .seo-content h6 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
}

.seo-content > :first-child {
  margin-top: 0rem;
}

.seo-content h2 {
  margin-top: 2.5rem;
  font-size: 2rem;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .seo-content h2 {
    font-size: 2rem;
    line-height: 1.25;
  }
}

.seo-content h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

@media (min-width: 1024px) {
  .seo-content h3 {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

.seo-content h4 {
  font-size: 1.125rem;
  line-height: 1.75;
}

@media (min-width: 1024px) {
  .seo-content h4 {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}

.seo-content h5 {
  font-size: 1rem;
  line-height: 1.75;
}

.seo-content p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.seo-content a {
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(40, 95, 246, var(--tw-text-opacity));
}

.seo-content a:hover {
  --tw-text-opacity: 1;
  color: rgba(2, 80, 75, var(--tw-text-opacity));
}

.seo-content ul {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  list-style-type: disc;
}

@media (min-width: 1024px) {
  .seo-content ul {
    margin-left: 3rem;
  }
}

.seo-content li {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.seo-content li:first-child {
  margin-top: 0px;
}

.seo-content ol {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  counter-reset: ordered-list;
}

@media (min-width: 1024px) {
  .seo-content ol {
    margin-left: 1.5rem;
  }
}

.seo-content ol li {
  position: relative;
  padding-left: 2.5rem;
}

.seo-content ol li::before {
  position: absolute;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(88, 209, 189, var(--tw-bg-opacity));
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5;
  counter-increment: ordered-list;
  content: counter(ordered-list);
  line-height: 1.75;
  left: 0;
}

.seo-content .button, .seo-content a.button {
  margin-top: 0.5rem;
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 500;
  line-height: 1.375;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --tw-bg-opacity: 1;
  background-color: rgba(92, 135, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.seo-content .button:hover, .seo-content a.button:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(40, 95, 246, var(--tw-bg-opacity));
}

.seo-content .button, .seo-content a.button {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.75;
}

.smile-hoverable-item:hover .seo-content .button, .smile-hoverable-item:hover .seo-content a.button {
  --tw-bg-opacity: 1;
  background-color: rgba(40, 95, 246, var(--tw-bg-opacity));
}

@media (min-width: 1400px) {
  .seo-content .button, .seo-content a.button {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.75;
  }
}

.seo-content .button:hover, .seo-content a.button:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(40, 95, 246, var(--tw-bg-opacity));
}

.seo-content hr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.seo-content img {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  border-radius: 1rem;
}

.seo-content iframe {
  margin: auto;
  max-width: 100%;
}

.seo-content code {
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgba(247, 247, 247, var(--tw-bg-opacity));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
  --tw-text-opacity: 1;
  color: rgba(213, 63, 140, var(--tw-text-opacity));
}

.seo-content .content-table {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  max-height: 75vh;
  overflow: auto;
  border-radius: 1rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(240, 246, 246, var(--tw-border-opacity));
}

.seo-content table {
  width: 100%;
}

.seo-content table thead {
  border-radius: 1rem;
}

.seo-content table thead th {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  --tw-bg-opacity: 1;
  background-color: rgba(2, 80, 75, var(--tw-bg-opacity));
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.seo-content table tbody td {
  border-bottom-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(240, 246, 246, var(--tw-border-opacity));
  padding: 1.5rem;
}

.seo-content .c-box {
  position: relative;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  min-height: 6rem;
  border-radius: 1rem;
  --tw-bg-opacity: 1;
  background-color: rgba(226, 238, 238, var(--tw-bg-opacity));
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  --tw-text-opacity: 1;
  color: rgba(2, 80, 75, var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .seo-content .c-box {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}

.seo-content .c-box--idea {
  --tw-bg-opacity: 1;
  background-color: rgba(88, 209, 189, var(--tw-bg-opacity));
  padding-left: 4rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  --tw-shadow: 0px 12px 24px -4px rgba(88, 209, 189, 0.504832);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

@media (min-width: 768px) {
  .seo-content .c-box--idea {
    padding-left: 5rem;
  }
}

.seo-content .c-box--idea:before {
  position: absolute;
  margin-top: 0.25rem;
  margin-left: -0.25rem;
  display: block;
  height: 2rem;
  width: 2rem;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-translate-x: -2.5rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  content: '';
  background-image: url("../icons/idea.svg");
}

@media (min-width: 768px) {
  .seo-content .c-box--idea:before {
    --tw-translate-x: -3rem;
  }
}

.seo-content .c-box--quote {
  --tw-bg-opacity: 1;
  background-color: rgba(92, 135, 255, var(--tw-bg-opacity));
  padding-left: 4rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  --tw-shadow: 0px 12px 24px -4px rgba(92, 135, 255, 0.500625);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

@media (min-width: 768px) {
  .seo-content .c-box--quote {
    padding-left: 5rem;
  }
}

.seo-content .c-box--quote:before {
  position: absolute;
  margin-top: 0.25rem;
  margin-left: -0.25rem;
  display: block;
  height: 2rem;
  width: 2rem;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-translate-x: -2.5rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  content: '';
  background-image: url("../icons/quote.svg");
}

@media (min-width: 768px) {
  .seo-content .c-box--quote:before {
    --tw-translate-x: -3rem;
  }
}

.seo-content .c-box--alert {
  --tw-bg-opacity: 1;
  background-color: rgba(250, 112, 182, var(--tw-bg-opacity));
  padding-left: 4rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  --tw-shadow: 0px 12px 24px -4px rgba(250, 112, 182, 0.5);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

@media (min-width: 768px) {
  .seo-content .c-box--alert {
    padding-left: 5rem;
  }
}

.seo-content .c-box--alert:before {
  position: absolute;
  margin-top: 0.25rem;
  margin-left: -0.25rem;
  display: block;
  height: 2rem;
  width: 2rem;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-translate-x: -2.5rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  content: '';
  background-image: url("../icons/warn.svg");
}

@media (min-width: 768px) {
  .seo-content .c-box--alert:before {
    --tw-translate-x: -3rem;
  }
}

.seo-content .c-box a {
  color: currentColor;
  text-decoration: underline;
}

.seo-content .c-box p {
  margin-top: 0px;
  margin-bottom: 0px;
}

.seo-content .samples-grid {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 2.5rem;
  border-radius: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgba(240, 246, 246, var(--tw-bg-opacity));
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.seo-content .color-sample {
  margin-left: auto;
  height: 4rem;
  width: 4rem;
  border-radius: 0.625rem;
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.seo-content .background-sample {
  margin-top: -25rem;
  display: flex;
  height: 37.5rem;
  width: 100%;
  transform-origin: bottom left;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-scale-y: .25;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
}

@media (min-width: 1400px) {
  .seo-content .background-sample {
    --tw-scale-x: .25;
    border-radius: 2rem;
    min-width: 1425px;
  }
}

@media (min-width: 1680px) {
  .seo-content .background-sample {
    min-width: 1905px;
  }
}

.seo-content .background-sample p {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-scale-x: 3;
  --tw-scale-y: 3;
}

.seo-content .icon-samples div {
  margin-left: auto;
  height: 4rem;
  width: 4rem;
}

.seo-content .icon-samples .easy::before {
  content: url("../images/shared/graphic-elements/easy.svg");
}

.seo-content .icon-samples .easy-dark::before {
  content: url("../images/shared/graphic-elements/easy-dark.svg");
}

.seo-content .icon-samples .phone::before {
  content: url("../images/shared/graphic-elements/phone.svg");
}

.seo-content .icon-samples .phone-dark::before {
  content: url("../images/shared/graphic-elements/phone-dark.svg");
}

.seo-content .icon-samples .simple::before {
  content: url("../images/shared/graphic-elements/simple.svg");
}

.seo-content .icon-samples .simple-dark::before {
  content: url("../images/shared/graphic-elements/simple-dark.svg");
}

.seo-content .icon-samples .warning-touch::before {
  content: url("../images/shared/graphic-elements/warning-touch.svg");
}

.seo-content .icon-samples .warning-touch-dark::before {
  content: url("../images/shared/graphic-elements/warning-touch-dark.svg");
}

.seo-content .icon-samples .click-circle::before {
  content: url("../images/shared/graphic-elements/click-circle.svg");
}

.seo-content .icon-samples .clock::before {
  content: url("../images/shared/graphic-elements/clock.svg");
}

.seo-content .icon-samples .contact::before {
  content: url("../images/shared/graphic-elements/contact.svg");
}

.seo-content .icon-samples .coverage::before {
  content: url("../images/shared/graphic-elements/coverage.svg");
}

.seo-content .icon-samples .damage-protection::before {
  content: url("../images/shared/graphic-elements/damage-protection.svg");
}

.seo-content .icon-samples .discount-percentage::before {
  content: url("../images/shared/graphic-elements/discount-percentage.svg");
}

.seo-content .icon-samples .discussion-bubbles::before {
  content: url("../images/shared/graphic-elements/discussion-bubbles.svg");
}

.seo-content .icon-samples .documents::before {
  content: url("../images/shared/graphic-elements/documents.svg");
}

.seo-content .icon-samples .earth::before {
  content: url("../images/shared/graphic-elements/earth.svg");
}

.seo-content .icon-samples .hand-okay::before {
  content: url("../images/shared/graphic-elements/hand-okay.svg");
}

.seo-content .icon-samples .hand-shaking::before {
  content: url("../images/shared/graphic-elements/hand-shaking.svg");
}

.seo-content .icon-samples .money-bag::before {
  content: url("../images/shared/graphic-elements/money-bag.svg");
}

.seo-content .icon-samples .smile-click::before {
  content: url("../images/shared/graphic-elements/smile-click.svg");
}

.seo-content .icon-samples .smiling-face::before {
  content: url("../images/shared/graphic-elements/smiling-face.svg");
}

.seo-content .icon-samples .suitcase::before {
  content: url("../images/shared/graphic-elements/suitcase.svg");
}

.seo-content .icon-samples .thumb-up::before {
  content: url("../images/shared/graphic-elements/thumb-up.svg");
}

.carousel-text-highlight {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  display: block;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(2, 80, 75, var(--tw-text-opacity));
  --tw-shadow: 0 5px 60px 0 rgba(14, 68, 26, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (min-width: 1024px) {
  .carousel-text-highlight {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
  }
}

.comparator-text-highlight {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(2, 80, 75, var(--tw-text-opacity));
}

.contact-block {
  text-align: center;
  font-family: Gellix, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 600;
}

.contact-block a {
  margin-top: 1.5rem;
  display: inline-block;
  border-radius: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.25;
  --tw-text-opacity: 1;
  color: rgba(2, 80, 75, var(--tw-text-opacity));
}

.contact-block a span {
  --tw-text-opacity: 1;
  color: rgba(92, 135, 255, var(--tw-text-opacity));
}

.feature-section-4-cards-with-smartphone-frame {
  background: linear-gradient(180deg, #F1F9F9 0%, #E2EEEE 100%);
  box-shadow: 0px 24px 48px -4px rgba(2, 80, 75, 0.303358), inset 0px 1px 2px #FFFFFF, inset 0px -1px 2px rgba(2, 80, 75, 0.302075);
}

@media (min-width: 1024px) {
  .feature-section-4-cards-with-smartphone-background {
    background-image: url("../images/shared/graphic-elements/smile-background-dark.svg");
    background-position: -450px 30px;
    background-size: 750px auto;
    background-repeat: no-repeat;
  }
}

.image-full-with-card-badge:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  margin-left: -0.5rem;
  display: inline-block;
  height: 0px;
  width: 0px;
  border-width: 8px;
  border-bottom-width: 0px;
  border-style: solid;
  border-color: transparent;
  border-top-color: #fff;
}

.offset-anchor {
  visibility: hidden;
  position: relative;
  display: block;
  top: -100px;
}

@media (min-width: 640px) {
}

@media (min-width: 768px) {
}

@media (min-width: 1024px) {
  .lg\:overflow-x-visible {
    overflow-x: visible;
  }
}

@media (min-width: 1400px) {
}

@media (min-width: 1680px) {
}
