@charset "UTF-8";
/*!
Theme Name: Fragilistics
Theme URI:
Author: Clear
Author URI: https://cleardesign.co.uk/
Description:
Version: 1.0
Tested up to: 5.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: Fragilistics

Copyright © 2021 Clear Design. All Rights Reserved.

This theme is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
Also based on Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/
/**
 * SETTINGS
 * Colors...............All the colours that the project will use, some may be selectable via the Block Editor.
 * Fonts................Any self-hosted font files, if the project needs specific fonts.
 * Typography...........Project-specific changes to font families, font sizes, weights, line heights etc.
 * Global...............Project-specific, additional globally available CSS variables.
 * Layout...............Horizontal widths and margins, used for the main components and blocks.
 * Vertical-margins.....Vertical spacing for the main components and blocks.
 * Buttons..............Project variables specific to buttons.
 * Links................Project variables specific to links.
 *
 * TOOLS
 * Mixins...............Global mixins.
 * Breakpoints..........Mixins and variables for responsive styles.
 *
 * GENERIC
 * Reset................Reset specific elements to make them easier to style in other contexts.
 * Base.................Styles for HTML/Body
 *
 * ELEMENTS
 * Blockquote...........Default blockquote.
 * Links................Default links.
 * Forms................Element-level form styling.
 * Buttons..............Default form buttons.
 * Media................Images, Figure, Figcaption, Embed, iFrame, Objects, Video.
 * Misc.................Additional miscellaneous elements.
 *
 * BLOCKS
 * _Core................Copied styles for blocks from the core WP styles. Provides base functionality.
 * Audio................Specific styles for the audio block.
 * Button...............Specific styles for the button block.
 * Code.................Specific styles for the code block.
 * Columns..............Specific styles for the columns block.
 * Cover................Specific styles for the cover block.
 * File.................Specific styles for the file block.
 * Gallery..............Specific styles for the gallery block.
 * Group................Specific styles for the group block.
 * Heading..............Specific styles for the heading block, and generically H1–H6.
 * Image................Specific styles for the image block.
 * Latest posts.........Specific styles for the latest posts block.
 * List.................Specific styles for the list block.
 * Media text...........Specific styles for the media and text block.
 * Paragraph............Specific styles for the paragraph block.
 * Pullquote............Specific styles for the pullquote block.
 * Quote................Specific styles for the quote block.
 * Search...............Specific styles for the search block.
 * Separator............Specific styles for the separator block.
 * Spacer...............Specific styles for the spacer block.
 * Table................Specific styles for the table block.
 * Video................Specific styles for the video block.
 * _Utilities...........Block alignments.
 *
 * COMPONENTS
 * _Header..............Header styles. Catch all for files in /header/ directory.
 * _Footer..............Footer styles. Catch all for files in /footer/ directory.
 * Comments.............Comment styles. Generally unused feature.
 * Card.................Basic Card component that can be shared.
 * Grid.................Basic Grid classes that allow auto grids of items, such as cards.
 * Archives.............Archive styles.
 * 404..................404 styles.
 * Search...............Search styles.
 * Pagination...........Pagination styles.
 * Single...............Single page and post styles.
 * Posts and pages......Misc, sticky post styles.
 * Entry................Entry, author biography.
 * Widget...............Widget styles.
 * Editor...............Editor styles.
 * Social-share.........Social sharing styles.
 *
 * COMPONENTS - OPTIONAL
 * _ACF.................ACF Built styles. Catch all for files in /acf/ directory.
 * _Shortcodes..........Styles for particular shortcodes. Catch all for files in /shortcodes/ directory.
 *
 * UTILITIES
 * A11y.................Screen reader text, prefers reduced motion etc.
 * Color Palette........Classes for the color palette colors. Uses SASS variables from global settings.
 * Editor Font Sizes....Editor Font Sizes. Uses SASS variables from global typography.
 * Helpers..............Additional generic helpers.
 *
 * VENDORS (Overriding CSS from external libraries/frameworks)
 * CF7..................Contact Form 7.
 * Swiper...............Swiper Carousel.
 */
/* Categories 01 to 03 are the basics. */
/*--------------------------------------------------------------
  Sass Variables
--------------------------------------------------------------*/
/*
	SASS array, as used for creating Block editor utility classes, see 07-utilities/_color-palette.scss
*/
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;600&display=swap");
:root {
  --palette--primary-green: #76B041;
  --palette--primary-hover: #659638;
  --palette--dark-black: #333333;
  --palette--gray: #DCDCDC;
  --palette--gray-D2C8BE: #D2C8BE;
  --palette--gray-818282: #818282;
  --palette--pink: #B07474;
  --palette--bg-gray: #2D7575;
  --palette--bg-pink-light: #E6CCBE;
  --palette--dark-light-gray: #2D7575;
  --palette--blue: #37A5E5;
  --palette--white: #ffffff;
  --palette--light-gray: #f9f9f9;
  --palette--mid-gray: #e1e1e1;
  --palette--dark-gray: #222222;
  --palette--black: #000000;
  --palette--white-50: rgba(255, 255, 255, 0.5);
  --palette--white-90: rgba(255, 255, 255, 0.9);
  --palette--black-20: rgba(0, 0, 0, 0.2);
  --palette--black-30: rgba(0, 0, 0, 0.3);
  --palette--black-80: rgba(0, 0, 0, 0.8);
  /*
  	--color-primary is the main colour used across the site.
  	Much of the blocks and components use this as part of the cascade.
  	i.e. Body text color, site title, footer text color.
  */
  --palette--primary: var(--palette--dark-black);
  /*
  	--color-secondary is the alternative colour used across the site.
  	Again blocks and components use this as part of the cascade.
  	i.e. Headings
  */
  --palette--secondary: var(--palette--dark-black);
  /*
  	Hyperlinks
  */
  --palette--link: initial;
  --palette--link-hover: initial;
  /*
  	Default body background
  */
  --palette--background: var(--palette--white);
  /*
  	Used for borders (e.g. separators)
  */
  --palette--border: var(--palette--mid-gray);
  /*
  	Forms

  	Configure forms, rather than directly changing 04-elements/_forms
  	Note this *doesn't* include buttons, see below
  */
  --form--text-color: var(--palette--dark-gray);
  --form--input-color: var(--palette--dark-gray);
  --form--input-background-color: var(--palette--white);
  --form--ranged-background-color: var(--palette--dark-gray);
  --form--border-color: var(--palette--dark-gray);
  --form--input-focus-color: var(--palette--black);
  --form--outline-color: var(--palette--black);
}

:root {
  --font-barlow: "Barlow", sans-serif;
  --fs-step-1: 42px;
  --fs-step-2: 28px;
  --fs-step-3: 24px;
  --fs-step-4: 20px;
  --fs-step-5: 20px;
  --fs-step-6: 14px;
}

* {
  font-family: "Barlow", sans-serif !important;
  font-family: var(--font-barlow) !important;
  outline: none;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Barlow", sans-serif !important;
  font-family: var(--font-barlow) !important;
  background-color: #DCDCDC !important;
  background-color: var(--palette--gray) !important;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}
body p,
body li,
body label {
  font-size: 20px;
  font-size: var(--fs-step-4);
  margin-bottom: 20px;
  line-height: 27px;
}
body h1 {
  font-size: 42px;
  font-size: var(--fs-step-1);
  line-height: 42px;
}
body h2 {
  font-size: 28px;
  font-size: var(--fs-step-2);
  line-height: 28px;
}
body h3 {
  font-size: 24px;
  font-size: var(--fs-step-3);
  line-height: 28.8px;
  font-weight: 300;
}
body h4 {
  font-size: 20px;
  font-size: var(--fs-step-4);
  line-height: 20px;
  font-weight: 300;
}
body h5 {
  font-size: 20px;
  font-size: var(--fs-step-5);
  line-height: 24px;
  font-weight: 300;
}
body h6 {
  font-size: 14px;
  font-size: var(--fs-step-6);
  line-height: 16.8px;
  font-weight: 300;
}

.heading {
  font-size: 42px;
  font-size: var(--fs-step-1);
  line-height: 42px;
}

.title {
  font-size: 28px;
  font-size: var(--fs-step-2);
  line-height: 28px;
}

.btn-common {
  background-color: #76B041;
  background-color: var(--palette--primary-green);
  font-size: 24px;
  text-align: center;
  min-width: 194px;
  padding: 10px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 400;
  color: #ffffff;
  color: var(--palette--white);
  display: inline-block;
  vertical-align: top;
  line-height: 28.8px;
  font-family: "Barlow", sans-serif;
  font-family: var(--font-barlow);
  text-decoration: none;
}
.btn-common:hover {
  background-color: #659638;
  background-color: var(--palette--primary-hover);
  color: #ffffff !important;
  color: var(--palette--white) !important;
  text-decoration: none;
}

@media (max-width: 767px) {
  .btn-common {
    font-size: 18px;
    min-width: 152px;
    padding: 8.5px 10px;
  }
}
/*
	Use fluid scaling font sizes from https://utopia.fyi/type/calculator/
	@link https://utopia.fyi/type/calculator?c=320,18,1.2,1500,18,1.25,5,2,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l
*/
:root {
  --fluid-min-width: 320;
  --fluid-max-width: 1420;
  --fluid-screen: 100vw;
  --fluid-bp: calc(
  	(var(--fluid-screen) - var(--fluid-min-width) / 16 * 1rem) /
  	(var(--fluid-max-width) - var(--fluid-min-width))
  );
}

@media screen and (min-width: 1420px) {
  :root {
    --fluid-screen: calc(var(--fluid-max-width) * 1px);
  }
}
:root {
  --f--2-min: 12;
  --f--2-max: 12;
  --step--2: calc(
  	((var(--f--2-min) / 16) * 1rem) + (var(--f--2-max) - var(--f--2-min)) *
  	var(--fluid-bp)
  );
  --f--1-min: 14;
  --f--1-max: 14;
  --step--1: calc(
  	((var(--f--1-min) / 16) * 1rem) + (var(--f--1-max) - var(--f--1-min)) *
  	var(--fluid-bp)
  );
  --f-0-min: 16.00;
  --f-0-max: 18.00;
  --step-0: calc(
  	((var(--f-0-min) / 16) * 1rem) + (var(--f-0-max) - var(--f-0-min)) *
  	var(--fluid-bp)
  );
  --f-1-min: 21.60;
  --f-1-max: 22.50;
  --step-1: calc(
  	((var(--f-1-min) / 16) * 1rem) + (var(--f-1-max) - var(--f-1-min)) *
  	var(--fluid-bp)
  );
  --f-2-min: 25.92;
  --f-2-max: 28.13;
  --step-2: calc(
  	((var(--f-2-min) / 16) * 1rem) + (var(--f-2-max) - var(--f-2-min)) *
  	var(--fluid-bp)
  );
  --f-3-min: 31.10;
  --f-3-max: 35.16;
  --step-3: calc(
  	((var(--f-3-min) / 16) * 1rem) + (var(--f-3-max) - var(--f-3-min)) *
  	var(--fluid-bp)
  );
  --f-4-min: 37.32;
  --f-4-max: 43.95;
  --step-4: calc(
  	((var(--f-4-min) / 16) * 1rem) + (var(--f-4-max) - var(--f-4-min)) *
  	var(--fluid-bp)
  );
  --f-5-min: 44.79;
  --f-5-max: 54.93;
  --step-5: calc(
  	((var(--f-5-min) / 16) * 1rem) + (var(--f-5-max) - var(--f-5-min)) *
  	var(--fluid-bp)
  );
  /*
  	Style Guide - Font Family

  	Ideally use locally hosted fonts, add @font-face rules to fonts.scss
  	Otherwise set via WP enqueued styles in 'core.php' and add to each line below.

  	System Font Stack:
  	"Apple Garamond", Baskerville, "Times New Roman", "Droid Serif", Times, "Source Serif Pro", serif;
  	-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  */
  --font-headings: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  /*
  	Style Guide - Line Height
  */
  --line-height-body: 1.67;
  --line-height-heading: 1.2;
  /*
  	Style Guide - Headings - Font Sizes
   */
  --heading--font-size-h1: var(--step-5);
  --heading--font-size-h2: var(--step-4);
  --heading--font-size-h3: var(--step-3);
  --heading--font-size-h4: var(--step-2);
  --heading--font-size-h5: var(--step-1);
  --heading--font-size-h6: var(--step-0);
  /*
  	Style Guide - Headings - Letter Spacings (if required)
   */
  --heading--letter-spacing-h1: normal;
  --heading--letter-spacing-h2: normal;
  --heading--letter-spacing-h3: normal;
  --heading--letter-spacing-h4: normal;
  --heading--letter-spacing-h5: 0.05em;
  --heading--letter-spacing-h6: 0.05em;
  /*
  	Style Guide - Headings - Line Spacing
   */
  --heading--line-height-h1: 1.1;
  --heading--line-height-h2: var(--line-height-heading);
  --heading--line-height-h3: var(--line-height-heading);
  --heading--line-height-h4: var(--line-height-heading);
  --heading--line-height-h5: var(--line-height-heading);
  --heading--line-height-h6: var(--line-height-heading);
  /*
  	Style Guide - Font Weights
   */
  --font-weight-base: 200;
  --heading--font-weight: 400;
  --heading--font-weight-light: 400;
  --heading--font-weight-strong: 600;
  /*
  	Forms

  	Configure forms, rather than directly changing 04-elements/_forms
  	Note this *doesn't* include buttons, see below
     */
  --form--font-family: var(--font-base);
  --form--text-size: var(--step-0);
  --form--font-size: Max(16px, 1em);
  --form--line-height: var(--line-height-body);
  --form--label-weight: 500;
  --form--input-min-height: 60px;
  --form--spacing-unit: 1em;
  --form--border-width: 2px;
  --form--border-radius: 0;
  --form--outline-width: Max(2px, 0.08em);
}

/*
	Responsive Breakpoints
*/
/*
	Use fluid scaling spacing from https://utopia.fyi/space/calculator/
	@link https://utopia.fyi/type/calculator?c=320,18,1.2,1500,18,1.25,5,2,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l
*/
:root {
  /*
  	Spacing - WIP

  	Most elements/components across the site use these as margins
  	Works in conjunction with the _vertical-margins.scss include
   */
  --spacing-horizontal: 20px;
  --spacing-vertical: 40px;
  --browser-margin: var(--spacing-horizontal);
  --default-margins: calc(0.5 * var(--spacing-vertical));
  --heading-margins: 30px;
  --separator-margins: 50px;
  --block-margins: var(--spacing-vertical);
  --hero-margins: 45px;
  /*
  	Archive listings
   */
  --listing--min-width: 40ch;
  --listing--gap-width: max(min(4vw, 3.5rem), var(--spacing-horizontal));
}
@media only screen and (min-width: 768px) {
  :root {
    --default-margins: var(--spacing-vertical);
    --separator-margins: 80px;
    --block-margins: calc(2 * var(--spacing-vertical));
    --hero-margins: 120px;
  }
}

/*
	Responsive Breakpoints
*/
/**
 * Responsive layouts
 */
/**
 * Root Media Query Variables
 */
:root {
  --responsive--alignnarrow-width: calc(100vw - 2 * var(--browser-margin));
  --responsive--aligndefault-width: calc(100vw - 2 * var(--browser-margin));
  --responsive--alignwide-width: calc(100vw - 2 * var(--browser-margin));
  --responsive--alignfull-width: calc(100vw - 2 * var(--browser-margin));
}

@media only screen and (min-width: 768px) {
  :root {
    --responsive--alignnarrow-width: min(calc(100% - 2 * var(--browser-margin)), 840px);
    --responsive--aligndefault-width: min(calc(100% - 2 * var(--browser-margin)), 1140px);
    --responsive--alignwide-width: min(calc(100% - 2 * var(--browser-margin)), 1440px);
    --responsive--alignfull-width: min(calc(100% - 2 * var(--browser-margin)), 1720px);
  }

  :root body.single-post {
    --responsive--alignwide-width: min(calc(100vw - 2 * var(--browser-margin)), 1440px);
  }
}
/**
 * SASS Extends, used throughout
 */
.post-thumbnail, .site-footer__top-widget-area > *, .entry-content > *:not(:is(.alignwide, .alignfull, .alignleft, .alignright, .wp-block-separator)),
*[class*=inner-container] > *:not(:is(.alignwide, .alignfull, .alignleft, .alignright, .wp-block-separator)), .default-max-width {
  max-width: calc(100vw - 2 * 20px);
  max-width: var(--responsive--aligndefault-width);
  margin-left: auto;
  margin-right: auto;
}

.pagination,
.comments-pagination, .post-navigation, .entry-header .post-thumbnail, .singular .post-thumbnail, .site-footer__credits__inner, .alignfull [class*=inner-container] > .alignwide, .alignwide [class*=inner-container] > .alignwide, .alignwide, .wp-block-group:not(.is-style-carousel) .wp-block-group__inner-container > *.alignwide, .wide-max-width {
  max-width: calc(100vw - 2 * 20px);
  max-width: var(--responsive--alignwide-width);
  margin-left: auto;
  margin-right: auto;
}

.alignfull, .wp-block-group:not(.is-style-carousel) .wp-block-group__inner-container > *.alignfull, .full-max-width {
  max-width: calc(100vw - 2 * 20px);
  max-width: var(--responsive--alignfull-width);
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

/*
	Responsive Breakpoints
*/
/**
 * Site Structure
 *
 * - Set vertical margins and responsive widths on
 *   top-level wrappers and content wrappers
 */
/**
 * Top Level Wrappers (header, main, footer)
 * - Set vertical padding and horizontal margins
 */
.site-header,
.site-main,
.widget-area,
.site-footer {
  padding-top: 0;
  padding-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

/*
 * Block & non-gutenberg content wrappers
 * - Set margins
 */
.entry-header,
.entry-content,
.author-bio {
  margin-top: 40px;
  margin-top: var(--spacing-vertical);
  margin-right: auto;
  margin-bottom: 40px;
  margin-bottom: var(--spacing-vertical);
  margin-left: auto;
}

/*
 * Block & non-gutenberg content wrapper children
 * - Sets spacing-vertical margin logic
 */
.site-main > article > *:not(:is(h1, h2, h3, h4, h5, h6)),
.list-wrapper > article > *:not(:is(h1, h2, h3, h4, h5, h6)),
.site-main > .not-found > *:not(:is(h1, h2, h3, h4, h5, h6)),
.hero-content > *:not(:is(h1, h2, h3, h4, h5, h6)),
.entry-content > *:not(:is(h1, h2, h3, h4, h5, h6)),
.template-content > *:not(:is(h1, h2, h3, h4, h5, h6)),
[class*=inner-container] > *:not(:is(h1, h2, h3, h4, h5, h6)),
.wp-block-columns > .wp-block-column > *:not(:is(h1, h2, h3, h4, h5, h6)),
.wp-block-media-text > .wp-block-media-text__content > *:not(:is(h1, h2, h3, h4, h5, h6)),
.wp-block-template-part > *:not(:is(h1, h2, h3, h4, h5, h6)) {
  margin-top: calc(0.5 * 40px);
  margin-top: var(--default-margins);
  margin-bottom: calc(0.5 * 40px);
  margin-bottom: var(--default-margins);
}
.site-main > article > *:is(h1, h2, h3, h4, h5, h6),
.list-wrapper > article > *:is(h1, h2, h3, h4, h5, h6),
.site-main > .not-found > *:is(h1, h2, h3, h4, h5, h6),
.hero-content > *:is(h1, h2, h3, h4, h5, h6),
.entry-content > *:is(h1, h2, h3, h4, h5, h6),
.template-content > *:is(h1, h2, h3, h4, h5, h6),
[class*=inner-container] > *:is(h1, h2, h3, h4, h5, h6),
.wp-block-columns > .wp-block-column > *:is(h1, h2, h3, h4, h5, h6),
.wp-block-media-text > .wp-block-media-text__content > *:is(h1, h2, h3, h4, h5, h6),
.wp-block-template-part > *:is(h1, h2, h3, h4, h5, h6) {
  margin-top: 30px;
  margin-top: var(--heading-margins);
  margin-bottom: 30px;
  margin-bottom: var(--heading-margins);
}
.site-main > article > *:is(h1, h2, h3, h4, h5, h6) + :not([class*=wp-block-]):not(ul),
.list-wrapper > article > *:is(h1, h2, h3, h4, h5, h6) + :not([class*=wp-block-]):not(ul),
.site-main > .not-found > *:is(h1, h2, h3, h4, h5, h6) + :not([class*=wp-block-]):not(ul),
.hero-content > *:is(h1, h2, h3, h4, h5, h6) + :not([class*=wp-block-]):not(ul),
.entry-content > *:is(h1, h2, h3, h4, h5, h6) + :not([class*=wp-block-]):not(ul),
.template-content > *:is(h1, h2, h3, h4, h5, h6) + :not([class*=wp-block-]):not(ul),
[class*=inner-container] > *:is(h1, h2, h3, h4, h5, h6) + :not([class*=wp-block-]):not(ul),
.wp-block-columns > .wp-block-column > *:is(h1, h2, h3, h4, h5, h6) + :not([class*=wp-block-]):not(ul),
.wp-block-media-text > .wp-block-media-text__content > *:is(h1, h2, h3, h4, h5, h6) + :not([class*=wp-block-]):not(ul),
.wp-block-template-part > *:is(h1, h2, h3, h4, h5, h6) + :not([class*=wp-block-]):not(ul) {
  margin-top: 30px;
  margin-top: var(--heading-margins);
}
.site-main > article > *:is(h1, h2, h3, h4, h5, h6) + [class*=wp-block-],
.list-wrapper > article > *:is(h1, h2, h3, h4, h5, h6) + [class*=wp-block-],
.site-main > .not-found > *:is(h1, h2, h3, h4, h5, h6) + [class*=wp-block-],
.hero-content > *:is(h1, h2, h3, h4, h5, h6) + [class*=wp-block-],
.entry-content > *:is(h1, h2, h3, h4, h5, h6) + [class*=wp-block-],
.template-content > *:is(h1, h2, h3, h4, h5, h6) + [class*=wp-block-],
[class*=inner-container] > *:is(h1, h2, h3, h4, h5, h6) + [class*=wp-block-],
.wp-block-columns > .wp-block-column > *:is(h1, h2, h3, h4, h5, h6) + [class*=wp-block-],
.wp-block-media-text > .wp-block-media-text__content > *:is(h1, h2, h3, h4, h5, h6) + [class*=wp-block-],
.wp-block-template-part > *:is(h1, h2, h3, h4, h5, h6) + [class*=wp-block-] {
  margin-top: calc(0.5 * 40px);
  margin-top: var(--default-margins);
}
.site-main > article > *[class*=wp-block-],
.list-wrapper > article > *[class*=wp-block-],
.site-main > .not-found > *[class*=wp-block-],
.hero-content > *[class*=wp-block-],
.entry-content > *[class*=wp-block-],
.template-content > *[class*=wp-block-],
[class*=inner-container] > *[class*=wp-block-],
.wp-block-columns > .wp-block-column > *[class*=wp-block-],
.wp-block-media-text > .wp-block-media-text__content > *[class*=wp-block-],
.wp-block-template-part > *[class*=wp-block-] {
  margin-top: 40px;
  margin-top: var(--block-margins);
  margin-bottom: 40px;
  margin-bottom: var(--block-margins);
}
.site-main > article > *.wp-block-separator,
.list-wrapper > article > *.wp-block-separator,
.site-main > .not-found > *.wp-block-separator,
.hero-content > *.wp-block-separator,
.entry-content > *.wp-block-separator,
.template-content > *.wp-block-separator,
[class*=inner-container] > *.wp-block-separator,
.wp-block-columns > .wp-block-column > *.wp-block-separator,
.wp-block-media-text > .wp-block-media-text__content > *.wp-block-separator,
.wp-block-template-part > *.wp-block-separator {
  margin-top: 50px;
  margin-top: var(--separator-margins);
  margin-bottom: 50px;
  margin-bottom: var(--separator-margins);
}
.site-main > article > *:first-child,
.list-wrapper > article > *:first-child,
.site-main > .not-found > *:first-child,
.hero-content > *:first-child,
.entry-content > *:first-child,
.template-content > *:first-child,
[class*=inner-container] > *:first-child,
.wp-block-columns > .wp-block-column > *:first-child,
.wp-block-media-text > .wp-block-media-text__content > *:first-child,
.wp-block-template-part > *:first-child {
  margin-top: 0;
}
.site-main > article > *:last-child,
.list-wrapper > article > *:last-child,
.site-main > .not-found > *:last-child,
.hero-content > *:last-child,
.entry-content > *:last-child,
.template-content > *:last-child,
[class*=inner-container] > *:last-child,
.wp-block-columns > .wp-block-column > *:last-child,
.wp-block-media-text > .wp-block-media-text__content > *:last-child,
.wp-block-template-part > *:last-child {
  margin-bottom: 0;
}

.site-footer {
  margin-top: 0;
}

.site-footer > * {
  margin-top: calc(2 * 40px);
  margin-top: calc(2 * var(--spacing-vertical));
  margin-bottom: calc(2 * 40px);
  margin-bottom: calc(2 * var(--spacing-vertical));
}
.site-footer > *:first-child {
  margin-top: 0;
}
.site-footer > *:last-child {
  margin-bottom: 0;
}

/*
 * Block & non-gutenberg content wrapper children
 * - Sets spacing-unit margins
 */
/*
 * Specially for archive, search, 404 page headings
 */
/*
 * .entry-content children specific controls
 * - Adds special margin overrides for alignment utility classes
 */
:root {
  /*
  	Buttons

  	Shared form buttons and Block buttons
  */
  --button--color-text: var(--palette--primary);
  --button--color-text-hover: var(--palette--primary);
  --button--color-text-active: var(--palette--primary);
  --button--color-background: var(--palette--secondary);
  --button--color-background-active: var(--palette--secondary);
  --button--font-family: inherit;
  --button--font-size: var(--step--1);
  --button--font-weight: 300;
  --button--line-height: normal;
  --button--border-width: 1px;
  --button--border-radius: 3px;
  --button--border-color: var(--palette--primary);
  --button--padding-vertical: 20px;
  --button--padding-horizontal: 30px;
}

:root {
  /*
  	SVG Icons - WIP
  */
  --icon-size-unit: 24px;
  /*
  	Block: Banner/Hero
  	Located here to share between frontend/backend
  */
  --hero--color-background: var(--palette--blue);
  --hero--color-foreground: var(--palette--white);
  --hero--heading-font-size: var(--step-5);
  --hero--heading-line-height: 1.1;
  --hero--text-font-size: var(--step-2);
  --hero--min-height: min(100vh, 450px);
  /*
  	Block: Cover
  	Located here to share between frontend/backend
  */
  --cover--min-height: min(11.5 * var(--spacing-vertical), 100vh);
  --cover--color-background: var(--palette--light-gray);
  --cover--color-foreground: var(--palette--blue);
  --cover--heading-font-size: var(--step-5);
  --cover--heading-line-height: 1.1;
  /*
  	Block: Separator
  	Located here to share between frontend/backend
  */
  --separator--border-color: var(--palette--border);
  --separator--height: 1px;
  /*
  	Block: Latest Posts
  	Located here to share between frontend/backend
  */
  --latest-posts--title-font-family: var(--font-headings);
  --latest-posts--title-font-size: var(--step-2);
  --latest-posts--description-font-family: var(--font-base);
  --latest-posts--description-font-size: var(--step-0);
  /*
  	Admin-bar height - Set on root to allow header etc to use
  */
  --global--admin-bar--height: 0px;
}
:root body.home {
  --hero--min-height: calc(100vh - var(--header-height, 0px));
}

.admin-bar {
  --global--admin-bar--height: 32px;
}
@media only screen and (max-width: 782px) {
  .admin-bar {
    --global--admin-bar--height: 46px;
  }
}

/*
	Responsive Breakpoints
*/
/*
	A Modern CSS Reset
	@link https://piccalil.li/blog/a-modern-css-reset/
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: calc(100vh - 0px);
  min-height: calc(100vh - var(--global--admin-bar--height, 0));
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html[focus-within] {
    scroll-behavior: auto;
  }
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
p:empty {
  display: none !important;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: var(--font-base);
  font-weight: 200;
  line-height: 1.67;
  line-height: var(--line-height-body);
  background-color: #ffffff;
  background-color: var(--palette--background);
}

body {
  font-size: calc(
  	((16.00 / 16) * 1rem) + (18.00 - 16.00) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-0);
  font-weight: 200;
  font-weight: var(--font-weight-base);
  color: #333333;
  color: var(--palette--primary);
  text-align: left;
  background-color: #ffffff;
  background-color: var(--palette--background);
  overflow-x: hidden;
}

a:focus {
  outline: none !important;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
  outline: none !important;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:active {
  outline: none !important;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button {
  outline: none !important;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.fr-container {
  max-width: 1140px;
  width: 100%;
  padding: 0 26px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.fr-row {
  display: flex;
}

.fr-center {
  text-align: center;
}

.section-gapping {
  padding-top: 40px;
  padding-bottom: 50px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.bg-gray {
  background-color: #2D7575;
  background-color: var(--palette--bg-gray);
}

.bg-pink {
  background-color: #B07474;
  background-color: var(--palette--pink);
}

.bg-pink-light {
  background-color: #E6CCBE;
  background-color: var(--palette--bg-pink-light);
}

.bg-white {
  background-color: #ffffff !important;
  background-color: var(--palette--white) !important;
}

img {
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

@media (max-width: 767px) {
  body p {
    font-size: 18px;
    line-height: 21.6px;
  }
  body h1 {
    font-size: 28px;
    line-height: 28px;
  }
  body h2 {
    font-size: 24px;
    line-height: 24px;
  }
  body h3 {
    font-size: 18px;
    line-height: 23.4px;
  }
  body h4 {
    font-size: 16px;
    line-height: 26px;
  }
  body h5 {
    font-size: 16px;
    line-height: 19.2px;
  }
  body h6 {
    font-size: 14px;
    line-height: 16.8px;
  }

  .heading {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 10px;
  }

  .title {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .fr-row {
    flex-direction: column;
  }

  .section-gapping {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .fr-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* Category 04 can contain any default HTML element. Should not add classes here, just give the elements some basic styles. */
/*
	Responsive Breakpoints
*/
:root {
  /* Block: Basic Blockquotes, floated */
  --quote--font-family: var(--font-base);
  --quote--font-family-large: var(--font-headings);
  --quote--font-size: var(--step-1);
  --quote--font-size-large: var(--step-3);
  --quote--font-style: italic;
  --quote--font-weight: 200;
  --quote--font-weight-large: normal;
  --quote--font-weight-strong: 700;
  --quote--font-style-large: italic;
  --quote--font-style-cite: normal;
  --quote--line-height: 1.35;
  --quote--line-height-large: var(--line-height-body);
  /* Block: Pullquote, i.e. fancier blockquote that can have a width */
  --pullquote--font-family: var(--font-headings);
  --pullquote--font-size: var(--step-2);
  --pullquote--font-style: italic;
  --pullquote--letter-spacing: normal;
  --pullquote--line-height: var(--line-height-heading);
  --pullquote--border-width: 3px;
  --pullquote--border-color: var(--palette--primary);
  --pullquote--color-foreground: var(--palette--primary);
  --pullquote--color-background: var(--palette--background);
}

blockquote {
  padding: 0;
  position: relative;
  margin: 40px 0 40px 20px;
  margin: var(--spacing-vertical) 0 var(--spacing-vertical) var(--spacing-horizontal);
}
.swiper-slide[class] blockquote {
  max-width: calc(100vw - 2 * 20px);
  max-width: var(--responsive--alignnarrow-width);
  margin-top: 0;
  margin-bottom: calc(2 * 40px);
  margin-bottom: calc(2 * var(--spacing-vertical));
}
blockquote > * {
  margin-top: 40px;
  margin-top: var(--spacing-vertical);
  margin-bottom: 40px;
  margin-bottom: var(--spacing-vertical);
}
blockquote > *:first-child {
  margin-top: 0;
}
blockquote > *:last-child {
  margin-bottom: 0;
}
blockquote p {
  letter-spacing: normal;
  letter-spacing: var(--heading--letter-spacing-h4);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: var(--quote--font-family);
  font-size: calc(
  	((21.60 / 16) * 1rem) + (22.50 - 21.60) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--quote--font-size);
  font-style: italic;
  font-style: var(--quote--font-style);
  font-weight: 200;
  font-weight: var(--quote--font-weight);
  line-height: 1.35;
  line-height: var(--quote--line-height);
}
blockquote cite,
blockquote footer {
  font-weight: 300;
  color: #333333;
  color: var(--palette--primary);
  font-size: calc(
  	((21.60 / 16) * 1rem) + (22.50 - 21.60) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--quote--font-size);
  letter-spacing: normal;
}
blockquote.alignleft, blockquote.alignright {
  padding-left: inherit;
}
blockquote.alignleft p, blockquote.alignright p {
  font-size: calc(
  	((21.60 / 16) * 1rem) + (22.50 - 21.60) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-1);
  max-width: inherit;
  width: inherit;
}
blockquote.alignleft cite,
blockquote.alignleft footer, blockquote.alignright cite,
blockquote.alignright footer {
  font-size: calc(
  	((21.60 / 16) * 1rem) + (22.50 - 21.60) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--quote--font-size);
  letter-spacing: normal;
}
blockquote strong {
  font-weight: 700;
  font-weight: var(--quote--font-weight-strong);
}
blockquote:before {
  content: "“";
  font-size: calc(
  	((21.60 / 16) * 1rem) + (22.50 - 21.60) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--quote--font-size);
  line-height: 1.35;
  line-height: var(--quote--line-height);
  position: absolute;
  left: calc(-0.5 * 20px);
  left: calc(-0.5 * var(--spacing-horizontal));
}
blockquote .wp-block-quote__citation,
blockquote cite,
blockquote footer {
  color: #333333;
  color: var(--palette--primary);
  font-size: calc(
  	((21.60 / 16) * 1rem) + (22.50 - 21.60) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--quote--font-size);
  font-style: normal;
  font-style: var(--quote--font-style-cite);
}
@media only screen and (max-width: 767px) {
  blockquote {
    padding-left: calc(0.5 * 20px);
    padding-left: calc(0.5 * var(--spacing-horizontal));
  }
  blockquote:before {
    left: 0;
  }
}

/*
 * text-underline-offset doesn't work in Chrome at all 👎
 * But looks nice in Safari/Firefox, so let's keep it and
 * maybe Chrome will support it soon.
 */
a {
  cursor: pointer;
  color: initial;
  color: var(--palette--link);
  text-underline-offset: 0.15em;
  -webkit-text-decoration-skip-ink: all;
          text-decoration-skip-ink: all;
}
a svg {
  fill: currentColor;
}
a:hover, a:focus {
  color: initial;
  color: var(--palette--link-hover);
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
a[href^="tel:"] {
  white-space: nowrap;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
  word-break: normal;
}

:is(a, button, input, textarea):not(.wp-block-button__link):not(.wp-block-file__button) {
  --outline-unit: max(2px, 0.08em);
  --outline-style: solid;
  --outline-color: currentColor;
}
:is(a, button, input, textarea):not(.wp-block-button__link):not(.wp-block-file__button):focus {
  outline: var(--outline-unit) var(--outline-style) var(--outline-color);
  outline-offset: var(--outline-unit);
  outline-offset: var(--outline-offset, var(--outline-unit));
}
:is(a, button, input, textarea):not(.wp-block-button__link):not(.wp-block-file__button):focus:not(.focus-visible) {
  outline: none;
}
:is(a, button, input, textarea):not(.wp-block-button__link):not(.wp-block-file__button):focus:not(:focus-visible) {
  outline: none;
}
:is(a, button, input, textarea):not(.wp-block-button__link):not(.wp-block-file__button).focus-visible {
  outline: var(--outline-unit) var(--outline-style) var(--outline-color);
  outline-offset: var(--outline-unit);
  outline-offset: var(--outline-offset, var(--outline-unit));
}
:is(a, button, input, textarea):not(.wp-block-button__link):not(.wp-block-file__button):focus-visible {
  outline: var(--outline-unit) var(--outline-style) var(--outline-color);
  outline-offset: var(--outline-unit);
  outline-offset: var(--outline-offset, var(--outline-unit));
}

.has-background .has-link-color a, .has-background.has-link-color a {
  color: initial;
  color: var(--palette--link);
}

/*
	Responsive Breakpoints
*/
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
.site textarea {
  border: 2px solid #222222;
  border: var(--form--border-width) solid var(--form--border-color);
  border-radius: 0;
  border-radius: var(--form--border-radius);
  color: #222222;
  color: var(--form--input-color);
  font-size: Max(16px, 1em);
  font-size: var(--form--font-size);
  line-height: 1.67;
  line-height: var(--form--line-height);
  padding: 0.25em 0.5em;
  min-height: 60px;
  min-height: var(--form--input-min-height);
  max-width: 100%;
  margin: 0;
  transition: 180ms box-shadow ease-in-out;
  --form--outline-style: solid;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=color]::-moz-placeholder, .site textarea::-moz-placeholder {
  color: #222222;
  color: var(--form--input-color);
  font-size: Max(16px, 1em);
  font-size: var(--form--font-size);
  font-style: italic;
  font-weight: 400;
  opacity: 0.5;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, input[type=month]:-ms-input-placeholder, input[type=week]:-ms-input-placeholder, input[type=time]:-ms-input-placeholder, input[type=datetime]:-ms-input-placeholder, input[type=datetime-local]:-ms-input-placeholder, input[type=color]:-ms-input-placeholder, .site textarea:-ms-input-placeholder {
  color: #222222;
  color: var(--form--input-color);
  font-size: Max(16px, 1em);
  font-size: var(--form--font-size);
  font-style: italic;
  font-weight: 400;
  opacity: 0.5;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=time]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=color]::placeholder,
.site textarea::placeholder {
  color: #222222;
  color: var(--form--input-color);
  font-size: Max(16px, 1em);
  font-size: var(--form--font-size);
  font-style: italic;
  font-weight: 400;
  opacity: 0.5;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
.site textarea:focus {
  color: #222222;
  color: var(--form--input-color);
  border-color: #000000;
  border-color: var(--form--input-focus-color);
  box-shadow: 0 0 0 2px #000000;
  box-shadow: 0 0 0 2px var(--form--input-focus-color);
  outline: Max(2px, 0.08em) var(--form--outline-style) #000000;
  outline: var(--form--outline-width) var(--form--outline-style) var(--form--outline-color);
  outline-offset: Max(2px, 0.08em);
  outline-offset: var(--form--outline-width);
}
input[type=text]:focus:not(.focus-visible),
input[type=email]:focus:not(.focus-visible),
input[type=url]:focus:not(.focus-visible),
input[type=password]:focus:not(.focus-visible),
input[type=search]:focus:not(.focus-visible),
input[type=number]:focus:not(.focus-visible),
input[type=tel]:focus:not(.focus-visible),
input[type=date]:focus:not(.focus-visible),
input[type=month]:focus:not(.focus-visible),
input[type=week]:focus:not(.focus-visible),
input[type=time]:focus:not(.focus-visible),
input[type=datetime]:focus:not(.focus-visible),
input[type=datetime-local]:focus:not(.focus-visible),
input[type=color]:focus:not(.focus-visible),
.site textarea:focus:not(.focus-visible) {
  outline: none;
}
input[type=text]:focus:not(:focus-visible),
input[type=email]:focus:not(:focus-visible),
input[type=url]:focus:not(:focus-visible),
input[type=password]:focus:not(:focus-visible),
input[type=search]:focus:not(:focus-visible),
input[type=number]:focus:not(:focus-visible),
input[type=tel]:focus:not(:focus-visible),
input[type=date]:focus:not(:focus-visible),
input[type=month]:focus:not(:focus-visible),
input[type=week]:focus:not(:focus-visible),
input[type=time]:focus:not(:focus-visible),
input[type=datetime]:focus:not(:focus-visible),
input[type=datetime-local]:focus:not(:focus-visible),
input[type=color]:focus:not(:focus-visible),
.site textarea:focus:not(:focus-visible) {
  outline: none;
}
input[type=text].focus-visible,
input[type=email].focus-visible,
input[type=url].focus-visible,
input[type=password].focus-visible,
input[type=search].focus-visible,
input[type=number].focus-visible,
input[type=tel].focus-visible,
input[type=date].focus-visible,
input[type=month].focus-visible,
input[type=week].focus-visible,
input[type=time].focus-visible,
input[type=datetime].focus-visible,
input[type=datetime-local].focus-visible,
input[type=color].focus-visible,
.site textarea.focus-visible {
  outline: Max(2px, 0.08em) var(--form--outline-style) #000000;
  outline: var(--form--outline-width) var(--form--outline-style) var(--form--outline-color);
  outline-offset: Max(2px, 0.08em);
  outline-offset: var(--form--outline-width);
}
input[type=text]:focus-visible,
input[type=email]:focus-visible,
input[type=url]:focus-visible,
input[type=password]:focus-visible,
input[type=search]:focus-visible,
input[type=number]:focus-visible,
input[type=tel]:focus-visible,
input[type=date]:focus-visible,
input[type=month]:focus-visible,
input[type=week]:focus-visible,
input[type=time]:focus-visible,
input[type=datetime]:focus-visible,
input[type=datetime-local]:focus-visible,
input[type=color]:focus-visible,
.site textarea:focus-visible {
  outline: Max(2px, 0.08em) var(--form--outline-style) #000000;
  outline: var(--form--outline-width) var(--form--outline-style) var(--form--outline-color);
  outline-offset: Max(2px, 0.08em);
  outline-offset: var(--form--outline-width);
}
input[type=text]:disabled,
input[type=email]:disabled,
input[type=url]:disabled,
input[type=password]:disabled,
input[type=search]:disabled,
input[type=number]:disabled,
input[type=tel]:disabled,
input[type=date]:disabled,
input[type=month]:disabled,
input[type=week]:disabled,
input[type=time]:disabled,
input[type=datetime]:disabled,
input[type=datetime-local]:disabled,
input[type=color]:disabled,
.site textarea:disabled {
  opacity: 0.6;
}

input[type=search]:focus {
  outline-offset: -7px;
}
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type=color] {
  min-height: 60px;
  min-height: var(--form--input-min-height);
}

input[type=email],
input[type=url] {
  /*rtl:ignore*/
  direction: ltr;
}

select {
  border: 2px solid #222222;
  border: var(--form--border-width) solid var(--form--border-color);
  color: #222222;
  color: var(--form--input-color);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  font-size: Max(16px, 1em);
  font-size: var(--form--font-size);
  line-height: 1.67;
  line-height: var(--line-height-body);
  padding: 0.25em 1.5em 0.25em 0.25em;
  background-color: #ffffff;
  background-color: var(--form--input-background-color);
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23000000' height='8' width='12' viewBox='0 0 11.32 7.062' xmlns='http://www.w3.org/2000/svg'><path d='M0 1.406L1.42-.008l4.24 4.242L9.9-.008l1.42 1.414-5.66 5.657z'/></svg>"), linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23000000' height='8' width='12' viewBox='0 0 11.32 7.062' xmlns='http://www.w3.org/2000/svg'><path d='M0 1.406L1.42-.008l4.24 4.242L9.9-.008l1.42 1.414-5.66 5.657z'/></svg>"), linear-gradient(to bottom, var(--form--input-background-color) 0%, var(--form--input-background-color) 100%);
  background-repeat: no-repeat, repeat;
  /* arrow icon position (1em from the right, 50% vertical), then gradient position */
  background-position: right 0.25em top 50%;
  /* icon size, then gradient */
  background-size: 1em auto, 100%;
  --form--outline-style: dotted;
}
select:focus {
  outline: Max(2px, 0.08em) var(--form--outline-style) #000000;
  outline: var(--form--outline-width) var(--form--outline-style) var(--form--outline-color);
  outline-offset: Max(2px, 0.08em);
  outline-offset: var(--form--outline-width);
}
select:focus:not(.focus-visible) {
  outline: none;
}
select:focus:not(:focus-visible) {
  outline: none;
}
select.focus-visible {
  outline: Max(2px, 0.08em) var(--form--outline-style) #000000;
  outline: var(--form--outline-width) var(--form--outline-style) var(--form--outline-color);
  outline-offset: Max(2px, 0.08em);
  outline-offset: var(--form--outline-width);
}
select:focus-visible {
  outline: Max(2px, 0.08em) var(--form--outline-style) #000000;
  outline: var(--form--outline-width) var(--form--outline-style) var(--form--outline-color);
  outline-offset: Max(2px, 0.08em);
  outline-offset: var(--form--outline-width);
}

textarea {
  display: block;
  max-height: unset;
  width: 100%;
}

label {
  color: #222222;
  color: var(--form--text-color);
  font-size: calc(
  	((16.00 / 16) * 1rem) + (18.00 - 16.00) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--form--text-size);
  font-weight: 500;
  font-weight: var(--form--label-weight);
  margin-bottom: calc(1em / 3);
  margin-bottom: calc(var(--form--spacing-unit) / 3);
}

/**
https://css-tricks.com/custom-styling-form-inputs-with-modern-css-features/
https://codepen.io/aaroniker/pen/ZEYoxEY by Aaron Iker.
License: MIT.
*/
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type=checkbox],
input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    width: 25px;
    height: 25px;
    border: 2px solid #222222;
    border: var(--form--border-width) solid var(--form--border-color);
    background: #ffffff;
    background: var(--form--input-background-color);
  }
  input[type=checkbox]:disabled,
input[type=radio]:disabled {
    opacity: 0.7;
  }

  input[type=checkbox] {
    --form--outline-style: dotted;
  }
  input[type=checkbox]:after {
    content: "";
    opacity: 0;
    display: block;
    left: 5px;
    top: 2px;
    position: absolute;
    width: 7px;
    height: 13px;
    border: 3px solid #222222;
    border: 3px solid var(--form--text-color);
    border-top: 0;
    border-left: 0;
    transform: rotate(30deg);
  }
  input[type=checkbox]:checked {
    color: #222222;
    color: var(--form--input-color);
  }
  input[type=checkbox]:checked:after {
    opacity: 1;
  }

  input[type=radio] {
    border-radius: 50%;
    --form--outline-style: dotted;
  }
  input[type=radio]:after {
    content: "";
    opacity: 0;
    display: block;
    left: 3px;
    top: 3px;
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #222222;
    background: var(--form--text-color);
  }
  input[type=radio]:checked {
    border: 4px solid #222222;
    border: 4px solid var(--form--border-color);
  }
  input[type=radio]:checked:after {
    opacity: 1;
  }
}
input[type=checkbox] + label,
input[type=radio] + label {
  display: inline-block;
  padding-left: 10px;
  font-size: calc(
  	((14 / 16) * 1rem) + (14 - 14) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step--1);
  vertical-align: top;
}

/**
 * https://css-tricks.com/styling-cross-browser-compatible-range-inputs-css/
*/
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type=range] {
    -webkit-appearance: none;
    /* Hides the slider so that custom slider can be made */
    width: 100%;
    /* Specific width is required for Firefox. */
    height: 6px;
    background: #222222;
    background: var(--form--ranged-background-color);
    border-radius: 6px;
  }
  input[type=range]:disabled {
    opacity: 0.7;
  }

  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 3px solid #222222;
    border: 3px solid var(--form--ranged-background-color);
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background: #ffffff;
    background: var(--palette--background);
    cursor: pointer;
  }

  input[type=range]::-moz-range-thumb {
    border: 3px solid #222222;
    border: 3px solid var(--form--ranged-background-color);
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background: #ffffff;
    background: var(--palette--background);
    cursor: pointer;
    box-sizing: border-box;
  }
}
input[type=range]::-ms-track {
  width: 100%;
  height: 6px;
  border-radius: 6px;
  border-width: 19px 0;
  border-color: #ffffff;
  border-color: var(--palette--background);
  background: transparent;
  color: transparent;
  cursor: pointer;
}

input[type=range]::-ms-fill-upper {
  background: #222222;
  background: var(--form--ranged-background-color);
  border-radius: 6px;
}

input[type=range]::-ms-fill-lower {
  background: #222222;
  background: var(--form--ranged-background-color);
  border-radius: 6px;
}

input[type=range]::-ms-thumb {
  border: 3px solid #222222;
  border: 3px solid var(--form--ranged-background-color);
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background: #ffffff;
  background: var(--palette--background);
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

fieldset {
  display: grid;
  border: 1px solid #333333;
  border: 1px solid var(--palette--secondary);
  padding: 0.25em 0.5em;
}
fieldset legend {
  font-size: calc(
  	((21.60 / 16) * 1rem) + (22.50 - 21.60) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-1);
}
fieldset input[type=submit] {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
fieldset input:not([type=submit]) {
  margin-bottom: 40px;
  margin-bottom: var(--spacing-vertical);
}
fieldset input[type=radio], fieldset input[type=checkbox] {
  margin-bottom: 0;
}
fieldset input[type=radio] + label, fieldset input[type=checkbox] + label {
  font-size: calc(
  	((16.00 / 16) * 1rem) + (18.00 - 16.00) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--form--text-size);
  padding-left: 0;
  margin-bottom: 40px;
  margin-bottom: var(--spacing-vertical);
}

::-moz-placeholder {
  opacity: 1;
}

.post-password-message {
  font-size: calc(
  	((21.60 / 16) * 1rem) + (22.50 - 21.60) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-1);
}

.post-password-form {
  display: flex;
  flex-wrap: wrap;
}
.post-password-form__label {
  width: 100%;
  margin-bottom: 0;
}
.post-password-form input[type=password] {
  flex-grow: 1;
  margin-top: 1em;
  margin-top: var(--form--spacing-unit);
  margin-right: 1em;
  margin-right: var(--form--spacing-unit);
}
.post-password-form__submit {
  margin-top: 1em;
  margin-top: var(--form--spacing-unit);
}
@media only screen and (min-width: 993px) {
  .post-password-form__submit {
    margin-left: 1em;
    margin-left: var(--form--spacing-unit);
  }
}

button {
  cursor: pointer;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

/* Classic editor images */
.entry-content img {
  max-width: 100%;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object,
video {
  max-width: 100%;
}

/* Media captions */
figcaption,
.wp-caption,
.wp-caption-text,
.wp-block-embed figcaption {
  color: currentColor;
  font-size: calc(
  	((14 / 16) * 1rem) + (14 - 14) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step--1);
  line-height: 1.67;
  line-height: var(--line-height-body);
  margin-top: calc(0.5 * 40px);
  margin-top: calc(0.5 * var(--spacing-vertical));
  margin-bottom: 40px;
  margin-bottom: var(--spacing-vertical);
  text-align: center;
}
.alignleft figcaption, .alignright figcaption,
.alignleft .wp-caption,
.alignright .wp-caption,
.alignleft .wp-caption-text,
.alignright .wp-caption-text,
.alignleft .wp-block-embed figcaption,
.alignright .wp-block-embed figcaption {
  margin-bottom: 0;
}

/* WP Smiley */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Over here, place any elements that do not need to have their own file. */
table {
  --table--stripes-border-color: var(--palette--light-gray);
  --table--stripes-background-color: var(--palette--light-gray);
  --table--has-background-text-color: var(--palette--dark-gray);
}

b,
strong {
  font-weight: 400;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

pre {
  white-space: pre;
  overflow-x: auto;
}

/* Category 05 is all about adjusting the default block styles to the given layout. */
/**
	DEV NOTE: THIS IS THE EDITED VERSION OF THE CORE LIBRARY STYLES.

	Removal:
	* wp-block-calendar
	* wp-block-latest-comments
	* wp-block-navigation
	* wp-block-post-comments
	* wp-block-social-links
	* wp-block-tag-cloud
	* wp-block-text-columns
	* :root color utility classes
	* Font-size utility classes
	Changed media breakpoints to use sass mixins
 */
/**
 * Colors
 */
/**
 * Breakpoints & Media Queries
 */
/**
 * SCSS Variables.
 *
 * Please use variables from this sheet to ensure consistency across the UI.
 * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
 * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
 */
/**
 * Colors
 */
/**
 * Fonts & basic variables.
 */
/**
 * Grid System.
 * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
 */
/**
 * Dimensions.
 */
/**
 * Shadows.
 */
/**
 * Editor widths.
 */
/**
 * Block & Editor UI.
 */
/**
 * Block paddings.
 */
/**
 * React Native specific.
 * These variables do not appear to be used anywhere else.
 */
/**
 * Breakpoint mixins
 */
/**
 * Long content fade mixin
 *
 * Creates a fading overlay to signify that the content is longer
 * than the space allows.
 */
/**
 * Focus styles.
 */
/**
 * Applies editor left position to the selector passed as argument
 */
/**
 * Styles that are reused verbatim in a few places
 */
/**
 * Allows users to opt-out of animations via OS-level preferences.
 */
/**
 * Reset default styles for JavaScript UI based pages.
 * This is a WP-admin agnostic reset
 */
/**
 * Reset the WP Admin page styles for Gutenberg-like pages.
 */
#start-resizable-editor-section {
  display: none;
}

.wp-block-audio {
  margin: 0 0 1em 0;
}

.wp-block-audio figcaption {
  margin-top: 0.5em;
  margin-bottom: 1em;
}

.wp-block-audio audio {
  width: 100%;
  min-width: 300px;
}

.wp-block-button__link {
  color: #fff;
  background-color: #32373c;
  border-radius: 9999px;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  font-size: 1.125em;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  text-align: center;
  text-decoration: none;
  word-wrap: break-word;
  box-sizing: border-box;
}

.wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link:active, .wp-block-button__link:visited {
  color: #fff;
}

.wp-block-button__link.aligncenter {
  text-align: center;
}

.wp-block-button__link.alignright {
  /*rtl:ignore*/
  text-align: right;
}

.wp-block-buttons > .wp-block-button.has-custom-width {
  max-width: none;
}

.wp-block-buttons > .wp-block-button.has-custom-width .wp-block-button__link {
  width: 100%;
}

.wp-block-buttons > .wp-block-button.has-custom-font-size .wp-block-button__link {
  font-size: inherit;
}

.wp-block-buttons > .wp-block-button.wp-block-button__width-25 {
  width: calc(25% - 0.5em);
}

.wp-block-buttons > .wp-block-button.wp-block-button__width-50 {
  width: calc(50% - 0.5em);
}

.wp-block-buttons > .wp-block-button.wp-block-button__width-75 {
  width: calc(75% - 0.5em);
}

.wp-block-buttons > .wp-block-button.wp-block-button__width-100 {
  width: calc(100% - 0.5em);
}

.wp-block-buttons > .wp-block-button.wp-block-button__width-100:only-child {
  margin-right: 0;
  width: 100%;
}

@supports ((-moz-column-gap: 0.5em) or (column-gap: 0.5em)) {
  .wp-block-buttons > .wp-block-button.wp-block-button, .wp-block-buttons.is-content-justification-right > .wp-block-button.wp-block-button {
    margin-right: 0;
    margin-left: 0;
  }

  .wp-block-buttons > .wp-block-button.wp-block-button__width-25 {
    width: calc(25% - 0.375em);
  }

  .wp-block-buttons > .wp-block-button.wp-block-button__width-50 {
    width: calc(50% - 0.25em);
  }

  .wp-block-buttons > .wp-block-button.wp-block-button__width-75 {
    width: calc(75% - 0.125em);
  }

  .wp-block-buttons > .wp-block-button.wp-block-button__width-100 {
    width: auto;
    flex-basis: 100%;
  }
}
.wp-block-button.is-style-squared,
.wp-block-button__link.wp-block-button.is-style-squared {
  border-radius: 0;
}

.wp-block-button.no-border-radius,
.wp-block-button__link.no-border-radius {
  border-radius: 0 !important;
}

.is-style-outline > .wp-block-button__link,
.wp-block-button__link.is-style-outline {
  border: 2px solid currentColor;
  padding: 0.667em 1.333em;
}

.is-style-outline > .wp-block-button__link:not(.has-text-color),
.wp-block-button__link.is-style-outline:not(.has-text-color) {
  color: currentColor;
}

.is-style-outline > .wp-block-button__link:not(.has-background),
.wp-block-button__link.is-style-outline:not(.has-background) {
  background-color: transparent;
}

.wp-block-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  grid-column-gap: 0.5em;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  /* stylelint-disable indentation */
}

.wp-block-buttons.is-vertical {
  flex-direction: column;
}

.wp-block-buttons.is-vertical > .wp-block-button {
  /*rtl:ignore*/
  margin-right: 0;
}

.wp-block-buttons.is-vertical > .wp-block-button:last-child {
  margin-bottom: 0;
}

.wp-block-buttons > .wp-block-button {
  display: inline-block;
  /*rtl:ignore*/
  margin-left: 0;
  /*rtl:ignore*/
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}

.wp-block-buttons > .wp-block-button:last-child {
  /*rtl:ignore*/
  margin-right: 0;
}

.wp-block-buttons.is-content-justification-left {
  justify-content: flex-start;
}

.wp-block-buttons.is-content-justification-left.is-vertical {
  align-items: flex-start;
}

.wp-block-buttons.is-content-justification-center {
  justify-content: center;
}

.wp-block-buttons.is-content-justification-center.is-vertical {
  align-items: center;
}

.wp-block-buttons.is-content-justification-right {
  justify-content: flex-end;
}

.wp-block-buttons.is-content-justification-right > .wp-block-button {
  /*rtl:ignore*/
  margin-left: 0.5em;
  /*rtl:ignore*/
  margin-right: 0;
}

.wp-block-buttons.is-content-justification-right > .wp-block-button:first-child {
  /*rtl:ignore*/
  margin-left: 0;
}

.wp-block-buttons.is-content-justification-right.is-vertical {
  align-items: flex-end;
}

.wp-block-buttons.is-content-justification-space-between {
  justify-content: space-between;
}

.wp-block-buttons.aligncenter {
  text-align: center;
}

.wp-block-buttons.alignleft .wp-block-button {
  /*rtl:ignore*/
  margin-left: 0;
  /*rtl:ignore*/
  margin-right: 0.5em;
}

.wp-block-buttons.alignleft .wp-block-button:last-child {
  /*rtl:ignore*/
  margin-right: 0;
}

.wp-block-buttons.alignright .wp-block-button {
  /*rtl:ignore*/
  margin-right: 0;
  /*rtl:ignore*/
  margin-left: 0.5em;
}

.wp-block-buttons.alignright .wp-block-button:first-child {
  /*rtl:ignore*/
  margin-left: 0;
}

.wp-block-buttons:not(.is-content-justification-space-between):not(.is-content-justification-right):not(.is-content-justification-left):not(.is-content-justification-center) .wp-block-button.aligncenter {
  /* stylelint-enable indentation */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5em;
  width: 100%;
}

.wp-block-button.aligncenter {
  text-align: center;
}

.wp-block-code code {
  display: block;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.wp-block-columns {
  display: flex;
  margin-bottom: 1.75em;
  box-sizing: border-box;
  flex-wrap: wrap;
  /**
  * All Columns Alignment
  */
}

@media only screen and (min-width: 993px) {
  .wp-block-columns {
    flex-wrap: nowrap;
  }
}
.wp-block-columns.has-background {
  padding: 1.25em 2.375em;
}

.wp-block-columns.are-vertically-aligned-top {
  align-items: flex-start;
}

.wp-block-columns.are-vertically-aligned-center {
  align-items: center;
}

.wp-block-columns.are-vertically-aligned-bottom {
  align-items: flex-end;
}

.wp-block-column {
  flex-grow: 1;
  min-width: 0;
  word-break: break-word;
  word-wrap: break-word;
  /**
  * Individual Column Alignment
  */
}

@media only screen and (max-width: 767px) {
  .wp-block-column {
    flex-basis: 100% !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .wp-block-column:not(:only-child) {
    flex-basis: calc(50% - 1em) !important;
    flex-grow: 0;
  }

  .wp-block-column:nth-child(even) {
    margin-left: 2em;
  }
}
@media only screen and (min-width: 993px) {
  .wp-block-column {
    flex-basis: 0;
    flex-grow: 1;
  }

  .wp-block-column[style*=flex-basis] {
    flex-grow: 0;
  }

  .wp-block-column:not(:first-child) {
    margin-left: 2em;
  }
}
.wp-block-column.is-vertically-aligned-top {
  align-self: flex-start;
}

.wp-block-column.is-vertically-aligned-center {
  align-self: center;
}

.wp-block-column.is-vertically-aligned-bottom {
  align-self: flex-end;
}

.wp-block-column.is-vertically-aligned-top, .wp-block-column.is-vertically-aligned-center, .wp-block-column.is-vertically-aligned-bottom {
  width: 100%;
}

.wp-block-cover-image,
.wp-block-cover {
  position: relative;
  background-size: cover;
  background-position: center center;
  min-height: 430px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  /**
   * Set a default background color for has-background-dim _unless_ it includes another
   * background-color class (e.g. has-green-background-color). The presence of another
   * background-color class implies that another style will provide the background color
   * for the overlay.
   *
   * See:
   *   - Issue with background color specificity: https://github.com/WordPress/gutenberg/issues/26545
   *   - Issue with alternative fix: https://github.com/WordPress/gutenberg/issues/26545
   */
}

.wp-block-cover-image.has-parallax,
.wp-block-cover.has-parallax {
  background-attachment: fixed;
}

@supports (-webkit-overflow-scrolling: touch) {
  .wp-block-cover-image.has-parallax,
.wp-block-cover.has-parallax {
    background-attachment: scroll;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wp-block-cover-image.has-parallax,
.wp-block-cover.has-parallax {
    background-attachment: scroll;
  }
}
.wp-block-cover-image.is-repeated,
.wp-block-cover.is-repeated {
  background-repeat: repeat;
  background-size: auto;
}

.wp-block-cover-image.has-background-dim:not([class*=-background-color]),
.wp-block-cover.has-background-dim:not([class*=-background-color]) {
  background-color: #000;
}

.wp-block-cover-image.has-background-dim::before,
.wp-block-cover.has-background-dim::before {
  content: "";
  background-color: inherit;
}

.wp-block-cover-image.has-background-dim:not(.has-background-gradient)::before,
.wp-block-cover-image .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim:not(.has-background-gradient)::before,
.wp-block-cover .wp-block-cover__gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  opacity: 0.5;
}

.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient)::before,
.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient)::before,
.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background {
  opacity: 0.1;
}

.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient)::before,
.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient)::before,
.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background {
  opacity: 0.2;
}

.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient)::before,
.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient)::before,
.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background {
  opacity: 0.3;
}

.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient)::before,
.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient)::before,
.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background {
  opacity: 0.4;
}

.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient)::before,
.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient)::before,
.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background {
  opacity: 0.5;
}

.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient)::before,
.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient)::before,
.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background {
  opacity: 0.6;
}

.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient)::before,
.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient)::before,
.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background {
  opacity: 0.7;
}

.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient)::before,
.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient)::before,
.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background {
  opacity: 0.8;
}

.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient)::before,
.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient)::before,
.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background {
  opacity: 0.9;
}

.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient)::before,
.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,
.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient)::before,
.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background {
  opacity: 1;
}

.wp-block-cover-image.alignleft, .wp-block-cover-image.alignright,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
  max-width: 420px;
  width: 100%;
}

.wp-block-cover-image::after,
.wp-block-cover::after {
  display: block;
  content: "";
  font-size: 0;
  min-height: inherit;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .wp-block-cover-image::after,
.wp-block-cover::after {
    content: none;
  }
}
.wp-block-cover-image.aligncenter, .wp-block-cover-image.alignleft, .wp-block-cover-image.alignright,
.wp-block-cover.aligncenter,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
  display: flex;
}

.wp-block-cover-image .wp-block-cover__inner-container,
.wp-block-cover .wp-block-cover__inner-container {
  width: 100%;
  z-index: 1;
  color: #fff;
}

.wp-block-cover-image.is-position-top-left,
.wp-block-cover.is-position-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.wp-block-cover-image.is-position-top-center,
.wp-block-cover.is-position-top-center {
  align-items: flex-start;
  justify-content: center;
}

.wp-block-cover-image.is-position-top-right,
.wp-block-cover.is-position-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.wp-block-cover-image.is-position-center-left,
.wp-block-cover.is-position-center-left {
  align-items: center;
  justify-content: flex-start;
}

.wp-block-cover-image.is-position-center-center,
.wp-block-cover.is-position-center-center {
  align-items: center;
  justify-content: center;
}

.wp-block-cover-image.is-position-center-right,
.wp-block-cover.is-position-center-right {
  align-items: center;
  justify-content: flex-end;
}

.wp-block-cover-image.is-position-bottom-left,
.wp-block-cover.is-position-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.wp-block-cover-image.is-position-bottom-center,
.wp-block-cover.is-position-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.wp-block-cover-image.is-position-bottom-right,
.wp-block-cover.is-position-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,
.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container {
  margin: 0;
  width: auto;
}

.wp-block-cover-image img.wp-block-cover__image-background,
.wp-block-cover-image video.wp-block-cover__video-background,
.wp-block-cover img.wp-block-cover__image-background,
.wp-block-cover video.wp-block-cover__video-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
  object-fit: cover;
  outline: none;
  border: none;
  box-shadow: none;
}

.wp-block-cover__video-background {
  z-index: 0;
}

.wp-block-cover__image-background {
  z-index: 0;
}

section.wp-block-cover-image h2,
.wp-block-cover-image-text,
.wp-block-cover-text {
  color: #fff;
}

section.wp-block-cover-image h2 a,
section.wp-block-cover-image h2 a:hover,
section.wp-block-cover-image h2 a:focus,
section.wp-block-cover-image h2 a:active,
.wp-block-cover-image-text a,
.wp-block-cover-image-text a:hover,
.wp-block-cover-image-text a:focus,
.wp-block-cover-image-text a:active,
.wp-block-cover-text a,
.wp-block-cover-text a:hover,
.wp-block-cover-text a:focus,
.wp-block-cover-text a:active {
  color: #fff;
}

.wp-block-cover-image .wp-block-cover.has-left-content {
  justify-content: flex-start;
}

.wp-block-cover-image .wp-block-cover.has-right-content {
  justify-content: flex-end;
}

section.wp-block-cover-image.has-left-content > h2,
.wp-block-cover-image.has-left-content .wp-block-cover-image-text,
.wp-block-cover.has-left-content .wp-block-cover-text {
  margin-left: 0;
  text-align: left;
}

section.wp-block-cover-image.has-right-content > h2,
.wp-block-cover-image.has-right-content .wp-block-cover-image-text,
.wp-block-cover.has-right-content .wp-block-cover-text {
  margin-right: 0;
  text-align: right;
}

section.wp-block-cover-image > h2,
.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text {
  font-size: 2em;
  line-height: 1.25;
  z-index: 1;
  margin-bottom: 0;
  max-width: 840px;
  padding: 0.44em;
  text-align: center;
}

.wp-block[data-align=left] > [data-type="core/embed"],
.wp-block[data-align=right] > [data-type="core/embed"],
.wp-block-embed.alignleft,
.wp-block-embed.alignright {
  max-width: 360px;
  width: 100%;
}

.wp-block[data-align=left] > [data-type="core/embed"] .wp-block-embed__wrapper,
.wp-block[data-align=right] > [data-type="core/embed"] .wp-block-embed__wrapper,
.wp-block-embed.alignleft .wp-block-embed__wrapper,
.wp-block-embed.alignright .wp-block-embed__wrapper {
  min-width: 280px;
}

.wp-block-cover .wp-block-embed {
  min-width: 320px;
  min-height: 240px;
}

.wp-block-embed {
  margin: 0 0 1em 0;
}

.wp-block-embed figcaption {
  margin-top: 0.5em;
  margin-bottom: 1em;
}

.wp-block-embed iframe {
  max-width: 100%;
}

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

.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper::before {
  content: "";
  display: block;
  padding-top: 50%;
}

.wp-embed-responsive .wp-has-aspect-ratio iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper::before {
  padding-top: 42.85%;
}

.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper::before {
  padding-top: 50%;
}

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

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

.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper::before {
  padding-top: 100%;
}

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

.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper::before {
  padding-top: 200%;
}

.wp-block-file {
  margin-bottom: 1.5em;
}

.wp-block-file.aligncenter {
  text-align: center;
}

.wp-block-file.alignright {
  /*rtl:ignore*/
  text-align: right;
}

.wp-block-file .wp-block-file__embed {
  margin-bottom: 1em;
}

.wp-block-file .wp-block-file__button {
  background: #32373c;
  border-radius: 2em;
  color: #fff;
  font-size: 0.8em;
  padding: 0.5em 1em;
}

.wp-block-file a.wp-block-file__button {
  text-decoration: none;
}

.wp-block-file a.wp-block-file__button:hover, .wp-block-file a.wp-block-file__button:visited, .wp-block-file a.wp-block-file__button:focus, .wp-block-file a.wp-block-file__button:active {
  box-shadow: none;
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}

.wp-block-file * + .wp-block-file__button {
  margin-left: 0.75em;
}

.wp-block-gallery,
.blocks-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item,
.blocks-gallery-grid .blocks-gallery-image,
.blocks-gallery-grid .blocks-gallery-item {
  margin: 0 1em 1em 0;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  position: relative;
  align-self: flex-start;
  width: calc(50% - 1em);
}

.wp-block-gallery .blocks-gallery-image:nth-of-type(even),
.wp-block-gallery .blocks-gallery-item:nth-of-type(even),
.blocks-gallery-grid .blocks-gallery-image:nth-of-type(even),
.blocks-gallery-grid .blocks-gallery-item:nth-of-type(even) {
  margin-right: 0;
}

.wp-block-gallery .blocks-gallery-image figure,
.wp-block-gallery .blocks-gallery-item figure,
.blocks-gallery-grid .blocks-gallery-image figure,
.blocks-gallery-grid .blocks-gallery-item figure {
  margin: 0;
  height: 100%;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .wp-block-gallery .blocks-gallery-image figure,
.wp-block-gallery .blocks-gallery-item figure,
.blocks-gallery-grid .blocks-gallery-image figure,
.blocks-gallery-grid .blocks-gallery-item figure {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
}
.wp-block-gallery .blocks-gallery-image img,
.wp-block-gallery .blocks-gallery-item img,
.blocks-gallery-grid .blocks-gallery-image img,
.blocks-gallery-grid .blocks-gallery-item img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .wp-block-gallery .blocks-gallery-image img,
.wp-block-gallery .blocks-gallery-item img,
.blocks-gallery-grid .blocks-gallery-image img,
.blocks-gallery-grid .blocks-gallery-item img {
    width: auto;
  }
}
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption,
.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  padding: 3em 0.77em 0.7em;
  color: #fff;
  text-align: center;
  font-size: 0.8em;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.3) 70%, transparent);
  box-sizing: border-box;
  margin: 0;
}

.wp-block-gallery .blocks-gallery-image figcaption img,
.wp-block-gallery .blocks-gallery-item figcaption img,
.blocks-gallery-grid .blocks-gallery-image figcaption img,
.blocks-gallery-grid .blocks-gallery-item figcaption img {
  display: inline;
}

.wp-block-gallery figcaption,
.blocks-gallery-grid figcaption {
  flex-grow: 1;
}

.wp-block-gallery.is-cropped .blocks-gallery-image, .wp-block-gallery.is-cropped .blocks-gallery-item,
.blocks-gallery-grid.is-cropped .blocks-gallery-image,
.blocks-gallery-grid.is-cropped .blocks-gallery-item {
  align-self: inherit;
}

.wp-block-gallery.is-cropped .blocks-gallery-image a,
.wp-block-gallery.is-cropped .blocks-gallery-image img, .wp-block-gallery.is-cropped .blocks-gallery-item a,
.wp-block-gallery.is-cropped .blocks-gallery-item img,
.blocks-gallery-grid.is-cropped .blocks-gallery-image a,
.blocks-gallery-grid.is-cropped .blocks-gallery-image img,
.blocks-gallery-grid.is-cropped .blocks-gallery-item a,
.blocks-gallery-grid.is-cropped .blocks-gallery-item img {
  width: 100%;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .wp-block-gallery.is-cropped .blocks-gallery-image a,
.wp-block-gallery.is-cropped .blocks-gallery-image img, .wp-block-gallery.is-cropped .blocks-gallery-item a,
.wp-block-gallery.is-cropped .blocks-gallery-item img,
.blocks-gallery-grid.is-cropped .blocks-gallery-image a,
.blocks-gallery-grid.is-cropped .blocks-gallery-image img,
.blocks-gallery-grid.is-cropped .blocks-gallery-item a,
.blocks-gallery-grid.is-cropped .blocks-gallery-item img {
    height: 100%;
    flex: 1;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.wp-block-gallery.columns-1 .blocks-gallery-image, .wp-block-gallery.columns-1 .blocks-gallery-item,
.blocks-gallery-grid.columns-1 .blocks-gallery-image,
.blocks-gallery-grid.columns-1 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
}

@media only screen and (min-width: 768px) {
  .wp-block-gallery.columns-3 .blocks-gallery-image, .wp-block-gallery.columns-3 .blocks-gallery-item,
.blocks-gallery-grid.columns-3 .blocks-gallery-image,
.blocks-gallery-grid.columns-3 .blocks-gallery-item {
    width: calc(33.3333333333% - 0.6666666667em);
    margin-right: 1em;
  }

  .wp-block-gallery.columns-4 .blocks-gallery-image, .wp-block-gallery.columns-4 .blocks-gallery-item,
.blocks-gallery-grid.columns-4 .blocks-gallery-image,
.blocks-gallery-grid.columns-4 .blocks-gallery-item {
    width: calc(25% - 0.75em);
    margin-right: 1em;
  }

  .wp-block-gallery.columns-5 .blocks-gallery-image, .wp-block-gallery.columns-5 .blocks-gallery-item,
.blocks-gallery-grid.columns-5 .blocks-gallery-image,
.blocks-gallery-grid.columns-5 .blocks-gallery-item {
    width: calc(20% - 0.8em);
    margin-right: 1em;
  }

  .wp-block-gallery.columns-6 .blocks-gallery-image, .wp-block-gallery.columns-6 .blocks-gallery-item,
.blocks-gallery-grid.columns-6 .blocks-gallery-image,
.blocks-gallery-grid.columns-6 .blocks-gallery-item {
    width: calc(16.6666666667% - 0.8333333333em);
    margin-right: 1em;
  }

  .wp-block-gallery.columns-7 .blocks-gallery-image, .wp-block-gallery.columns-7 .blocks-gallery-item,
.blocks-gallery-grid.columns-7 .blocks-gallery-image,
.blocks-gallery-grid.columns-7 .blocks-gallery-item {
    width: calc(14.2857142857% - 0.8571428571em);
    margin-right: 1em;
  }

  .wp-block-gallery.columns-8 .blocks-gallery-image, .wp-block-gallery.columns-8 .blocks-gallery-item,
.blocks-gallery-grid.columns-8 .blocks-gallery-image,
.blocks-gallery-grid.columns-8 .blocks-gallery-item {
    width: calc(12.5% - 0.875em);
    margin-right: 1em;
  }

  .wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n), .wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),
.blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n),
.blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n), .wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),
.blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n),
.blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n), .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),
.blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n),
.blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n), .wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),
.blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n),
.blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n), .wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),
.blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n),
.blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n), .wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),
.blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n),
.blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n), .wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),
.blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n),
.blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n), .wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n),
.blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n),
.blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n) {
    margin-right: 0;
  }
}
.wp-block-gallery .blocks-gallery-image:last-child,
.wp-block-gallery .blocks-gallery-item:last-child,
.blocks-gallery-grid .blocks-gallery-image:last-child,
.blocks-gallery-grid .blocks-gallery-item:last-child {
  margin-right: 0;
}

.wp-block-gallery.alignleft, .wp-block-gallery.alignright,
.blocks-gallery-grid.alignleft,
.blocks-gallery-grid.alignright {
  max-width: 420px;
  width: 100%;
}

.wp-block-gallery.aligncenter .blocks-gallery-item figure,
.blocks-gallery-grid.aligncenter .blocks-gallery-item figure {
  justify-content: center;
}

.wp-block-group {
  box-sizing: border-box;
}

h1.has-background,
h2.has-background,
h3.has-background,
h4.has-background,
h5.has-background,
h6.has-background {
  padding: 1.25em 2.375em;
}

.wp-block-image {
  margin: 0 0 1em 0;
}

.wp-block-image img {
  max-width: 100%;
}

.wp-block-image:not(.is-style-rounded) img {
  border-radius: inherit;
}

.wp-block-image.aligncenter {
  text-align: center;
}

.wp-block-image.alignfull img, .wp-block-image.alignwide img {
  width: 100%;
}

.wp-block-image .alignleft,
.wp-block-image .alignright,
.wp-block-image .aligncenter {
  display: table;
}

.wp-block-image .alignleft > figcaption,
.wp-block-image .alignright > figcaption,
.wp-block-image .aligncenter > figcaption {
  display: table-caption;
  caption-side: bottom;
}

.wp-block-image .alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-left: 0;
  margin-right: 1em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.wp-block-image .alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-right: 0;
  margin-left: 1em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.wp-block-image .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.wp-block-image figcaption {
  margin-top: 0.5em;
  margin-bottom: 1em;
}

.wp-block-image.is-style-rounded img {
  border-radius: 9999px;
}

.wp-block-image.is-style-circle-mask img {
  border-radius: 9999px;
}

@supports ((-webkit-mask-image: none) or (mask-image: none)) or (-webkit-mask-image: none) {
  .wp-block-image.is-style-circle-mask img {
    /* stylelint-disable */
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
    /* stylelint-enable */
    mask-mode: alpha;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    border-radius: 0;
  }
}
.wp-block-image figure {
  margin: 0;
}

.wp-block-latest-posts.alignleft {
  /*rtl:ignore*/
  margin-right: 2em;
}

.wp-block-latest-posts.alignright {
  /*rtl:ignore*/
  margin-left: 2em;
}

.wp-block-latest-posts.wp-block-latest-posts__list {
  list-style: none;
  padding-left: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list li {
  clear: both;
}

.wp-block-latest-posts.is-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.wp-block-latest-posts.is-grid li {
  margin: 0 1.25em 1.25em 0;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .wp-block-latest-posts.columns-2 li {
    width: calc(50% - 1.25em + 0.625em);
  }

  .wp-block-latest-posts.columns-2 li:nth-child(2n) {
    margin-right: 0;
  }

  .wp-block-latest-posts.columns-3 li {
    width: calc(33.3333333333% - 1.25em + 0.4166666667em);
  }

  .wp-block-latest-posts.columns-3 li:nth-child(3n) {
    margin-right: 0;
  }

  .wp-block-latest-posts.columns-4 li {
    width: calc(25% - 1.25em + 0.3125em);
  }

  .wp-block-latest-posts.columns-4 li:nth-child(4n) {
    margin-right: 0;
  }

  .wp-block-latest-posts.columns-5 li {
    width: calc(20% - 1.25em + 0.25em);
  }

  .wp-block-latest-posts.columns-5 li:nth-child(5n) {
    margin-right: 0;
  }

  .wp-block-latest-posts.columns-6 li {
    width: calc(16.6666666667% - 1.25em + 0.2083333333em);
  }

  .wp-block-latest-posts.columns-6 li:nth-child(6n) {
    margin-right: 0;
  }
}
.wp-block-latest-posts__post-date,
.wp-block-latest-posts__post-author {
  display: block;
  color: #555;
  font-size: 0.8125em;
}

.wp-block-latest-posts__post-excerpt {
  margin-top: 0.5em;
  margin-bottom: 1em;
}

.wp-block-latest-posts__featured-image a {
  display: inline-block;
}

.wp-block-latest-posts__featured-image img {
  height: auto;
  width: auto;
  max-width: 100%;
}

.wp-block-latest-posts__featured-image.alignleft {
  /*rtl:ignore*/
  margin-right: 1em;
}

.wp-block-latest-posts__featured-image.alignright {
  /*rtl:ignore*/
  margin-left: 1em;
}

.wp-block-latest-posts__featured-image.aligncenter {
  margin-bottom: 1em;
  text-align: center;
}

.block-editor-image-alignment-control__row .components-base-control__field {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.block-editor-image-alignment-control__row .components-base-control__field .components-base-control__label {
  margin-bottom: 0;
}

ol.has-background,
ul.has-background {
  padding: 1.25em 2.375em;
}

.wp-block-media-text {
  /*!rtl:begin:ignore*/
  direction: ltr;
  /*!rtl:end:ignore*/
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-rows: auto;
}

.wp-block-media-text.has-media-on-the-right {
  grid-template-columns: 1fr 50%;
}

.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media {
  align-self: start;
}

.wp-block-media-text .wp-block-media-text__content,
.wp-block-media-text .wp-block-media-text__media,
.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media {
  align-self: center;
}

.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media {
  align-self: end;
}

.wp-block-media-text .wp-block-media-text__media {
  /*!rtl:begin:ignore*/
  grid-column: 1;
  grid-row: 1;
  /*!rtl:end:ignore*/
  margin: 0;
}

.wp-block-media-text .wp-block-media-text__content {
  direction: ltr;
  /*!rtl:begin:ignore*/
  grid-column: 2;
  grid-row: 1;
  /*!rtl:end:ignore*/
  padding: 0 8% 0 8%;
  word-break: break-word;
}

.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
  /*!rtl:begin:ignore*/
  grid-column: 2;
  grid-row: 1;
  /*!rtl:end:ignore*/
}

.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  /*!rtl:begin:ignore*/
  grid-column: 1;
  grid-row: 1;
  /*!rtl:end:ignore*/
}

.wp-block-media-text__media img,
.wp-block-media-text__media video {
  max-width: unset;
  width: 100%;
  vertical-align: middle;
}

.wp-block-media-text.is-image-fill .wp-block-media-text__media {
  height: 100%;
  min-height: 250px;
  background-size: cover;
}

.wp-block-media-text.is-image-fill .wp-block-media-text__media > a {
  display: block;
  height: 100%;
}

.wp-block-media-text.is-image-fill .wp-block-media-text__media img {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*
* Here we here not able to use a mobile first CSS approach.
* Custom widths are set using inline styles, and on mobile,
* we need 100% width, so we use important to overwrite the inline style.
* If the style were set on mobile first, on desktop styles,
* we would have no way of setting the style again to the inline style.
*/
@media only screen and (max-width: 767px) {
  .wp-block-media-text.is-stacked-on-mobile {
    grid-template-columns: 100% !important;
  }

  .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1;
  }

  .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 2;
  }
}
.is-vertical.items-justified-center > ul {
  align-items: center;
}

.is-vertical.items-justified-right > ul {
  align-items: flex-end;
}

.is-vertical.items-justified-right > ul .wp-block-navigation-link,
.is-vertical.items-justified-right > ul .wp-block-pages-list__item {
  margin-right: 0;
  justify-content: flex-end;
}

html.has-modal-open {
  overflow: hidden;
}

.items-justified-space-between .wp-block-page-list {
  display: contents;
}

.is-small-text {
  font-size: 0.875em;
}

.is-regular-text {
  font-size: 1em;
}

.is-large-text {
  font-size: 2.25em;
}

.is-larger-text {
  font-size: 3em;
}

.has-drop-cap:not(:focus)::first-letter {
  float: left;
  font-size: 8.4em;
  line-height: 0.68;
  font-weight: 100;
  margin: 0.05em 0.1em 0 0;
  text-transform: uppercase;
  font-style: normal;
}

p.has-drop-cap.has-background {
  overflow: hidden;
}

p.has-background {
  padding: 1.25em 2.375em;
}

p.has-text-color a {
  color: inherit;
}

.wp-block-post-author {
  display: flex;
  flex-wrap: wrap;
}

.wp-block-post-author__byline {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.5em;
}

.wp-block-post-author__avatar {
  margin-right: 1em;
}

.wp-block-post-author__bio {
  margin-bottom: 0.7em;
  font-size: 0.7em;
}

.wp-block-post-author__content {
  flex-grow: 1;
  flex-basis: 0;
}

.wp-block-post-author__name {
  font-weight: bold;
  margin: 0;
}

.wp-block-post-excerpt__more-link {
  display: inline-block;
}

.wp-block-post-title a {
  display: inline-block;
}

.wp-block-preformatted {
  white-space: pre-wrap;
}

.wp-block-preformatted.has-background {
  padding: 1.25em 2.375em;
}

.wp-block-pullquote {
  margin: 0 0 1em 0;
  padding: 3em 0;
  text-align: center;
}

.wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
  max-width: 420px;
}

.wp-block-pullquote.alignleft p, .wp-block-pullquote.alignright p {
  font-size: 1.25em;
}

.wp-block-pullquote p {
  font-size: 1.75em;
  line-height: 1.6;
}

.wp-block-pullquote cite,
.wp-block-pullquote footer {
  position: relative;
}

.wp-block-pullquote .has-text-color a {
  color: inherit;
}

.wp-block-pullquote:not(.is-style-solid-color) {
  background: none;
}

.wp-block-pullquote.is-style-solid-color {
  border: none;
}

.wp-block-pullquote.is-style-solid-color blockquote {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  max-width: 60%;
}

.wp-block-pullquote.is-style-solid-color blockquote p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
}

.wp-block-pullquote.is-style-solid-color blockquote cite {
  text-transform: none;
  font-style: normal;
}

.wp-block-pullquote cite {
  color: inherit;
}

.wp-block-post-template,
.wp-block-query-loop {
  max-width: 100%;
  list-style: none;
  padding: 0;
}

.wp-block-post-template li,
.wp-block-query-loop li {
  clear: both;
}

.wp-block-post-template.is-flex-container,
.wp-block-query-loop.is-flex-container {
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
}

.wp-block-post-template.is-flex-container li,
.wp-block-query-loop.is-flex-container li {
  margin: 0 0 1.25em 0;
  width: 100%;
}

@media (min-width: 600px) {
  .wp-block-post-template.is-flex-container li,
.wp-block-query-loop.is-flex-container li {
    margin-right: 1.25em;
  }

  .wp-block-post-template.is-flex-container.is-flex-container.columns-2 > li,
.wp-block-query-loop.is-flex-container.is-flex-container.columns-2 > li {
    width: calc(50% - 1.25em + 0.625em);
  }

  .wp-block-post-template.is-flex-container.is-flex-container.columns-2 > li:nth-child(2n),
.wp-block-query-loop.is-flex-container.is-flex-container.columns-2 > li:nth-child(2n) {
    margin-right: 0;
  }

  .wp-block-post-template.is-flex-container.is-flex-container.columns-3 > li,
.wp-block-query-loop.is-flex-container.is-flex-container.columns-3 > li {
    width: calc(33.3333333333% - 1.25em + 0.4166666667em);
  }

  .wp-block-post-template.is-flex-container.is-flex-container.columns-3 > li:nth-child(3n),
.wp-block-query-loop.is-flex-container.is-flex-container.columns-3 > li:nth-child(3n) {
    margin-right: 0;
  }

  .wp-block-post-template.is-flex-container.is-flex-container.columns-4 > li,
.wp-block-query-loop.is-flex-container.is-flex-container.columns-4 > li {
    width: calc(25% - 1.25em + 0.3125em);
  }

  .wp-block-post-template.is-flex-container.is-flex-container.columns-4 > li:nth-child(4n),
.wp-block-query-loop.is-flex-container.is-flex-container.columns-4 > li:nth-child(4n) {
    margin-right: 0;
  }

  .wp-block-post-template.is-flex-container.is-flex-container.columns-5 > li,
.wp-block-query-loop.is-flex-container.is-flex-container.columns-5 > li {
    width: calc(20% - 1.25em + 0.25em);
  }

  .wp-block-post-template.is-flex-container.is-flex-container.columns-5 > li:nth-child(5n),
.wp-block-query-loop.is-flex-container.is-flex-container.columns-5 > li:nth-child(5n) {
    margin-right: 0;
  }

  .wp-block-post-template.is-flex-container.is-flex-container.columns-6 > li,
.wp-block-query-loop.is-flex-container.is-flex-container.columns-6 > li {
    width: calc(16.6666666667% - 1.25em + 0.2083333333em);
  }

  .wp-block-post-template.is-flex-container.is-flex-container.columns-6 > li:nth-child(6n),
.wp-block-query-loop.is-flex-container.is-flex-container.columns-6 > li:nth-child(6n) {
    margin-right: 0;
  }
}
.wp-block-query-pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.wp-block-query-pagination > .wp-block-query-pagination-next,
.wp-block-query-pagination > .wp-block-query-pagination-previous,
.wp-block-query-pagination > .wp-block-query-pagination-numbers {
  display: inline-block;
  /*rtl:ignore*/
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}

.wp-block-query-pagination > .wp-block-query-pagination-next:last-child,
.wp-block-query-pagination > .wp-block-query-pagination-previous:last-child,
.wp-block-query-pagination > .wp-block-query-pagination-numbers:last-child {
  /*rtl:ignore*/
  margin-right: 0;
}

.wp-block-quote.is-style-large, .wp-block-quote.is-large {
  margin-bottom: 1em;
  padding: 0 1em;
}

.wp-block-quote.is-style-large p, .wp-block-quote.is-large p {
  font-size: 1.5em;
  font-style: italic;
  line-height: 1.6;
}

.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer, .wp-block-quote.is-large cite,
.wp-block-quote.is-large footer {
  font-size: 1.125em;
  text-align: right;
}

.wp-block-rss.wp-block-rss {
  box-sizing: border-box;
}

.wp-block-rss.alignleft {
  /*rtl:ignore*/
  margin-right: 2em;
}

.wp-block-rss.alignright {
  /*rtl:ignore*/
  margin-left: 2em;
}

.wp-block-rss.is-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.wp-block-rss.is-grid li {
  margin: 0 1em 1em 0;
  width: 100%;
}

@media (min-width: 600px) {
  .wp-block-rss.columns-2 li {
    width: calc(50% - 1em);
  }

  .wp-block-rss.columns-3 li {
    width: calc(33.3333333333% - 1em);
  }

  .wp-block-rss.columns-4 li {
    width: calc(25% - 1em);
  }

  .wp-block-rss.columns-5 li {
    width: calc(20% - 1em);
  }

  .wp-block-rss.columns-6 li {
    width: calc(16.6666666667% - 1em);
  }
}
.wp-block-rss__item-publish-date,
.wp-block-rss__item-author {
  display: block;
  color: #555;
  font-size: 0.8125em;
}

.wp-block-search .wp-block-search__button {
  background: #f7f7f7;
  border: 1px solid #ccc;
  padding: 0.375em 0.625em;
  color: #32373c;
  margin-left: 0.625em;
  word-break: normal;
}

.wp-block-search .wp-block-search__button.has-icon {
  line-height: 0;
}

.wp-block-search .wp-block-search__button svg {
  min-width: 1.5em;
  min-height: 1.5em;
}

.wp-block-search .wp-block-search__inside-wrapper {
  display: flex;
  flex: auto;
  flex-wrap: nowrap;
  max-width: 100%;
}

.wp-block-search .wp-block-search__label {
  width: 100%;
}

.wp-block-search .wp-block-search__input {
  flex-grow: 1;
  min-width: 3em;
  border: 1px solid #949494;
}

.wp-block-search.wp-block-search__button-only .wp-block-search__button {
  margin-left: 0;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  padding: 4px;
  border: 1px solid #949494;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  border-radius: 0;
  border: none;
  padding: 0 0 0 0.25em;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus {
  outline: none;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
  padding: 0.125em 0.5em;
}

.wp-block-search.aligncenter .wp-block-search__inside-wrapper {
  margin: auto;
}

.wp-block-separator {
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.wp-block-separator.is-style-wide {
  border-bottom-width: 1px;
}

.wp-block-separator.is-style-dots {
  background: none !important;
  border: none;
  text-align: center;
  width: none;
  line-height: 1;
  height: auto;
}

.wp-block-separator.is-style-dots::before {
  content: "···";
  color: currentColor;
  font-size: 1.5em;
  letter-spacing: 2em;
  /*rtl:ignore*/
  padding-left: 2em;
  font-family: serif;
}

.wp-block-site-logo {
  line-height: 0;
}

.wp-block-site-logo a {
  display: inline-block;
}

.wp-block-site-logo.is-default-size img {
  width: 120px;
  height: auto;
}

.wp-block-site-logo .aligncenter {
  display: table;
}

.wp-block-site-logo.is-style-rounded img {
  border-radius: 9999px;
}

.wp-block-spacer {
  clear: both;
}

.wp-block-table {
  margin: 0 0 1em 0;
  overflow-x: auto;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table .has-fixed-layout {
  table-layout: fixed;
  width: 100%;
}

.wp-block-table .has-fixed-layout td,
.wp-block-table .has-fixed-layout th {
  word-break: break-word;
}

.wp-block-table.alignleft, .wp-block-table.aligncenter, .wp-block-table.alignright {
  display: table;
  width: auto;
}

.wp-block-table.alignleft td,
.wp-block-table.alignleft th, .wp-block-table.aligncenter td,
.wp-block-table.aligncenter th, .wp-block-table.alignright td,
.wp-block-table.alignright th {
  word-break: break-word;
}

.wp-block-table .has-subtle-light-gray-background-color {
  background-color: #f3f4f5;
}

.wp-block-table .has-subtle-pale-green-background-color {
  background-color: #e9fbe5;
}

.wp-block-table .has-subtle-pale-blue-background-color {
  background-color: #e7f5fe;
}

.wp-block-table .has-subtle-pale-pink-background-color {
  background-color: #fcf0ef;
}

.wp-block-table.is-style-stripes {
  border-spacing: 0;
  border-collapse: inherit;
  background-color: transparent;
  border-bottom: 1px solid #f0f0f0;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #f0f0f0;
}

.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd) {
  background-color: #f3f4f5;
}

.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd) {
  background-color: #e9fbe5;
}

.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd) {
  background-color: #e7f5fe;
}

.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd) {
  background-color: #fcf0ef;
}

.wp-block-table.is-style-stripes th,
.wp-block-table.is-style-stripes td {
  border-color: transparent;
}

.wp-block-table .has-border-color > *,
.wp-block-table .has-border-color tr,
.wp-block-table .has-border-color th,
.wp-block-table .has-border-color td {
  border-color: inherit;
}

.wp-block-table table[style*=border-style] > *,
.wp-block-table table[style*=border-style] tr,
.wp-block-table table[style*=border-style] th,
.wp-block-table table[style*=border-style] td {
  border-style: inherit;
}

.wp-block-table table[style*=border-width] > *,
.wp-block-table table[style*=border-width] tr,
.wp-block-table table[style*=border-width] th,
.wp-block-table table[style*=border-width] td {
  border-width: inherit;
}

pre.wp-block-verse {
  font-family: inherit;
  overflow: auto;
  white-space: pre-wrap;
}

.wp-block-video {
  margin: 0 0 1em 0;
}

.wp-block-video video {
  width: 100%;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .wp-block-video [poster] {
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.wp-block-video.aligncenter {
  text-align: center;
}

.wp-block-video figcaption {
  margin-top: 0.5em;
  margin-bottom: 1em;
}

.wp-block-post-featured-image {
  margin-left: 0;
  margin-right: 0;
}

.wp-block-post-featured-image a {
  display: inline-block;
}

.wp-block-post-featured-image img {
  max-width: 100%;
  height: auto;
}

.wp-block-post-featured-image.alignwide img, .wp-block-post-featured-image.alignfull img {
  width: 100%;
}

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

.has-text-align-left {
  /*rtl:ignore*/
  text-align: left;
}

.has-text-align-right {
  /*rtl:ignore*/
  text-align: right;
}

#end-resizable-editor-section {
  display: none;
}

.aligncenter {
  clear: both;
}

.items-justified-left {
  justify-content: flex-start;
}

.items-justified-center {
  justify-content: center;
}

.items-justified-right {
  justify-content: flex-end;
}

.items-justified-space-between {
  justify-content: space-between;
}

/*
Covers a variety of blocks which could be hero elements
Matches the PHP logic
*/
.hero-content {
  margin-bottom: 45px;
  margin-bottom: var(--hero-margins);
}
.hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel) {
  width: 100%;
  max-width: unset;
  margin: 0;
  min-height: min(100vh, 450px);
  min-height: var(--hero--min-height, 100vh);
  background-color: #37A5E5;
  background-color: var(--hero--color-background);
  color: #ffffff;
  color: var(--hero--color-foreground);
  --palette--secondary: var(--hero--color-foreground);
}
.hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel) :not([class*=-font-size]) {
  font-size: calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--hero--text-font-size);
}
.hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel) :where(p, h1, h2, h3, h4, h5, h6):not([class*=has-text-align-]) {
  text-align: left;
}
.hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel) :where(h1, h2, h3, h4, h5, h6):not(.has-text-color) {
  color: #333333;
  color: var(--palette--secondary);
}
.hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel) :where(h1, h2, h3, h4, h5, h6):not([class*=-font-size]) {
  font-size: calc(
  	((44.79 / 16) * 1rem) + (54.93 - 44.79) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--hero--heading-font-size);
  line-height: 1.1;
  line-height: var(--hero--heading-line-height);
}
.hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel).wp-block-image img {
  min-height: min(100vh, 450px);
  min-height: var(--hero--min-height, 100vh);
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel).wp-block-media-text figure {
  height: 100% !important;
}
.hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel).wp-block-media-text figure img {
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel).wp-block-cover {
  display: grid;
  grid-template-columns: [left-edge] 1fr [content-start] calc(100vw - 2 * 20px) [content-end] 1fr [right-edge];
  grid-template-columns: [left-edge] 1fr [content-start] var(--responsive--alignfull-width) [content-end] 1fr [right-edge];
}
.hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel).wp-block-cover .wp-block-cover__inner-container[class] {
  padding: 0;
  grid-column: content-start/content-end;
}
.hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel).wp-block-cover .wp-block-cover__inner-container[class] > * {
  max-width: unset;
}
.hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel).wp-block-cover .wp-block-cover__inner-container[class] {
  max-width: calc(100vw - 2 * 20px);
  max-width: var(--responsive--aligndefault-width);
  align-self: center;
  justify-self: center;
  place-self: center;
}
.hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel).wp-block-cover .wp-block-cover__inner-container[class] > * {
  text-align: center;
  justify-content: center;
}
.hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel).wp-block-media-text {
  grid-gap: calc(2 * calc(0.5 * 40px)) 0;
  gap: calc(2 * calc(0.5 * 40px)) 0;
  grid-gap: calc(2 * var(--default-margins)) 0;
  gap: calc(2 * var(--default-margins)) 0;
  grid-template-columns: [left-edge media-start] 1fr [content-start] calc(100vw - 2 * 20px) [content-end] 1fr [media-end right-edge];
  grid-template-columns: [left-edge media-start] 1fr [content-start] var(--responsive--alignfull-width) [content-end] 1fr [media-end right-edge];
  grid-template-rows: [media-start] auto [media-end content-start] auto [content-end];
}
@media only screen and (max-width: 767px) {
  .hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel).wp-block-media-text.is-stacked-on-mobile {
    grid-template-columns: [left-edge media-start] 1fr [content-start] calc(100vw - 2 * 20px) [content-end] 1fr [media-end right-edge] !important;
    grid-template-columns: [left-edge media-start] 1fr [content-start] var(--responsive--alignfull-width) [content-end] 1fr [media-end right-edge] !important;
  }
}
@media only screen and (min-width: 768px) {
  .hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel).wp-block-media-text {
    grid-template-columns: [left-end media-start] minmax(20px, 1fr) calc(calc(100vw - 2 * 20px) / 2) [media-end] var(--content-media-gap) [content-start] calc(calc(100vw - 2 * 20px) / 2 - var(--content-media-gap)) [content-end] minmax(20px, 1fr) [left-edge];
    grid-template-columns: [left-end media-start] minmax(var(--browser-margin), 1fr) calc(var(--responsive--alignfull-width) / 2) [media-end] var(--content-media-gap) [content-start] calc(var(--responsive--alignfull-width) / 2 - var(--content-media-gap)) [content-end] minmax(var(--browser-margin), 1fr) [left-edge];
    grid-template-rows: [content-start media-start] 1fr [media-end content-end];
  }
}
@media only screen and (min-width: 768px) {
  .hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel).wp-block-media-text.has-media-on-the-right {
    grid-template-columns: [left-edge] minmax(20px, 1fr) [content-start] calc(calc(100vw - 2 * 20px) / 2 - var(--content-media-gap)) [content-end] var(--content-media-gap) [media-start] calc(calc(100vw - 2 * 20px) / 2) minmax(20px, 1fr) [media-end right-edge];
    grid-template-columns: [left-edge] minmax(var(--browser-margin), 1fr) [content-start] calc(var(--responsive--alignfull-width) / 2 - var(--content-media-gap)) [content-end] var(--content-media-gap) [media-start] calc(var(--responsive--alignfull-width) / 2) minmax(var(--browser-margin), 1fr) [media-end right-edge];
  }
}
.hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel).wp-block-media-text .wp-block-media-text__media[class] {
  grid-column: media-start/media-end;
  grid-row: media-start/media-end;
}
.hero-content :where(.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.wp-block-columns,
.is-style-carousel).wp-block-media-text .wp-block-media-text__content[class] {
  padding: 0;
  grid-column: content-start/content-end;
  grid-row: content-start/content-end;
}

.wp-block-audio audio:focus {
  outline-offset: 5px;
  outline: 2px solid #333333;
  outline: 2px solid var(--palette--primary);
}

/**
 * Button
 */
.site .button,
input[type=submit],
input[type=reset],
.wp-block-search__button,
.wp-block-button:not(.is-style-plain) .wp-block-button__link {
  line-height: normal;
  line-height: var(--button--line-height);
  color: #333333;
  color: var(--button--color-text);
  cursor: pointer;
  font-weight: 300;
  font-weight: var(--button--font-weight);
  font-family: inherit;
  font-family: var(--button--font-family);
  font-size: calc(
  	((14 / 16) * 1rem) + (14 - 14) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--button--font-size);
  background-color: #333333;
  background-color: var(--button--color-background);
  border-radius: 3px;
  border-radius: var(--button--border-radius);
  border: 1px solid #333333;
  border: var(--button--border-width) solid var(--button--border-color);
  text-decoration: none;
  padding: 20px 30px;
  padding: var(--button--padding-vertical) var(--button--padding-horizontal);
  box-shadow: none;
  text-transform: uppercase;
  text-align: center;
  transition: color 200ms ease-in-out, border-color 200ms ease-in-out, background-color 200ms ease-in-out;
  -webkit-appearance: none;
}
.site .button:hover, .site .button:active, .site .button:focus, .site .button[focus-within], .site .button.has-focus,
input[type=submit]:hover,
input[type=submit]:active,
input[type=submit]:focus,
input[type=submit][focus-within],
input[type=submit].has-focus,
input[type=reset]:hover,
input[type=reset]:active,
input[type=reset]:focus,
input[type=reset][focus-within],
input[type=reset].has-focus,
.wp-block-search__button:hover,
.wp-block-search__button:active,
.wp-block-search__button:focus,
.wp-block-search__button[focus-within],
.wp-block-search__button.has-focus,
.wp-block-button:not(.is-style-plain) .wp-block-button__link:hover,
.wp-block-button:not(.is-style-plain) .wp-block-button__link:active,
.wp-block-button:not(.is-style-plain) .wp-block-button__link:focus,
.wp-block-button:not(.is-style-plain) .wp-block-button__link[focus-within],
.wp-block-button:not(.is-style-plain) .wp-block-button__link.has-focus {
  background-color: #333333;
  background-color: var(--button--color-background-active);
  transition: color 100ms ease-in-out, border-color 100ms ease-in-out, background-color 100ms ease-in-out;
}
.site .button:hover, .site .button:active, .site .button:focus, .site .button:focus-within, .site .button.has-focus,
input[type=submit]:hover,
input[type=submit]:active,
input[type=submit]:focus,
input[type=submit]:focus-within,
input[type=submit].has-focus,
input[type=reset]:hover,
input[type=reset]:active,
input[type=reset]:focus,
input[type=reset]:focus-within,
input[type=reset].has-focus,
.wp-block-search__button:hover,
.wp-block-search__button:active,
.wp-block-search__button:focus,
.wp-block-search__button:focus-within,
.wp-block-search__button.has-focus,
.wp-block-button:not(.is-style-plain) .wp-block-button__link:hover,
.wp-block-button:not(.is-style-plain) .wp-block-button__link:active,
.wp-block-button:not(.is-style-plain) .wp-block-button__link:focus,
.wp-block-button:not(.is-style-plain) .wp-block-button__link:focus-within,
.wp-block-button:not(.is-style-plain) .wp-block-button__link.has-focus {
  background-color: #333333;
  background-color: var(--button--color-background-active);
  transition: color 100ms ease-in-out, border-color 100ms ease-in-out, background-color 100ms ease-in-out;
}
.site .button:focus,
input[type=submit]:focus,
input[type=reset]:focus,
.wp-block-search__button:focus,
.wp-block-button:not(.is-style-plain) .wp-block-button__link:focus {
  outline-offset: -6px;
  outline: 2px dotted currentColor;
}
.site .button:focus:not(.has-background),
input[type=submit]:focus:not(.has-background),
input[type=reset]:focus:not(.has-background),
.wp-block-search__button:focus:not(.has-background),
.wp-block-button:not(.is-style-plain) .wp-block-button__link:focus:not(.has-background) {
  color: #333333;
  color: var(--button--color-text-hover);
}
.site .button:focus:not(.focus-visible),
input[type=submit]:focus:not(.focus-visible),
input[type=reset]:focus:not(.focus-visible),
.wp-block-search__button:focus:not(.focus-visible),
.wp-block-button:not(.is-style-plain) .wp-block-button__link:focus:not(.focus-visible) {
  outline: none;
}
.site .button:focus:not(:focus-visible),
input[type=submit]:focus:not(:focus-visible),
input[type=reset]:focus:not(:focus-visible),
.wp-block-search__button:focus:not(:focus-visible),
.wp-block-button:not(.is-style-plain) .wp-block-button__link:focus:not(:focus-visible) {
  outline: none;
}
.site .button:disabled,
input[type=submit]:disabled,
input[type=reset]:disabled,
.wp-block-search__button:disabled,
.wp-block-button:not(.is-style-plain) .wp-block-button__link:disabled {
  background-color: rgba(255, 255, 255, 0.5);
  background-color: var(--palette--white-50);
  border-color: rgba(255, 255, 255, 0.5);
  border-color: var(--palette--white-50);
  color: #333333;
  color: var(--button--color-text-active);
  opacity: 0.4;
}

.site .button:visited,
input[type=submit]:visited,
input[type=reset]:visited,
.wp-block-search .wp-block-search__button:visited,
.wp-block-file .wp-block-file__button:visited {
  background-color: #333333;
  background-color: var(--button--color-background);
  color: #333333;
  color: var(--button--color-text);
}
.site .button:active,
input[type=submit]:active,
input[type=reset]:active,
.wp-block-search .wp-block-search__button:active,
.wp-block-file .wp-block-file__button:active {
  color: #333333;
  color: var(--button--color-text-active);
  background-color: #333333;
  background-color: var(--button--color-background-active);
}
.site .button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
.wp-block-search .wp-block-search__button:hover,
.wp-block-file .wp-block-file__button:hover {
  color: #333333;
  color: var(--button--color-text-hover);
  background-color: #333333;
  background-color: var(--button--color-background-active);
}

/**
 * Block Options
 */
.wp-block-button:not(.is-style-outline):not(.is-style-plain) .wp-block-button__link:active {
  color: #333333 !important;
  color: var(--button--color-text-active) !important;
  border-color: #333333;
  border-color: var(--button--color-background);
}
.wp-block-button:not(.is-style-outline):not(.is-style-plain) .wp-block-button__link:hover {
  color: #333333 !important;
  color: var(--button--color-text-hover) !important;
}
.wp-block-button:not(.is-style-outline):not(.is-style-plain) .wp-block-button__link:focus {
  color: #333333 !important;
  color: var(--button--color-text) !important;
  background-color: #333333 !important;
  background-color: var(--button--color-background-active) !important;
}
.wp-block-button.is-style-plain {
  -webkit-appearance: none;
}
.wp-block-button.is-style-plain:first-child {
  margin-top: calc(-1 * 40px + calc(0.5 * 40px));
  margin-top: calc(-1 * var(--block-margins) + var(--default-margins));
}
.wp-block-button.is-style-plain .wp-block-button__link {
  background-color: inherit;
  border: none;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: block;
  font: inherit;
  padding: inherit;
  text-align: inherit;
  color: initial;
  color: var(--palette--link);
  font-size: calc(
  	((14 / 16) * 1rem) + (14 - 14) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step--1);
  font-weight: 300;
  text-decoration: underline;
  word-wrap: break-word;
  box-sizing: border-box;
  text-transform: uppercase;
}
.wp-block-button.is-style-plain .wp-block-button__link:hover, .wp-block-button.is-style-plain .wp-block-button__link:focus, .wp-block-button.is-style-plain .wp-block-button__link:active {
  color: initial;
  color: var(--palette--link-hover);
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
}
.wp-block-buttons.is-content-justification-center .wp-block-button.is-style-plain .wp-block-button__link {
  text-align: center;
}
.wp-block-buttons.is-vertical .wp-block-button.is-style-plain + * {
  margin-top: calc(0.5 * 40px);
  margin-top: var(--default-margins);
}

.is-style-plain .wp-block-button__link[style*=radius]:focus,
.is-style-outline .wp-block-button__link[style*=radius]:focus,
.wp-block-button a.wp-block-button__link[style*=radius]:focus {
  outline-offset: 2px;
  outline: 2px dotted #333333;
  outline: 2px dotted var(--button--color-background);
}

.wp-block-code {
  border-color: #e1e1e1;
  border-color: var(--palette--border);
  border-radius: 0;
  border-style: solid;
  border-width: 0.1rem;
  padding: 20px;
  padding: var(--spacing-horizontal);
}
.wp-block-code code {
  color: #333333;
  color: var(--palette--primary);
  white-space: pre;
  overflow-x: auto;
  display: block;
}

.wp-block-columns:not(.alignwide):not(.alignfull) {
  clear: both;
}
.wp-block-columns .wp-block-column.has-background {
  padding: 40px 20px;
  padding: var(--spacing-vertical) var(--spacing-horizontal);
}
.wp-block-columns .wp-block-column:last-child {
  margin-bottom: 0;
}
.wp-block-columns .wp-block-column:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: var(--block-margins);
}
@media only screen and (min-width: 768px) {
  .wp-block-columns .wp-block-column:not(:last-child) {
    margin-bottom: 0;
  }
}
.wp-block-columns.alignfull .wp-block-column p:not(.has-background),
.wp-block-columns.alignfull .wp-block-column h1:not(.has-background),
.wp-block-columns.alignfull .wp-block-column h2:not(.has-background),
.wp-block-columns.alignfull .wp-block-column h3:not(.has-background),
.wp-block-columns.alignfull .wp-block-column h4:not(.has-background),
.wp-block-columns.alignfull .wp-block-column h5:not(.has-background),
.wp-block-columns.alignfull .wp-block-column h6:not(.has-background) {
  padding-left: 20px;
  padding-left: var(--spacing-horizontal);
  padding-right: 20px;
  padding-right: var(--spacing-horizontal);
}

:where(.wp-block-cover,
.wp-block-cover-image) {
  min-height: min(11.5 * 40px, 100vh);
  min-height: var(--cover--min-height);
  margin-top: inherit;
  margin-bottom: inherit;
  padding: 0;
  /* cover defaults */
}
:where(.wp-block-cover,
.wp-block-cover-image):not(.alignwide):not(.alignfull) {
  clear: both;
}
:where(.wp-block-cover,
.wp-block-cover-image).alignfull {
  margin-top: 0;
  margin-bottom: 0;
}
:where(.wp-block-cover,
.wp-block-cover-image).alignfull .wp-block-cover__inner-container {
  width: 100%;
}
:where(.wp-block-cover,
.wp-block-cover-image).alignfull .wp-block-cover__inner-container > *:not(:is(.alignwide, .alignfull, .alignleft, .alignright, .wp-block-separator)) {
  max-width: unset;
}
:where(.wp-block-cover,
.wp-block-cover-image).alignwide .wp-block-cover__inner-container {
  width: 100%;
}
:where(.wp-block-cover,
.wp-block-cover-image).alignwide .wp-block-cover__inner-container > *:not(:is(.alignwide, .alignfull, .alignleft, .alignright, .wp-block-separator)) {
  max-width: unset;
}
:where(.wp-block-cover,
.wp-block-cover-image) > .wp-block-cover__inner-container {
  color: #37A5E5;
  color: var(--cover--color-foreground);
  padding-top: 40px;
  padding-top: var(--spacing-vertical);
  padding-left: 20px;
  padding-left: var(--spacing-horizontal);
  padding-right: 20px;
  padding-right: var(--spacing-horizontal);
  padding-bottom: 40px;
  padding-bottom: var(--spacing-vertical);
  width: 100%;
}
:where(.wp-block-cover,
.wp-block-cover-image) > .wp-block-cover__inner-container > * {
  max-width: unset;
}
:where(.wp-block-cover,
.wp-block-cover-image) > .wp-block-cover__inner-container a:not(.wp-block-button__link):not(.wp-block-file__button) {
  color: currentColor;
}
:where(.wp-block-cover,
.wp-block-cover-image) > .wp-block-cover__inner-container .has-link-color a {
  color: #333333;
  color: var(--palette--primary);
}
:where(.wp-block-cover,
.wp-block-cover-image):where(p, h1, h2, h3, h4, h5, h6):not([class*=has-text-color]) {
  color: inherit;
}
:where(.wp-block-cover,
.wp-block-cover-image):where(p, h1, h2, h3, h4, h5, h6):not([class*=has-text-align-]) {
  text-align: center;
}
:where(.wp-block-cover,
.wp-block-cover-image):where(h1, h2, h3, h4, h5, h6):not([class*=-font-size]) {
  font-size: calc(
  	((44.79 / 16) * 1rem) + (54.93 - 44.79) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--cover--heading-font-size);
}
:where(.wp-block-cover,
.wp-block-cover-image).has-background-dim:not([class*=-background-color]) {
  background-color: #f9f9f9;
  background-color: var(--cover--color-background);
}
:where(.wp-block-cover,
.wp-block-cover-image).has-background-dim:not([class*=-background-color]):not([class*=has-background-dim-]):not(.has-background-gradient)::before, :where(.wp-block-cover,
.wp-block-cover-image).has-background-dim:not([class*=-background-color]) .wp-block-cover__gradient-background {
  opacity: 1;
}
:where(.wp-block-cover,
.wp-block-cover-image).alignleft, :where(.wp-block-cover,
.wp-block-cover-image).alignright {
  margin-top: 0;
}
:where(.wp-block-cover,
.wp-block-cover-image).alignleft > *, :where(.wp-block-cover,
.wp-block-cover-image).alignright > * {
  padding-left: 20px;
  padding-left: var(--spacing-horizontal);
  padding-right: 20px;
  padding-right: var(--spacing-horizontal);
  width: 100%;
}
:where(.wp-block-cover,
.wp-block-cover-image).has-left-content, :where(.wp-block-cover,
.wp-block-cover-image).has-right-content {
  justify-content: center;
}

.wp-block-file a.wp-block-file__button:active,
.wp-block-file a.wp-block-file__button:focus,
.wp-block-file a.wp-block-file__button:hover {
  color: #333333;
  color: var(--button--color-text-hover);
  opacity: inherit;
}
.wp-block-file a.wp-block-file__button:visited {
  color: #333333;
  color: var(--button--color-text);
}
.wp-block-file a.wp-block-file__button:visited:hover {
  color: #333333;
  color: var(--button--color-text-hover);
}
.wp-block-file .wp-block-file__button {
  line-height: normal;
  line-height: var(--button--line-height);
  color: #333333;
  color: var(--button--color-text);
  cursor: pointer;
  font-weight: 300;
  font-weight: var(--button--font-weight);
  font-family: inherit;
  font-family: var(--button--font-family);
  font-size: calc(
  	((14 / 16) * 1rem) + (14 - 14) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--button--font-size);
  background-color: #333333;
  background-color: var(--button--color-background);
  border-radius: 3px;
  border-radius: var(--button--border-radius);
  border: 1px solid #333333;
  border: var(--button--border-width) solid var(--button--border-color);
  text-decoration: none;
  padding: 20px 30px;
  padding: var(--button--padding-vertical) var(--button--padding-horizontal);
  box-shadow: none;
  text-transform: uppercase;
  text-align: center;
  transition: color 200ms ease-in-out, border-color 200ms ease-in-out, background-color 200ms ease-in-out;
  display: inline-block;
}
.wp-block-file .wp-block-file__button:hover, .wp-block-file .wp-block-file__button:active, .wp-block-file .wp-block-file__button:focus, .wp-block-file .wp-block-file__button[focus-within], .wp-block-file .wp-block-file__button.has-focus {
  background-color: #333333;
  background-color: var(--button--color-background-active);
  transition: color 100ms ease-in-out, border-color 100ms ease-in-out, background-color 100ms ease-in-out;
}
.wp-block-file .wp-block-file__button:hover, .wp-block-file .wp-block-file__button:active, .wp-block-file .wp-block-file__button:focus, .wp-block-file .wp-block-file__button:focus-within, .wp-block-file .wp-block-file__button.has-focus {
  background-color: #333333;
  background-color: var(--button--color-background-active);
  transition: color 100ms ease-in-out, border-color 100ms ease-in-out, background-color 100ms ease-in-out;
}
.wp-block-file .wp-block-file__button:focus {
  outline-offset: -6px;
  outline: 2px dotted currentColor;
}
.wp-block-file .wp-block-file__button:focus:not(.has-background) {
  color: #333333;
  color: var(--button--color-text-hover);
}
.wp-block-file .wp-block-file__button:focus:not(.focus-visible) {
  outline: none;
}
.wp-block-file .wp-block-file__button:focus:not(:focus-visible) {
  outline: none;
}
.wp-block-file .wp-block-file__button:disabled {
  background-color: rgba(255, 255, 255, 0.5);
  background-color: var(--palette--white-50);
  border-color: rgba(255, 255, 255, 0.5);
  border-color: var(--palette--white-50);
  color: #333333;
  color: var(--button--color-text-active);
  opacity: 0.4;
}

.wp-block-gallery {
  margin: 0 auto;
  --grid-auto: auto-fill;
  --col-min: 275px;
  --min: min(var(--col-min), 25vw);
  --gap: min(4vw, 3.6em);
}
body.home .wp-block-gallery {
  --gap: min(3vw, 1.5em);
}
.wp-block-gallery.columns-6 {
  --col-min: 250px;
}
.wp-block-gallery.columns-4 {
  --col-min: 325px;
}
.wp-block-gallery.columns-3 {
  --col-min: 450px;
}
.wp-block-gallery.is-cropped {
  --aspect-ratio: 1/1;
  --fallback-ratio: max(30vmin, var(--min));
}

:is(.wp-block-gallery .blocks-gallery-grid,
.wp-block-gallery.blocks-gallery-grid) {
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--grid-auto), minmax(min(100%, var(--min)), 1fr));
  grid-gap: var(--gap);
}
:is(.wp-block-gallery .blocks-gallery-grid,
.wp-block-gallery.blocks-gallery-grid) :is(.blocks-gallery-image,
.blocks-gallery-item,
.wp-block-image) {
  margin: 0;
  width: 100%;
  aspect-ratio: unset;
  aspect-ratio: var(--aspect-ratio, unset);
}
@supports not (aspect-ratio: 1/1) {
  :is(.wp-block-gallery .blocks-gallery-grid,
.wp-block-gallery.blocks-gallery-grid) :is(.blocks-gallery-image,
.blocks-gallery-item,
.wp-block-image) {
    height: auto;
    height: var(--fallback-ratio, auto);
  }
}
:is(.wp-block-gallery .blocks-gallery-grid,
.wp-block-gallery.blocks-gallery-grid) :is(.blocks-gallery-image,
.blocks-gallery-item,
.wp-block-image) figcaption {
  margin: 0;
  pointer-events: none;
  color: #ffffff;
  color: var(--palette--white);
  font-size: calc(
  	((14 / 16) * 1rem) + (14 - 14) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step--1);
  line-height: normal;
  padding: 2em 0.5em 0.5em;
}
:is(.wp-block-gallery .blocks-gallery-grid,
.wp-block-gallery.blocks-gallery-grid) :is(.blocks-gallery-image,
.blocks-gallery-item,
.wp-block-image) figcaption a {
  color: #ffffff;
  color: var(--palette--white);
}
:is(.wp-block-gallery .blocks-gallery-grid,
.wp-block-gallery.blocks-gallery-grid) :is(.blocks-gallery-image,
.blocks-gallery-item,
.wp-block-image) figcaption a:focus {
  background-color: transparent;
  outline: 2px solid #333333;
  outline: 2px solid var(--palette--primary);
  text-decoration: none;
}
:is(.wp-block-gallery .blocks-gallery-grid,
.wp-block-gallery.blocks-gallery-grid) :is(.blocks-gallery-image,
.blocks-gallery-item,
.wp-block-image) a:focus img {
  outline-offset: 2px;
}

.wp-block-group {
  display: flow-root;
}
.entry-content > .wp-block-group.is-style-carousel:first-child {
  width: 100%;
  max-width: unset;
  margin-left: 0;
  margin-right: 0;
  --swiper-theme-color: var(--palette--white);
  --swiper-pagination-color: var(--palette--white);
  --swiper-pagination-inactive-color: var(--palette--white-50);
  --swiper-navigation-color: var(--palette--white-50);
  --swiper-navigation-size: var(--step-3);
  --swiper-navigation-offset: min(5vw, 2em);
  --swiper-pagination-offset: 1em;
}
.entry-content > .wp-block-group.is-style-carousel:first-child .swiper-slide > * {
  max-width: unset;
}
.wp-block-group.is-style-carousel {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}
.wp-block-group.is-style-carousel.alignfull .wp-block-group__inner-container > * {
  width: 100%;
  max-width: unset;
}
.no-js .wp-block-group.is-style-carousel .wp-block-group__inner-container > * + * {
  display: none;
}
.wp-block-group.is-style-carousel.swiper-container .wp-block-group__inner-container > .swiper-slide {
  max-width: unset !important;
  margin: 0;
  padding: 0;
}
.wp-block-group.is-style-carousel .wp-block-group__inner-container .swiper-wrapper,
.wp-block-group.is-style-carousel .wp-block-group__inner-container .swiper-pagination,
.wp-block-group.is-style-carousel .wp-block-group__inner-container .swiper-button-prev,
.wp-block-group.is-style-carousel .wp-block-group__inner-container .swiper-button-next {
  margin: 0 auto;
}
.wp-block-group.is-style-carousel.has-wp-block-image {
  --swiper-pagination-color: var(--palette--white);
  --swiper-pagination-inactive-color: var(--palette--white-50);
  --swiper-pagination-offset: 3em;
}
.wp-block-group.is-style-carousel.has-wp-block-image .swiper-slide[class] {
  padding: 20px 50px;
}
.wp-block-group.is-style-carousel.has-wp-block-image .wp-block-image {
  max-width: calc(100vw - 2 * 20px);
  max-width: var(--responsive--alignwide-width);
}
.wp-block-group.is-style-carousel.has-wp-block-column {
  --swiper-pagination-offset: 0;
}
.wp-block-group.is-style-carousel.has-wp-block-column .swiper-slide[class] {
  padding: 0 0 50px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  clear: both;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: var(--font-headings);
  font-weight: 400;
  font-weight: var(--heading--font-weight);
  font-style: normal;
}
h1 strong,
.h1 strong,
h2 strong,
.h2 strong,
h3 strong,
.h3 strong,
h4 strong,
.h4 strong,
h5 strong,
.h5 strong,
h6 strong,
.h6 strong {
  font-weight: 600;
  font-weight: var(--heading--font-weight-strong);
}
h1:not(.has-text-color),
.h1:not(.has-text-color),
h2:not(.has-text-color),
.h2:not(.has-text-color),
h3:not(.has-text-color),
.h3:not(.has-text-color),
h4:not(.has-text-color),
.h4:not(.has-text-color),
h5:not(.has-text-color),
.h5:not(.has-text-color),
h6:not(.has-text-color),
.h6:not(.has-text-color) {
  color: #333333;
  color: var(--palette--secondary);
}

h1,
.h1 {
  font-size: calc(
  	((44.79 / 16) * 1rem) + (54.93 - 44.79) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--heading--font-size-h1);
  letter-spacing: normal;
  letter-spacing: var(--heading--letter-spacing-h1);
  line-height: 1.1;
  line-height: var(--heading--line-height-h1);
}

h2,
.h2 {
  font-size: calc(
  	((37.32 / 16) * 1rem) + (43.95 - 37.32) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--heading--font-size-h2);
  letter-spacing: normal;
  letter-spacing: var(--heading--letter-spacing-h2);
  line-height: 1.2;
  line-height: var(--heading--line-height-h2);
}

h3,
.h3 {
  font-size: calc(
  	((31.10 / 16) * 1rem) + (35.16 - 31.10) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--heading--font-size-h3);
  letter-spacing: normal;
  letter-spacing: var(--heading--letter-spacing-h3);
  line-height: 1.2;
  line-height: var(--heading--line-height-h3);
}

h4,
.h4 {
  font-size: calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--heading--font-size-h4);
  font-weight: 600;
  font-weight: var(--heading--font-weight-strong);
  letter-spacing: normal;
  letter-spacing: var(--heading--letter-spacing-h4);
  line-height: 1.2;
  line-height: var(--heading--line-height-h4);
}

h5,
.h5 {
  font-size: calc(
  	((21.60 / 16) * 1rem) + (22.50 - 21.60) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--heading--font-size-h5);
  font-weight: 600;
  font-weight: var(--heading--font-weight-strong);
  letter-spacing: 0.05em;
  letter-spacing: var(--heading--letter-spacing-h5);
  line-height: 1.2;
  line-height: var(--heading--line-height-h5);
}

h6,
.h6 {
  font-size: calc(
  	((16.00 / 16) * 1rem) + (18.00 - 16.00) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--heading--font-size-h6);
  font-weight: 600;
  font-weight: var(--heading--font-weight-strong);
  letter-spacing: 0.05em;
  letter-spacing: var(--heading--letter-spacing-h6);
  line-height: 1.2;
  line-height: var(--heading--line-height-h6);
}

.wp-block-image {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-image figcaption {
  color: #333333;
  color: var(--palette--primary);
  font-size: calc(
  	((14 / 16) * 1rem) + (14 - 14) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step--1);
  line-height: 1.67;
  line-height: var(--line-height-body);
  margin-top: calc(0.5 * 40px);
  margin-top: calc(0.5 * var(--spacing-vertical));
  margin-bottom: 40px;
  margin-bottom: var(--spacing-vertical);
  text-align: center;
}
.wp-block-image .alignright {
  margin-left: 20px;
  margin-left: var(--spacing-horizontal);
}
.wp-block-image .alignleft {
  margin-right: 20px;
  margin-right: var(--spacing-horizontal);
}
.wp-block-image a:focus img {
  outline-offset: 2px;
}

.entry-content > *[class=wp-block-image] {
  margin-top: 0;
  margin-bottom: 0;
}
.entry-content > *[class=wp-block-image] + * {
  margin-top: 0;
}

.entry-content :is(.wp-block-image.alignwide,
.wp-block-image.alignfull,
.wp-block-group.is-style-carousel .wp-block-image) img {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .entry-content .wp-block-image > .alignleft,
.entry-content .wp-block-image > .alignright {
    max-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .entry-content .wp-block-image > .alignleft,
.entry-content .wp-block-image > .alignright {
    margin-left: 0;
    margin-right: 0;
  }
}
.entry-content .wp-block-image.is-style-borders {
  position: relative;
}
.entry-content .wp-block-image.is-style-borders:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 15px;
  left: 15px;
  background-color: var(--palette--light-green);
  z-index: 1;
}
.entry-content .wp-block-image.is-style-borders * {
  position: relative;
  z-index: 2;
}
.entry-content :is(.is-style-cta-grid .wp-block-image,
.wp-block-image.is-style-cta) {
  display: grid;
  grid-template-areas: "stack";
  position: relative;
  align-self: stretch;
  --aspect-ratio: 20/15;
  aspect-ratio: var(--aspect-ratio);
}
@supports not (aspect-ratio: 1/1) {
  .entry-content :is(.is-style-cta-grid .wp-block-image,
.wp-block-image.is-style-cta) {
    height: max(30vh, 17rem);
  }
  body.home .entry-content :is(.is-style-cta-grid .wp-block-image,
.wp-block-image.is-style-cta) {
    height: max(30vh, 11rem);
  }
  @media only screen and (min-width: 768px) {
    body.home .entry-content :is(.is-style-cta-grid .wp-block-image,
.wp-block-image.is-style-cta) {
      height: max(25vh, 13.5rem);
    }
  }
  @media only screen and (min-width: 1025px) {
    body.home .entry-content :is(.is-style-cta-grid .wp-block-image,
.wp-block-image.is-style-cta) {
      height: max(20vh, 20rem);
    }
  }
}
.entry-content :is(.is-style-cta-grid .wp-block-image,
.wp-block-image.is-style-cta) > * {
  grid-area: stack;
}
.entry-content :is(.is-style-cta-grid .wp-block-image,
.wp-block-image.is-style-cta) img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  height: 100%;
  width: 100%;
}
.entry-content :is(.is-style-cta-grid .wp-block-image,
.wp-block-image.is-style-cta) figcaption {
  display: grid;
  margin: 0;
  height: 100%;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: var(--font-headings);
  font-size: calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-2);
  line-height: normal;
  font-style: italic;
  background-color: rgba(0, 0, 0, 0.3);
  background-color: var(--palette--black-30);
  transition: background-color 0.3s;
}
.entry-content :is(.is-style-cta-grid .wp-block-image,
.wp-block-image.is-style-cta) figcaption[focus-within], .entry-content :is(.is-style-cta-grid .wp-block-image,
.wp-block-image.is-style-cta) figcaption:hover {
  background-color: var(--palette--dark-red-85);
}
.entry-content :is(.is-style-cta-grid .wp-block-image,
.wp-block-image.is-style-cta) figcaption:focus-within, .entry-content :is(.is-style-cta-grid .wp-block-image,
.wp-block-image.is-style-cta) figcaption:hover {
  background-color: var(--palette--dark-red-85);
}
.entry-content :is(.is-style-cta-grid .wp-block-image,
.wp-block-image.is-style-cta) figcaption a {
  align-self: center;
  justify-self: center;
  place-self: center;
  margin: 1em;
  color: #ffffff;
  color: var(--palette--white);
  text-decoration: none;
}
.entry-content :is(.is-style-cta-grid .wp-block-image,
.wp-block-image.is-style-cta) figcaption a:focus {
  background: transparent;
}
.entry-content :is(.is-style-cta-grid .wp-block-image,
.wp-block-image.is-style-cta) figcaption a:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.entry-content :is(.is-style-cta-grid .wp-block-image,
.wp-block-image.is-style-cta) figcaption a:after {
  content: "";
  display: block;
  width: min(2.4em, 100%);
  height: 1px;
  margin: 0.75em auto 0;
  background-color: currentColor;
}

.wp-block-latest-posts {
  padding-left: 0;
}
.wp-block-latest-posts:not(.is-grid) > li {
  margin-top: calc(1.666 * 40px);
  margin-top: calc(1.666 * var(--block-margins));
  margin-bottom: calc(1.666 * 40px);
  margin-bottom: calc(1.666 * var(--block-margins));
}
.wp-block-latest-posts:not(.is-grid) > li:first-child {
  margin-top: 0;
}
.wp-block-latest-posts:not(.is-grid) > li:last-child {
  margin-bottom: 0;
}
.wp-block-latest-posts.is-grid {
  word-wrap: break-word;
  word-break: break-word;
}
.wp-block-latest-posts.is-grid > li {
  margin-bottom: 40px;
  margin-bottom: var(--spacing-vertical);
}
.wp-block-latest-posts.is-grid > li:last-child {
  margin-bottom: 0;
}
.wp-block-latest-posts.is-grid.columns-2 > li:nth-last-child(-n+2):nth-child(2n+1), .wp-block-latest-posts.is-grid.columns-2 > li:nth-last-child(-n+2):nth-child(2n+1) ~ li, .wp-block-latest-posts.is-grid.columns-3 > li:nth-last-child(-n+3):nth-child(3n+1), .wp-block-latest-posts.is-grid.columns-3 > li:nth-last-child(-n+3):nth-child(3n+1) ~ li, .wp-block-latest-posts.is-grid.columns-4 > li:nth-last-child(-n+4):nth-child(4n+1), .wp-block-latest-posts.is-grid.columns-4 > li:nth-last-child(-n+4):nth-child(4n+1) ~ li, .wp-block-latest-posts.is-grid.columns-5 > li:nth-last-child(-n+5):nth-child(5n+1), .wp-block-latest-posts.is-grid.columns-5 > li:nth-last-child(-n+5):nth-child(5n+1) ~ li, .wp-block-latest-posts.is-grid.columns-6 > li:nth-last-child(-n+6):nth-child(6n+1), .wp-block-latest-posts.is-grid.columns-6 > li:nth-last-child(-n+6):nth-child(6n+1) ~ li {
  margin-bottom: 0;
}
.wp-block-latest-posts > li > * {
  margin-top: calc(0.333 * 40px);
  margin-top: calc(0.333 * var(--spacing-vertical));
  margin-bottom: calc(0.333 * 40px);
  margin-bottom: calc(0.333 * var(--spacing-vertical));
}
.wp-block-latest-posts > li > *:first-child {
  margin-top: 0;
}
.wp-block-latest-posts > li > *:last-child {
  margin-bottom: 0;
}
.wp-block-latest-posts > li > a {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: var(--latest-posts--title-font-family);
  font-size: calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--latest-posts--title-font-size);
  font-weight: 400;
  font-weight: var(--heading--font-weight);
  line-height: 1.2;
  line-height: var(--line-height-heading);
  margin-bottom: calc(0.333 * 40px);
  margin-bottom: calc(0.333 * var(--spacing-vertical));
}
.wp-block-latest-posts .wp-block-latest-posts__post-author {
  color: #333333;
  color: var(--palette--primary);
  font-size: calc(
  	((14 / 16) * 1rem) + (14 - 14) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step--1);
  line-height: 1.67;
  line-height: var(--line-height-body);
}
.wp-block-latest-posts .wp-block-latest-posts__post-date {
  color: #333333;
  color: var(--palette--primary);
  font-size: calc(
  	((14 / 16) * 1rem) + (14 - 14) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step--1);
  line-height: 1.67;
  line-height: var(--line-height-body);
}
[class*=inner-container] .wp-block-latest-posts .wp-block-latest-posts__post-date, .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
  color: currentColor;
}
.wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
.wp-block-latest-posts .wp-block-latest-posts__post-full-content {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: var(--latest-posts--description-font-family);
  font-size: calc(
  	((16.00 / 16) * 1rem) + (18.00 - 16.00) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--latest-posts--description-font-size);
  line-height: 1.67;
  line-height: var(--line-height-body);
  margin-top: calc(0.666 * 40px);
  margin-top: calc(0.666 * var(--spacing-vertical));
}
.wp-block-latest-posts.alignfull {
  padding-left: 20px;
  padding-left: var(--spacing-horizontal);
  padding-right: 20px;
  padding-right: var(--spacing-horizontal);
}
.entry-content [class*=inner-container] .wp-block-latest-posts.alignfull, .entry-content .has-background .wp-block-latest-posts.alignfull {
  padding-left: 0;
  padding-right: 0;
}

ul,
ol {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: var(--font-base);
  margin: 0;
  padding-left: calc(2 * 20px);
  padding-left: calc(2 * var(--spacing-horizontal));
}
ul.aligncenter,
ol.aligncenter {
  list-style-position: inside;
  padding: 0;
}
ul.alignright,
ol.alignright {
  list-style-position: inside;
  text-align: right;
  padding: 0;
}
ul li::marker,
ol li::marker {
  color: #333333;
  color: var(--palette--primary);
}
ul.is-style-columns,
ol.is-style-columns {
  grid-column-gap: clamp(50px, 10vw, 80px);
  -moz-column-gap: clamp(50px, 10vw, 80px);
       column-gap: clamp(50px, 10vw, 80px);
  -moz-column-width: 20ch;
       column-width: 20ch;
}
ul.is-style-columns > li,
ol.is-style-columns > li {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

ul {
  list-style-type: disc;
}
ul ul {
  list-style-type: circle;
}

ol {
  list-style-type: decimal;
}
ol ul {
  list-style-type: circle;
}

dt {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: var(--font-headings);
  font-style: italic;
  font-weight: 600;
}

dd {
  margin: 0;
  padding-left: calc(2 * 20px);
  padding-left: calc(2 * var(--spacing-horizontal));
}

.wp-block-media-text {
  --content-media-gap: max(3rem, 7.5vw);
  grid-gap: calc(2 * calc(0.5 * 40px)) 0;
  gap: calc(2 * calc(0.5 * 40px)) 0;
  grid-gap: calc(2 * var(--default-margins)) 0;
  gap: calc(2 * var(--default-margins)) 0;
  /**
   * Block Options
   */
}
.wp-block-media-text a:focus img {
  outline-offset: -1px;
}
@media only screen and (min-width: 993px) {
  .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    padding-right: var(--content-media-gap);
    padding-left: 0;
  }
}
.wp-block-media-text .wp-block-media-text__content {
  padding: 20px 0;
}
@media only screen and (min-width: 993px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding: 40px 0 40px var(--content-media-gap);
  }
}
p {
  line-height: 1.67;
  line-height: var(--line-height-body);
}
p.has-background {
  padding: 40px;
  padding: var(--spacing-vertical);
}
p.has-text-color a {
  color: #333333;
  color: var(--palette--primary);
}
p.is-style-stat-value {
  font-size: calc(
  	((37.32 / 16) * 1rem) + (43.95 - 37.32) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-4);
  line-height: 1;
  text-align: center;
}
p.is-style-stat-value + p {
  margin-top: 0 !important;
  margin-bottom: 3px;
  text-align: center;
}

pre.wp-block-preformatted {
  overflow-x: auto;
  white-space: pre;
}

.wp-block-pullquote {
  padding: calc(2 * 40px) 0;
  padding: calc(2 * var(--spacing-vertical)) 0;
  text-align: center;
  border-width: 3px;
  border-width: var(--pullquote--border-width);
  border-bottom-style: solid;
  border-top-style: solid;
  color: currentColor;
  border-color: currentColor;
  position: relative;
  /**
   * Block Options
   */
}
.wp-block-pullquote blockquote::before {
  color: currentColor;
  content: "“";
  display: block;
  position: relative;
  left: 0;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}
.wp-block-pullquote p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: var(--pullquote--font-family);
  font-size: calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--pullquote--font-size);
  font-style: italic;
  font-style: var(--pullquote--font-style);
  font-weight: 700;
  letter-spacing: normal;
  letter-spacing: var(--pullquote--letter-spacing);
  line-height: 1.2;
  line-height: var(--pullquote--line-height);
  margin: 0;
}
.wp-block-pullquote a {
  color: currentColor;
}
.wp-block-pullquote .wp-block-pullquote__citation,
.wp-block-pullquote cite,
.wp-block-pullquote footer {
  color: currentColor;
  display: block;
  font-size: calc(
  	((14 / 16) * 1rem) + (14 - 14) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step--1);
  font-style: italic;
  font-style: var(--pullquote--font-style);
  text-transform: none;
}
.wp-block-pullquote:not(.is-style-solid-color) {
  background: none;
}
.wp-block-pullquote.alignleft:not(.is-style-solid-color) blockquote:before,
.wp-block-pullquote.alignleft:not(.is-style-solid-color) cite {
  text-align: center;
}
.wp-block-pullquote.alignwide > p, .wp-block-pullquote.alignwide blockquote {
  max-width: calc(100vw - 2 * 20px);
  max-width: var(--responsive--alignwide-width);
}
.wp-block-pullquote.alignfull:not(.is-style-solid-color) > p, .wp-block-pullquote.alignfull:not(.is-style-solid-color) blockquote {
  padding: 0 calc(2 * 20px);
  padding: 0 calc(2 * var(--spacing-horizontal));
}
.wp-block-pullquote.is-style-solid-color {
  color: #333333;
  color: var(--pullquote--color-foreground);
  padding: calc(2 * 40px);
  padding: calc(2 * var(--spacing-vertical));
  border-width: 3px;
  border-width: var(--pullquote--border-width);
  border-style: solid;
  border-color: #333333;
  border-color: var(--pullquote--border-color);
}
@media (min-width: 600px) {
  .wp-block-pullquote.is-style-solid-color {
    padding: calc(3 * 40px);
    padding: calc(3 * var(--spacing-vertical));
  }
}
.wp-block-pullquote.is-style-solid-color blockquote::before {
  text-align: left;
}
.wp-block-pullquote.is-style-solid-color blockquote {
  margin: 0;
  max-width: inherit;
}
.wp-block-pullquote.is-style-solid-color blockquote p {
  font-size: calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--pullquote--font-size);
}
.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
.wp-block-pullquote.is-style-solid-color cite,
.wp-block-pullquote.is-style-solid-color footer {
  color: currentColor;
}
.wp-block-pullquote.is-style-solid-color.alignleft, .wp-block-pullquote.is-style-solid-color.alignright {
  padding: 40px;
  padding: var(--spacing-vertical);
}
.wp-block-pullquote.is-style-solid-color.alignleft blockquote, .wp-block-pullquote.is-style-solid-color.alignright blockquote {
  max-width: none;
  max-width: initial;
}

.wp-block-quote {
  border-left: none;
  margin-right: auto;
  margin-left: 20px;
  margin-left: var(--spacing-horizontal);
  /**
   * Block Options
   */
}
.wp-block-quote:before {
  content: "“";
  font-size: calc(
  	((21.60 / 16) * 1rem) + (22.50 - 21.60) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--quote--font-size);
  line-height: 1.35;
  line-height: var(--quote--line-height);
  left: 8px;
}
.has-background .wp-block-quote .wp-block-quote__citation, [class*=background-color] .wp-block-quote .wp-block-quote__citation, [style*=background-color] .wp-block-quote .wp-block-quote__citation, .wp-block-cover[style*=background-image] .wp-block-quote .wp-block-quote__citation,
.has-background .wp-block-quote cite,
[class*=background-color] .wp-block-quote cite,
[style*=background-color] .wp-block-quote cite,
.wp-block-cover[style*=background-image] .wp-block-quote cite,
.has-background .wp-block-quote footer,
[class*=background-color] .wp-block-quote footer,
[style*=background-color] .wp-block-quote footer,
.wp-block-cover[style*=background-image] .wp-block-quote footer {
  color: currentColor;
}
.wp-block-quote.has-text-align-right {
  margin-right: 20px;
  margin-right: var(--spacing-horizontal);
  margin-left: auto;
  padding-right: 0;
  border-right: none;
}
.wp-block-quote.has-text-align-right:before {
  display: none;
}
.wp-block-quote.has-text-align-right p:before {
  content: "”";
  font-size: calc(
  	((21.60 / 16) * 1rem) + (22.50 - 21.60) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--quote--font-size);
  font-weight: normal;
  line-height: 1.35;
  line-height: var(--quote--line-height);
  margin-right: 5px;
}
.wp-block-quote.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}
.wp-block-quote.has-text-align-center:before {
  display: none;
}
.wp-block-quote.is-large, .wp-block-quote.is-style-large {
  padding-left: 0;
  padding-right: 0;
  /* Resetting margins to match _block-container.scss */
}
.wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: var(--quote--font-family-large);
  font-size: calc(
  	((31.10 / 16) * 1rem) + (35.16 - 31.10) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--quote--font-size-large);
  font-style: italic;
  font-style: var(--quote--font-style-large);
  font-weight: normal;
  font-weight: var(--quote--font-weight-large);
  line-height: 1.67;
  line-height: var(--quote--line-height-large);
}
.wp-block-quote.is-large:before, .wp-block-quote.is-style-large:before {
  font-size: calc(
  	((31.10 / 16) * 1rem) + (35.16 - 31.10) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--quote--font-size-large);
  line-height: 1.67;
  line-height: var(--quote--line-height-large);
  left: calc(-1 * 20px);
  left: calc(-1 * var(--spacing-horizontal));
}
.wp-block-quote.is-large.has-text-align-right:before, .wp-block-quote.is-style-large.has-text-align-right:before {
  display: none;
}
.wp-block-quote.is-large.has-text-align-right p:before, .wp-block-quote.is-style-large.has-text-align-right p:before {
  content: "”";
  font-size: calc(
  	((31.10 / 16) * 1rem) + (35.16 - 31.10) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--quote--font-size-large);
  font-weight: normal;
  line-height: 1.67;
  line-height: var(--quote--line-height-large);
  margin-right: 10px;
}
.wp-block-quote.is-large .wp-block-quote__citation,
.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer, .wp-block-quote.is-style-large .wp-block-quote__citation,
.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer {
  color: #333333;
  color: var(--palette--primary);
  font-size: calc(
  	((16.00 / 16) * 1rem) + (18.00 - 16.00) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-0);
}
@media only screen and (max-width: 767px) {
  .wp-block-quote.is-large, .wp-block-quote.is-style-large {
    padding-left: 20px;
    padding-left: var(--spacing-horizontal);
  }
  .wp-block-quote.is-large:before, .wp-block-quote.is-style-large:before {
    left: 0;
  }
  .wp-block-quote.is-large.has-text-align-right, .wp-block-quote.is-style-large.has-text-align-right {
    padding-left: 0;
    padding-right: 20px;
    padding-right: var(--spacing-horizontal);
  }
  .wp-block-quote.is-large.has-text-align-right:before, .wp-block-quote.is-style-large.has-text-align-right:before {
    right: 0;
  }
  .wp-block-quote.is-large.has-text-align-center, .wp-block-quote.is-style-large.has-text-align-center {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .wp-block-quote.has-text-align-right {
    padding-left: 0;
    padding-right: calc(0.5 * 20px);
    padding-right: calc(0.5 * var(--spacing-horizontal));
  }
  .wp-block-quote.has-text-align-right:before {
    right: 0;
  }
  .wp-block-quote.has-text-align-center {
    padding-left: 0;
    padding-right: 0;
  }
}
.entry-content > .wp-block-quote:last-of-type + * {
  margin-top: calc(2 * 40px);
  margin-top: calc(2 * var(--block-margins));
}

hr {
  border-style: none;
  border-bottom: 1px solid #e1e1e1;
  border-bottom: var(--separator--height) solid var(--separator--border-color);
  clear: both;
  margin-left: auto;
  margin-right: auto;
}
hr.wp-block-separator {
  border-top: none;
  border-bottom: 1px solid #e1e1e1;
  border-bottom: var(--separator--height) solid var(--separator--border-color);
  opacity: 1;
  width: 100%;
}
hr.wp-block-separator:not(.is-style-dots):not(.alignwide) {
  max-width: calc(100vw - 2 * 20px);
  max-width: var(--responsive--aligndefault-width);
}
hr.wp-block-separator:not(.is-style-dots).alignwide {
  max-width: calc(100vw - 2 * 20px);
  max-width: var(--responsive--alignwide-width);
}
hr.wp-block-separator:not(.is-style-dots).alignfull {
  max-width: calc(100vw - 2 * 20px);
  max-width: var(--responsive--alignfull-width);
}
.has-background hr.wp-block-separator, [class*=background-color] hr.wp-block-separator, [style*=background-color] hr.wp-block-separator, .wp-block-cover[style*=background-image] hr.wp-block-separator {
  border-color: currentColor;
}

.site-main .wp-block-site-logo[class] {
  margin-left: auto;
  margin-right: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media only screen and (max-width: 992px) {
  .site-main .wp-block-site-logo[class] {
    display: none;
  }
  .site-main .wp-block-site-logo[class] + * {
    margin-top: 0 !important;
  }
}

.wp-block-spacer {
  display: block;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
@media only screen and (max-width: 767px) {
  .wp-block-spacer[style] {
    height: calc(0.5 * 40px) !important;
    height: var(--default-margins) !important;
  }
}

table,
.wp-block-table {
  width: 100%;
  min-width: 240px;
  border-collapse: collapse;
}
table thead,
table tfoot,
.wp-block-table thead,
.wp-block-table tfoot {
  text-align: center;
}
table th,
.wp-block-table th {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: var(--font-base);
  font-weight: 600;
}
table td,
table th,
.wp-block-table td,
.wp-block-table th {
  padding: calc(0.5 * 20px);
  padding: calc(0.5 * var(--spacing-horizontal));
  border: 1px solid;
}
table figcaption,
.wp-block-table figcaption {
  color: #333333;
  color: var(--palette--primary);
  font-size: calc(
  	((14 / 16) * 1rem) + (14 - 14) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step--1);
}
table.is-style-regular .has-background, table.is-style-stripes .has-background, table.is-style-stripes .has-background thead tr, table.is-style-stripes .has-background tfoot tr, table.is-style-stripes .has-background tbody tr,
.wp-block-table.is-style-regular .has-background,
.wp-block-table.is-style-stripes .has-background,
.wp-block-table.is-style-stripes .has-background thead tr,
.wp-block-table.is-style-stripes .has-background tfoot tr,
.wp-block-table.is-style-stripes .has-background tbody tr {
  color: var(--table--has-background-text-color);
}
table.is-style-stripes,
.wp-block-table.is-style-stripes {
  border-color: var(--table--stripes-border-color);
}
table.is-style-stripes th,
table.is-style-stripes td,
.wp-block-table.is-style-stripes th,
.wp-block-table.is-style-stripes td {
  border-width: 0;
}
table.is-style-stripes tbody tr:nth-child(odd),
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: var(--table--stripes-background-color);
}
table.is-style-stripes .has-background tbody tr:nth-child(odd),
.wp-block-table.is-style-stripes .has-background tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.9);
  background-color: var(--palette--white-90);
}

.wp-block-video figcaption {
  color: #333333;
  color: var(--palette--primary);
  font-size: calc(
  	((14 / 16) * 1rem) + (14 - 14) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step--1);
  margin-top: calc(0.5 * 40px);
  margin-top: calc(0.5 * var(--spacing-vertical));
  margin-bottom: 40px;
  margin-bottom: var(--spacing-vertical);
  text-align: center;
}

* > figure > video {
  max-width: unset;
  width: 100%;
  vertical-align: middle;
}

.wp-block-getwid-accordion .wp-block-getwid-accordion__header-wrapper[class] {
  border: none;
  --outline-unit: max(2px, 0.08em);
  --outline-style: solid;
  --outline-color: currentColor;
}
.wp-block-getwid-accordion .wp-block-getwid-accordion__header-wrapper[class]:first-child {
  border: none;
}
.wp-block-getwid-accordion .wp-block-getwid-accordion__header-wrapper[class]:focus {
  outline: var(--outline-unit) var(--outline-style) var(--outline-color);
  outline-offset: var(--outline-unit);
}
.wp-block-getwid-accordion .wp-block-getwid-accordion__header-wrapper[class]:focus:not(.focus-visible) {
  outline: none;
}
.wp-block-getwid-accordion .wp-block-getwid-accordion__header-wrapper[class]:focus:not(:focus-visible) {
  outline: none;
}
.wp-block-getwid-accordion .wp-block-getwid-accordion__header-wrapper[class][focus-within], .wp-block-getwid-accordion .wp-block-getwid-accordion__header-wrapper[class].focus-visible {
  outline: var(--outline-unit) var(--outline-style) var(--outline-color);
  outline-offset: var(--outline-unit);
}
.wp-block-getwid-accordion .wp-block-getwid-accordion__header-wrapper[class]:focus-within, .wp-block-getwid-accordion .wp-block-getwid-accordion__header-wrapper[class].focus-visible {
  outline: var(--outline-unit) var(--outline-style) var(--outline-color);
  outline-offset: var(--outline-unit);
}
.wp-block-getwid-accordion .wp-block-getwid-accordion__header-wrapper[class][focus-within], .wp-block-getwid-accordion .wp-block-getwid-accordion__header-wrapper[class]:focus-visible {
  outline: var(--outline-unit) var(--outline-style) var(--outline-color);
  outline-offset: var(--outline-unit);
}
.wp-block-getwid-accordion .wp-block-getwid-accordion__header-wrapper[class]:focus-within, .wp-block-getwid-accordion .wp-block-getwid-accordion__header-wrapper[class]:focus-visible {
  outline: var(--outline-unit) var(--outline-style) var(--outline-color);
  outline-offset: var(--outline-unit);
}
.wp-block-getwid-accordion .wp-block-getwid-accordion__content-wrapper + .wp-block-getwid-accordion__header-wrapper[class] {
  border-top: 1px solid #e1e1e1;
  border-top: 1px solid var(--palette--mid-gray);
}
.wp-block-getwid-accordion__content[class] {
  border: none;
  padding: 0 max(10%, 2em) 2em 0;
}
.wp-block-getwid-accordion .wp-block-getwid-accordion__header[class] {
  padding: 1.25em 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: var(--font-base);
  font-size: calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--heading--font-size-h4);
  font-style: normal;
  font-weight: 200;
  font-weight: var(--font-weight-base);
}
.wp-block-getwid-accordion__icon[class] i {
  font-size: 1em;
}

/* Block Alignments */
/**
 * These selectors set the default max width for content appearing inside a post or page.
 */
/**
 * .alignleft
 */
.alignleft {
  text-align: left;
  margin-top: 0;
}

@media only screen and (min-width: 768px) {
  .alignleft {
    float: left;
  }
}
/**
 * .aligncenter
 */
.aligncenter {
  clear: both;
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

/**
 * .alignright
 */
.alignright {
  margin-top: 0;
}

@media only screen and (min-width: 768px) {
  .alignright {
    float: right;
  }
}
/**
 * .alignwide
 */
.alignwide {
  clear: both;
}

/**
 * .alignfull
 */
.alignfull {
  clear: both;
}

.has-left-content {
  justify-content: flex-start;
}

.has-right-content {
  justify-content: flex-end;
}

.has-parallax {
  background-attachment: fixed;
}

.has-drop-cap:not(:focus)::first-letter {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: var(--font-headings);
  font-weight: 400;
  font-weight: var(--heading--font-weight);
  line-height: 0.66;
  text-transform: uppercase;
  font-style: italic;
  float: left;
  margin: 0.1em 0.1em 0 0;
  font-size: calc(1.2 * calc(
  	((44.79 / 16) * 1rem) + (54.93 - 44.79) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  )));
  font-size: calc(1.2 * var(--heading--font-size-h1));
}

.has-drop-cap:not(:focus)::after {
  content: "";
  display: table;
  clear: both;
  padding-top: 14px;
}

/*
Category 06 contains all "bigger" components which contain elements of the previous
two categories like header, footer, page template, single template, comments section, archives, ...
*/
/*
Site Header
Covers the whole header, with styles that cascade to the (optional) header-top, branding and navigation.
*/
.site-header {
  --branding--logo--max-width: 205px;
  --branding--logo--max-height: 55px;
  --branding--logo--max-width-slim: 205px;
  --branding--logo--max-height-slim: 55px;
  --branding--logo--max-width-mobile: 180px;
  --branding--logo--max-height-mobile: 50px;
  --header--color-background: var(--palette--white);
  --header--color-text: var(--palette--dark-gray);
  --header--font-family: var(--font-base);
  --header--font-size: var(--step--1);
  --header--font-weight: 700;
  /* Main navigation */
  --nav--font-family: var(--font-base);
  --nav--font-size: var(--step--1);
  --nav--font-style: normal;
  --nav--font-weight: 400;
  --nav--color-text: var(--palette--dark-gray);
  --nav--color-background: transparent;
  --nav--color-background-sub-menu: var(--palette--white);
  --nav--button-height: 21px;
  --nav--button-width: 30px;
  --palette--link: var(--palette--dark-gray);
  --palette--link-hover: var(--palette--blue);
  position: relative;
  z-index: 10;
  transition: transform 200ms ease-in-out, background-color 200ms ease-in-out, color 300ms ease-in-out, height 300ms ease-in-out;
  --logo--max-width: var(--branding--logo--max-width-mobile);
  --logo--max-height: var(--branding--logo--max-height-mobile);
  background-color: var(--header--color-background);
  color: var(--header--color-text);
  font-family: var(--header--font-family);
  font-size: var(--header--font-size);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}
@media only screen and (min-width: 768px) {
  .site-header {
    --logo--max-width: var(--branding--logo--max-width-slim);
    --logo--max-height: var(--branding--logo--max-height-slim);
  }
}
@media only screen and (min-width: 993px) {
  .site-header {
    --logo--max-width: var(--branding--logo--max-width);
    --logo--max-height: var(--branding--logo--max-height);
  }
}
.site-header__inner {
  margin: 0 auto;
  width: auto;
  max-width: calc(100vw - 2 * 20px);
  max-width: var(--responsive--alignfull-width);
  transition: height 300ms ease-in-out, background-color 0ms;
  display: grid;
  grid-template-columns: [branding-start nav-start] -webkit-max-content [branding-end intro-start] 1fr [intro-end nav-end];
  grid-template-columns: [branding-start nav-start] max-content [branding-end intro-start] 1fr [intro-end nav-end];
  grid-template-rows: [branding-start intro-start nav-start] 1fr [branding-end intro-end nav-end];
  grid-gap: 0 20px;
  gap: 0 20px;
  grid-gap: 0 var(--spacing-horizontal);
  gap: 0 var(--spacing-horizontal);
}
.has-mobile-navigation-open .site-header__inner {
  transition: height 300ms ease-in-out, background-color 10ms 290ms;
}
@media only screen and (min-width: 1025px) {
  .site-header__inner {
    grid-template-columns: [branding-start] -webkit-max-content [branding-end intro-start nav-start] 1fr [intro-end nav-end];
    grid-template-columns: [branding-start] max-content [branding-end intro-start nav-start] 1fr [intro-end nav-end];
    grid-template-rows: [branding-start intro-start nav-start] -webkit-max-content [branding-end intro-end nav-end];
    grid-template-rows: [branding-start intro-start nav-start] max-content [branding-end intro-end nav-end];
  }
}
.site-header a:not(:focus):not(:hover) {
  text-decoration: none;
}
.site-header__branding {
  margin: 10px auto;
  grid-column: branding-start/branding-end;
  grid-row: branding-start/branding-end;
  transition: all 300ms ease-in-out;
}
.site-header__navigation {
  grid-column: nav-start/nav-end;
  grid-row: nav-start/nav-end;
}

.site-title a {
  display: block;
  text-decoration: none;
}
.site-title .custom-logo {
  display: block;
  margin: 0 auto;
  max-width: var(--logo--max-width);
  max-width: var(--logo--slim-width, var(--logo--max-width));
  max-height: var(--logo--max-height);
  max-height: var(--logo--slim-height, var(--logo--max-height));
  transition: max-height 200ms ease-in-out, max-width 200ms ease-in-out;
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
}

.site:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-color: var(--palette--black);
  opacity: 0;
}

.has-body-overlay .site {
  position: relative;
}
.has-body-overlay .site:before {
  z-index: 8;
  opacity: 0.6;
  transition: opacity 100ms ease-in-out;
  transition-delay: 50ms;
}
.has-body-overlay .site > *:not(.to-the-top):not(header) {
  position: relative;
  z-index: 1;
}

.lock-body-scrolling .site {
  position: fixed;
  max-height: 100vh;
  max-width: 100%;
  width: 100%;
  visibility: hidden;
}
.lock-body-scrolling .site header {
  visibility: visible;
  top: 0px;
  top: var(--global--admin-bar--height);
  filter: none;
}

.site-header {
  box-shadow: none;
  filter: none;
  background-color: transparent;
  z-index: 2;
}
.site-header .menu__items a {
  font-family: "Barlow", sans-serif;
  font-family: var(--font-barlow);
  font-size: 16px;
}
.site-header .menu__items a:hover {
  color: #76B041 !important;
  color: var(--palette--primary-green) !important;
  text-decoration: none !important;
}
.site-header .site-header__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  padding: 47px 0 30px;
  width: 100%;
  background-color: #ffffff;
  background-color: var(--palette--white);
}
.site-header .site-header__inner .site-header__branding {
  margin: 0;
  padding-left: 26px;
  display: flex;
  align-items: flex-start;
}
.site-header .site-header__inner .site-header__branding .site-title {
  margin: 0;
}
.site-header .site-header__inner .quote-button-wrapper {
  padding-right: 26px;
}
.site-header .site-header__inner .custom-logo-link img {
  width: 100%;
  max-width: 100% !important;
}
.site-header .site-header__navigation {
  display: none;
}
@media only screen and (max-width: 767px) {
  .site-header ul.menu__items--mobile {
    background-color: #ffffff;
    background-color: var(--palette--white);
    z-index: 9;
    margin: 0;
    padding: 10px;
  }
}
.site-header .quote-button-wrapper .btn-common {
  margin-bottom: 5px;
}
.site-header .quote-button-wrapper .btn-common:focus {
  color: #ffffff;
  color: var(--palette--white);
}
.site-header .quote-button-wrapper p {
  display: none;
}
@media only screen and (min-width: 768px) {
  .site-header .quote-button-wrapper p {
    display: block;
    font-family: "Barlow", sans-serif;
    font-family: var(--font-barlow);
    color: #333333;
    color: var(--palette--dark-black);
    margin-bottom: 0;
  }
  .site-header .quote-button-wrapper p a {
    margin-left: 5px;
  }
  .site-header .quote-button-wrapper p a:hover {
    color: #333333;
    color: var(--palette--dark-black);
  }
}
.site-header .site-header__top {
  background-color: #B07474;
  background-color: var(--palette--pink);
  padding: 0;
  max-width: 1140px;
  margin: 0 auto;
  transition: all 0.3s linear;
  opacity: 1;
  visibility: visible;
}
.site-header .site-header__top .site-header__top__inner {
  justify-content: center;
  width: 100%;
  text-align: center;
  max-width: 100%;
  padding: 8px 10px;
}
.site-header .site-header__top .site-header__top__inner .site-header__intro {
  margin: 0;
  text-align: center;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
}

.has-scrolled .site-header__top {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767px) {
  .site-title .custom-logo {
    max-width: 150px;
  }

  .site-header .quote-button-wrapper .btn-common {
    margin-bottom: 0;
  }
  .site-header .site-header__top .site-header__top__inner .site-header__intro {
    font-size: 16px;
    line-height: 20.8px;
  }
  .site-header .site-header__inner {
    padding: 17px 0;
  }
  .site-header .site-header__inner .custom-logo-link img {
    width: 150px;
  }
  .site-header .site-header__inner .site-header__branding {
    padding-left: 20px;
    align-items: center;
  }
  .site-header .site-header__inner .quote-button-wrapper {
    padding-right: 20px;
  }
}
/* Header Top */
.site-header__intro {
  --palette--link: var(--palette--white);
  --palette--link-hover: var(--palette--white);
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
.site-header__intro a {
  font-weight: 700;
}
.site-header__intro a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.site-header__top {
  --header--color-background: var(--palette--secondary);
  --header--color-text: var(--palette--white);
  --header--font-size: var(--step--2);
  --header--font-weight: 400;
  background-color: var(--header--color-background);
  color: var(--header--color-text);
  font-size: var(--header--font-size);
}
.site-header__top__inner {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: calc(100vw - 2 * 20px);
  max-width: var(--responsive--alignfull-width);
  align-items: center;
  /* ↓ Save the large negative or large positive value to a variable */
  --multiplier: calc((57rem - 100%) * 666);
}
.site-header__top__inner:before {
  content: "";
  flex-grow: 666;
  margin: 0;
  /* ↓ If --multiplier is negative, use 0px instead */
  flex-basis: max(0px, var(--multiplier));
}
.site-header__top__inner > * {
  flex-grow: 1;
}
.site-header__top__inner > *:first-child {
  order: -1;
}
.site-header__top__navigation {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .site-header__top__navigation {
    display: block;
  }
}
.site-header__top .menu__items {
  margin: 0;
  padding: 0;
  display: flex;
  grid-gap: 0;
  gap: 0;
  align-self: stretch;
}
.site-header__top .sub-menu {
  left: -1.25rem;
  background-color: #ffffff;
  background-color: var(--palette--white);
}
.site-header__top .menu__item.is-top-level:hover, .site-header__top .menu__item.is-top-level[focus-within] {
  background-color: #00226A;
}
.site-header__top .menu__item.is-top-level:hover, .site-header__top .menu__item.is-top-level:focus-within {
  background-color: #00226A;
}
.site-header__top .menu__item.is-top-level:hover > .sub-menu-toggle, .site-header__top .menu__item.is-top-level[focus-within] > .sub-menu-toggle {
  color: #ffffff;
  color: var(--palette--white);
}
.site-header__top .menu__item.is-top-level:hover > .sub-menu-toggle, .site-header__top .menu__item.is-top-level:focus-within > .sub-menu-toggle {
  color: #ffffff;
  color: var(--palette--white);
}
.site-header__top .menu__item.is-top-level > a {
  --palette--link: var(--palette--white);
  --palette--link-hover: var(--palette--white);
  font-size: calc(
  	((12 / 16) * 1rem) + (12 - 12) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step--2);
  padding-top: 0.28125rem;
  padding-bottom: 0.28125rem;
  border-radius: 0;
}
.site-header__top .menu__item.is-top-level:last-child {
  margin-right: calc(-1 * var(--padding-inner));
}
.site-header__top .menu__item.has-children {
  --button-spacing: 30px;
}
.site-header__top .sub-menu-toggle svg {
  width: 8px;
}

/* Site Navigation */
.site-header .sub-menu-toggle {
  justify-self: flex-end;
  align-self: stretch;
  display: flex;
  align-items: center;
  line-height: 1;
  margin-right: 0;
  margin-right: var(--button-indent, 0);
  padding: 0 5px;
  background: transparent;
  color: currentColor;
  border: none;
}
.site-header .sub-menu-toggle .icon-wrap {
  display: flex;
}
.site-header .sub-menu-toggle[aria-expanded=false] ~ ul {
  visibility: hidden;
  display: none;
  pointer-events: none;
  opacity: 0;
}
.site-header :hover > .sub-menu-toggle,
.site-header [focus-within] > .sub-menu-toggle {
  color: initial;
  color: var(--palette--link-hover);
}
.site-header :hover > .sub-menu-toggle,
.site-header :focus-within > .sub-menu-toggle {
  color: initial;
  color: var(--palette--link-hover);
}
.site-header .menu__item {
  text-transform: uppercase;
  --padding-inner: 12px;
  --padding-left: var(--padding-inner);
  --padding-right: var(--padding-inner);
  --button-spacing: 40px;
  --button-indent: 10px;
  display: grid;
  grid-template-areas: "stack";
  position: relative;
  font-family: var(--nav--font-family);
  font-size: var(--nav--font-size);
  font-weight: var(--nav--font-weight);
}
.site-header .menu__item > *:not(.sub-menu) {
  grid-area: stack;
}
.site-header__menu-container > :last-child .menu__item.is-top-level:last-child {
  margin-right: calc(-1 * var(--padding-inner));
}

.site-header .menu__item.has-children {
  --padding-right: var(--button-spacing);
}
.site-header .menu__item > a {
  display: block;
  padding: min(0.5rem, 2vh) var(--padding-right) min(0.5rem, 2vh) var(--padding-left);
  text-decoration: none;
}
.site-header .menu__items--primary .is-top-level > a, .site-header .menu__items--secondary .is-top-level > a {
  font-weight: 600;
  display: grid;
  align-content: center;
  justify-content: center;
  place-content: center;
  text-align: center;
}
.site-header .menu__items--primary .is-top-level:hover > a,
.site-header .menu__items--primary .is-top-level:hover > .sub-menu-toggle, .site-header .menu__items--primary .is-top-level[focus-within] > a,
.site-header .menu__items--primary .is-top-level[focus-within] > .sub-menu-toggle, .site-header .menu__items--secondary .is-top-level:hover > a,
.site-header .menu__items--secondary .is-top-level:hover > .sub-menu-toggle, .site-header .menu__items--secondary .is-top-level[focus-within] > a,
.site-header .menu__items--secondary .is-top-level[focus-within] > .sub-menu-toggle {
  color: initial;
  color: var(--palette--link-hover);
}
.site-header .menu__items--primary .is-top-level:hover > a,
.site-header .menu__items--primary .is-top-level:hover > .sub-menu-toggle, .site-header .menu__items--primary .is-top-level:focus-within > a,
.site-header .menu__items--primary .is-top-level:focus-within > .sub-menu-toggle, .site-header .menu__items--secondary .is-top-level:hover > a,
.site-header .menu__items--secondary .is-top-level:hover > .sub-menu-toggle, .site-header .menu__items--secondary .is-top-level:focus-within > a,
.site-header .menu__items--secondary .is-top-level:focus-within > .sub-menu-toggle {
  color: initial;
  color: var(--palette--link-hover);
}
.site-header .menu__item :not(.is-top-level):hover > a, .site-header .menu__item :not(.is-top-level)[focus-within] > a {
  background-color: #37A5E5;
  background-color: var(--palette--blue);
  color: #ffffff;
  color: var(--palette--white);
}
.site-header .menu__item :not(.is-top-level):hover > a, .site-header .menu__item :not(.is-top-level):focus-within > a {
  background-color: #37A5E5;
  background-color: var(--palette--blue);
  color: #ffffff;
  color: var(--palette--white);
}
.site-header .menu__item :not(.is-top-level):hover > .sub-menu-toggle, .site-header .menu__item :not(.is-top-level)[focus-within] > .sub-menu-toggle {
  color: #ffffff;
  color: var(--palette--white);
}
.site-header .menu__item :not(.is-top-level):hover > .sub-menu-toggle, .site-header .menu__item :not(.is-top-level):focus-within > .sub-menu-toggle {
  color: #ffffff;
  color: var(--palette--white);
}
.site-header .menu__items {
  --outline-offset: -2px;
  margin: 0;
  padding: 0;
  display: flex;
  grid-gap: 5px min(2vw, 1rem);
  gap: 5px min(2vw, 1rem);
  flex-flow: row wrap;
  align-self: stretch;
  position: relative;
}
.site-header .menu__items--top .sub-menu, .site-header .menu__items--primary .sub-menu, .site-header .menu__items--secondary .sub-menu {
  padding: 1.625rem 0;
  min-width: 20rem;
  position: absolute;
  top: 100%;
  left: -1.25rem;
  z-index: 1;
  background-color: #ffffff;
  background-color: var(--palette--white);
}
.site-header .menu__items--mobile {
  margin-top: 40px;
  margin-bottom: 40px;
  margin-top: var(--spacing-vertical);
  margin-bottom: var(--spacing-vertical);
  margin-left: auto;
  margin-right: auto;
  flex-flow: column nowrap;
  grid-gap: 0;
  gap: 0;
}
.site-header .menu__items--mobile .sub-menu {
  flex-basis: 100%;
  border-radius: 4px;
  background-color: #37A5E5;
  background-color: var(--palette--blue);
  --palette--link: var(--palette--white);
  --palette--link-hover: var(--palette--white);
}
.site-header .menu__items--mobile .sub-menu.sub-menu-reposition-right .menu__item {
  text-align: left;
}
.site-header .menu__items--mobile .sub-menu .menu__item {
  padding-left: 0;
  padding-right: 0;
  color: #ffffff;
  color: var(--palette--white);
}
.site-header .menu__items--mobile .sub-menu .sub-menu {
  background-color: #00226A;
}
.site-header .sub-menu {
  margin: 0;
  padding: 0;
  display: block;
  width: inherit;
  text-align: left;
  transition: all 500ms ease;
  opacity: 1;
}
@media only screen and (min-width: 1025px) {
  .site-header .sub-menu ul.sub-menu {
    display: block;
    top: 0;
    left: 100%;
    min-height: 100%;
    z-index: 1;
    background-color: #37A5E5;
    background-color: var(--palette--blue);
    --palette--link: var(--palette--white);
    --palette--link-hover: var(--palette--white);
    transition: all 500ms ease;
    opacity: 1;
  }
  .site-header .sub-menu ul.sub-menu .menu__item:hover > a,
.site-header .sub-menu ul.sub-menu .menu__item[focus-within] > a {
    background-color: #00226A;
  }
  .site-header .sub-menu ul.sub-menu .menu__item:hover > a,
.site-header .sub-menu ul.sub-menu .menu__item:focus-within > a {
    background-color: #00226A;
  }
  .site-header .sub-menu .sub-menu-toggle svg {
    transform: rotate(-90deg) scaleY(1);
  }
  .site-header .sub-menu.sub-menu-reposition-right {
    right: 0;
    left: auto;
  }
  .site-header .sub-menu.sub-menu-reposition-right > .menu__item.has-children {
    --padding-left: var(--button-spacing);
    --padding-right: var(--padding-inner);
  }
  .site-header .sub-menu.sub-menu-reposition-right .menu__item {
    text-align: right;
  }
  .site-header .sub-menu.sub-menu-reposition-right .sub-menu-toggle {
    justify-self: flex-start;
    margin-left: var(--button-indent);
    margin-right: 0;
  }
  .site-header .sub-menu.sub-menu-reposition-right .sub-menu-toggle svg {
    transform: rotate(90deg) scaleY(1);
  }
  .site-header .sub-menu.sub-menu-reposition-right .sub-menu {
    left: auto;
    right: 100%;
  }
}
.site-header .sub-menu .menu__item {
  position: static;
  position: initial;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.site-header .sub-menu .menu__item + .menu__item {
  margin-top: 5px;
}
.site-header .sub-menu a {
  border-radius: 4px;
}
.site-header__navigation {
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: transparent;
  color: var(--nav--color-text);
  font-size: var(--nav--font-size);
}
@media only screen and (min-width: 1025px) {
  .site-header__navigation {
    background-color: var(--nav--color-background);
  }
}
@media only screen and (max-width: 1024px) {
  .site-header__navigation {
    flex-direction: column;
    pointer-events: none;
    position: relative;
    justify-content: center;
  }
  .has-mobile-navigation-open .site-header__navigation {
    height: auto;
  }
}
.site-header__button-container {
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (min-width: 1025px) {
  .site-header__button-container {
    display: none;
  }
}
.site-header__button-container .menu-toggle.menu-toggle {
  pointer-events: auto;
  background-color: transparent;
  border: none;
  color: #000000;
  color: var(--palette--black);
  margin: 0;
  padding: 0;
}
.site-header__button-container .menu-toggle.menu-toggle .burger {
  display: block;
  width: var(--nav--button-width);
  height: var(--nav--button-height);
  position: relative;
}
.site-header__button-container .menu-toggle.menu-toggle .burger span,
.site-header__button-container .menu-toggle.menu-toggle .burger span::before,
.site-header__button-container .menu-toggle.menu-toggle .burger span::after {
  content: "";
  background-color: currentColor;
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: calc(0.5 * var(--nav--button-height) - 1.5px);
  right: 0;
  transition: top 100ms ease, background-color 200ms, opacity 200ms, transform 250ms ease;
}
.site-header__button-container .menu-toggle.menu-toggle .burger span::before {
  top: -9px;
}
.site-header__button-container .menu-toggle.menu-toggle .burger span::after {
  top: 9px;
}
.site-header__button-container .menu-toggle.menu-toggle[aria-expanded*=true] .burger span,
.site-header__button-container .menu-toggle.menu-toggle[aria-expanded*=true] .burger span::before,
.site-header__button-container .menu-toggle.menu-toggle[aria-expanded*=true] .burger span::after {
  transition: top 100ms ease, background-color 200ms, opacity 200ms, transform 250ms ease;
}
.site-header__button-container .menu-toggle.menu-toggle[aria-expanded*=true] .burger span {
  transform: rotate(45deg);
}
.site-header__button-container .menu-toggle.menu-toggle[aria-expanded*=true] .burger span::before {
  top: 0;
  transform: rotate(-90deg);
}
.site-header__button-container .menu-toggle.menu-toggle[aria-expanded*=true] .burger span::after {
  opacity: 0;
  top: 0;
  transform: rotate(90deg);
}
.site-header__menu-container {
  display: flex;
  grid-column-gap: 100px;
  -moz-column-gap: 100px;
       column-gap: 100px;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
}
.has-secondary-nav .site-header__menu-container {
  /**********************************************************************
  // Center - Primary and secondary nav centered
  // Space-between - primary nav on left, secondary nav on right
  // space-around - primary nav centered, secondary nav on right
  // flex-end  - primary and secondary navigation on the right
  /**********************************************************************/
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .site-header__menu-container {
    display: none;
  }
}
.site-header__mobile-menu-container {
  pointer-events: auto;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 150ms ease-in-out;
}
.has-mobile-navigation-open .site-header__mobile-menu-container {
  height: auto;
  visibility: visible;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: scroll;
  max-height: calc(100vh - var(--branding--logo--max-height));
}
@media only screen and (min-width: 1025px) {
  .site-header__mobile-menu-container {
    display: none;
  }
}
.site-header__mobile-menu-container .sub-menu {
  position: relative;
  top: 0;
  z-index: 0;
  margin: 0;
}
.site-header__mobile-menu-container .sub-menu .sub-menu {
  border: none;
}

/*
	Back/Return to the Top link
*/
a.to-the-top {
  color: rgba(0, 0, 0, 0.15);
  fill: currentColor;
  position: fixed;
  bottom: 100px;
  right: 20px;
  right: var(--spacing-horizontal);
  display: inline-flex;
  text-align: center;
  z-index: 1;
  transition: all 400ms ease;
  transform: scale(1);
}
.js a.to-the-top, .has-mobile-navigation-open a.to-the-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
a.to-the-top svg {
  width: calc(2.5 * 24px);
  width: calc(2.5 * var(--icon-size-unit));
  height: calc(2.5 * 24px);
  height: calc(2.5 * var(--icon-size-unit));
}
a.to-the-top.active {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}
a.to-the-top:hover, a.to-the-top:focus {
  background: transparent;
  color: #333333;
  color: var(--palette--primary);
}
a.to-the-top:active {
  color: #222222;
  color: var(--palette--dark-gray);
  transform: scale(0.9);
}

/*
	Site Footer

	The main Footer element which contains the (optional) topbar, main footer widgets, and credits
 */
.site-footer {
  /* Footer Variables */
  --footer--color-background: var(--palette--white);
  --footer--color-text: var(--palette--dark-gray);
  --footer--color-heading: var(--palette--dark-gray);
  --footer--font-family: var(--font-base);
  --footer--font-size: var(--step-0);
  --footer--border-width: 0px;
  --footer--border-color: var(--palette--primary);
  background-color: #dcdcdc;
  border-top: var(--footer--border-width) solid var(--footer--border-color);
  color: var(--footer--color-text);
  font-family: var(--footer--font-family);
  font-size: var(--footer--font-size);
}
.site-footer a:not(:hover):not(:focus) {
  text-decoration: none;
}
.site-footer img,
.site-footer svg {
  margin: 0 auto;
  vertical-align: middle;
}
.site-footer svg:hover {
  transform: scale(1.1);
}
.site-footer .Before-footer-section {
  background-color: #2D7575;
  background-color: var(--palette--bg-gray);
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 26px 40px;
}
.site-footer .Before-footer-section .contact-text-wrapper .contact-text {
  text-align: center;
  font-size: 28px;
  line-height: 30px;
  color: #ffffff;
  color: var(--palette--white);
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.site-footer .Before-footer-section .contact-detail-wrapper {
  text-align: center;
}
.site-footer .Before-footer-section .contact-detail-wrapper p {
  font-size: 28px;
  color: #ffffff;
  color: var(--palette--white);
}
.site-footer .Before-footer-section .contact-detail-wrapper .contact-phone {
  text-transform: capitalize;
}
.site-footer .footer-section {
  text-align: center;
  padding: 40px 26px 57px;
  max-width: 1140px;
  margin: 0 auto !important;
  background-color: #DCDCDC;
}
.site-footer .footer-section .footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.site-footer .footer-section .footer-links li {
  margin-bottom: 0;
  font-size: 24px;
  color: #333333;
  font-weight: 400;
  line-height: 18px;
}
.site-footer .footer-section .footer-paragraph {
  text-align: center;
  font-size: 14px;
  color: #333333;
  color: var(--palette--dark-black);
  line-height: 16.8px;
  font-family: "Barlow", sans-serif;
  font-family: var(--font-barlow);
  font-weight: 300;
}

@media (min-width: 768px) {
  .site-footer .footer-section .footer-links li:first-child {
    margin-right: 20px;
  }
  .site-footer .footer-section .footer-links li:last-child {
    margin-left: 20px;
  }
  .site-footer .footer-section .footer-links li:not(:last-child):after {
    content: "|";
    display: inline-block;
    margin-left: 20px;
    vertical-align: top;
    position: absolute;
  }
}
@media (max-width: 767px) {
  .site-footer .Before-footer-section {
    padding: 30px 20px 40px;
  }
  .site-footer .Before-footer-section .contact-text-wrapper .contact-text {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .site-footer .Before-footer-section .contact-detail-wrapper p {
    font-size: 24px;
    line-height: 24px;
  }
  .site-footer .Before-footer-section .contact-detail-wrapper .contact-email {
    margin-bottom: 0;
  }
  .site-footer .footer-section {
    padding: 30px 20px 40px;
  }
  .site-footer .footer-section .footer-links {
    flex-direction: column;
    margin-bottom: 10px;
  }
  .site-footer .footer-section .footer-links li {
    font-size: 16px;
    line-height: 19.2px;
    margin-bottom: 10px;
  }
  .site-footer .footer-section .footer-links li:not(:last-child):after {
    display: none;
  }
}
/*
	Site Footer Top Bar
 */
.site-footer__top-widget-area {
  --palette--link: var(--palette--white);
  --palette--link-hover: var(--palette--white);
  background-color: #333333;
  background-color: var(--palette--secondary);
  padding: 40px 0;
  padding: var(--spacing-vertical) 0;
  display: flex;
  flex-direction: column;
}
.site-footer__top-widget-area > * + * {
  margin-top: 40px;
  margin-top: var(--spacing-vertical);
}
.site-footer__top-widget-area :is(h2, h3, h4) {
  color: #ffffff;
  color: var(--palette--white);
  font-size: calc(
  	((31.10 / 16) * 1rem) + (35.16 - 31.10) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-3);
  line-height: normal;
  text-align: center;
  text-transform: none;
  text-transform: initial;
}
@media only screen and (min-width: 1025px) {
  .site-footer__top-widget-area :is(h2, h3, h4) {
    white-space: nowrap;
    text-align: right;
  }
}
.site-footer__top-widget-area .text:empty {
  display: none;
}
.site-footer__top-widget-area a {
  display: block;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
}
.site-footer__top-widget-area a svg {
  margin-right: calc(0.5 * 20px);
  margin-right: calc(0.5 * var(--spacing-horizontal));
}
.site-footer__top-widget-area ul.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 993px) {
  .site-footer__top-widget-area ul.menu {
    flex-direction: row;
  }
}
.site-footer__top-widget-area .menu__item {
  flex: 1 1 33%;
  text-align: center;
  padding-left: calc(0.5 * 20px);
  padding-left: calc(0.5 * var(--spacing-horizontal));
  padding-right: calc(0.5 * 20px);
  padding-right: calc(0.5 * var(--spacing-horizontal));
}
.site-footer__top-widget-area .menu__item + .menu__item {
  margin-top: calc(0.75 * 40px);
  margin-top: calc(0.75 * var(--spacing-vertical));
}
@media only screen and (min-width: 993px) {
  .site-footer__top-widget-area .menu__item + .menu__item {
    margin-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid var(--palette--white-50);
  }
}
.site-footer__top-widget-area .widget_cf7_form {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: center;
  grid-gap: calc(0.5 * 40px) 20px;
  gap: calc(0.5 * 40px) 20px;
  grid-gap: calc(0.5 * var(--spacing-vertical)) var(--spacing-horizontal);
  gap: calc(0.5 * var(--spacing-vertical)) var(--spacing-horizontal);
}
@media only screen and (min-width: 1025px) {
  .site-footer__top-widget-area .widget_cf7_form {
    align-items: baseline;
    grid-template-columns: 1fr 1fr;
  }
}
.site-footer__top-widget-area .wpcf7 form {
  margin: 0 auto;
  position: relative;
  border-radius: 3px;
  border-radius: var(--button--border-radius);
  /* Single inline field */
  display: grid;
  grid-template-areas: "content button" "response response";
  grid-template-columns: 1fr -webkit-min-content;
  grid-template-columns: 1fr min-content;
  grid-gap: 0 2px;
  gap: 0 2px;
  padding: 2px;
  background-color: #ffffff;
  background-color: var(--palette--white);
  /* Multiple inline fields */
}
.site-footer__top-widget-area .wpcf7 form p:only-of-type,
.site-footer__top-widget-area .wpcf7 form .wpcf7-form-control-wrap {
  display: contents;
}
.site-footer__top-widget-area .wpcf7 form input:not([type=submit]) {
  grid-area: content;
  align-self: center;
  max-width: unset;
}
.site-footer__top-widget-area .wpcf7 form .wpcf7-spinner,
.site-footer__top-widget-area .wpcf7 form input[type=submit] {
  grid-area: button;
}
.site-footer__top-widget-area .wpcf7 form input:not([type=submit]) {
  background-color: #ffffff;
  background-color: var(--palette--white);
  border: 2px solid #ffffff;
  border: 2px solid var(--palette--white);
  transition: border 100ms ease-in, background-color 100ms ease-in;
  border-radius: 3px 0 0 3px;
  border-radius: var(--button--border-radius) 0 0 var(--button--border-radius);
  box-shadow: none !important;
}
.site-footer__top-widget-area .wpcf7 form input:not([type=submit]):focus, .site-footer__top-widget-area .wpcf7 form input:not([type=submit]):hover:focus {
  border-color: #333333;
  border-color: var(--palette--primary);
  background-color: #f9f9f9;
  background-color: var(--palette--light-gray);
}
.site-footer__top-widget-area .wpcf7 form input[type=submit] {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  border: 3px solid inherit;
  border: var(--button--border-radius) solid inherit;
  border-radius: 0 3px 3px 0;
  border-radius: 0 var(--button--border-radius) var(--button--border-radius) 0;
}
.site-footer__top-widget-area .wpcf7 form .wpcf7-spinner {
  justify-self: flex-end;
  align-self: center;
  margin: 0;
}
.site-footer__top-widget-area .wpcf7 form .wpcf7-response-output {
  background-color: #ffffff;
  background-color: var(--palette--white);
  grid-area: response;
  margin: 1em;
  width: auto;
}

/*
	 Site Footer
	 Widgets
 */
.site-footer {
  /*
  	Widgets, generally in footer, rarely elsewhere
  */
  --widget--line-height-list: 1.9;
  --widget--line-height-title: 1.4;
  --widget--font-weight-title: 600;
  --widget--font-family-title: var(--font-headings);
  --widget--font-size-title: var(--step-1);
  --widget--spacing-menu: 15px;
}
.site-footer__widget {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.site-footer__widget .gallery {
  display: flex;
  grid-gap: 1em;
  gap: 1em;
}
.site-footer__widget + .site-footer__widget {
  margin-top: 40px;
  margin-top: var(--spacing-vertical);
}
.site-footer .is-top-level.has-children > a {
  display: inline-block;
}
.site-footer__widget-title[class], .site-footer .is-top-level.has-children > a {
  color: var(--footer--color-heading);
  font-family: var(--widget--font-family-title);
  font-size: var(--widget--font-size-title);
  font-weight: var(--widget--font-weight-title);
  line-height: var(--widget--line-height-title);
  margin-bottom: 1rem;
  text-transform: none;
  text-transform: initial;
}
.site-footer__widget-title[class]:last-child, .site-footer .is-top-level.has-children > a:last-child {
  margin-bottom: 0;
}
.site-footer__content {
  font-size: var(--footer--font-size);
  width: calc(100vw - 2 * 20px);
  width: var(--responsive--alignwide-width);
  max-width: unset;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto;
  grid-row-gap: 40px;
  row-gap: 40px;
  grid-row-gap: var(--spacing-vertical);
  row-gap: var(--spacing-vertical);
  grid-template-columns: auto;
  grid-template-areas: "col4" "col1" "col2" "col3";
  grid-column-gap: min(5% + 1em, 8.3333vw);
  -moz-column-gap: min(5% + 1em, 8.3333vw);
       column-gap: min(5% + 1em, 8.3333vw);
}
.site-footer__content .footer-widgets-1 {
  grid-area: col1;
}
.site-footer__content .footer-widgets-2 {
  grid-area: col2;
}
.site-footer__content .footer-widgets-3 {
  grid-area: col3;
}
.site-footer__content .footer-widgets-4 {
  grid-area: col4;
}
.site-footer__content .footer-widgets-5 {
  grid-area: col5;
}
.site-footer__content .footer-widgets-6 {
  grid-area: col6;
}
@media only screen and (min-width: 993px) {
  .site-footer__content {
    grid-template-columns: 4fr 1fr 4fr;
    grid-template-areas: "col1 . col4" "col2 . col3";
  }
}
@media only screen and (min-width: 1025px) {
  .site-footer__content {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: "col1 col2 col3 col4";
  }
}
.site-footer__content .widget_nav_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__content .widget_nav_menu ul li {
  padding-left: 0;
  line-height: var(--widget--line-height-list);
}
.site-footer__content .widget_nav_menu ul li::before {
  content: unset;
  display: none;
}
.site-footer__content .widget_contact_details {
  --palette--link: var(--palette--dark-gray);
}
.site-footer__content .menu--social-links {
  display: flex;
  grid-gap: 1em;
  gap: 1em;
  justify-content: center;
  margin: 0;
  --palette--link: var(--palette--dark-gray);
}
.site-footer__content .menu--social-links a {
  display: block;
  padding: 1em;
  margin: -1em;
}
.site-footer__content .menu--social-links svg {
  width: 25px;
  height: auto;
}
@media only screen and (min-width: 993px) {
  .site-footer__content .menu--social-links {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
  }
}

/*
	Site Footer - Credits
	Appears at the very end
*/
.site-footer {
  /* Footer Variables */
  --footer--credits--border-width: 2px;
  --footer--credits--border-color: var(--palette--light-gray);
  --footer--credits--font-size: var(--step--1);
}
.site-footer__credits {
  background-color: #e1e1e1;
  background-color: var(--palette--mid-gray);
  --palette--link: var(--palette--dark-gray);
  position: relative;
  z-index: 1;
  border-top: var(--footer--credits--border-width) solid var(--footer--credits--border-color);
  font-size: var(--footer--credits--font-size);
}
.site-footer__credits__inner {
  padding-top: calc(0.5 * 40px);
  padding-top: calc(0.5 * var(--spacing-vertical));
  padding-bottom: calc(0.5 * 40px);
  padding-bottom: calc(0.5 * var(--spacing-vertical));
  display: grid;
  align-items: center;
  grid-template-rows: auto;
  grid-row-gap: calc(0.25 * 40px);
  row-gap: calc(0.25 * 40px);
  grid-row-gap: calc(0.25 * var(--spacing-vertical));
  row-gap: calc(0.25 * var(--spacing-vertical));
  grid-template-columns: auto;
  grid-template-areas: "widgets" "site-info" "registration" "agency";
}
@media only screen and (min-width: 993px) {
  .site-footer__credits__inner {
    padding-top: calc(0.75 * 40px);
    padding-top: calc(0.75 * var(--spacing-vertical));
    padding-bottom: calc(0.75 * 40px);
    padding-bottom: calc(0.75 * var(--spacing-vertical));
  }
}
@media only screen and (min-width: 993px) {
  .site-footer__credits__inner {
    grid-template-columns: 2fr 1fr 150px;
    grid-template-areas: "widgets widgets widgets" "site-info site-info agency" "registration registration registration";
  }
}
@media only screen and (min-width: 1401px) {
  .site-footer__credits__inner {
    grid-template-columns: 1fr 1fr 1fr 150px;
    grid-template-areas: "site-info site-info widgets agency" "registration registration registration registration";
  }
}
@media only screen and (min-width: 1601px) {
  .site-footer__credits__inner {
    grid-template-columns: 1fr 1fr 150px;
    grid-template-areas: "site-info widgets agency" "registration registration registration";
  }
}
.site-footer__site-info {
  grid-area: site-info;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 0.5rem;
  gap: 0.5rem;
  line-height: normal;
}
@media only screen and (min-width: 993px) {
  .site-footer__site-info {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    grid-gap: 2rem;
    gap: 2rem;
  }
}
.site-footer__site-info .menu__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
}
@media only screen and (min-width: 993px) {
  .site-footer__site-info .menu__items {
    justify-content: flex-start;
  }
}
.site-footer__site-info .menu__item {
  margin-top: 0;
}
.site-footer__site-info .menu__item a {
  padding-right: 0.5ch;
}
@media only screen and (max-width: 992px) {
  .site-footer__site-info .menu__item a {
    white-space: nowrap;
  }
}
@media only screen and (min-width: 993px) {
  .site-footer__site-info .menu__item a {
    padding-left: 0.5ch;
  }
}
.site-footer__site-info .menu__item + .menu__item {
  border-left: 1px solid currentColor;
}
.site-footer__site-info .menu__item + .menu__item a {
  padding-left: 0.5ch;
}
.site-footer__bottom-widget-area {
  grid-area: widgets;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 1401px) {
  .site-footer__bottom-widget-area {
    justify-content: flex-start;
  }
}
.site-footer__registration {
  grid-area: registration;
  text-align: center;
}
.site-footer__agency {
  grid-area: agency;
  text-align: center;
}
@media only screen and (min-width: 993px) {
  .site-footer__agency {
    text-align: right;
  }
}

/*
 Grid listings
 */
.list-wrapper.list-type-grid-fit, .list-wrapper.list-type-grid-fill {
  display: grid;
  grid-gap: max(min(4vw, 3.5rem), 20px);
  grid-gap: var(--listing--gap-width);
}
.list-wrapper.list-type-grid-fit {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 40ch), 1fr));
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--listing--min-width)), 1fr));
}
.list-wrapper.list-type-grid-fill {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 40ch), 1fr));
  grid-template-columns: repeat(auto-fill, minmax(min(100%, var(--listing--min-width)), 1fr));
}
.list-wrapper.list-type-flex {
  display: flex;
  flex-wrap: wrap;
  grid-gap: max(min(4vw, 3.5rem), 20px);
  gap: max(min(4vw, 3.5rem), 20px);
  grid-gap: var(--listing--gap-width);
  gap: var(--listing--gap-width);
}
.list-wrapper.list-type-flex > * {
  flex: 1 1 40ch;
  flex: 1 1 var(--listing--min-width);
}

.singular .entry-header {
  border-bottom: 3px solid #e1e1e1;
  border-bottom: 3px solid var(--palette--border);
  padding-bottom: calc(2 * 40px);
  padding-bottom: calc(2 * var(--spacing-vertical));
  margin-bottom: calc(3 * 40px);
  margin-bottom: calc(3 * var(--spacing-vertical));
}

.home .entry-header {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.singular .has-post-thumbnail .entry-header {
  border-bottom: none;
  padding-bottom: calc(1.3 * 40px);
  padding-bottom: calc(1.3 * var(--spacing-vertical));
  margin-bottom: 0;
}

.page-links {
  clear: both;
}
.page-links .post-page-numbers {
  display: inline-block;
  margin-left: 20px;
  margin-left: var(--spacing-horizontal);
  margin-right: 20px;
  margin-right: var(--spacing-horizontal);
  min-width: 44px;
  min-height: 44px;
}
.page-links .post-page-numbers:first-child {
  margin-left: 0;
}

:root {
  /* entry */
}

.entry-title {
  color: var(--entry-header--color);
  font-size: calc(
  	((37.32 / 16) * 1rem) + (43.95 - 37.32) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--heading--font-size-h2);
  letter-spacing: normal;
  letter-spacing: var(--heading--letter-spacing-h2);
  line-height: 1.2;
  line-height: var(--heading--line-height-h2);
  word-wrap: break-word;
}
.entry-title a {
  text-underline-offset: 0.15em;
}

.singular .entry-title {
  font-size: calc(
  	((37.32 / 16) * 1rem) + (43.95 - 37.32) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-4);
}

h1.entry-title {
  line-height: 1.1;
  line-height: var(--heading--line-height-h1);
  font-weight: 400;
  font-weight: var(--heading--font-weight);
}

/**
 * Entry Meta
 */
.entry-meta .posted-on a,
.entry-meta .estimated-read a {
  text-decoration: none;
}
.entry-meta .estimated-read::before {
  content: "•";
}
.entry-meta .posted-on time {
  display: none;
}
.entry-meta .posted-on time:last-of-type {
  display: inline;
}

/**
 * Entry Content
 */
.entry-content p {
  word-wrap: break-word;
}
.entry-content > iframe[style] {
  margin: 40px 0 !important;
  margin: var(--spacing-vertical) 0 !important;
  max-width: 100% !important;
}

article .more-link {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: calc(40px / 2) 0;
  margin: calc(var(--spacing-vertical) / 2) 0;
}

/**
 * Post Thumbnails
 */
.post-thumbnail {
  text-align: center;
}
.post-thumbnail .wp-post-image {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/**
 * Author
 */
.author-bio {
  position: relative;
  font-size: calc(
  	((16.00 / 16) * 1rem) + (18.00 - 16.00) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-0);
  max-width: calc(100vw - 2 * 20px);
  max-width: var(--responsive--aligndefault-width);
}
.site-main > article > .author-bio {
  margin-top: calc(2 * 40px);
  margin-top: calc(2 * var(--spacing-vertical));
}
.author-bio.show-avatars .avatar {
  display: inline-block;
  vertical-align: top;
  border-radius: 50%;
}
.author-bio.show-avatars .author-bio-content {
  display: inline-block;
  padding-left: 20px;
  padding-left: var(--spacing-horizontal);
  max-width: calc(calc(100vw - 2 * 20px) - 90px);
  max-width: calc(var(--responsive--aligndefault-width) - 90px);
}
.author-bio .author-bio-content .author-title {
  font-family: var(--entry-author-bio--font-family);
  font-size: var(--entry-author-bio--font-size);
  display: inline;
}
.author-bio .author-bio-content .author-description {
  font-size: calc(
  	((16.00 / 16) * 1rem) + (18.00 - 16.00) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-0);
  margin-top: calc(0.5 * 40px);
  margin-top: calc(0.5 * var(--spacing-vertical));
  margin-bottom: calc(0.5 * 40px);
  margin-bottom: calc(0.5 * var(--spacing-vertical));
}

.page-title {
  font-size: calc(
  	((37.32 / 16) * 1rem) + (43.95 - 37.32) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-4);
}

h1.page-title,
h2.page-title {
  font-weight: 400;
  font-weight: var(--heading--font-weight);
}

h1.page-title {
  line-height: 1.1;
  line-height: var(--heading--line-height-h1);
}

.page-header {
  border-bottom: 3px solid #e1e1e1;
  border-bottom: 3px solid var(--palette--border);
  padding-bottom: 40px;
  padding-bottom: var(--spacing-vertical);
}

.archive .entry-header,
.search .entry-header,
.blog .entry-header {
  margin-top: 0;
}
.archive .content-area .format-aside .entry-content,
.archive .content-area .format-status .entry-content,
.archive .content-area .format-link .entry-content,
.search .content-area .format-aside .entry-content,
.search .content-area .format-status .entry-content,
.search .content-area .format-link .entry-content,
.blog .content-area .format-aside .entry-content,
.blog .content-area .format-status .entry-content,
.blog .content-area .format-link .entry-content {
  font-size: calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-2);
}
.archive .format-image .entry-content,
.archive .format-gallery .entry-content,
.archive .format-video .entry-content,
.search .format-image .entry-content,
.search .format-gallery .entry-content,
.search .format-video .entry-content,
.blog .format-image .entry-content,
.blog .format-gallery .entry-content,
.blog .format-video .entry-content {
  margin-top: 40px;
  margin-top: var(--spacing-vertical);
}

.archive-description {
  margin-top: 40px;
  margin-top: var(--spacing-vertical);
  font-size: calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-2);
  line-height: 1.2;
  line-height: var(--line-height-heading);
}

.error404 main p {
  font-size: calc(
  	((16.00 / 16) * 1rem) + (18.00 - 16.00) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-0);
  margin-bottom: calc(0.5 * 40px);
  margin-bottom: var(--default-margins);
}

.search-no-results .page-content {
  margin-top: calc(2 * 40px);
  margin-top: calc(2 * var(--spacing-vertical));
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  max-width: calc(100vw - 2 * 20px);
  max-width: var(--responsive--aligndefault-width);
}
.search-form > label {
  width: 100%;
  margin-bottom: 0;
  font-weight: 500;
  font-weight: var(--form--label-weight);
}
.search-form .search-field {
  flex-grow: 1;
  max-width: inherit;
  margin-top: calc(40px / 3);
  margin-top: calc(var(--spacing-vertical) / 3);
  margin-right: calc(0.66 * 20px);
  margin-right: calc(0.66 * var(--spacing-horizontal));
}
.search-form .search-submit {
  margin-top: calc(40px / 3);
  margin-top: calc(var(--spacing-vertical) / 3);
  margin-left: 10px;
}

.page-content > .search-form {
  max-width: none;
}
.page-content > .search-form .search-field {
  margin-right: calc(-1 * 1px);
  margin-right: calc(-1 * var(--button--border-width));
  margin-bottom: calc(0.5 * 40px);
  margin-bottom: calc(0.5 * var(--spacing-vertical));
}
.page-content > .search-form .search-submit {
  margin-left: 0;
  margin-bottom: calc(0.5 * 40px);
  margin-bottom: calc(0.5 * var(--spacing-vertical));
}

/*
	Responsive Breakpoints
*/
/**
 * Comments Wrapper
 */
.comments-area {
  --comments-spacing-vertical: calc(0.5 * var(--spacing-vertical));
}
.comments-area > * {
  margin-top: var(--comments-spacing-vertical);
  margin-bottom: var(--comments-spacing-vertical);
}
.comments-area > *:first-child {
  margin-top: 0;
}
.comments-area > *:last-child {
  margin-bottom: 0;
}
.comments-area.show-avatars .avatar {
  border-radius: 50%;
  position: absolute;
  top: 10px;
}
.comments-area.show-avatars .fn {
  display: inline-block;
  padding-left: 85px;
}
.comments-area.show-avatars .comment-metadata {
  padding: 8px 0 9px 85px;
}

/**
 * Comment Title
 */
.comments-title,
.comment-reply-title {
  font-size: calc(
  	((37.32 / 16) * 1rem) + (43.95 - 37.32) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--heading--font-size-h2);
  letter-spacing: normal;
  letter-spacing: var(--heading--letter-spacing-h2);
}

.comment-reply-title {
  display: flex;
  justify-content: space-between;
}
.comment-reply-title small a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: var(--font-base);
  font-size: calc(
  	((14 / 16) * 1rem) + (14 - 14) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step--1);
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
}

/* Nested comment reply title*/
.comment .comment-respond .comment-reply-title {
  font-size: calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-2);
}

/**
 * Comment Lists
 */
.comment-list {
  padding-left: 0;
  list-style: none;
}
.comment-list > li {
  margin-top: var(--comments-spacing-vertical);
  margin-bottom: var(--comments-spacing-vertical);
}

.comment-list .children {
  list-style: none;
  padding-left: 0;
}
.comment-list .children > li {
  margin-top: var(--comments-spacing-vertical);
  margin-bottom: var(--comments-spacing-vertical);
}

@media only screen and (min-width: 768px) {
  .comment-list .depth-2,
.comment-list .depth-3 {
    padding-left: calc(4 * 20px);
    padding-left: calc(4 * var(--spacing-horizontal));
  }
}

/**
 * Comment Meta
 */
.comment-meta .comment-author {
  line-height: 1.2;
  line-height: var(--line-height-heading);
  margin-bottom: calc(0.25 * 40px);
  margin-bottom: calc(0.25 * var(--spacing-vertical));
}
@media only screen and (min-width: 768px) {
  .comment-meta .comment-author {
    margin-bottom: 0;
    padding-right: 0;
  }
}
.comment-meta .comment-author .fn {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: var(--font-base);
  font-weight: normal;
  font-size: calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-2);
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  word-wrap: break-word;
  word-break: break-word;
}
.comment-meta .comment-metadata {
  color: #333333;
  color: var(--palette--primary);
  font-size: calc(
  	((14 / 16) * 1rem) + (14 - 14) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step--1);
  padding: 8px 0 9px 0;
}
.comment-meta .comment-metadata .edit-link {
  margin-left: 20px;
  margin-left: var(--spacing-horizontal);
}
@media only screen and (min-width: 768px) {
  .comment-meta {
    margin-right: inherit;
  }
  .comment-meta .comment-author {
    max-width: inherit;
  }
}

.reply {
  font-size: calc(
  	((16.00 / 16) * 1rem) + (18.00 - 16.00) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-0);
  line-height: 1.2;
  line-height: var(--line-height-heading);
}

.bypostauthor {
  display: block;
}

.says {
  display: none;
}

.pingback .url,
.trackback .url {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: var(--font-headings);
}

.comment-body {
  position: relative;
  margin-bottom: 40px;
  margin-bottom: var(--spacing-vertical);
}
.comment-body > * {
  margin-top: var(--comments-spacing-vertical);
  margin-bottom: var(--comments-spacing-vertical);
}
.comment-body .reply {
  margin: 0;
}

.comment-content a {
  word-wrap: break-word;
}

.pingback .comment-body,
.trackback .comment-body {
  margin-top: var(--comments-spacing-vertical);
  margin-bottom: var(--comments-spacing-vertical);
}

.comment-respond {
  margin-top: var(--comments-spacing-vertical);
}

.comment-respond > * {
  margin-top: 40px;
  margin-top: var(--spacing-vertical);
  margin-bottom: 40px;
  margin-bottom: var(--spacing-vertical);
}
.comment-respond > *:first-child {
  margin-top: 0;
}
.comment-respond > *:last-child {
  margin-bottom: 0;
}
.comment-respond > *:last-child.comment-form {
  margin-bottom: var(--comments-spacing-vertical);
}

.comment-author {
  padding-top: 3px;
}
.comment-author .url {
  color: currentColor;
}

.comment-form {
  display: flex;
  flex-wrap: wrap;
}
.comment-form > * {
  flex-basis: 100%;
}
.comment-form .comment-notes {
  font-size: calc(
  	((16.00 / 16) * 1rem) + (18.00 - 16.00) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-0);
}
.comment-form .comment-form-url,
.comment-form .comment-form-comment {
  width: 100%;
}
.comment-form .comment-form-author,
.comment-form .comment-form-email {
  flex-basis: 0;
  flex-grow: 1;
}
@media only screen and (max-width: 767px) {
  .comment-form .comment-form-author,
.comment-form .comment-form-email {
    flex-basis: 100%;
  }
}
.comment-form .comment-form-cookies-consent > label,
.comment-form .comment-notes {
  font-size: calc(
  	((14 / 16) * 1rem) + (14 - 14) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step--1);
  font-weight: normal;
}

.comment-form > p {
  margin-bottom: 40px;
  margin-bottom: var(--spacing-vertical);
}
.comment-form > p:first-of-type {
  margin-top: 0;
}
.comment-form > p:last-of-type {
  margin-bottom: 0;
}
.comment-form > p label,
.comment-form > p input[type=email],
.comment-form > p input[type=text],
.comment-form > p input[type=url],
.comment-form > p textarea {
  display: block;
  font-size: calc(
  	((16.00 / 16) * 1rem) + (18.00 - 16.00) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-0);
  margin-bottom: calc(0.5 * 40px);
  margin-bottom: calc(0.5 * var(--spacing-vertical));
  width: 100%;
  font-weight: 500;
  font-weight: var(--form--label-weight);
}
.comment-form > p.comment-form-cookies-consent {
  display: flex;
}
@media only screen and (min-width: 768px) {
  .comment-form > p.comment-form-author {
    margin-right: calc(1.5 * 20px);
    margin-right: calc(1.5 * var(--spacing-horizontal));
  }
  .comment-form > p.comment-notes, .comment-form > p.logged-in-as {
    display: block;
  }
}

/*
	Responsive Breakpoints
*/
/* Next/Previous navigation, needs work */
.navigation {
  /* Pagination Variables */
  --pagination--color-background: var(--palette--primary);
  --palette--link: var(--palette--white);
  --palette--link-hover: var(--palette--white);
  --pagination--font-family: var(--font-base);
  --pagination--font-size: var(--step-1);
  --pagination--font-weight: normal;
  --pagination--font-weight-strong: 600;
  color: #333333;
  color: var(--palette--primary);
}
.navigation a {
  color: initial;
  color: var(--palette--link);
  text-decoration: none;
}
.navigation a:hover {
  color: initial;
  color: var(--palette--link-hover);
  --pagination--color-background: var(--palette--dark-blue-75);
}
.navigation a:focus {
  color: initial;
  color: var(--palette--link-hover);
  --pagination--color-background: var(--palette--dark-blue-75);
}
.navigation a:active {
  color: initial;
  color: var(--palette--link);
}
.navigation .nav-links > * {
  min-width: 44px;
  min-height: 44px;
}
.navigation .nav-links .nav-next a,
.navigation .nav-links .nav-previous a {
  display: flex;
  flex-direction: column;
}
.navigation .nav-links .dots {
  text-align: center;
}
@media only screen and (min-width: 993px) {
  .navigation .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .navigation .nav-links .nav-next,
.navigation .nav-links .nav-previous {
    flex: 0 1 auto;
    margin-bottom: inherit;
    margin-top: inherit;
    max-width: calc(50% - 0.5 * 20px);
    max-width: calc(50% - 0.5 * var(--spacing-horizontal));
  }
  .navigation .nav-links .nav-next {
    text-align: right;
  }
}
.navigation .svg-icon {
  display: inline-block;
  fill: currentColor;
  vertical-align: middle;
  position: relative;
}
.navigation .nav-previous .svg-icon,
.navigation .prev .svg-icon {
  top: -2px;
  margin-right: calc(0.25 * 20px);
  margin-right: calc(0.25 * var(--spacing-horizontal));
}
.navigation .nav-next .svg-icon,
.navigation .next .svg-icon {
  top: -1px;
  margin-left: calc(0.25 * 20px);
  margin-left: calc(0.25 * var(--spacing-horizontal));
}

.post-navigation {
  margin: 40px auto;
  margin: var(--spacing-vertical) auto;
}
@media only screen and (min-width: 1401px) {
  .post-navigation {
    margin: 40px auto;
    margin: var(--spacing-vertical) auto;
  }
}
.post-navigation .meta-nav {
  line-height: 1.67;
  line-height: var(--line-height-body);
  color: #333333;
  color: var(--palette--primary);
}
.post-navigation .post-title {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-family: var(--font-headings);
  font-size: calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-2);
  font-style: italic;
  font-weight: var(--pagination--font-weight-strong);
  line-height: 1.2;
  line-height: var(--line-height-heading);
}
@media only screen and (min-width: 1401px) {
  .post-navigation .post-title {
    margin: 5px calc(24px + 0.25 * 20px) 0;
    margin: 5px calc(24px + 0.25 * var(--spacing-horizontal)) 0;
  }
}
@media only screen and (min-width: 768px) {
  .post-navigation .nav-links {
    justify-content: space-between;
  }
}
.post-navigation .nav-next,
.post-navigation .nav-previous {
  margin-top: 40px;
  margin-top: var(--spacing-vertical);
  margin-bottom: 40px;
  margin-bottom: var(--spacing-vertical);
}
.post-navigation .nav-next:first-child,
.post-navigation .nav-previous:first-child {
  margin-top: 0;
}
.post-navigation .nav-next:last-child,
.post-navigation .nav-previous:last-child {
  margin-bottom: 0;
}

.pagination,
.comments-pagination {
  border-top: 3px solid #e1e1e1;
  border-top: 3px solid var(--palette--border);
  padding-top: 40px;
  padding-top: var(--spacing-vertical);
  margin: 40px auto;
  margin: var(--spacing-vertical) auto;
}
@media only screen and (min-width: 1401px) {
  .pagination,
.comments-pagination {
    margin: 40px auto;
    margin: var(--spacing-vertical) auto;
  }
}
.pagination .nav-links,
.comments-pagination .nav-links {
  margin-top: calc(-1 * 40px);
  margin-top: calc(-1 * var(--spacing-vertical));
}
.pagination .nav-links a:hover,
.comments-pagination .nav-links a:hover {
  color: initial;
  color: var(--palette--link-hover);
}
.has-background-white .pagination .nav-links a:active,
.has-background-white .pagination .nav-links a:hover:active,
.has-background-white .pagination .nav-links a:hover:focus,
.has-background-white .comments-pagination .nav-links a:active,
.has-background-white .comments-pagination .nav-links a:hover:active,
.has-background-white .comments-pagination .nav-links a:hover:focus {
  color: #ffffff;
  color: var(--palette--white);
}
.pagination .nav-links > *,
.comments-pagination .nav-links > * {
  background-color: transparent;
  background-color: var(--pagination--color-background, transparent);
  color: initial;
  color: var(--palette--link);
  font-family: var(--pagination--font-family);
  font-size: var(--pagination--font-size);
  font-weight: var(--pagination--font-weight);
  margin-top: 40px;
  margin-top: var(--spacing-vertical);
  margin-left: calc(0.66 * 20px);
  margin-left: calc(0.66 * var(--spacing-horizontal));
  margin-right: calc(0.66 * 20px);
  margin-right: calc(0.66 * var(--spacing-horizontal));
  border-radius: 50%;
  display: grid;
  align-content: center;
  justify-content: center;
  place-content: center;
  aspect-ratio: 1/1;
}
.pagination .nav-links > *.current,
.comments-pagination .nav-links > *.current {
  --pagination--color-background: var(--palette--dark-blue);
}
.pagination .nav-links > *:not(.dots):not(.current):hover,
.comments-pagination .nav-links > *:not(.dots):not(.current):hover {
  text-decoration: none;
}
.pagination .nav-links > *:first-child,
.comments-pagination .nav-links > *:first-child {
  margin-left: 0;
}
.pagination .nav-links > *:last-child,
.comments-pagination .nav-links > *:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 1400px) {
  .pagination .nav-links,
.comments-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
  }
  .pagination .page-numbers,
.comments-pagination .page-numbers {
    display: none;
  }
  .pagination .page-numbers.prev, .pagination .page-numbers.next,
.comments-pagination .page-numbers.prev,
.comments-pagination .page-numbers.next {
    display: inline-block;
    flex: 0 1 auto;
  }
}
@media only screen and (max-width: 767px) {
  .pagination .nav-short,
.comments-pagination .nav-short {
    display: none;
  }
}

.comments-pagination {
  padding-top: calc(0.66 * 40px);
  padding-top: calc(0.66 * var(--spacing-vertical));
  margin: calc(3 * 40px) auto;
  margin: calc(3 * var(--spacing-vertical)) auto;
}
@media only screen and (min-width: 1401px) {
  .comments-pagination {
    margin: calc(3 * 40px) auto calc(4 * 40px) auto;
    margin: calc(3 * var(--spacing-vertical)) auto calc(4 * var(--spacing-vertical)) auto;
  }
}
.comments-pagination .nav-links > * {
  font-size: calc(
  	((21.60 / 16) * 1rem) + (22.50 - 21.60) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-1);
}

/* Social Share */
.social-share {
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.social-share li {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}
.social-share li:not(.social-label) + li {
  margin-left: calc(2 * 20px);
  margin-left: calc(2 * var(--spacing-horizontal));
}
.social-share .social-label {
  color: #333333;
  color: var(--palette--primary);
  text-transform: uppercase;
  flex-basis: 100%;
  margin-bottom: calc(0.5 * calc(0.5 * 40px));
  margin-bottom: calc(0.5 * var(--default-margins));
}
.social-share .social-label svg {
  display: none;
}
.social-share .menu__anchor--social {
  color: #333333;
  color: var(--palette--primary);
  fill: #333333;
  fill: var(--palette--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  height: var(--icon-size-unit);
  width: 24px;
  width: var(--icon-size-unit);
}
.social-share .menu__anchor--social svg {
  fill: currentColor;
}
.social-share .menu__anchor--social:hover svg, .social-share .menu__anchor--social:focus svg, .social-share .menu__anchor--social:active svg {
  transform: scale(1.1);
}

/* Individually list files from /acf/, one file per ACF component */
/* Individually list files from /shortcodes/, one file per shortcode */
.hero-section .hero-content {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0;
  min-height: 500px;
  position: relative;
  z-index: 1;
}
.hero-section .hero-content:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.hero-section .hero-content .hero-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-position: top;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.hero-section .hero-content .hero-caption {
  max-width: 420px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 41px 100px 74px 0;
  text-align: center;
}
.hero-section .hero-content .hero-caption .hero-img {
  margin-bottom: 30px;
}
.hero-section .hero-content .hero-caption .heading {
  text-transform: uppercase;
  color: #ffffff;
  color: var(--palette--white);
  margin-bottom: 8px;
}
.hero-section .hero-content .hero-caption p {
  margin-bottom: 0;
  color: #ffffff;
  color: var(--palette--white);
}
.hero-section .hero-slider {
  position: relative;
}
.hero-section .hero-slider .fr-container {
  padding: 0;
}
.hero-section .swiper-wrapper {
  height: auto;
}

.slider-arrow {
  max-width: 1260px;
  position: absolute;
  top: 45%;
  transform: translateY(-45%);
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 25px;
  z-index: 9;
}

.fix-container {
  max-width: 1140px;
  margin: 0 auto;
}

.client-review-section {
  position: relative;
}
.client-review-section:after {
  content: "";
  background-color: #E6CCBE;
  background-color: var(--palette--bg-pink-light);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 1140px;
  margin: 0 auto;
  z-index: 0;
}
.client-review-section .fix-container {
  padding: 60px 20px 70px;
}
.client-review-section .client-review:not(.swiper-slide-active) {
  opacity: 0 !important;
}

.delivery-section .delivery-img {
  margin-bottom: 20px;
}
.delivery-section .title {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.delivery-section p {
  color: #333333;
  color: var(--palette--dark-black);
  margin-bottom: 30px;
  line-height: 24px;
}
.delivery-section .delivery-item {
  padding: 0 70px;
  flex: 0 0 50.5%;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.delivery-section .delivery-item:nth-child(1) {
  border-right: 2px solid #818282;
  border-right: 2px solid var(--palette--gray-818282);
}
.delivery-section .delivery-item .btn-common {
  max-width: 194px;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
}

.extra-care .title {
  color: #ffffff;
  color: var(--palette--white);
}

.client-logo .title {
  color: #ffffff;
  color: var(--palette--white);
}

.page-template-default .site-main {
  max-width: 1140px;
  margin: 0 auto;
  background-color: #ffffff;
  background-color: var(--palette--white);
}
.page-template-default .site-main article.page {
  padding: 40px 26px;
  max-width: 772px;
  margin: 0 auto;
}
.page-template-default .site-main article.page .entry-header {
  padding: 0 !important;
  margin: 0 !important;
}
.page-template-default .site-main article.page .entry-header h1.entry-title {
  font-size: 28px;
  font-size: var(--fs-step-2);
  color: var(--palette--dark-color) !important;
  font-family: "Barlow", sans-serif;
  font-family: var(--font-barlow);
  line-height: 28px;
  margin: 0;
  font-weight: 700;
}
.page-template-default .site-main article.page .yoast-breadcrumbs {
  padding: 10px 0 0 !important;
  margin: 0 !important;
  display: none;
}
.page-template-default .site-main article.page .yoast-breadcrumbs a {
  text-decoration: none;
  color: var(--palette--dark-color);
}
.page-template-default .site-main article.page .entry-content {
  padding: 15px 0 0 !important;
  margin: 0 !important;
}
.page-template-default .site-main article.page .entry-content p {
  margin: 0 0 15px !important;
  padding: 0 !important;
  max-width: 100% !important;
  font-size: 20px;
  font-size: var(--fs-step-4);
  line-height: 28px;
  color: var(--palette--dark-color);
}
.page-template-default .site-main article.page .entry-content p small {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;
}
.page-template-default .site-main article.page .entry-content ul {
  padding: 5px 0 0 20px;
  margin: 0;
  max-width: 100% !important;
  width: 100%;
}
.page-template-default .site-main article.page .entry-content ul li {
  font-size: 16px;
  line-height: 20.8px;
  color: var(--palette--dark-color);
  font-weight: 300;
}
.page-template-default .site-main article.page .entry-content ul li::marker {
  color: #76B041;
  color: var(--palette--primary-green);
}

.social-share a {
  color: #76B041 !important;
  color: var(--palette--primary-green) !important;
  font-size: 24px !important;
}
.social-share a svg {
  width: 20px;
}

@media (max-width: 922px) {
  .delivery-section .delivery-item {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .slider-arrow {
    display: none;
  }

  .hero-section .hero-content {
    justify-content: center;
    flex-direction: column;
    min-height: unset;
  }
  .hero-section .hero-content .hero-bg {
    position: relative;
    height: 158px;
    width: 100%;
    background-position: top;
    margin-bottom: 0;
  }
  .hero-section .hero-content .hero-caption {
    width: 100%;
    justify-content: center;
    padding: 30px 20px 50px;
    max-width: 100%;
    background-color: #76B041;
    background-color: var(--palette--primary-green);
  }
  .hero-section .hero-content .hero-caption p {
    margin-bottom: 25px;
  }
  .hero-section .hero-content .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 40px auto 0;
    width: 80px;
    height: 80px;
  }
  .hero-section .slider-pagination .slider__controls {
    top: -50px;
  }

  .client-review-section .fix-container {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .delivery-section .delivery-item {
    padding: 0;
  }
  .delivery-section .delivery-item p {
    font-size: 16px;
    line-height: 19.2px;
  }
  .delivery-section .delivery-item:nth-child(1) {
    border-right: none;
    border-bottom: 2px solid #818282;
    border-bottom: 2px solid var(--palette--gray-818282);
    padding-bottom: 40px;
    margin-bottom: 30px;
  }
  .delivery-section .delivery-item .btn-common {
    max-width: 152px;
  }

  .page-template-default .site-main article.page {
    padding: 30px 20px;
  }
  .page-template-default .site-main article.page .entry-content p {
    font-size: 16px;
  }

  .why-it-pays .title {
    margin-bottom: 20px;
  }
}
.site-overlay {
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  z-index: 9;
  opacity: 0;
  margin-top: 0;
  visibility: hidden;
  position: fixed;
}

.pop-up-active .site-overlay {
  opacity: 1;
  visibility: visible;
}

.delivery-map-img {
  padding: 10px 0 40px;
}
.delivery-map-img img {
  width: auto !important;
}

.delivery-main-block,
.quote-main-block {
  position: relative;
  background-color: #ffffff;
  background-color: var(--palette--white);
  text-align: center;
  padding: 40px 20px 50px;
}

.delivery-pop-up-container,
.quote-pop-up-container {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.pop-up-active {
  overflow: hidden;
}

section.pop-up {
  position: fixed;
  top: 25%;
  opacity: 0;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 999;
  overflow-y: auto;
  max-height: 95%;
}

.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  margin: 15px 20px 0 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.close-btn span {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.close-btn span:before, .close-btn span:after {
  transform: rotate(45deg);
  left: 10px;
  position: absolute;
  top: 1px;
  content: " ";
  height: 20px;
  width: 2px;
  background-color: #333333;
  background-color: var(--palette--dark-black);
}
.close-btn span:after {
  transform: rotate(-45deg);
}
.close-btn p {
  font-size: 20px;
  font-size: var(--fs-step-5);
  line-height: 20px;
  margin-bottom: 0;
  margin-top: 0;
}

.call-info {
  margin-bottom: 30px;
}
.call-info p {
  font-size: 20px;
  font-size: var(--fs-step-5);
  line-height: 20px;
  margin-bottom: 10px;
  color: #333333;
  color: var(--palette--dark-black);
}
.call-info .delivery-number {
  color: #76B041;
  color: var(--palette--primary-green);
  font-size: 28px;
  font-size: var(--fs-step-2);
  line-height: 28px;
  text-decoration: none;
  font-weight: 600;
}

.email-info p {
  font-size: 20px;
  font-size: var(--fs-step-4);
  line-height: 20px;
  margin-bottom: 10px;
  color: #333333;
  color: var(--palette--dark-black);
}
.email-info .delivery-email {
  color: #76B041;
  color: var(--palette--primary-green);
  font-size: 28px;
  font-size: var(--fs-step-2);
  line-height: 28px;
  text-decoration: none;
  font-weight: 600;
}

.quote-pop-up {
  margin-top: 2rem;
}

.delivery-pop-up,
.quote-pop-up {
  display: none;
}

.client-item {
  display: flex;
  align-items: center;
  min-height: 100px;
}

.client-slider {
  max-width: 1000px;
}

.client-review h3 {
  color: #B07474;
  color: var(--palette--pink);
  font-size: 24px;
  font-size: var(--fs-step-3);
  line-height: 28px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.client-review p {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  color: #333333;
  color: var(--palette--dark-black);
  line-height: 24px;
}

.why-it-pays h3 {
  color: #76B041;
  color: var(--palette--primary-green);
  border-bottom: 2px solid;
  font-weight: 600;
  padding-bottom: 20px;
  margin-bottom: 0;
  text-transform: none;
}
.why-it-pays .ul-why {
  list-style: none;
  padding: 0;
}
.why-it-pays .ul-why li {
  color: #333333;
  color: var(--palette--dark-black);
  border-bottom: 2px solid #D2C8BE;
  border-bottom: 2px solid var(--palette--gray-D2C8BE);
  padding: 20px 47px;
  margin-bottom: 0;
}
.why-it-pays .ul-why li:last-child {
  border: none;
  padding-bottom: 0;
}
.why-it-pays .why-item {
  width: 50%;
}

.faq-box {
  margin: 30px 0 !important;
  max-width: 100% !important;
}
.faq-box .faq-item .faq-title {
  font-size: 16px;
  color: #333333;
  color: var(--palette--dark-black);
  font-weight: 400;
  margin-bottom: 10px;
  border-bottom: 2px solid #D2C8BE;
  border-bottom: 2px solid var(--palette--gray-D2C8BE);
  position: relative;
  padding-bottom: 10px;
  cursor: pointer;
  text-transform: none;
  padding-right: 15px;
}
.faq-box .faq-item .faq-title:after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  color: #76B041;
  color: var(--palette--primary-green);
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
}
.faq-box .faq-item.active .faq-title:after {
  content: "\f106";
}
.faq-box .faq-item .faq-content {
  padding: 10px 0 10px 10px;
}

.video-box {
  text-align: center;
}
.video-box .video-container {
  position: relative;
  padding-bottom: 37.25%;
  height: 0;
  max-width: 720px;
  margin: 0 auto;
}
.video-box .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-box .video-container .video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-box .video-container video {
  width: 100%;
  max-width: 720px;
  height: auto;
}
.video-box .play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.video-box .play-button-wrapper #circle-play-b {
  cursor: pointer;
  pointer-events: auto;
}
.video-box .play-button-wrapper #circle-play-b img {
  width: 100px;
  height: 100px;
}

@media screen and (max-width: 767px) {
  .why-it-pays .fr-row {
    flex-direction: column;
  }
  .why-it-pays .why-item {
    width: 100%;
  }
  .why-it-pays .why-item:first-child {
    border-top: 2px solid #76B041;
    border-top: 2px solid var(--palette--primary-green);
    padding-top: 16px;
    padding-bottom: 40px;
  }
  .why-it-pays .ul-why li {
    font-size: 16px;
    line-height: 19.2px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .why-it-pays h3 {
    font-size: 20px;
    font-size: var(--fs-step-4);
    line-height: 28px;
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .video-box {
    padding-top: 20px;
  }

  .client-review h3 {
    font-size: 20px;
    margin-bottom: 30px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  .call-info .delivery-number {
    color: #76B041;
    color: var(--palette--primary-green);
    font-size: 20px;
    font-size: var(--fs-step-5);
    line-height: 20px;
  }

  .email-info .delivery-email {
    color: #76B041;
    color: var(--palette--primary-green);
    font-size: 20px;
    font-size: var(--fs-step-4);
    line-height: 20px;
  }

  .close-btn p {
    font-size: 16px;
    line-height: 16px;
  }
  .close-btn span:before, .close-btn span:after {
    left: 55px;
    top: 0;
  }

  .why-it-pays .ul-why li {
    padding-left: 0;
    padding-right: 0;
  }

  .play-button-wrapper #circle-play-b img {
    width: 80px;
    height: 80px;
  }
}
/* Category 07 is for any utility classes that are not assigned to a specific component. */
.visually-hidden,
.screen-reader-text {
  /* Text meant only for screen readers. */
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  white-space: nowrap;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
  word-break: normal;
}

.skip-link:focus {
  background-color: #f9f9f9;
  background-color: var(--palette--light-gray, #f1f1f1);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #333333;
  color: var(--palette--primary, #21759b);
  display: block;
  font-size: calc(
  	((16.00 / 16) * 1rem) + (18.00 - 16.00) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-0, 0.875rem);
  font-weight: bold;
  height: auto;
  left: 1em;
  line-height: normal;
  padding: 1em 1.5em;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

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

/*
	SASS array, as used for creating Block editor utility classes, see 07-utilities/_color-palette.scss
*/
:root {
  --palette--primary-green: #76B041;
  --palette--primary-hover: #659638;
  --palette--dark-black: #333333;
  --palette--gray: #DCDCDC;
  --palette--gray-D2C8BE: #D2C8BE;
  --palette--gray-818282: #818282;
  --palette--pink: #B07474;
  --palette--bg-gray: #2D7575;
  --palette--bg-pink-light: #E6CCBE;
  --palette--dark-light-gray: #2D7575;
  --palette--blue: #37A5E5;
  --palette--white: #ffffff;
  --palette--light-gray: #f9f9f9;
  --palette--mid-gray: #e1e1e1;
  --palette--dark-gray: #222222;
  --palette--black: #000000;
  --palette--white-50: rgba(255, 255, 255, 0.5);
  --palette--white-90: rgba(255, 255, 255, 0.9);
  --palette--black-20: rgba(0, 0, 0, 0.2);
  --palette--black-30: rgba(0, 0, 0, 0.3);
  --palette--black-80: rgba(0, 0, 0, 0.8);
  /*
  	--color-primary is the main colour used across the site.
  	Much of the blocks and components use this as part of the cascade.
  	i.e. Body text color, site title, footer text color.
  */
  --palette--primary: var(--palette--dark-black);
  /*
  	--color-secondary is the alternative colour used across the site.
  	Again blocks and components use this as part of the cascade.
  	i.e. Headings
  */
  --palette--secondary: var(--palette--dark-black);
  /*
  	Hyperlinks
  */
  --palette--link: initial;
  --palette--link-hover: initial;
  /*
  	Default body background
  */
  --palette--background: var(--palette--white);
  /*
  	Used for borders (e.g. separators)
  */
  --palette--border: var(--palette--mid-gray);
  /*
  	Forms

  	Configure forms, rather than directly changing 04-elements/_forms
  	Note this *doesn't* include buttons, see below
  */
  --form--text-color: var(--palette--dark-gray);
  --form--input-color: var(--palette--dark-gray);
  --form--input-background-color: var(--palette--white);
  --form--ranged-background-color: var(--palette--dark-gray);
  --form--border-color: var(--palette--dark-gray);
  --form--input-focus-color: var(--palette--black);
  --form--outline-color: var(--palette--black);
}

:root .has-primary-green-color[class] {
  color: #76B041;
  color: var(--palette--primary-green);
  --form--text-color: var(--palette--primary-green);
}
:root .has-primary-green-background-color[class] {
  background-color: #76B041;
  background-color: var(--palette--primary-green);
  --background-color: var(--palette--primary-green);
}
:root .has-primary-hover-color[class] {
  color: #659638;
  color: var(--palette--primary-hover);
  --form--text-color: var(--palette--primary-hover);
}
:root .has-primary-hover-background-color[class] {
  background-color: #659638;
  background-color: var(--palette--primary-hover);
  --background-color: var(--palette--primary-hover);
}
:root .has-dark-black-color[class] {
  color: #333333;
  color: var(--palette--dark-black);
  --form--text-color: var(--palette--dark-black);
}
:root .has-dark-black-background-color[class] {
  background-color: #333333;
  background-color: var(--palette--dark-black);
  --background-color: var(--palette--dark-black);
}
:root .has-gray-color[class] {
  color: #DCDCDC;
  color: var(--palette--gray);
  --form--text-color: var(--palette--gray);
}
:root .has-gray-background-color[class] {
  background-color: #DCDCDC;
  background-color: var(--palette--gray);
  --background-color: var(--palette--gray);
}
:root .has-gray-D2C8BE-color[class] {
  color: #D2C8BE;
  color: var(--palette--gray-D2C8BE);
  --form--text-color: var(--palette--gray-D2C8BE);
}
:root .has-gray-D2C8BE-background-color[class] {
  background-color: #D2C8BE;
  background-color: var(--palette--gray-D2C8BE);
  --background-color: var(--palette--gray-D2C8BE);
}
:root .has-gray-818282-color[class] {
  color: #818282;
  color: var(--palette--gray-818282);
  --form--text-color: var(--palette--gray-818282);
}
:root .has-gray-818282-background-color[class] {
  background-color: #818282;
  background-color: var(--palette--gray-818282);
  --background-color: var(--palette--gray-818282);
}
:root .has-pink-color[class] {
  color: #B07474;
  color: var(--palette--pink);
  --form--text-color: var(--palette--pink);
}
:root .has-pink-background-color[class] {
  background-color: #B07474;
  background-color: var(--palette--pink);
  --background-color: var(--palette--pink);
}
:root .has-bg-gray-color[class] {
  color: #2D7575;
  color: var(--palette--bg-gray);
  --form--text-color: var(--palette--bg-gray);
}
:root .has-bg-gray-background-color[class] {
  background-color: #2D7575;
  background-color: var(--palette--bg-gray);
  --background-color: var(--palette--bg-gray);
}
:root .has-bg-pink-light-color[class] {
  color: #E6CCBE;
  color: var(--palette--bg-pink-light);
  --form--text-color: var(--palette--bg-pink-light);
}
:root .has-bg-pink-light-background-color[class] {
  background-color: #E6CCBE;
  background-color: var(--palette--bg-pink-light);
  --background-color: var(--palette--bg-pink-light);
}
:root .has-dark-light-gray-color[class] {
  color: #2D7575;
  color: var(--palette--dark-light-gray);
  --form--text-color: var(--palette--dark-light-gray);
}
:root .has-dark-light-gray-background-color[class] {
  background-color: #2D7575;
  background-color: var(--palette--dark-light-gray);
  --background-color: var(--palette--dark-light-gray);
}
:root .has-blue-color[class] {
  color: #37A5E5;
  color: var(--palette--blue);
  --form--text-color: var(--palette--blue);
}
:root .has-blue-background-color[class] {
  background-color: #37A5E5;
  background-color: var(--palette--blue);
  --background-color: var(--palette--blue);
}
:root .has-white-color[class] {
  color: #ffffff;
  color: var(--palette--white);
  --form--text-color: var(--palette--white);
}
:root .has-white-background-color[class] {
  background-color: #ffffff;
  background-color: var(--palette--white);
  --background-color: var(--palette--white);
}
:root .has-light-gray-color[class] {
  color: #f9f9f9;
  color: var(--palette--light-gray);
  --form--text-color: var(--palette--light-gray);
}
:root .has-light-gray-background-color[class] {
  background-color: #f9f9f9;
  background-color: var(--palette--light-gray);
  --background-color: var(--palette--light-gray);
}
:root .has-mid-gray-color[class] {
  color: #e1e1e1;
  color: var(--palette--mid-gray);
  --form--text-color: var(--palette--mid-gray);
}
:root .has-mid-gray-background-color[class] {
  background-color: #e1e1e1;
  background-color: var(--palette--mid-gray);
  --background-color: var(--palette--mid-gray);
}
:root .has-dark-gray-color[class] {
  color: #222222;
  color: var(--palette--dark-gray);
  --form--text-color: var(--palette--dark-gray);
}
:root .has-dark-gray-background-color[class] {
  background-color: #222222;
  background-color: var(--palette--dark-gray);
  --background-color: var(--palette--dark-gray);
}
:root .has-black-color[class] {
  color: #000000;
  color: var(--palette--black);
  --form--text-color: var(--palette--black);
}
:root .has-black-background-color[class] {
  background-color: #000000;
  background-color: var(--palette--black);
  --background-color: var(--palette--black);
}
:root .has-white-50-color[class] {
  color: rgba(255, 255, 255, 0.5);
  color: var(--palette--white-50);
  --form--text-color: var(--palette--white-50);
}
:root .has-white-50-background-color[class] {
  background-color: rgba(255, 255, 255, 0.5);
  background-color: var(--palette--white-50);
  --background-color: var(--palette--white-50);
}
:root .has-white-90-color[class] {
  color: rgba(255, 255, 255, 0.9);
  color: var(--palette--white-90);
  --form--text-color: var(--palette--white-90);
}
:root .has-white-90-background-color[class] {
  background-color: rgba(255, 255, 255, 0.9);
  background-color: var(--palette--white-90);
  --background-color: var(--palette--white-90);
}
:root .has-black-20-color[class] {
  color: rgba(0, 0, 0, 0.2);
  color: var(--palette--black-20);
  --form--text-color: var(--palette--black-20);
}
:root .has-black-20-background-color[class] {
  background-color: rgba(0, 0, 0, 0.2);
  background-color: var(--palette--black-20);
  --background-color: var(--palette--black-20);
}
:root .has-black-30-color[class] {
  color: rgba(0, 0, 0, 0.3);
  color: var(--palette--black-30);
  --form--text-color: var(--palette--black-30);
}
:root .has-black-30-background-color[class] {
  background-color: rgba(0, 0, 0, 0.3);
  background-color: var(--palette--black-30);
  --background-color: var(--palette--black-30);
}
:root .has-black-80-color[class] {
  color: rgba(0, 0, 0, 0.8);
  color: var(--palette--black-80);
  --form--text-color: var(--palette--black-80);
}
:root .has-black-80-background-color[class] {
  background-color: rgba(0, 0, 0, 0.8);
  background-color: var(--palette--black-80);
  --background-color: var(--palette--black-80);
}
:root .has-primary-color[class] {
  color: #333333;
  color: var(--palette--primary);
}
:root .has-secondary-color[class] {
  color: #333333;
  color: var(--palette--secondary);
}
:root .has-primary-background-color[class] {
  background-color: #333333;
  background-color: var(--palette--primary);
}
:root .has-secondary-background-color[class] {
  background-color: #333333;
  background-color: var(--palette--secondary);
}
:root .has-white-background-color[class] {
  background-color: #ffffff;
  background-color: var(--palette--white);
}
:root .has-black-background-color[class] {
  background-color: #000000;
  background-color: var(--palette--black);
}
:root .has-background :is(a, p, h1, h2, h3, h4, h5, h6) {
  color: currentColor;
}

:root .is-extra-small-text,
:root .has-extra-small-font-size {
  font-size: calc(
  	((12 / 16) * 1rem) + (12 - 12) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step--2);
}
:root .is-small-text,
:root .has-small-font-size {
  font-size: calc(
  	((14 / 16) * 1rem) + (14 - 14) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step--1);
}
:root .is-regular-text,
:root .has-regular-font-size,
:root .is-normal-font-size,
:root .has-normal-font-size,
:root .has-medium-font-size {
  font-size: calc(
  	((16.00 / 16) * 1rem) + (18.00 - 16.00) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-0);
}
:root .is-large-text,
:root .has-large-font-size {
  font-size: calc(
  	((21.60 / 16) * 1rem) + (22.50 - 21.60) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-1);
}
:root .is-larger-text,
:root .has-larger-font-size,
:root .is-extra-large-text,
:root .has-extra-large-font-size {
  font-size: calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-2);
}
:root .is-huge-text,
:root .has-huge-font-size {
  font-size: calc(
  	((31.10 / 16) * 1rem) + (35.16 - 31.10) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-3);
  line-height: 1.2;
  line-height: var(--line-height-heading);
}
:root .is-giant-text,
:root .has-giant-font-size {
  font-size: calc(
  	((37.32 / 16) * 1rem) + (43.95 - 37.32) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--step-4);
  line-height: 1.2;
  line-height: var(--line-height-heading);
}

/*
	Generic Helpers
*/
.reset-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.js .show-if-js,
.no-js .show-if-no-js {
  display: block !important;
  /* stylelint-disable declaration-no-important */
}

.js .hide-if-js,
.no-js .hide-if-no-js {
  display: none !important;
  /* stylelint-disable declaration-no-important */
}

/* Category 08 is for any overrides of vendor based styles included elsewhere */
/* Note: Swiper css directly pulled from node_modules, npm install first. */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  touch-action: pan-y;
}
.swiper-container-pointer-events.swiper-container-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  )) / 44 * 27);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  )) / 2);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-feature-settings: normal, ;
  font-variant: normal;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #333333;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #333333;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar, .swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

:root {
  --swiper-theme-color: var(--palette--primary);
  --swiper-pagination-color: var(--palette--primary);
  --swiper-pagination-inactive-color: var(--palette--secondary);
  --swiper-navigation-color: var(--palette--secondary);
  --swiper-navigation-size: var(--step-2);
  --swiper-navigation-offset: 0;
  --swiper-pagination-offset: 0;
}

.swiper-button-prev,
.swiper-button-next {
  text-rendering: auto !important;
  color: #333333;
  color: var(--swiper-navigation-color);
  top: calc(50% - 0.5 * (calc(
  	((25.92 / 16) * 1rem) + (28.13 - 25.92) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  )) + 2em));
  top: calc(50% - 0.5 * (var(--swiper-navigation-size) + 2em));
  padding: 2em 0.5em;
  --outline-unit: max(2px, 0.08em);
  --outline-style: solid;
  --outline-color: currentColor;
}
@media only screen and (max-width: 992px) {
  .swiper-button-prev,
.swiper-button-next {
    display: none;
  }
}
.swiper-button-prev:hover, .swiper-button-prev:focus,
.swiper-button-next:hover,
.swiper-button-next:focus {
  --swiper-navigation-color: var(--swiper-theme-color);
}
.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: var(--outline-unit) var(--outline-style) var(--outline-color);
  outline-offset: var(--outline-unit);
}
.swiper-button-prev:focus:not(.focus-visible),
.swiper-button-next:focus:not(.focus-visible) {
  outline: none;
}
.swiper-button-prev:focus:not(:focus-visible),
.swiper-button-next:focus:not(:focus-visible) {
  outline: none;
}
.swiper-button-prev.focus-visible,
.swiper-button-next.focus-visible {
  outline: var(--outline-unit) var(--outline-style) var(--outline-color);
  outline-offset: var(--outline-unit);
}
.swiper-button-prev:focus-visible,
.swiper-button-next:focus-visible {
  outline: var(--outline-unit) var(--outline-style) var(--outline-color);
  outline-offset: var(--outline-unit);
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-weight: 200;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.swiper-button-prev.is-svg,
.swiper-button-next.is-svg {
  box-sizing: content-box;
}
.swiper-button-prev.is-svg svg,
.swiper-button-next.is-svg svg {
  fill: currentColor;
}
.swiper-button-prev.is-svg:after,
.swiper-button-next.is-svg:after {
  content: "";
  display: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 0;
  left: var(--swiper-navigation-offset);
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 0;
  right: var(--swiper-navigation-offset);
}

.swiper-pagination-bullet {
  height: calc(
  	((12 / 16) * 1rem) + (12 - 12) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  height: var(--step--2);
  width: calc(
  	((12 / 16) * 1rem) + (12 - 12) *
  	calc(
  	(100vw - 320 / 16 * 1rem) /
  	(1420 - 320)
  ));
  width: var(--step--2);
}
.swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background: #333333;
  background: var(--swiper-pagination-inactive-color);
  opacity: 1;
}
.swiper-pagination-bullet:first-child:last-child {
  opacity: 0;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0;
  bottom: var(--swiper-pagination-offset);
}

.slider__controls .swiper-button-prev {
  left: 0;
}
.slider__controls .swiper-button-prev:after {
  font-size: 28px;
  font-weight: 500;
  content: "\f053";
  font-family: "Font Awesome 5 Pro";
  color: #B07474;
  color: var(--palette--pink);
}
.slider__controls .swiper-button-next {
  right: 0;
}
.slider__controls .swiper-button-next:after {
  font-size: 28px;
  font-weight: 500;
  font-family: "Font Awesome 5 Pro";
  color: #B07474;
  color: var(--palette--pink);
  content: "\f054";
}

.slider-pagination {
  height: 0;
}
.slider-pagination .slider__controls {
  position: relative;
  top: -30px;
  z-index: 9;
}
.slider-pagination .slider__controls .slider__pagination {
  display: flex;
  justify-content: center;
}
.slider-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  border: 2px solid var(--palette--white);
  background-color: transparent;
  opacity: 1;
  margin: 0 3px;
}
.slider-pagination .swiper-pagination-bullet:hover {
  background-color: #ffffff;
  background-color: var(--palette--white);
}
.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffffff;
  background-color: var(--palette--white);
}

.client-box .swiper-pagination-bullets {
  bottom: 70px !important;
  margin-top: 0;
  text-align: center;
  z-index: 9;
}

@media (max-width: 767px) {
  .client-box .swiper-pagination-bullets {
    bottom: 55px !important;
  }
}
/* Override CF7 Styles */
.wpcf7 form > * {
  position: relative;
}
.wpcf7 form > * + * {
  margin-top: 1em;
  margin-top: var(--form--spacing-unit);
}
.wpcf7 form > * + *:is(h2, h3, h4, h5) {
  margin-top: calc(2 * 1em);
  margin-top: calc(2 * var(--form--spacing-unit));
}
.wpcf7 form .wpcf7-response-output {
  margin-top: 1em;
  margin-top: var(--form--spacing-unit);
  margin-left: auto;
  margin-right: auto;
  width: min(calc(100vw - 2 * 20px), 60ch);
  width: min(var(--responsive--aligndefault-width), 60ch);
  max-width: 100%;
}

.wpcf7-submit {
  display: block;
  width: min(40ch, 100%);
  margin-left: auto;
  margin-right: auto;
}
.wpcf7-submit + .ajax-loader {
  position: absolute;
  margin: 0.5em;
  top: 0;
  left: 100%;
  transform: translateX(calc(-100% - 1em));
}

.wpcf7 form input:not([type=submit]),
.wpcf7 form select {
  width: 100%;
}
@media only screen and (min-width: 993px) {
  .wpcf7 form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1em;
    gap: 1em;
    grid-gap: var(--form--spacing-unit);
    gap: var(--form--spacing-unit);
  }
  .wpcf7 form > * {
    margin-top: 0;
  }
  .wpcf7 form > *:not([class]) {
    display: grid;
    align-content: flex-start;
    justify-content: flex-start;
    place-content: flex-start;
  }
  .wpcf7 form > *.wide, .wpcf7 form > *.wpcf7-response-output {
    grid-column: 1/-1;
  }
  .wpcf7 form > *.centered {
    grid-column: 2/3;
  }
}