/*!*******************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./blocks/grid/cta-grid/cta-grid.scss ***!
  \*******************************************************************************************************************************************************************************************************************************/
:root {
  --font-family-main: "area-normal", sans-serif;
  --font-family-display: "halyard-display", sans-serif;
  --font-family-body: "area-normal", sans-serif;
  --font-family-display-medium: var(--font-family-display);
  --font-family-body-regular: var(--font-family-body);
  --font-family-body-book: var(--font-family-body);
  --font-family-body-bold: var(--font-family-body);
  --font-weight-display-medium: 400;
  --font-weight-body-regular: 400;
  --font-weight-body-book: 400;
  --font-weight-body-bold: 700;
  --font-weight-body-black: 900;
  --color-primary: #00c6c2;
  --color-secondary: #052831;
  --color-teal: #00c6c2;
  --color-midnight-black: #052831;
  --color-putty: #fdf7ea;
  --color-white: #ffffff;
  --color-midnight-black-dark: #031d24;
  --color-black: #000000;
  --color-error: #dd0000;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes draw {
  0% {
    stroke-dashoffset: 1000;
  }
  30% {
    stroke-dashoffset: 0;
  }
  45% {
    stroke-dashoffset: 0;
  }
  75% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 1000;
  }
}
@keyframes svg-spin {
  0% {
    transform: scale(1) rotateY(0);
  }
  30% {
    transform: scale(1) rotateY(0);
  }
  35% {
    transform: scale(1.25) rotateY(0);
  }
  40% {
    transform: scale(1.25) rotateY(360deg);
  }
  45% {
    transform: scale(1) rotateY(360deg);
  }
  100% {
    transform: scale(1) rotateY(360deg);
  }
}
.cta-grid {
  background: var(--color-white);
  color: var(--color-midnight-black);
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 992px) {
  .cta-grid {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.cta-grid.block-theme-dark {
  background: var(--color-midnight-black);
  color: var(--color-white);
}
.cta-grid.block-theme-dark .cta-grid__intro {
  color: var(--color-white);
}
.cta-grid.block-theme-dark .cta-grid__empty {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
}
.cta-grid__layout {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4.5vw, 5rem);
}
@media (max-width: 992px) {
  .cta-grid__layout {
    gap: 2rem;
  }
}
.cta-grid__intro {
  color: var(--color-midnight-black);
}
.cta-grid__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  align-items: stretch;
}
.cta-grid__grid--count-1 {
  grid-template-columns: repeat(3, 1fr);
}
.cta-grid__grid--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cta-grid__grid--count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1200px) {
  .cta-grid__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-grid__grid.cta-grid__grid--count-1 {
    grid-template-columns: minmax(0, 2fr);
  }
  .cta-grid__grid.cta-grid__grid--count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-grid__grid.cta-grid__grid--count-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .cta-grid__grid {
    grid-template-columns: 1fr !important;
  }
}
.cta-grid__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: clamp(200px, 18vw, 300px);
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.5rem;
  background: var(--color-midnight-black);
  color: var(--color-white);
  isolation: isolate;
  text-decoration: none;
  box-shadow: 0 1rem 2.5rem rgba(3, 29, 36, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.cta-grid__card::before {
  content: "";
  display: block;
  grid-area: 1/1;
  pointer-events: none;
  visibility: hidden;
}
.cta-grid__card:hover .cta-grid__background-image, .cta-grid__card:focus-within .cta-grid__background-image {
  transform: scale(1.04);
}
.cta-grid__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--color-secondary);
}
.cta-grid__background:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, var(--color-secondary) 5%, transparent 35%);
  z-index: 1;
}
.cta-grid__background-image {
  bottom: 0;
  max-height: 100%;
  object-fit: contain;
  object-position: right bottom;
  position: absolute;
  right: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: 85%;
  opacity: 0.75;
  mix-blend-mode: screen;
}
.cta-grid__body {
  grid-area: 1/1;
  align-self: stretch;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  width: 100%;
}
.cta-grid__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
}
.cta-grid__icon-image, .cta-grid__icon-svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cta-grid__icon--svg {
  width: 3.5rem;
  height: 3.5rem;
}
.cta-grid__icon--animated {
  --offset: 0s;
}
.cta-grid__icon--animated svg {
  display: block;
  width: 4rem;
  height: 4rem;
  transform-style: preserve-3d;
  backface-visibility: visible;
  animation: svg-spin 5s linear infinite;
  animation-delay: var(--offset);
}
.cta-grid__icon--animated svg path {
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: draw 5s ease-in-out infinite;
}
.cta-grid__icon--animated svg path:nth-child(1) {
  animation-delay: calc(0s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(2) {
  animation-delay: calc(0.05s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(3) {
  animation-delay: calc(0.1s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(4) {
  animation-delay: calc(0.15s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(5) {
  animation-delay: calc(0.2s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(6) {
  animation-delay: calc(0.25s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(7) {
  animation-delay: calc(0.3s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(8) {
  animation-delay: calc(0.35s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(9) {
  animation-delay: calc(0.4s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(10) {
  animation-delay: calc(0.45s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(11) {
  animation-delay: calc(0.5s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(12) {
  animation-delay: calc(0.55s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(13) {
  animation-delay: calc(0.6s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(14) {
  animation-delay: calc(0.65s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(15) {
  animation-delay: calc(0.7s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(16) {
  animation-delay: calc(0.75s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(17) {
  animation-delay: calc(0.8s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(18) {
  animation-delay: calc(0.85s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(19) {
  animation-delay: calc(0.9s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(20) {
  animation-delay: calc(0.95s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(21) {
  animation-delay: calc(1s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(22) {
  animation-delay: calc(1.05s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(23) {
  animation-delay: calc(1.1s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(24) {
  animation-delay: calc(1.15s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(25) {
  animation-delay: calc(1.2s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(26) {
  animation-delay: calc(1.25s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(27) {
  animation-delay: calc(1.3s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(28) {
  animation-delay: calc(1.35s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(29) {
  animation-delay: calc(1.4s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(30) {
  animation-delay: calc(1.45s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(31) {
  animation-delay: calc(1.5s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(32) {
  animation-delay: calc(1.55s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(33) {
  animation-delay: calc(1.6s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(34) {
  animation-delay: calc(1.65s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(35) {
  animation-delay: calc(1.7s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(36) {
  animation-delay: calc(1.75s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(37) {
  animation-delay: calc(1.8s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(38) {
  animation-delay: calc(1.85s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(39) {
  animation-delay: calc(1.9s + var(--offset));
}
.cta-grid__icon--animated svg path:nth-child(40) {
  animation-delay: calc(1.95s + var(--offset));
}
.cta-grid__title {
  margin: 0 !important;
  max-width: 90%;
  color: inherit;
}
.cta-grid__content {
  max-width: 100%;
  margin: 0;
  color: var(--color-white);
}
.cta-grid__content p {
  margin: 0;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.4;
}
.cta-grid__content p + p {
  margin-top: 0.75rem;
}
@media (max-width: 992px) {
  .cta-grid__content {
    max-width: none;
  }
}
.cta-grid__footer {
  margin-top: auto;
  padding-top: 1.5rem;
}
.cta-grid__empty {
  display: grid;
  place-items: center;
  min-height: 18rem;
  padding: 2rem;
  border: 1px dashed rgba(5, 40, 49, 0.18);
  border-radius: 0.75rem;
  background: rgba(5, 40, 49, 0.03);
}
.cta-grid__empty p {
  margin: 0;
  text-align: center;
}
