/* stylelint-disable scss/dollar-variable-empty-line-before */
/* Thematics colors (figma token color) */
/* Containers */
/* stylelint-disable scss/dollar-variable-empty-line-before */
/* stylelint-disable scss/dollar-variable-empty-line-before */
/* Deprecated media queries */
/* stylelint-disable scss/dollar-variable-empty-line-before */
@keyframes ci-spin-keyframes {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.cd-anim-spin {
  animation: ci-spin-keyframes 2s infinite linear;
}

:root .hidden {
  display: none !important;
}

:root .shadow-200 {
  box-shadow: 0 10px 16px 10px rgba(67, 68, 76, 0.0196078431);
}
:root .shadow-400 {
  box-shadow: 0 -20px 40px rgba(17, 36, 54, 0.04), 0 30px 50px rgba(17, 36, 54, 0.04);
}
:root .shadow-500 {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.15);
}
:root .shadow-600 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.15);
}
:root .shadow-700 {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05), 0 15px 25px rgba(0, 0, 0, 0.15);
}
:root .shadow-800 {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
:root .shadow-none {
  box-shadow: none;
}

/* Media queries */
/* Durations */
/* Sticky header heights */
/* Blog Breadcrumb heights */
.big-cards-with-text {
  contain: layout;
  padding-top: 32px;
  padding-bottom: 64px;
}
.big-cards-with-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  height: 100%;
  background-color: #f8f9ff;
  z-index: -1;
}
@supports (width: 100dvw) {
  .big-cards-with-text::before {
    width: 100dvw;
    margin-left: -50dvw;
  }
}
.big-cards-with-text .big-cards-with-text__cards {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 850px;
  margin: 0 auto;
}
.big-cards-with-text .big-cards-with-text__card-title em,
.big-cards-with-text .module-title-container em {
  font-style: normal;
  color: #171717;
}
.big-cards-with-text .big-cards-with-text__card {
  --card-padding: 48px;
  --card-gap: 32px;
  --card-border-radius: 20px;
  --border-color: transparent;
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(17, 36, 54, 0.12), 0 4px 12px rgba(17, 36, 54, 0.06);
}
@media only screen and (max-width: 991px) {
  .big-cards-with-text {
    padding-bottom: 32px;
  }
  .big-cards-with-text .big-cards-with-text__cards {
    gap: 16px;
  }
  .big-cards-with-text .big-cards-with-text__card {
    --card-padding: 24px;
  }
}
.big-cards-with-text a {
  text-decoration: underline;
}
