@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                                   */
/* -------------------------------------------------------------------------- */
.quote {
  background-color: var(--wp--preset--color--tertiary);
  box-shadow: inset 2px 0 0 var(--wp--preset--color--primary-light);
  padding: 70px;
  position: relative;
  margin-bottom: 20px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .quote {
    padding: 60px 50px;
  }
}
@media screen and (max-width: 575px) {
  .quote {
    padding: 60px 30px;
  }
}
.quote__icon {
  position: absolute;
  bottom: -20px;
  right: 30px;
  z-index: -1;
  color: var(--wp--preset--color--primary);
  opacity: 0.15;
  background-size: contain;
  background-repeat: no-repeat;
  width: 376px;
  height: 269px;
  user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .quote__icon {
    width: 290px;
    height: 206px;
  }
}
@media screen and (max-width: 575px) {
  .quote__icon {
    display: none;
  }
}
.quote__blockquote {
  margin: 0;
}
.quote__text p {
  font-size: 28px;
  line-height: 1.8;
  color: var(--wp--preset--color--primary-dark);
  font-family: var(--wp--preset--font-family--secondary);
  font-style: italic;
  font-weight: 400;
  margin: 0 0 10px 0;
}
.quote__text p:last-child {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .quote__text p {
    font-size: 22px;
    line-height: 1.5;
  }
}
.quote__cite {
  display: block;
  margin-top: 40px;
}
.quote__name {
  display: block;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-weight: 700;
  margin-bottom: 10px;
}
.quote__subtitle {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}
