@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                                   */
/* -------------------------------------------------------------------------- */
/* Globals These styles should be loaded for the front only */
/*
 Max width and alignments
========================================================================== */
main.has-blocks .content-area > *,
.wp-block-media-text__content > * {
  max-width: 992px;
  margin-left: auto;
  margin-right: auto;
}
main.has-blocks .content-area > * + *:not(p, ul, ol),
.wp-block-media-text__content > * + *:not(p, ul, ol) {
  margin-top: var(--wp--style--block-gap);
}
main.has-blocks .content-area p:not(:first-child),
main.has-blocks .content-area ul:not(:first-child),
main.has-blocks .content-area ol:not(:first-child),
.wp-block-media-text__content p:not(:first-child),
.wp-block-media-text__content ul:not(:first-child),
.wp-block-media-text__content ol:not(:first-child) {
  margin-top: calc(var(--wp--style--block-gap) / 1.5);
}
main.has-blocks .content-area > .alignwide,
.wp-block-media-text__content > .alignwide {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
main.has-blocks .content-area .alignfull,
.wp-block-media-text__content .alignfull {
  margin-left: calc(-1 * clamp(1.25rem, 5vw, 3.75rem)) !important;
  margin-right: calc(-1 * clamp(1.25rem, 5vw, 3.75rem)) !important;
  width: unset;
  max-width: none;
}
main.has-blocks .content-area .alignfull .alignfull,
.wp-block-media-text__content .alignfull .alignfull {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
main.has-blocks .content-area .alignfull + .alignfull,
.wp-block-media-text__content .alignfull + .alignfull {
  margin-top: 0 !important;
}

/*
 Row and Stack Group blocks
========================================================================== */
.wp-block-group.is-vertical *, .wp-block-group.is-horizontal * {
  margin-top: 0 !important;
}

/*
 Page Break Block
========================================================================== */
div.page-links {
  font-size: 0;
  color: rgba(0, 0, 0, 0.0001);
  display: flex;
  align-items: center;
  justify-content: center;
}
div.page-links span, div.page-links a {
  font-size: 16px;
  min-width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  margin: 0 2px;
  transition: all 0.3s ease;
}
div.page-links span {
  color: white;
  background: #2d2d39;
}
div.page-links a {
  color: #444;
  text-decoration: none;
}
div.page-links a:hover {
  background: rgba(221, 221, 221, 0.3);
}

/*
 iframe video
========================================================================== */
.iframe-video {
  position: relative;
}
.iframe-video:before {
  content: "";
  float: left;
  padding-bottom: 56.25%;
}
.iframe-video:after {
  content: "";
  display: table;
  clear: both;
}
.iframe-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
 Block Error Notice
========================================================================== */
.components-placeholder {
  border: 1px solid #e6e6e6;
  padding: 15px 20px 15px 25px;
  box-shadow: inset 3px 0 0 0 #f95c71;
}
