/*
Theme Name: Southern Cyber
Author: Volodymyr B.
Description: The SouthernCyber Theme is a special WordPress theme for southerncyber.com
Version: 1.1.3
Text Domain: southerncyber
*/
/**/
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
form,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

ul, ol {
  list-style: none;
}

.site {
  position: relative;
}

.inner-container,
.wp-block-group__inner-container {
  --container-size: 95rem;
  width: 100%;
  max-width: min(100vw - 2.5rem, var(--container-size));
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 64rem) {
  .inner-container,
  .wp-block-group__inner-container {
    max-width: min(100vw - 4 * 2.5rem, var(--container-size));
  }
}

.inner-container--lg {
  --container-size: 107.5rem;
}

.inner-container--sm {
  --container-size: 47.5rem;
}

.grid {
  display: grid;
  max-width: 100%;
}

@media (min-width: 64rem) {
  .grid--2-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .grid--3-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.column {
  min-width: 50px;
  order: 1;
}

@media (max-width: 63rem) {
  .order--mobile-first {
    order: 0;
  }
}
@media (min-width: 64rem) {
  .order--tablet-first {
    order: 0;
  }
}
.padding-top {
  padding-top: clamp(3.75rem, 6.32vw, 7.5rem);
}

.padding-bottom {
  padding-bottom: clamp(3.75rem, 6.32vw, 7.5rem);
}

.padding-top-lg {
  padding-top: clamp(6.25rem, 8.42vw, 10rem);
}

.padding-bottom-lg {
  padding-bottom: clamp(6.25rem, 8.42vw, 10rem);
}

.margin-bottom-20 {
  margin-bottom: 1.25rem;
}

.margin-bottom-30 {
  margin-bottom: 1.88rem;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 1.05vw, 1.25rem);
  font-weight: 400;
  color: #160631;
  line-height: 1.7;
  background-color: white;
}

blockquote {
  font-size: inherit;
  font-weight: 400;
}

figcaption,
caption,
cite {
  display: block;
  margin-top: 1em;
  text-align: inherit;
  font-weight: 400;
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
  font-family: inherit;
  font-weight: 600;
  line-height: 1.18;
}

h1,
.heading--1 {
  font-size: clamp(3.13rem, 3.79vw, 4.5rem);
  line-height: 1.02;
}

h2,
.heading--2 {
  font-size: clamp(2.5rem, 3.16vw, 3.75rem);
}

h3,
.heading--3 {
  font-size: clamp(1.75rem, 2.11vw, 2.5rem);
}

h4,
.heading--4 {
  font-size: clamp(1.19rem, 1.42vw, 1.69rem);
}

h5,
.heading--5 {
  font-size: clamp(1.13rem, 1.26vw, 1.5rem);
}

h6 {
  font-size: 1rem;
}

.link-cover {
  display: block;
  position: absolute;
  inset: 0;
}

a {
  color: currentColor;
  text-decoration: none;
}

img,
video {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

embed,
iframe,
object,
audio {
  width: 100%;
  max-width: 100%;
  border: 0;
}

img {
  vertical-align: bottom;
}

iframe {
  display: block;
}

.media-cover {
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.media-cover img,
.media-cover video {
  object-position: 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

:root {
  --svg-icon-size: 1.5rem;
}

.svg-icon {
  display: inline-block;
  width: var(--svg-icon-size);
  height: var(--svg-icon-size);
  vertical-align: middle;
  fill: currentColor;
}

table {
  width: 100%;
  max-width: 100%;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0.5rem 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  word-break: normal;
}

th {
  text-align: inherit;
}

hr {
  width: clamp(5rem, 35%, 20rem);
  margin: 2rem auto;
  background: none;
  border: 0;
  border-style: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.input-text {
  display: block;
  width: 100%;
  height: 3rem;
  padding: 0.63rem 1.25rem;
  color: #160631;
  font-size: 1.13rem;
  font-weight: 400;
  font-family: inherit;
  line-height: 1.3;
  background: rgba(89, 83, 122, 0.2);
  border: 0;
  border-radius: 0.63rem;
}
.input-text:focus {
  outline: 0;
}
.input-text:focus::placeholder {
  opacity: 0.7;
}
.input-text:focus::-webkit-input-placeholder {
  opacity: 0.7;
}
@media (min-width: 80rem) {
  .input-text {
    height: 4rem;
    padding: 1.13rem 2.13rem;
  }
}

.input-text--white {
  background: #fff;
  box-shadow: 0 0 0 1px #EDEAF6;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.input-text--white:focus {
  box-shadow: 0 4px 12px 0 rgba(35, 24, 67, 0.2);
}

textarea.input-text {
  height: auto;
  resize: none;
}

select.input-text {
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='%23746690' d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z'/%3E%3C/svg%3E");
  background-position: calc(100% - 0.68vw) 50%;
  background-repeat: no-repeat;
}

::placeholder {
  color: #746690;
  opacity: 1;
}

::-webkit-input-placeholder {
  color: #746690;
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  height: clamp(2.5rem, 2.53vw, 3rem);
  padding: 0 clamp(2.5rem, 2.53vw, 3rem);
  font-size: clamp(1rem, 0.95vw, 1.13rem);
  font-weight: 600;
  line-height: 1;
  text-overflow: clip;
  text-shadow: none;
  letter-spacing: 0.06em;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  white-space: nowrap;
  text-decoration: none;
  background: none;
  box-shadow: none;
  border: 0;
  border-radius: 2.22em;
}
.button:hover, .button:focus, .button:active {
  text-decoration: none;
}
.button.disabled, .button[disabled], .button[aria-disabled=true] {
  opacity: 0.85;
  pointer-events: none;
}
.button:focus-visible {
  outline: 1px dashed rgba(22, 6, 49, 0.4);
  outline-offset: 2px;
}
.button span, .button svg {
  pointer-events: none;
}

.button--outline {
  color: #627ee3;
  border: 2px solid currentColor;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.button--outline:hover {
  color: #fff;
  border-color: #627ee3;
  background-color: #627ee3;
}

.button--outline-white {
  position: relative;
  color: #fff;
}
.button--outline-white:hover {
  color: #f22690;
  border-color: #fff;
  background-color: #fff;
}

.button--dark {
  color: #fff;
  background-color: #231843;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.button--dark:hover {
  background-color: #f22690;
}

.button--lg {
  height: clamp(3.13rem, 3.05vw, 3.63rem);
  padding: 0 clamp(2.75rem, 2.74vw, 3.25rem);
  font-size: clamp(1.06rem, 1.05vw, 1.25rem);
  font-weight: 500;
}

.button--icon {
  width: 2.88rem;
  height: 2.88rem;
  padding: 0;
  border-radius: 50%;
}

input[type=submit] {
  -webkit-appearance: none;
}

.entry--404 .text-404 {
  margin-top: 1.25rem;
  font-size: max(5.63rem, 6.84vw);
  line-height: 1;
  opacity: 0.4;
}

summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}
summary::-webkit-details-marker {
  display: none;
}
summary[disabled] {
  pointer-events: none;
}

.modal__toggle::before {
  content: "";
  display: block;
  position: fixed;
  z-index: 2;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

details[open].active .modal__toggle::before {
  opacity: 1;
}

.modal__content {
  position: absolute;
  z-index: 4;
}

.header-modal__toggle {
  --svg-icon-size: 26px;
  color: currentColor;
}
.header-modal__toggle .svg-icon {
  position: relative;
  z-index: 4;
}

details:not([open]) .header-modal__toggle .svg-icon:nth-child(2) {
  display: none;
}

details[open] .header-modal__toggle .svg-icon:nth-child(1) {
  display: none;
}

.header-modal__content {
  right: 0;
  top: 100%;
  width: 15.63rem;
  padding: 1.88rem;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  overflow-x: hidden;
  background: #231843;
  border-radius: 1rem;
  box-shadow: 0 0.9em 2em rgba(22, 6, 49, 0.5);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-modal__content .menu + .menu {
  margin-top: 0.94rem;
}

details[open] > .header-modal__content {
  visibility: visible;
}

details[open].active .header-modal__content {
  transform: translateY(0);
  opacity: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.header {
  padding-top: clamp(1.25rem, 2.63vw, 3.13rem);
  padding-bottom: clamp(1.25rem, 2.63vw, 3.13rem);
  color: #fff;
  z-index: 9;
}

.header--absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.header--static {
  position: relative;
}
.header--static::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  pointer-events: none;
  background: linear-gradient(180deg, #313155 0%, rgba(49, 49, 85, 0) 100%);
}

.header__inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media (min-width: 64rem) {
  .header__phones,
  .header__nav {
    flex-grow: 1;
  }
  .header__nav {
    display: flex;
    justify-content: flex-end;
  }
}
.site-footer {
  position: relative;
  padding-top: clamp(3.75rem, 4.74vw, 5.63rem);
  padding-bottom: clamp(2.5rem, 3.16vw, 3.75rem);
}

.site-footer__inner-container {
  display: flex;
  flex-direction: column;
  gap: 1.88rem;
  align-items: center;
}
@media (min-width: 64rem) {
  .site-footer__inner-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.menu a {
  -webkit-user-select: none;
          user-select: none;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.15;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.header {
  font-size: clamp(1.25rem, 1.21vw, 1.44rem);
}
.header a:hover {
  color: #ef4190;
}

.primary-menu a,
.footer-menu a {
  display: inline-block;
  padding: 0.63rem 0;
  letter-spacing: 0.04em;
}

.primary-menu--desktop {
  display: flex;
}
.primary-menu--desktop > .menu-item {
  margin-left: clamp(0.94rem, 1.58vw, 1.88rem);
}

.sub-menu a {
  padding: 0.63rem 0;
  font-size: 0.8em;
}
@media (min-width: 64rem) {
  .sub-menu {
    position: absolute;
    top: 100%;
    left: calc(50% - 110px);
    padding: 1.25rem 2.13rem;
    width: 220px;
    text-align: left;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    background-color: #231843;
    border-radius: 1rem;
    box-shadow: 0 0.9em 2em rgba(22, 6, 49, 0.5);
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

.site-footer .sub-menu {
  display: none;
}
@media (min-width: 64rem) {
  .site-footer .sub-menu {
    display: block;
    top: auto;
    bottom: 100%;
    left: calc(50% - 100px);
    width: 200px;
    transform: translateY(-16px);
    pointer-events: none;
    background-color: #fff;
    box-shadow: 0 0.9em 2em rgba(22, 6, 49, 0.1);
  }
}

.show-sub-menu .sub-menu {
  display: block;
}

.menu-item-has-children {
  position: relative;
}
@media (min-width: 64rem) {
  .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.primary-menu--mobile a {
  display: block;
}
.primary-menu--mobile .sub-menu {
  border-left: 1px solid #3f3266;
}
.primary-menu--mobile .sub-menu a {
  padding-top: 0.63rem;
  padding-bottom: 0.63rem;
  padding-left: 0.94rem;
}

.footer-menu {
  display: flex;
  font-size: clamp(1rem, 1.05vw, 1.25rem);
}
@media (min-width: 64rem) {
  .footer-menu > .menu-item {
    margin-left: clamp(2.5rem, 3.16vw, 3.75rem);
  }
}
.footer-menu a {
  color: #59537a;
}
.footer-menu a:hover {
  color: #231843;
}
@media (max-width: 63rem) {
  .footer-menu {
    flex-direction: column;
    align-items: center;
  }
  .footer-menu .menu-item:not(:first-child) {
    margin-top: 0.65rem;
  }
}

.phones-menu a,
.contact-info__item {
  display: flex;
  --svg-icon-size: 1.05em;
}
.phones-menu a .svg-icon,
.contact-info__item .svg-icon {
  margin-right: 0.3em;
  flex-shrink: 0;
}

.phones-menu a {
  align-items: center;
}

.custom-logo-link {
  -webkit-user-select: none;
          user-select: none;
}

.custom-logo {
  max-width: clamp(12.5rem, 21.05vw, 25rem);
}

.animate-text,
.animate-text__letter {
  display: inline-block;
}

.animate-text__word {
  display: inline-flex;
  position: absolute;
  opacity: 0;
  -webkit-user-select: none;
          user-select: none;
}

.animate-text__letter {
  position: relative;
  transform: translateZ(0.25em);
  transform-origin: 50% 50% 0.25em;
}
.animate-text__letter.animate-in {
  transform: rotateX(0deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-text__letter.animate-out {
  transform: rotateX(90deg);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-text__letter.animate-behind {
  transform: rotateX(-90deg);
}

.animate-text__inline-fix {
  visibility: hidden;
  opacity: 0;
}

.accordion__wrapper {
  display: block;
}
.accordion__wrapper:not(:first-child) {
  border-top: 2px solid #dee1ee;
}

.accordion__toggle {
  display: flex;
  align-items: center;
  padding-top: clamp(0.94rem, 1.47vw, 1.75rem);
  margin-bottom: clamp(0.94rem, 1.47vw, 1.75rem);
  padding-right: 1.5rem;
  -webkit-user-select: none;
          user-select: none;
  transition: color 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion__toggle:hover {
  color: #ef4190;
}
.accordion__toggle:hover .accordion__arrow {
  color: currentColor;
}
@media (min-width: 64rem) {
  .accordion__toggle {
    padding-right: 2.75rem;
  }
}

.accordion__arrow {
  --svg-icon-size: 1.1em;
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-block;
  justify-content: center;
  align-content: center;
  color: #737892;
}
.accordion__arrow svg {
  display: block;
  transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 64rem) {
  .accordion__arrow {
    right: 1.25rem;
  }
}

.accordion__content {
  padding-bottom: clamp(0.94rem, 1.47vw, 1.75rem);
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion__content p + p {
  margin-top: 0.63rem;
}

.accordion__content-inner {
  overflow: hidden;
}

.accordion[open] .accordion__toggle {
  margin-bottom: 0;
}
.accordion[open] .accordion__arrow svg {
  transform: rotate(180deg);
}
.accordion.active .accordion__content {
  grid-template-rows: 1fr;
}

.modal-opener {
  display: block;
  margin-top: 0.63rem;
  text-align: center;
}

.modal-opener__toggle {
  height: auto;
  padding: 0;
  font-size: 0.88rem;
  color: #59537a;
  text-transform: uppercase;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-opener__toggle svg {
  margin-left: 0.31rem;
}
.modal-opener__toggle:hover {
  color: #627ee3;
}

.quick-view-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  visibility: hidden;
  z-index: -1;
  opacity: 0;
  background: rgba(22, 6, 49, 0.2);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.quick-view-modal[open] {
  visibility: visible;
  z-index: 101;
}
.quick-view-modal.show {
  opacity: 1;
}
.quick-view-modal.show .quick-view-modal__content {
  transform: translateY(0);
}

.quick-view-modal__content {
  position: relative;
  width: calc(100% - 2.5rem);
  max-height: calc(100% - 2.5rem);
  padding: clamp(1.88rem, 2.11vw, 2.5rem);
  overflow: hidden;
  transform: translateY(30px);
  background: #fff;
  border-radius: 2.5rem;
  overflow-y: auto;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 46.25rem) {
  .quick-view-modal__content {
    width: 43.13rem;
  }
}
.quick-view-modal__content::-webkit-scrollbar {
  width: 10px;
}
.quick-view-modal__content::-webkit-scrollbar-track {
  background: #eeedf3;
  border-radius: 10px;
}
.quick-view-modal__content::-webkit-scrollbar-thumb {
  background-color: #b5b1ca;
  border-radius: 10px;
  border: 0;
}
.quick-view-modal__content:focus {
  outline: none;
}

.quick-view-modal__toggle {
  position: absolute;
  top: 0.63rem;
  right: 0.63rem;
  color: #59537a;
}
.quick-view-modal__toggle:hover {
  color: #ef4190;
}

.rte {
  word-break: break-word;
}
.rte > * {
  margin-bottom: clamp(0.81rem, 1.16vw, 1.38rem);
}
.rte > *:last-child {
  margin-bottom: 0;
}
.rte h1, .rte h2, .rte h3, .rte h4 {
  margin-bottom: clamp(1.13rem, 1.47vw, 1.75rem);
}
.rte a {
  color: currentColor;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.rte a:hover {
  text-decoration: none;
}
.rte ul, .rte ol {
  padding-left: 1.2rem;
}
.rte ul {
  list-style: disc;
}
.rte ol {
  list-style: decimal;
}
.rte li:not(:first-child) {
  margin-top: 0.5em;
}
.rte li::marker {
  font-size: 0.8em;
}
@media (min-width: 64rem) {
  .rte li {
    padding-left: 0.44rem;
  }
}
.rte strong {
  font-weight: 600;
}
.rte .wp-block-quote {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.rte .alignleft,
.rte .alignright {
  margin-bottom: 0.6rem;
}
@media (min-width: 46.25rem) {
  .rte .alignleft,
  .rte .alignright {
    max-width: 65%;
  }
}
@media (min-width: 46.25rem) {
  .rte .alignleft {
    float: left;
    margin-right: 1.8rem;
  }
}
@media (min-width: 46.25rem) {
  .rte .alignright {
    float: right;
    margin-left: 1.8rem;
  }
}
.rte img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.rte .has-background {
  padding: 1rem 1.5rem;
}

.unstyled-list ul, .unstyled-list ol {
  list-style: none;
}

.block,
.block-content {
  position: relative;
}

.isolate {
  position: relative;
  z-index: 2;
}

.video-overlay,
.particles,
.blurry-shape,
.blurry-overlay {
  display: block;
  position: absolute;
  pointer-events: none;
}

.video-overlay,
.blurry-overlay {
  width: 100%;
  height: 100%;
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  opacity: 0.15;
}

.particles--hero {
  -webkit-mask-image: linear-gradient(0deg, transparent 0%, #000 5%, #000 85%, transparent 100%);
  mask-image: linear-gradient(0deg, transparent 0%, #000 5%, #000 85%, transparent 100%);
}

.particles--footer {
  height: 110vh;
  -webkit-mask-image: linear-gradient(0deg, #000 0%, #000 95%, transparent 100%);
  mask-image: linear-gradient(0deg, #000 0%, #000 95%, transparent 100%);
}

.particles--block {
  -webkit-mask-image: linear-gradient(0deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(0deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.blurry-shape {
  filter: blur(250px);
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  aspect-ratio: 1;
  border-radius: 50%;
}

.blurry-shape-1 {
  width: clamp(28.13rem, 65.79vw, 68.75rem);
  background: rgba(43, 104, 232, 0.3);
}

.blurry-shape-2 {
  width: clamp(28.13rem, 71.05vw, 75rem);
  background: rgba(131, 17, 57, 0.2);
}

.blurry-shape-3 {
  width: clamp(28.13rem, 60.53vw, 62.5rem);
  background: rgba(43, 104, 232, 0.24);
}

.blurry-overlay {
  inset: 0;
}

.blurry-overlay--1 {
  background: radial-gradient(31.25rem 31.25rem at -4.38rem 5.63rem, rgba(43, 104, 232, 0.4), transparent), radial-gradient(31.25rem 31.25rem at calc(100% + 4.38rem) 80vh, rgba(131, 17, 57, 0.3), transparent);
}

.blurry-overlay--2 {
  background: radial-gradient(31.25rem 31.25rem at -6.25rem 100%, rgba(43, 104, 232, 0.3), transparent);
}

.blurry-overlay--3 {
  background: radial-gradient(31.25rem 31.25rem at -4.38rem 5.63rem, rgba(43, 104, 232, 0.3), transparent);
}

.custom-container-width {
  width: 100%;
}
@media (min-width: 80rem) {
  .custom-container-width {
    max-width: var(--container-width, 51.25rem);
    margin-left: auto;
    margin-right: auto;
  }
}

.icon-circle,
.icon-column__icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-circle {
  position: relative;
  padding: 1.5rem;
  width: clamp(6.25rem, 7.37vw, 8.75rem);
  aspect-ratio: 1;
  color: #f1eff7;
}
.icon-circle::before {
  content: " ";
  display: block;
  position: absolute;
  inset: 0;
  background-color: currentColor;
  border-radius: 50%;
}
.icon-circle img {
  position: relative;
}

.icon-column__icon-wrapper {
  margin-bottom: max(0.94rem, 1.32vw);
}

.icon-column__text,
.threecols-icons__item-cta {
  margin-top: max(0.63rem, 1.05vw);
}

.icon-row {
  display: flex;
  line-height: 1.33;
}

.icon-row__icon {
  color: rgba(60, 93, 203, 0.7);
}
@media (max-width: 63rem) {
  .icon-row__icon {
    padding: 0.63rem;
    width: 4.63rem;
  }
}

.icon-row__text-wrapper {
  margin-left: 0.94rem;
}
@media (min-width: 64rem) {
  .icon-row__text-wrapper {
    margin-left: 2.19rem;
    padding-top: 1.25rem;
  }
}

.icon-row__label {
  margin-bottom: 0.94rem;
}

.threecols-icons__grid {
  gap: 2.5rem;
}
@media (min-width: 64rem) {
  .threecols-icons__grid {
    gap: clamp(3.13rem, 3.68vw, 4.38rem) clamp(3.75rem, 5.26vw, 6.25rem);
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 80rem) {
  .threecols-icons__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 64rem) {
  .threecols-icons__item {
    display: flex;
    flex-direction: column;
  }
  .threecols-icons__item-body {
    flex-grow: 1;
  }
}
.threecols-icons--1 {
  background: linear-gradient(180deg, rgba(246, 245, 251, 0.9) 0%, #efeef6 80%);
}
.threecols-icons--1 .icon-circle {
  color: #fff;
}

@media (min-width: 80rem) {
  .threecols-icons--3 .threecols-icons__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(5rem, 8.42vw, 10rem);
  }
}
@media (min-width: 64rem) {
  .threecols-icons--3 .icon-column__icon-wrapper {
    justify-content: flex-start;
  }
}

.hero {
  overflow: hidden;
  background-color: #313155;
}
.hero .blurry-shape-1 {
  top: -35%;
  left: -15%;
}

.hero-essential8 .blurry-shape-2,
.hero-ciso .blurry-shape-2,
.hero-hrm .blurry-shape-2,
.hero-simple .blurry-shape-2 {
  top: max(6.88rem, 10.53vw);
  right: -20%;
}

.hero-essential8 .hero__cover,
.hero-ciso .hero__cover,
.hero-hrm .hero__cover {
  height: 92vh;
  min-height: 38.75rem;
  max-height: 58.75rem;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(11, 11, 11, 0.95) 29%, rgba(217, 217, 217, 0) 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(11, 11, 11, 0.95) 29%, rgba(217, 217, 217, 0) 100%);
}
.hero-essential8 .hero__cover img,
.hero-ciso .hero__cover img,
.hero-hrm .hero__cover img {
  opacity: 0.5;
}

.hero__video {
  z-index: 0 !important;
}
.hero__video *::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}
.hero__video *::--webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
}
.hero__video *::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.hero__prime {
  padding-top: clamp(8.75rem, 15.79vw, 18.75rem);
}

.hero__prime--static {
  height: 99vh;
  min-height: 42.5rem;
  max-height: 62.5rem;
}

.hero-essential8 .hero__prime,
.hero-hrm .hero__prime {
  padding-bottom: clamp(3.13rem, 5.79vw, 6.88rem);
}

.hero__cover img {
  object-position: 50% 0;
}

.hero__heading {
  letter-spacing: 0.02em;
}

.hero__header-text p + p {
  margin-top: 1.25rem;
}

@media (min-width: 80rem) {
  .hero__footer-text {
    max-width: clamp(62.5rem, 66.84vw, 79.38rem);
    margin: 0 auto;
  }
}

.hero-home .blurry-shape-2 {
  bottom: -25%;
  left: -25%;
}
.hero-home .blurry-shape-3 {
  bottom: -30%;
  right: -30%;
}

.hero-home .hero__prime {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: clamp(3.75rem, 6.32vw, 7.5rem);
}
.hero-home .video-overlay {
  height: 20%;
  left: 0;
  bottom: -1px;
  background: linear-gradient(0deg, #313155 0%, rgba(57, 57, 83, 0) 100%);
}
.hero-home .hero__heading {
  font-size: clamp(3.13rem, 4.63vw, 5.5rem);
}
.hero-home .hero__cta {
  padding-top: clamp(5rem, 11.58vw, 13.75rem);
}

.hero-home .hero__second {
  padding-top: clamp(6.25rem, 8.42vw, 10rem);
  padding-bottom: clamp(3.75rem, 6.32vw, 7.5rem);
}

.hero-home__grid {
  gap: clamp(2.5rem, 13.68vw, 16.25rem);
}
.hero-home__grid .column--logo {
  align-self: center;
}
.hero-home__grid img {
  max-width: max(10rem, 26.95vw);
}

.hero-essential8 .hero__cover img {
  opacity: 0.5;
}
@media (min-width: 1600px) and (max-width: 1700px) {
  .hero-essential8 .hero__second .inner-container {
    --container-size: 87.5rem;
  }
}
.hero-essential8 .hero__third {
  padding-bottom: clamp(3.75rem, 6.32vw, 7.5rem);
}

.essential8-scheme {
  margin-bottom: clamp(3.75rem, 6.32vw, 7.5rem);
}
@media (min-width: 64rem) {
  .essential8-scheme {
    grid-template-columns: auto clamp(10rem, 10.53vw, 12.5rem) clamp(50rem, 46.84vw, 55.63rem);
    gap: 0.94rem;
  }
  .essential8-scheme .column {
    align-self: center;
  }
}

.essential8-scheme__lines {
  display: flex;
  align-items: center;
}
.essential8-scheme__lines svg {
  display: block;
  flex-shrink: 0;
  max-width: 100%;
}

@media (max-width: 63rem) {
  .essential8-scheme__heading {
    margin-bottom: 1.88rem;
  }
}
.essential8-scheme__item:not(:first-child) {
  margin-top: clamp(1.88rem, 2.63vw, 3.13rem);
}

.hero-ciso .hero__prime {
  padding-bottom: clamp(7.5rem, 12.63vw, 15rem);
}
.hero-ciso .hero__third {
  padding-bottom: clamp(3.75rem, 6.32vw, 7.5rem);
}

.hero-ciso__grid {
  margin-bottom: clamp(3.75rem, 6.32vw, 7.5rem);
  gap: clamp(1.88rem, 4.74vw, 5.63rem);
}
@media (min-width: 64rem) {
  .hero-ciso__grid {
    gap: clamp(5.63rem, 5.79vw, 6.88rem);
  }
}

.hero-ciso__item:not(:first-child) {
  margin-top: clamp(1.88rem, 4.74vw, 5.63rem);
}

.hero-hrm .blurry-shape-2 {
  background-color: rgba(43, 104, 232, 0.24);
}
.hero-hrm .hero__second {
  padding-bottom: clamp(3.75rem, 6.32vw, 7.5rem);
}

.hero-hrm__cards-heading {
  margin-top: clamp(6.25rem, 9.47vw, 11.25rem);
  margin-bottom: clamp(2.5rem, 4.21vw, 5rem);
}

.hero-hrm__info-grid {
  gap: clamp(1.88rem, 3.16vw, 3.75rem);
}
@media (min-width: 64rem) {
  .hero-hrm__info-grid {
    grid-template-columns: 1fr max(20rem, 22.11vw);
    gap: clamp(3.75rem, 9.47vw, 11.25rem);
  }
}

.chero-hrm__attack-text {
  margin-top: max(0.94rem, 1.32vw);
  margin-bottom: max(1.25rem, 1.58vw);
}
.chero-hrm__attack-text p:not(:first-child) {
  margin-top: 0.75rem;
}

@media (min-width: 64rem) {
  .attack-item {
    padding-right: clamp(2.5rem, 3.16vw, 3.75rem);
  }
}

.attack-item__icon-wrapper {
  margin-bottom: 0.63rem;
}

.attack-item__icon {
  width: clamp(6.88rem, 7.89vw, 9.38rem);
  padding: clamp(1.25rem, 1.58vw, 1.88rem);
}

.attack-item__arrow {
  margin-top: 0.63rem;
  margin-bottom: 0.63rem;
}
.attack-item__arrow svg {
  display: inline-block;
}

.hero-simple .hero__cover img {
  opacity: 0.5;
}
.hero-simple .hero__prime {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: clamp(3.75rem, 8.42vw, 10rem);
}
.hero-simple .iframe-cover {
  position: absolute;
  inset: 0;
}
.hero-simple iframe {
  width: 100%;
  height: calc(100% + 40px);
  transform: translateY(-40px);
}
.hero-simple .video-overlay {
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(49, 49, 85, 0.5) 0%, rgba(57, 57, 83, 0) 100%);
}
.hero-simple .blurry-shape-1 {
  background: rgba(43, 104, 232, 0.1);
}
@media (max-width: 63rem) {
  .hero-simple .blurry-shape-2 {
    top: 50%;
  }
}

.hero-simple--2 .blurry-shape-1 {
  background: rgba(43, 104, 232, 0.24);
}
.hero-simple--2 .video-overlay {
  background: rgba(0, 0, 0, 0.44);
}

.contact-form__wrapper {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 2.74vw, 3.25rem) clamp(1.88rem, 4.21vw, 5rem);
  background: linear-gradient(328deg, #E3E0EF 0%, #F8F7FC 100%, #EDEAF6 100%);
  border-radius: 1.88rem;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 64rem) {
  .contact-form__wrapper {
    border-radius: 2.5rem;
  }
}
.contact-form__wrapper h2 {
  margin-bottom: max(1.25rem, 1.89vw);
  color: #59537a;
  font-size: clamp(2.5rem, 2.84vw, 3.38rem);
}

.contact-info {
  padding: 2.5rem 1.25rem;
  gap: 0.94rem;
}
@media (min-width: 80rem) {
  .contact-info {
    padding-top: 1.88rem;
    padding-bottom: 1.88rem;
  }
  .contact-info .column:first-child {
    padding-left: 15%;
  }
}

.contact-info__item {
  line-height: 1.4;
}
.contact-info__item .svg-icon {
  margin-top: 0.16em;
}

a.contact-info__item {
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
a.contact-info__item:hover {
  color: #ef4190;
}

.contact-location__link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 1.88rem;
}
.contact-location__link img {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-location__link::after {
  content: " ";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgba(248, 247, 252, 0.3);
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-location__link:hover img {
  transform: scale(1.05);
}
.contact-location__link:hover::after {
  background-color: rgba(248, 247, 252, 0.2);
}
@media (min-width: 64rem) {
  .contact-location__link {
    border-radius: 0 2.5rem 2.5rem 0;
  }
}

.wpcf7-response-output {
  display: none;
  margin-top: 1.25rem;
  padding: 0.63rem 0.94rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0.63rem;
}

.screen-reader-response,
.wpcf7-not-valid-tip {
  display: none;
}

.grecaptcha-badge {
  display: none !important;
}

.wpcf7 {
  position: relative;
}
.wpcf7 .input-text {
  margin-bottom: 1.25rem;
}
.wpcf7 .button {
  min-width: 13.75rem;
}
.wpcf7 .wpcf7-not-valid {
  color: #e45454;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-name: animShake;
}
.wpcf7 .wpcf7-not-valid::placeholder {
  color: currentColor;
}
.wpcf7 br {
  display: none;
}

.wpcf7-form.invalid .wpcf7-response-output, .wpcf7-form.sent .wpcf7-response-output {
  display: block;
}
.wpcf7-form.invalid .wpcf7-response-output {
  color: #e45454;
  background-color: rgba(228, 84, 84, 0.1);
}
.wpcf7-form.sent .wpcf7-response-output {
  color: #609b3d;
  background-color: rgba(96, 155, 61, 0.1);
}

.google-map-container {
  width: 100%;
  height: clamp(280px, 34vw, 520px);
}

@keyframes animShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
:root {
  --level-item-min-height: 200px;
}

.levels__grid {
  margin-top: clamp(1.88rem, 2.37vw, 2.81rem);
  gap: 1.5rem;
}
@media (min-width: 46.25rem) {
  .levels__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 80rem) {
  .levels__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.level-item {
  display: flex;
  flex-direction: column;
  min-height: var(--level-item-min-height);
  padding-left: 1.88rem;
  padding-top: clamp(1.88rem, 2.11vw, 2.5rem);
  padding-right: 1.88rem;
  padding-bottom: 1.25rem;
  line-height: 1.55;
  background-color: var(--bg-color);
  border-radius: clamp(1.69rem, 1.95vw, 2.31rem);
}

.level-item__body {
  flex-grow: 1;
}

.level-item__icon-wrapper,
.level-item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.level-item__icon-wrapper {
  margin-bottom: clamp(1.25rem, 1.58vw, 1.88rem);
}

.level-item__icon {
  padding: clamp(0.94rem, 1.32vw, 1.56rem);
  max-width: clamp(6.88rem, 7.37vw, 8.75rem);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.level-item__icon img {
  display: block;
  border-radius: 50%;
  filter: drop-shadow(0 3px 2px rgba(0, 0, 0, 0.2));
}

.level-item__subtitle {
  margin-top: clamp(0.88rem, 1.05vw, 1.25rem);
  margin-bottom: clamp(1.13rem, 1.32vw, 1.56rem);
}

.level-item__more-wrapper {
  margin-top: clamp(1.13rem, 1.32vw, 1.56rem);
  border-top: 1px dashed rgba(22, 6, 49, 0.4);
}

.level-item__more-toggle {
  padding-top: clamp(0.63rem, 0.84vw, 1rem);
  margin-bottom: clamp(0.63rem, 0.84vw, 1rem);
  padding-right: 1.5rem;
  font-size: 0.88rem;
  color: rgba(22, 6, 49, 0.7);
}
.level-item__more-toggle:hover {
  color: #160631;
}
@media (min-width: 64rem) {
  .level-item__more-toggle {
    padding-right: 1.5rem;
    font-size: 1rem;
  }
}

.accordion__arrow {
  color: rgba(22, 6, 49, 0.5);
}
@media (min-width: 64rem) {
  .accordion__arrow {
    right: 0;
  }
}

.cards,
.cards__grid {
  position: relative;
}

.threecols-icons--1 + .cards--1::before {
  content: " ";
  display: block;
  width: 100%;
  height: 40%;
  position: absolute;
  top: 0;
  left: 0;
  background: #efeef6;
}

.cards__grid {
  gap: 1.88rem;
}
@media (min-width: 46.25rem) {
  .cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cards-item {
  display: flex;
  justify-content: center;
  position: relative;
  padding: clamp(1.88rem, 2.42vw, 2.88rem);
  overflow: hidden;
  background: #fff;
  border-radius: 2.5rem;
  box-shadow: 0 10px 20px 0 rgba(22, 7, 51, 0.1);
}
@media (min-width: 46.25rem) {
  .cards-item {
    height: 100%;
  }
}

.cards-item__inner {
  max-width: 20rem;
  text-align: center;
}

.cards-item__icon-wrapper,
.cards-item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cards-item__title {
  line-height: 1.5;
}

.cards-item__subtitle,
.cards-item__text {
  margin-top: 0.75rem;
  line-height: 1.4;
}

.cards--1 .cards-item__icon {
  width: clamp(12.5rem, 17.89vw, 21.25rem);
  aspect-ratio: 1/0.65;
}
.cards--1 .cards-item__icon img {
  max-width: clamp(7.5rem, 8.95vw, 10.63rem);
}

.cards--2 {
  background: linear-gradient(180deg, rgba(246, 245, 251, 0.9) 0%, rgba(243, 243, 243, 0.9) 100%);
}
.cards--2 .cards-item__icon-wrapper {
  margin-bottom: max(0.94rem, 1.32vw);
}
.cards--2 .icon-circle {
  width: clamp(7.13rem, 8.42vw, 10rem);
  padding: 1.75rem;
}
.cards--2 .icon-circle::before {
  background-color: #ebeffa;
}

.logos__heading {
  margin-bottom: clamp(1.25rem, 3.16vw, 3.75rem);
}

.logos__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.88rem, 4.21vw, 5rem) clamp(1.25rem, 2.11vw, 2.5rem);
}
@media (min-width: 64rem) {
  .logos__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.logos__item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logos-slider .splide__track {
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.logos__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials {
  background-color: #f7f6fb;
}

.testimonials__heading {
  margin-bottom: clamp(3.13rem, 5.26vw, 6.25rem);
}

@media (min-width: 64rem) {
  .testimonials-slider {
    padding-left: clamp(1.25rem, 2.11vw, 2.5rem);
    padding-right: clamp(1.25rem, 2.11vw, 2.5rem);
  }
  .testimonials-slider .splide__track {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
}
.testimonials-slider .splide__pagination {
  margin-top: clamp(2.5rem, 4.74vw, 5.63rem);
}

@media (min-width: 64rem) {
  .testimonial-item {
    max-width: clamp(18.75rem, 20vw, 23.75rem);
    margin: 0 auto;
  }
}

.testimonial-item__photo,
.testimonial-item__stars,
.testimonial-modal__photo,
.testimonial-modal__stars {
  display: flex;
  justify-content: center;
}

.testimonial-item__photo-container,
.testimonial-modal__photo-container {
  position: relative;
  width: max(6.25rem, 7.11vw);
  height: max(6.25rem, 7.11vw);
  overflow: hidden;
  border-radius: 50%;
}
.testimonial-item__photo-container img,
.testimonial-modal__photo-container img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-item__name,
.testimonial-modal__name {
  margin-top: 1rem;
  margin-bottom: 0.38rem;
}

.stars {
  --stars-width: calc(var(--stars-value) / 5 * 100%);
  display: inline-block;
  position: relative;
  width: 130px;
  height: 17px;
  line-height: 1;
  overflow: hidden;
}
.stars::before, .stars::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-image: url("../images/stars.svg");
  background-repeat: no-repeat;
}
.stars::before {
  width: 100%;
  filter: grayscale(100%);
  opacity: 0.4;
}
.stars::after {
  width: var(--stars-width);
}

.testimonial-item__text p:not(:first-child),
.testimonial-modal__text p:not(:first-child) {
  margin-top: 0.5em;
}

@media (min-width: 46.25rem) {
  .features__header p {
    max-width: clamp(20rem, 20.53vw, 24.38rem);
  }
}
.features__header > * {
  margin-bottom: 0.63rem;
}

.features__grid {
  gap: 1.88rem;
}
@media (min-width: 64rem) {
  .features__grid {
    gap: clamp(2.5rem, 4.21vw, 5rem) 0.31rem;
  }
}

.feature-item {
  gap: clamp(1.25rem, 3.89vw, 4.63rem);
}
@media (min-width: 46.25rem) {
  .feature-item {
    grid-template-columns: auto 1fr;
  }
}

.feature-item__text > * {
  margin-bottom: 0.44rem;
}
.feature-item__text ul {
  margin-top: clamp(0.63rem, 1.32vw, 1.56rem);
}
.feature-item__text li {
  padding-left: 1.88rem;
  background-image: url("../images/icon-circle-check.svg");
  background-repeat: no-repeat;
  background-position: 0 2px;
}

.iso-journey {
  background-color: #efeffd;
}

.iso-journey__scheme {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.5rem, 4.21vw, 5rem);
  margin-bottom: clamp(2.5rem, 4.21vw, 5rem);
}
@media (min-width: 80rem) {
  .iso-journey__scheme img {
    max-width: 66.88rem;
  }
}

.iso-journey__grid {
  margin-top: 2.5rem;
  margin-bottom: 3.75rem;
  gap: 1.88rem 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}
.iso-journey__grid .icon-circle {
  color: #5a6ab8;
}

.iso-journey__banner-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.iso-journey__banner-wrapper::before {
  content: " ";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #fff;
}

.iso-journey__banner {
  position: relative;
  padding: clamp(1.88rem, 2.11vw, 2.5rem) clamp(1.88rem, 5.79vw, 6.88rem);
  border-radius: clamp(1.69rem, 1.95vw, 2.31rem);
}
@media (min-width: 80rem) {
  .iso-journey__banner {
    max-width: 66.88rem;
  }
}

.text-list__grid {
  margin-top: clamp(2.5rem, 4.21vw, 5rem);
  gap: 1.88rem;
}
.text-list__grid .column > *:first-child {
  margin-top: 0;
}
.text-list__grid h2, .text-list__grid h3, .text-list__grid h4, .text-list__grid h5 {
  margin-bottom: 1.56rem;
  color: #ef4190;
}
.text-list__grid ul {
  margin-top: clamp(0.63rem, 1.32vw, 1.56rem);
}
.text-list__grid li {
  line-height: 1.4;
  padding-left: 1.88rem;
  background-image: url("../images/icon-check-pink.svg");
  background-repeat: no-repeat;
  background-position: 0 0.5em;
  background-size: 18px auto;
}
.text-list__grid li:not(:first-child) {
  margin-top: clamp(0.5rem, 0.95vw, 1.13rem);
}
@media (min-width: 64rem) {
  .text-list__grid {
    margin-left: auto;
    margin-right: auto;
  }
  .text-list__grid.grid--2-col {
    max-width: clamp(51.25rem, 51.58vw, 61.25rem);
    gap: clamp(5rem, 6.84vw, 8.13rem);
  }
  .text-list__grid.grid--3-col {
    gap: clamp(2.5rem, 4.74vw, 5.63rem);
  }
}

.text-list__footer {
  margin-top: clamp(2.5rem, 4.21vw, 5rem);
}
@media (min-width: 64rem) {
  .text-list__footer {
    display: flex;
    justify-content: center;
  }
  .text-list__footer div {
    max-width: clamp(61.25rem, 63.16vw, 75rem);
  }
}

.text-collapse__grid {
  gap: 1.25rem;
}
@media (min-width: 64rem) {
  .text-collapse__grid {
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
    gap: clamp(5rem, 6.84vw, 8.13rem);
  }
}

@media (min-width: 46.25rem) {
  .text-collapse__header p {
    max-width: clamp(20rem, 19.47vw, 23.13rem);
  }
}
.text-collapse__header > * {
  margin-bottom: 0.63rem;
}
@media (min-width: 64rem) {
  .text-collapse__header {
    position: sticky;
    top: 1.88rem;
  }
}

.text-collapse__item-icon {
  width: clamp(3.75rem, 6.84vw, 8.13rem);
  margin-right: clamp(0.94rem, 2.63vw, 3.13rem);
  flex-shrink: 0;
}
.text-collapse__item-icon .icon-circle {
  width: auto;
}
.text-collapse__item-icon .icon-circle::before {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 63rem) {
  .text-collapse__item-icon .icon-circle {
    padding: 0.44rem;
  }
}

.text-collapse__item-toggle:hover .icon-circle::before {
  transform: scale(1.1);
}

.text-collapse__item-content {
  padding-left: clamp(4.69rem, 9.47vw, 11.25rem);
}

.faq {
  background-color: #e6e8f2;
}
.faq .inner-container {
  --container-size: 67.5rem;
}
@media (min-width: 80rem) {
  .faq .faq__item-toggle {
    padding-left: clamp(3.75rem, 4.21vw, 5rem);
    padding-right: clamp(3.75rem, 4.21vw, 5rem);
  }
  .faq .accordion__arrow {
    right: clamp(2.5rem, 3.16vw, 3.75rem);
  }
  .faq .accordion__content-inner {
    padding-left: clamp(3.75rem, 4.21vw, 5rem);
    padding-right: clamp(3.75rem, 4.21vw, 5rem);
  }
}

.faq__heading {
  margin-bottom: clamp(1.88rem, 3.68vw, 4.38rem);
}

.accordion__content-inner::before {
  content: " ";
  display: block;
  width: 100%;
  height: 1em;
}

.text .column--image {
  align-self: center;
}

.text__heading {
  margin-bottom: clamp(1.88rem, 2.11vw, 2.5rem);
}

.text__grid {
  gap: clamp(2.5rem, 6.84vw, 8.13rem);
}
@media (min-width: 64rem) {
  .text__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.text--background-dark {
  overflow: hidden;
  background-color: #313155;
}
.text--background-dark .column--text {
  align-self: center;
}
.text--background-dark .blurry-shape-1 {
  width: clamp(28.13rem, 68.42vw, 75rem);
  bottom: 3%;
  left: -26%;
  aspect-ratio: 1/0.6;
}
.text--background-dark .blurry-shape-2 {
  width: clamp(37.5rem, 84.21vw, 93.75rem);
  top: 12%;
  right: -23%;
  aspect-ratio: 1/0.45;
}

.text-banner {
  background: linear-gradient(115deg, #f0478c 0%, #f88257 100%);
}
.text-banner h2 {
  margin-bottom: clamp(1.25rem, 2.11vw, 2.5rem);
}

.text-banner--single {
  line-height: 1.4;
  background-image: url("../images/logo-icon.svg"), linear-gradient(115deg, #f0478c 0%, #f88257 100%);
  background-position: -5% 10%, 50% 50%;
  background-repeat: no-repeat;
}
@media (max-width: 104rem) {
  .text-banner--single {
    background-size: auto 110%, auto;
    background-position: -10% 80%, 50% 50%;
  }
}
@media (max-width: 63rem) {
  .text-banner--single {
    background-size: auto 330px, auto;
    background-position: -100px 20px, 50% 50%;
  }
}
.text-banner--single .rte {
  font-size: clamp(1.31rem, 1.37vw, 1.63rem);
}

.text-banner__grid {
  gap: clamp(0.94rem, 3.95vw, 4.69rem);
}

.spacer {
  width: 100%;
  height: calc(var(--spacer-height) / 2);
}
@media (min-width: 64rem) {
  .spacer {
    height: calc(var(--spacer-height) / 1.3);
  }
}
@media (min-width: 105rem) {
  .spacer {
    height: var(--spacer-height);
  }
}

.spacer--has-border {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.spacer--space-before {
  margin-top: clamp(1.25rem, 2.11vw, 2.5rem);
}

.spacer--space-after {
  margin-bottom: clamp(1.25rem, 2.11vw, 2.5rem);
}

.spacer__border {
  flex-grow: 1;
  width: 3px;
  height: 100%;
  background-color: #F46075;
}

.wp-block-quote {
  padding-left: 1em;
  padding-top: 0.05em;
  padding-bottom: 0.05em;
  border-left: 0.2em solid #ef4190;
}
.wp-block-quote cite {
  text-align: inherit;
}
.wp-block-quote.has-text-align-right {
  padding-left: 0;
  padding-right: 1em;
  border-left: none;
  border-right: 0.2em solid #ef4190;
}
.wp-block-quote.has-text-align-center, .wp-block-quote.is-style-large {
  padding-left: 0;
  padding-right: 0;
  border: 0;
}
.wp-block-quote.is-style-large {
  padding: 1.5rem;
  text-align: center;
}
.wp-block-quote.is-style-large p {
  font-size: 1.5rem;
  line-height: 1.5;
  font-style: normal;
}
.wp-block-quote.is-style-large cite {
  font-size: 1rem;
}
@media (min-width: 64rem) {
  .wp-block-quote.is-style-large {
    padding: 3rem;
  }
}

.wp-block-embed__wrapper {
  position: relative;
}

.wp-has-aspect-ratio .wp-block-embed__wrapper::before {
  content: "";
  display: block;
  padding-top: 50%;
}
.wp-has-aspect-ratio iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before {
  padding-top: 56.25%;
}

.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before {
  padding-top: 75%;
}

.wp-block-table {
  width: 100%;
  line-height: 1.45;
}
.wp-block-table .has-fixed-layout table {
  table-layout: fixed;
}
.wp-block-table thead th {
  border-bottom-width: 2px;
}
.wp-block-table tfoot td {
  border-top-width: 2px;
}
.wp-block-table.is-style-stripes {
  border-collapse: inherit;
  border-bottom: 0;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.3);
}
.wp-block-table.is-style-stripes tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.04);
}
.wp-block-table.is-style-stripes th,
.wp-block-table.is-style-stripes td {
  border-color: transparent;
}
.wp-block-table figcaption {
  font-weight: 400;
}

.has-accent-color,
.color-accent {
  color: #ef4190;
}

.background-color-accent,
.has-accent-background-color {
  color: white;
  background-color: #ef4190;
}

.background-color-white {
  background-color: white;
}

.color-white {
  color: #fff;
}
.color-white h1, .color-white h2, .color-white h3, .color-white h4 {
  color: inherit;
}

.color-dark-gray {
  color: #59537a;
}

.font-size-s {
  font-size: clamp(1rem, 0.89vw, 1.06rem);
}

.has-large-font-size,
.font-size-l {
  font-size: clamp(1.13rem, 1.21vw, 1.44rem);
}

.font-weight-normal {
  font-weight: 400;
}

.font-weight-medium {
  font-weight: 500;
}

.font-weight-semibold {
  font-weight: 600;
}

.font-weight-bold {
  font-weight: 700;
}

.has-text-align-center,
.text-center,
.aligncenter {
  text-align: center;
}

.text-right,
.has-text-align-right {
  text-align: right;
}

@media (max-width: 63rem) {
  .text-center--mobile {
    text-align: center;
  }
}
.text-uppercase {
  text-transform: uppercase;
}

.font-italic {
  font-style: italic;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  word-break: normal;
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

@media (prefers-reduced-motion) {
  * {
    transition-delay: 0s !important;
    transition-duration: 0s !important;
  }
}
.hidden {
  display: none !important;
}

@media (min-width: 46.25rem) {
  .hidden--mobile-up {
    display: none !important;
  }
}
@media (max-width: 45.25rem) {
  .hidden--mobile-down {
    display: none !important;
  }
}
@media (min-width: 64rem) {
  .hidden--tablet-up {
    display: none !important;
  }
}
@media (max-width: 63rem) {
  .hidden--tablet-down {
    display: none !important;
  }
}
@media (max-width: 63rem) {
  .hide-br-mobile br {
    display: none;
  }
}
@media (max-width: 64rem) {
  .hide-br-tablet br {
    display: none;
  }
}
@keyframes splide-loading {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.splide__pagination li {
  display: flex;
  line-height: 1;
  list-style-type: none;
  margin: 0 0.75rem;
  pointer-events: auto;
}
.splide__pagination__page {
  display: inline-flex;
  padding: 0;
  width: 0.75rem;
  height: 0.75rem;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  background: #D7D5E4;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.splide__pagination__page:hover, .splide__pagination__page.is-active {
  background-color: #EF4190;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s infinite linear;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
}

.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__play {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.splide__arrow {
  position: absolute;
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  color: rgba(89, 83, 122, 0.7);
  transition: color 0.3s ease;
}
.splide__arrow svg {
  fill: currentColor;
}
.splide__arrow:hover {
  color: #ef4190;
}
.splide__arrow--prev {
  left: -20px;
}
.splide__arrow--next {
  right: -20px;
}
.splide__arrow--next svg {
  transform: rotate(180deg);
}
@media (min-width: 80rem) {
  .splide__arrow {
    top: calc(50% - 18px);
    width: 36px;
    height: 36px;
  }
  .splide__arrow--prev {
    left: -60px;
  }
  .splide__arrow--next {
    right: -60px;
  }
}

.ss-wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  float: left;
}

.ss-content {
  height: 100%;
  width: calc(100% + 18px);
  padding: 1rem 0;
  position: relative;
  overflow-x: auto;
  overflow-y: scroll;
  box-sizing: border-box;
}
.ss-content.rtl {
  width: calc(100% + 18px);
  right: auto;
}

.ss-scroll {
  position: relative;
  background: rgba(239, 65, 144, 0.4);
  width: 6px;
  border-radius: 3px;
  top: 0;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s linear;
}

.ss-hidden {
  display: none;
}

.ss-container:hover .ss-scroll,
.ss-container:active .ss-scroll {
  opacity: 1;
}

.ss-grabbed {
  -o-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}