@charset "UTF-8";
/*
 Theme Path
========================================================================== */
/*
 Font Family
========================================================================== */
/*
 Font Size
========================================================================== */
/*
 Colors
========================================================================== */
/*
 Helpers
========================================================================== */
/*
 Sizes
========================================================================== */
/*
 Columns
========================================================================== */
/*
 Buttons – @include button();
========================================================================== */
/* Fluid Type - Responsive fonts sizing
https://chriskirknielsen.com/blog/modern-fluid-typography-with-clamp/
usage: @include fluid-type(min viewport size, max viewport, min font size, max font size);
========================================================================== */
/*
 Tint (adds white) – @include tint(red, 10%);
========================================================================== */
/*
 Shade (adds black) – @include shade(red, 10%);
========================================================================== */
/*
 Hex to RGB – hextorgb(#000); //returns 0, 0, 0,
========================================================================== */
/*
 Object Fit – @include object-fit(cover);
========================================================================== */
/*
 Rows – @include rows(4,10px); px or % support
========================================================================== */
/*
 Aspect Ratio – @include aspect-ratio(9,16) 0r @include aspect-ratio(70%,30%)
========================================================================== */
/*
 Align Full – @include alignfull;
========================================================================== */
/*
 Min Width Query – @include media($desktop);
========================================================================== */
/*
 Max Width Query – @include media-height($tablet);
========================================================================== */
/*
 Min Width and Max Width Query – @include media-between($tablet, $desktop);
========================================================================== */
/*
 Min Height Query – @include media-height($tablet);
========================================================================== */
/*
 Truncate – @include truncate-text(ellipsis);
========================================================================== */
/*
 Rem to Pix Calculate for fonts
========================================================================== */
/*
 Font Size rem to pix – @include font-size(30px);
========================================================================== */
/*
 Rem Calculate – @include rem(padding, 30px);
========================================================================== */
/*
 Column width with margin
========================================================================== */
/*
 SCSS variable in background image with SVG image data URI
 usage – style="fill: friendly-color(var(--wp--preset--color--tertiary));"
========================================================================== */
/* -------------------------------------------------------------------------- */
/*                                   Resets                                   */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                                    Utils                                   */
/* -------------------------------------------------------------------------- */
.steps {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.steps__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(1px, 1fr));
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (max-width: 659px) {
  .steps__list {
    grid-template-columns: 100%;
  }
}
.steps__item {
  flex: 1 1 0px;
  display: flex;
  padding: 70px 50px;
  gap: 30px;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.2);
}
.steps__item:last-child {
  box-shadow: none;
}
@media screen and (max-width: 1344px) {
  .steps__item {
    padding-left: 20px;
    padding-right: 20px;
    gap: 15px;
  }
}
@media screen and (max-width: 999px) {
  .steps__item {
    padding-left: 30px;
    padding-right: 30px;
    flex-direction: column;
  }
}
@media screen and (max-width: 659px) {
  .steps__item {
    padding-left: 7%;
    padding-right: 7%;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 30px;
    flex-direction: row;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.2);
  }
}
@media screen and (max-width: 379px) {
  .steps__item {
    padding-left: 15px;
    padding-right: 15px;
    gap: 20px;
  }
}
.steps__item-icon-container {
  height: 100px;
  width: 100px;
  min-width: 100px;
  padding: 20px;
  border-radius: 50%;
  background-color: var(--wp--preset--color--primary);
  display: flex;
}
@media screen and (max-width: 379px) {
  .steps__item-icon-container {
    height: 85px;
    width: 85px;
    min-width: 85px;
  }
}
@media screen and (max-width: 659px) {
  .steps__item-content {
    max-width: 290px;
  }
}
.steps__item-icon {
  margin: auto;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.steps__item-title {
  font-size: 28px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0 0 14px;
  font-family: var(--wp--preset--font-family--secondary);
}
@media screen and (max-width: 379px) {
  .steps__item-title {
    font-size: 24px;
  }
}
.steps__item-description {
  line-height: 1.6 !important;
  font-size: 16px;
}
@media screen and (max-width: 659px) {
  .steps__item-description {
    max-width: 400px;
    margin: 0 auto;
  }
}
