/*!
Theme Name: Inspire Foundation
Theme URI: http://underscores.me/
Author: The Concept Stadium
Author URI: https://conceptstadium.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: inspire-foundation
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Inspire Foundation is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
:root {
  --header-height: 6rem;
}
@media screen and (max-width: 920px) {
  :root {
    --header-height: 5rem;
  }
}
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */
@media screen and (min-width: 920px) {
  .hide-on-desktop {
    display: none;
  }
}

@media screen and (max-width: 920px) {
  .hide-on-mobile {
    display: none;
  }
}

.has-decor {
  position: relative;
}
.has-decor::before {
  content: "";
  position: absolute;
  width: 15%;
  aspect-ratio: 1;
  pointer-events: none;
}
@media screen and (max-width: 920px) {
  .has-decor::before {
    display: none;
  }
}
.has-decor::after {
  content: "";
  position: absolute;
  width: 15%;
  aspect-ratio: 1;
  pointer-events: none;
}
@media screen and (max-width: 920px) {
  .has-decor::after {
    display: none;
  }
}

.has-decor-flower-top-left::before {
  background-image: url("img/flower.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: -1rem;
  left: -1rem;
}

.has-decor-heart-bottom-right::after {
  background-image: url("img/heart.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: -2rem;
  bottom: -5rem;
}

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
@font-face {
  font-family: "Rubik";
  src: url("./fonts/Rubik/Rubik-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 300 900;
}
html {
  font-size: 16px;
}
html body .site-main {
  font-size: 22px;
}
@media screen and (max-width: 1800px) {
  html body .site-main {
    font-size: 21px;
  }
}
@media screen and (max-width: 1500px) {
  html body .site-main {
    font-size: 20px;
  }
}
@media screen and (max-width: 920px) {
  html body .site-main {
    font-size: 16px;
  }
}
html body .site-main .has-small-font-size {
  font-size: 0.8em !important;
}
html body .site-main .has-medium-font-size {
  font-size: 1em !important;
}
html body .site-main .has-large-font-size {
  font-size: 2em !important;
}
html body .site-main .has-x-large-font-size {
  font-size: 3em !important;
}

body,
button,
input,
select,
optgroup,
textarea {
  color: #458ceb;
  font-family: "Rubik", "Arial", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  --wp--preset--font-size--small: 0.8rem!important;
  --wp--preset--font-size--normal: 1rem!important;
  --wp--preset--font-size--large: 2rem!important;
  --wp--preset--font-size--x-large: 3rem!important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  margin-top: 0.85em;
  margin-bottom: 0.85em;
  line-height: 1.1em;
  font-weight: 500;
}

h1 {
  font-size: 2.6em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.7em;
}

h4 {
  font-size: 1.4em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
}

p {
  margin-bottom: 1.2em;
}

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

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #000000;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

p strong {
  font-weight: 500;
}

.xdebug-var-dump {
  color: #dadada;
  background-color: #202020;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}
body.navigation-expanded {
  overflow: hidden;
}
body.scheme-dark {
  color: #ffffff;
}
body.scheme-light {
  color: #000000;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 0 0em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

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

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

figure {
  margin: 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  color: inherit;
  transition: 0.2s color ease;
}
a:visited {
  color: inherit;
}
a:hover, a:focus, a:active {
  color: #f28f1f;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

.scheme-light a:hover,
.scheme-dark a:hover {
  color: #ffe500;
}

/* Forms
--------------------------------------------- */
.button,
input[type=button],
input[type=reset],
input[type=submit] {
  display: inline-block;
  padding: 0.5em 1em 0.4em 1em;
  text-decoration: none;
  border: 0;
  border-radius: 0.75em;
  background-color: #cf1459;
  font-weight: 600;
  text-align: center;
  color: #ffffff !important;
  line-height: 1.1;
  transition: 0.1s background-color ease;
}
.button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  background-color: #f28f1f;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
select,
textarea {
  color: #458ceb;
  border: 1px solid #458ceb;
  border-radius: 0.5em;
  min-height: 3em;
  padding: 0.2em 0.7em;
  transition: 0.1s border-color ease;
  font-size: 1rem;
  line-height: 1;
  transition-property: color, border-color, background;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}
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=range]: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,
select:focus,
textarea:focus {
  color: #458ceb;
  outline: 0;
  border-color: #f28f1f;
}
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=range]::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,
select::placeholder,
textarea::placeholder {
  font-weight: 500;
}
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=range]::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,
select::placeholder,
textarea::placeholder {
  font-weight: 500;
}

select:focus {
  color: inherit;
}

textarea {
  width: 100%;
  resize: vertical;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
.wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.wrapper.wrapper--m {
  max-width: 920px;
}
.wrapper.wrapper--s {
  max-width: 640px;
}
.wrapper .wrapper {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 460px) {
  .wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.site {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}

body {
  width: 100%;
  overflow-x: hidden;
}

.site-main {
  width: 100%;
  overflow-x: hidden;
  padding-top: var(--header-height);
}

.no-top-padding .site-main {
  padding-top: 0;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Global
--------------------------------------------- */
.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  opacity: 1;
  z-index: 99;
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: 0s color;
}
.site-header .wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (max-width: 460px) {
  .site-header .wrapper {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.site-header .header-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  column-gap: 2rem;
  align-items: center;
  height: 100%;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 1rem;
  transition: 0.2s background-color ease, 0.2s box-shadow ease;
}
@media screen and (max-width: 1200px) {
  .site-header .header-container {
    padding-right: 0.3rem;
  }
}
@media screen and (max-width: 460px) {
  .site-header .header-container {
    padding-left: 0.5rem;
    padding-right: 0.3rem;
  }
}
.site-header .header-container .header-contents {
  display: flex;
  height: 100%;
  align-items: center;
  column-gap: 3rem;
}
@media screen and (max-width: 920px) {
  .site-header .header-container .header-contents {
    column-gap: 1.5rem;
  }
}
@media screen and (max-width: 640px) {
  .site-header .header-container .header-contents {
    column-gap: 0.5rem;
  }
}
.site-header .header-container .site-branding {
  flex-shrink: 0;
  line-height: 1.2;
  height: 100%;
}
.site-header .header-container .site-branding .site-logo {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transform-origin: left;
}
.site-header .header-container .site-branding .site-logo.desktop-logo {
  transform: scale(1.5);
}
.site-header .header-container .site-branding .site-logo svg {
  height: 60%;
  width: auto;
}
.site-header .header-container .site-branding .site-logo.mobile-logo {
  pointer-events: none;
  opacity: 0;
  transition: 0.2s opacity ease;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1rem;
}
@media screen and (max-width: 460px) {
  .site-header .header-container .site-branding .site-logo.mobile-logo {
    left: 0.5rem;
  }
}
.site-header .header-container .site-branding .site-title {
  margin: 0;
  font-weight: 600;
}
.site-header .header-container .site-branding .site-title a {
  text-decoration: none;
  font-size: 1.2rem;
}
.site-header .header-container .site-branding .site-description {
  margin: 0.5em 0 0 0;
}
@media screen and (max-width: 1200px) {
  .site-header .header-container .site-branding img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 460px) {
  .site-header .header-container .site-branding {
    flex-shrink: 1;
  }
}
.site-header .header-container .main-navigation {
  transition: 0.2s left ease-out, 0.2s opacity ease-out;
  height: 100%;
}
.site-header .header-container .main-navigation > div {
  height: 100%;
}
.site-header .header-container .main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  column-gap: 2rem;
  height: 100%;
  align-items: center;
}
.site-header .header-container .main-navigation ul li {
  text-align: center;
  height: 3rem;
  position: relative;
}
.site-header .header-container .main-navigation ul li ul {
  background-color: #458ceb;
  position: absolute;
  top: 100%;
  display: none;
  height: auto;
  min-width: 15rem;
}
.site-header .header-container .main-navigation ul li ul li {
  height: auto;
  text-align: left;
}
.site-header .header-container .main-navigation ul li ul li a {
  color: #ffffff;
  height: auto;
  width: 100%;
  display: block;
  padding: 0.25em 0.6em;
  transition: 0.1s background-color ease;
}
.site-header .header-container .main-navigation ul li ul li a:hover {
  background-color: #f28f1f;
}
.site-header .header-container .main-navigation ul li ul li a:focus {
  color: #ffffff;
}
.site-header .header-container .main-navigation ul li ul li ul {
  top: 0;
  left: 100%;
}
.site-header .header-container .main-navigation ul li:focus-within > ul, .site-header .header-container .main-navigation ul li:hover > ul {
  display: block;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
}
.site-header .header-container .main-navigation ul li a {
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  line-height: 1.1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .site-header .header-container .main-navigation {
    position: fixed;
    left: -20rem;
    top: var(--header-height);
    bottom: 1rem;
    width: 20rem;
    padding: 2rem 1rem;
    opacity: 0;
    overflow-y: auto;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
    background-color: #458ceb;
    max-width: 100vw;
    border-radius: 1rem;
    font-size: 16px;
    height: auto;
    max-width: calc(100% - 2rem);
  }
  .site-header .header-container .main-navigation > div {
    height: auto;
  }
  .site-header .header-container .main-navigation ul {
    flex-direction: column;
    width: 100%;
    row-gap: 0.3rnem;
    padding-left: 0;
    height: auto;
  }
  .site-header .header-container .main-navigation ul li {
    text-align: left;
    height: auto;
    width: 100%;
  }
  .site-header .header-container .main-navigation ul li a {
    padding: 0.25em 0.6em;
    height: auto;
    text-align: left;
    width: 100%;
    display: inline-block;
  }
  .site-header .header-container .main-navigation ul li a:hover {
    background-color: #f28f1f;
    color: #ffffff;
  }
  .site-header .header-container .main-navigation ul li ul {
    padding-top: 0.4em;
    padding-bottom: 0.3em;
    display: block;
    position: static;
    padding-left: 0.5em;
    min-width: unset;
  }
  .site-header .header-container .main-navigation ul li ul li a {
    display: inline-block;
    border-left: 1px solid #ffffff;
    padding: 0.35em 0.6em;
  }
  .site-header .header-container .main-navigation.navigation-expanded {
    left: 1rem;
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) and (max-width: 460px) {
  .site-header .header-container .main-navigation.navigation-expanded {
    left: 0.5rem;
  }
}
@media screen and (max-width: 460px) {
  .site-header .header-container .main-navigation {
    max-width: calc(100% - 1rem);
  }
}
.site-header .header-container .hamburger {
  width: 3rem;
  height: 3rem;
  padding: 0;
  border-radius: 0;
  border: 0;
  background-color: transparent;
  position: relative;
  flex-shrink: 0;
  display: none;
}
.site-header .header-container .hamburger::before, .site-header .header-container .hamburger::after {
  display: none;
}
.site-header .header-container .hamburger .hamburger-icon {
  width: 60%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.2s opacity ease-out;
}
.site-header .header-container .hamburger .hamburger-icon path[stroke] {
  stroke: #458ceb;
  transition: 0.2s stroke ease;
}
.site-header .header-container .hamburger[aria-expanded=false] .hamburger-icon.open-icon {
  opacity: 1;
}
.site-header .header-container .hamburger[aria-expanded=true] .hamburger-icon.close-icon {
  opacity: 1;
}
@media screen and (max-width: 1200px) {
  .site-header .header-container .hamburger {
    display: block;
  }
}
.site-header .header-container .hamburger:hover .hamburger-icon path[stroke] {
  stroke: #f28f1f;
}

@media screen and (max-width: 920px) {
  .site-header .header-container .site-branding .site-logo.desktop-logo {
    display: none;
    transform: scale(1);
  }
  .site-header .header-container .site-branding .site-logo.mobile-logo {
    opacity: 1;
    pointer-events: initial;
  }
  .site-header .header-container .site-branding .site-logo.mobile-logo svg path[fill] {
    fill: #458ceb;
  }
}
.navigation-expanded .site-header,
.scrolled .site-header {
  opacity: 1;
  color: #ffffff;
  position: fixed;
}
.navigation-expanded .site-header .header-container,
.scrolled .site-header .header-container {
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  background-color: #458ceb;
}
.navigation-expanded .site-header .header-container .main-navigation ul li a:hover,
.scrolled .site-header .header-container .main-navigation ul li a:hover {
  color: #ffe500;
}
@media screen and (max-width: 1200px) {
  .navigation-expanded .site-header .header-container .main-navigation ul li a:hover,
  .scrolled .site-header .header-container .main-navigation ul li a:hover {
    color: #ffffff;
  }
}
.navigation-expanded .site-header .header-container .main-navigation ul li a:focus,
.scrolled .site-header .header-container .main-navigation ul li a:focus {
  color: #ffe500;
}
@media screen and (max-width: 1200px) {
  .navigation-expanded .site-header .header-container .main-navigation ul li a:focus,
  .scrolled .site-header .header-container .main-navigation ul li a:focus {
    color: #ffffff;
  }
}
.navigation-expanded .site-header .header-container .main-navigation ul li ul li a:hover,
.scrolled .site-header .header-container .main-navigation ul li ul li a:hover {
  color: #ffffff;
}
.navigation-expanded .site-header .header-container .hamburger .hamburger-icon path[stroke],
.scrolled .site-header .header-container .hamburger .hamburger-icon path[stroke] {
  stroke: #ffffff;
}
.navigation-expanded .site-header .header-container .site-branding .site-logo.desktop-logo,
.scrolled .site-header .header-container .site-branding .site-logo.desktop-logo {
  display: none;
  transform: scale(1);
}
.navigation-expanded .site-header .header-container .site-branding .site-logo.mobile-logo,
.scrolled .site-header .header-container .site-branding .site-logo.mobile-logo {
  opacity: 1;
  pointer-events: initial;
}
.navigation-expanded .site-header .header-container .site-branding .site-logo.mobile-logo svg path[fill],
.scrolled .site-header .header-container .site-branding .site-logo.mobile-logo svg path[fill] {
  fill: #ffffff;
}
.navigation-expanded .site-header .header-container .socials a svg path[fill],
.scrolled .site-header .header-container .socials a svg path[fill] {
  fill: #ffffff;
}
.navigation-expanded .site-header .header-container .socials a:hover svg path[fill],
.scrolled .site-header .header-container .socials a:hover svg path[fill] {
  fill: #ffe500;
}

.scheme-light .site-header .header-container .hamburger .hamburger-icon path[stroke] {
  stroke: #000000;
}

.scheme-dark .site-header .header-container .hamburger .hamburger-icon path[stroke] {
  stroke: #ffffff;
}

.scheme-light .site-header .header-container .header-socials a svg path[fill] {
  fill: #000000;
}
.scheme-light .site-header .header-container .header-socials a:hover svg path[fill] {
  fill: #000000;
}
.scheme-light .site-header .header-container .site-branding .site-logo svg path {
  fill: #000000;
}
.scheme-light .site-header .header-container .site-branding .site-logo.mobile-logo svg path[fill] {
  fill: #000000;
}

.scheme-dark .site-header .header-container .header-socials a svg path[fill] {
  fill: #ffffff;
}
.scheme-dark .site-header .header-container .header-socials a:hover svg path[fill] {
  fill: #ffe500;
}
.scheme-dark .site-header .header-container .site-branding .site-logo svg path {
  fill: #ffffff;
}
.scheme-dark .site-header .header-container .site-branding .site-logo.mobile-logo svg path[fill] {
  fill: #ffffff;
}
.scheme-dark .site-header .header-container .socials a svg path[fill] {
  fill: #ffffff;
}
.scheme-dark .site-header .header-container .socials a:hover svg path[fill] {
  fill: #ffe500;
}

.footer-logos {
  padding: 2rem 0;
  background-color: #ffffff;
}
.footer-logos img {
  max-height: 6.5rem;
  width: auto;
  max-width: 24rem;
}
@media screen and (max-width: 1500px) {
  .footer-logos img {
    max-width: 22rem;
    max-height: 6rem;
  }
}
@media screen and (max-width: 1200px) {
  .footer-logos img {
    max-width: 20rem;
    max-height: 5rem;
  }
}
@media screen and (max-width: 920px) {
  .footer-logos img {
    max-width: 14rem;
    max-height: 4rem;
  }
}
.footer-logos .footer-logos-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  column-gap: 3rem;
  row-gap: 2rem;
}
.footer-logos .footer-logos-container a {
  text-decoration: none;
  display: block;
}
.footer-logos .footer-logos-container > * {
  flex-shrink: 1;
}
@media screen and (max-width: 460px) {
  .footer-logos .footer-logos-container {
    column-gap: 2rem;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
}

.site-footer {
  background-color: #458ceb;
  padding: 2rem 0;
  font-weight: 400;
  color: #ffffff;
}
.site-footer a {
  text-decoration: none;
}
.site-footer a:hover {
  color: #ffe500;
}
.site-footer .footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 2rem;
  row-gap: 1.5rem;
}
@media screen and (max-width: 640px) {
  .site-footer .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 320px) {
  .site-footer .footer-container {
    grid-template-columns: 1fr;
  }
}
.site-footer .footer-container .footer-column > *:first-child {
  margin-top: 0;
}
.site-footer .footer-container .footer-column > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  .site-footer .footer-container .footer-column:nth-child(2) {
    text-align: right;
  }
}
@media screen and (max-width: 320px) {
  .site-footer .footer-container .footer-column {
    text-align: center !important;
  }
  .site-footer .footer-container .footer-column p {
    text-align: center !important;
  }
}
.site-footer .footer-container a[href^="mailto:"] {
  word-break: break-all;
}
.site-footer .widgettitle {
  margin-top: 0;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}
.site-footer .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .menu li a {
  text-decoration: none;
  display: inline-block;
}
.site-footer p {
  margin: 0.8em 0;
}
.site-footer .socials {
  column-gap: 1.5rem;
}
@media screen and (max-width: 320px) {
  .site-footer .socials {
    width: 100%;
    justify-content: center;
  }
}
.site-footer .socials a {
  padding: 0;
  width: 22px;
  height: 22px;
}
.site-footer .socials a svg {
  width: 100%;
  height: 100%;
}
.site-footer .socials a svg path[fill] {
  fill: #ffffff;
}
.site-footer .socials a:hover svg path[fill] {
  fill: #ffe500;
}

.socials {
  display: flex;
  column-gap: 0.5rem;
}
@media screen and (max-width: 640px) {
  .socials {
    column-gap: 0;
  }
}
.socials a {
  text-decoration: none;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
}
.socials a svg {
  max-width: 100%;
  max-height: 100%;
}
.socials a svg path[fill] {
  transition: 0.1s fill ease;
  fill: #458ceb;
}
.socials a:hover svg path[fill] {
  fill: #f28f1f;
}

body.popup-open {
  overflow: hidden;
}

.popup {
  position: fixed;
  inset: 0;
  background-color: rgba(69, 140, 235, 0.7);
  z-index: 100;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.1s opacity ease-in-out;
}
.popup.open {
  opacity: 1;
  pointer-events: initial;
  visibility: visible;
}
.popup .popup-container {
  background-color: #ffffff;
  max-height: calc(100vh - 1rem);
  max-width: calc(100vw - 1rem);
  position: relative;
  border-radius: 1rem;
  width: 30rem;
}
.popup .popup-container .popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: transparent;
  padding: 0;
  min-height: unset;
  width: 2rem;
  height: 2rem;
  z-index: 2;
  border: 0;
}
.popup .popup-container .popup-close svg {
  width: 100%;
  height: 100%;
}
.popup .popup-container .popup-close svg [stroke] {
  stroke: #458ceb;
}
.popup .popup-container .popup-body {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  padding: 2rem 2rem 2rem 2rem;
  overflow-y: auto;
}
.popup .popup-container .popup-body > *:first-child {
  margin-top: 0;
}
.popup .popup-container .popup-body > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  .popup .popup-container .popup-body {
    padding: 2rem 1rem 2rem 1rem;
  }
}
.popup.donation-popup .popup-body {
  height: 500px;
  overflow: hidden;
}
.popup.donation-popup .popup-body iframe {
  max-height: 100%;
  overflow: hidden;
  height: 100% !important;
}

.floating-popup-trigger {
  position: absolute;
  width: 100px;
  height: 30px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  position: fixed;
  top: 50%;
  right: -50px;
  transform: rotate(-90deg) translateY(-50%);
  z-index: 98;
}

body.popup-open {
  overflow: hidden;
}

.popup {
  position: fixed;
  inset: 0;
  background-color: rgba(69, 140, 235, 0.7);
  z-index: 100;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.1s opacity ease-in-out;
}
.popup.open {
  opacity: 1;
  pointer-events: initial;
  visibility: visible;
}
.popup .popup-container {
  background-color: #ffffff;
  max-height: calc(100vh - 1rem);
  max-width: calc(100vw - 1rem);
  position: relative;
  border-radius: 1rem;
  width: 30rem;
}
.popup .popup-container .popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: transparent;
  padding: 0;
  min-height: unset;
  width: 2rem;
  height: 2rem;
  z-index: 2;
  border: 0;
}
.popup .popup-container .popup-close svg {
  width: 100%;
  height: 100%;
}
.popup .popup-container .popup-close svg [stroke] {
  stroke: #458ceb;
}
.popup .popup-container .popup-body {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  padding: 2rem 2rem 2rem 2rem;
  overflow-y: auto;
}
.popup .popup-container .popup-body > *:first-child {
  margin-top: 0;
}
.popup .popup-container .popup-body > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  .popup .popup-container .popup-body {
    padding: 2rem 1rem 2rem 1rem;
  }
}
.popup.donation-popup .popup-body {
  height: 500px;
  overflow: hidden;
}
.popup.donation-popup .popup-body iframe {
  max-height: 100%;
  overflow: hidden;
  height: 100% !important;
}

.floating-popup-trigger {
  position: absolute;
  width: 100px;
  height: 30px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  position: fixed;
  top: 50%;
  right: -50px;
  transform: rotate(-90deg) translateY(-50%);
  z-index: 98;
}

/* Blocks
--------------------------------------------- */
.has-primary-background-color {
  background-color: #458ceb;
}

.has-primary-color {
  color: #458ceb;
}

.has-purple-background-color {
  background-color: #bd63bf;
}

.has-purple-color {
  color: #bd63bf;
}

.has-aqua-background-color {
  background-color: #29a6de;
}

.has-aqua-color {
  color: #29a6de;
}

.has-green-background-color {
  background-color: #87c240;
}

.has-green-color {
  color: #87c240;
}

.has-yellow-background-color {
  background-color: #ffe500;
}

.has-yellow-color {
  color: #ffe500;
}

.has-orange-background-color {
  background-color: #f28f1f;
}

.has-orange-color {
  color: #f28f1f;
}

.has-red-background-color {
  background-color: #cf1459;
}

.has-red-color {
  color: #cf1459;
}

.wp-element-button {
  display: inline-block;
  padding: 0.5em 1em 0.4em 1em;
  text-decoration: none;
  border: 0;
  border-radius: 0.75em;
  background-color: #cf1459;
  font-weight: 600;
  text-align: center;
  color: #ffffff !important;
  line-height: 1.1;
  transition: 0.1s background-color ease;
  border: 1px solid #458ceb;
  background-color: transparent;
  color: #458ceb !important;
  font-size: 1rem;
}
.wp-element-button:hover {
  background-color: #f28f1f;
}
@media screen and (max-width: 1200px) {
  .wp-element-button {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 920px) {
  .wp-element-button {
    font-size: 0.8rem;
  }
}
.wp-element-button:hover {
  background-color: #458ceb;
  color: #ffffff !important;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 3em;
  column-gap: 3em;
  row-gap: 1.5em;
}

.wp-block-image .is-style-rounded img,
.wp-block-image.is-style-circle-mask img,
.wp-block-image.is-style-rounded img {
  border-radius: 1em;
}

.block-section {
  position: relative;
}
.block-section .section-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.block-section .section-wrapper {
  position: relative;
  z-index: 1;
}
.block-section .section-content {
  position: relative;
}
.block-section .section-content .section-content-container {
  position: relative;
  z-index: 1;
}
.block-section .section-content .section-sticker {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  transform: translateY(-50%);
}
@media screen and (max-width: 920px) {
  .block-section .section-content .section-sticker {
    display: none;
  }
}
.block-section .section-content .section-sticker svg {
  width: 100%;
  height: auto;
}
.block-section.has-rounded-corners .section-content-container {
  border-radius: 1rem;
}
.block-section.has-padding.padding-small .section-content-container {
  padding: 1.5rem;
}
.block-section.has-padding.padding-medium .section-content-container {
  padding: 3% 6%;
}
.block-section.has-padding.padding-large .section-content-container {
  padding: 4% 8%;
}
.block-section.has-background-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.block-tiles .section-title {
  text-align: center;
}
.block-tiles .tiles-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.block-tiles .tiles-container .tile {
  min-width: 12rem;
  width: calc(20% - 0.4rem);
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
}
.block-tiles .tiles-container .tile .tile-inner {
  border-radius: 1rem;
  aspect-ratio: 7/8;
  position: relative;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
  width: 100%;
  height: 100%;
}
.block-tiles .tiles-container .tile .tile-inner .tile-front,
.block-tiles .tiles-container .tile .tile-inner .tile-back {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}
.block-tiles .tiles-container .tile .tile-inner .tile-back {
  transform: rotateY(180deg);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.1;
}
.block-tiles .tiles-container .tile:hover .tile-inner {
  transform: rotateY(180deg);
}
.block-tiles .tiles-container .tile > * {
  width: 100%;
}
.block-tiles .tiles-container .tile > *:first-child {
  margin-top: 0;
}
.block-tiles .tiles-container .tile > *:last-child {
  margin-bottom: 0;
}

.block-testimonials {
  padding: 3rem 0;
}
.block-testimonials .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 920px) {
  .block-testimonials .section-title {
    margin-bottom: 3rem;
  }
}
.block-testimonials .testimonials {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}
@media screen and (max-width: 920px) {
  .block-testimonials .testimonials {
    row-gap: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .block-testimonials .testimonials {
    row-gap: 1.5rem;
  }
}
.block-testimonials .testimonials .testimonial .testimonial-content {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 4rem 3rem;
}
@media screen and (max-width: 1200px) {
  .block-testimonials .testimonials .testimonial .testimonial-content {
    padding: 3rem 2rem;
  }
}
@media screen and (max-width: 640px) {
  .block-testimonials .testimonials .testimonial .testimonial-content {
    padding: 2rem 1.5rem;
  }
}
.block-testimonials .testimonials .testimonial .testimonial-content .testimonial-meta .testimonial-title {
  font-size: 1.5em;
  margin-bottom: 0;
  line-height: 1;
  font-weight: 600;
  margin-top: 0;
}
.block-testimonials .testimonials .testimonial .testimonial-content .testimonial-meta .testimonial-description {
  color: #cf1459;
  font-size: 0.9em;
  line-height: 1.2;
}
.block-testimonials .testimonials .testimonial .testimonial-content .testimonial-text .quote-symbol {
  height: 0.85em;
}
.block-testimonials .testimonials .testimonial .testimonial-content .testimonial-text p {
  display: inline;
}
.block-testimonials .testimonials .testimonial .testimonial-content .testimonial-text > *:last-child {
  margin-bottom: 0;
}
.block-testimonials .testimonials .testimonial .testimonial-content .testimonial-author {
  margin: 0;
}
.block-testimonials .testimonials .testimonial.has-image {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.block-testimonials .testimonials .testimonial.has-image .testimonial-content {
  width: 75%;
  padding-left: 7rem;
}
@media screen and (max-width: 1200px) {
  .block-testimonials .testimonials .testimonial.has-image .testimonial-content {
    padding-left: 5.5rem;
  }
}
@media screen and (max-width: 920px) {
  .block-testimonials .testimonials .testimonial.has-image .testimonial-content {
    font-size: 0.9em;
    padding-left: 4rem;
  }
}
@media screen and (max-width: 640px) {
  .block-testimonials .testimonials .testimonial.has-image .testimonial-content {
    padding-left: 3.5rem;
    width: calc(100% - 8rem);
  }
}
@media screen and (max-width: 460px) {
  .block-testimonials .testimonials .testimonial.has-image .testimonial-content {
    padding-left: 1.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 460px) {
  .block-testimonials .testimonials .testimonial.has-image .testimonial-meta {
    min-height: 6rem;
    padding-left: 6rem;
  }
}
@media screen and (max-width: 320px) {
  .block-testimonials .testimonials .testimonial.has-image .testimonial-meta {
    min-height: 4rem;
    padding-left: 4rem;
  }
}
.block-testimonials .testimonials .testimonial.has-image .testimonial-image {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30%;
  height: calc(100% - 4rem);
  border-radius: 1rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.block-testimonials .testimonials .testimonial.has-image .testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
@media screen and (max-width: 640px) {
  .block-testimonials .testimonials .testimonial.has-image .testimonial-image {
    width: 10rem;
    height: auto;
    aspect-ratio: 1;
    transform: translateY(0);
    top: 2rem;
  }
}
@media screen and (max-width: 460px) {
  .block-testimonials .testimonials .testimonial.has-image .testimonial-image {
    width: 5rem;
    left: 1.5rem;
  }
}
@media screen and (max-width: 320px) {
  .block-testimonials .testimonials .testimonial.has-image .testimonial-image {
    width: 3rem;
  }
}
.block-testimonials .testimonials .testimonial.has-image:nth-child(even) {
  justify-content: flex-start;
}
.block-testimonials .testimonials .testimonial.has-image:nth-child(even) .testimonial-content {
  padding-left: 3rem;
  padding-right: 7rem;
}
@media screen and (max-width: 1200px) {
  .block-testimonials .testimonials .testimonial.has-image:nth-child(even) .testimonial-content {
    padding-right: 5.5rem;
    padding-left: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .block-testimonials .testimonials .testimonial.has-image:nth-child(even) .testimonial-content {
    padding-right: 1.5rem;
    padding-left: 3.5rem;
  }
}
@media screen and (max-width: 920px) {
  .block-testimonials .testimonials .testimonial.has-image:nth-child(even) .testimonial-content {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
@media screen and (max-width: 460px) {
  .block-testimonials .testimonials .testimonial.has-image:nth-child(even) .testimonial-content {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.block-testimonials .testimonials .testimonial.has-image:nth-child(even) .testimonial-image {
  left: unset;
  right: 0;
}
@media screen and (max-width: 460px) {
  .block-testimonials .testimonials .testimonial.has-image:nth-child(even) .testimonial-image {
    right: unset;
    left: 1.5rem;
  }
}

.block-features .section-title {
  text-align: center;
}
.block-features .features-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.block-features .features-container .feature {
  border-radius: 1rem;
  border: 1px solid #458ceb;
  flex: 0 1 calc(33.333% - 0.668rem);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 920px) {
  .block-features .features-container .feature {
    flex-basis: 100%;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 460px) {
  .block-features .features-container .feature {
    padding: 1rem;
  }
}
.block-features .features-container .feature .feature-top {
  display: flex;
  flex-direction: column;
  max-width: 20rem;
}
.block-features .features-container .feature .feature-button-wrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.block-features .features-container .feature .feature-icon {
  margin-bottom: 1rem;
}
.block-features .features-container .feature .feature-icon svg {
  height: 4rem;
  width: auto;
  max-width: 80%;
}
.block-features .features-container .feature .feature-title-wrap {
  min-height: 3em;
  padding-bottom: 1em;
}
.block-features .features-container .feature .feature-title-wrap p {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}
.block-features .features-container .feature > *:first-child {
  margin-top: 0;
}
.block-features .features-container .feature > *:last-child {
  margin-bottom: 0;
}
.block-features .features-container .feature .button {
  border: 1px solid #458ceb;
  background-color: transparent;
  color: #458ceb !important;
  font-size: 1rem;
  margin-top: 2.5em;
}
@media screen and (max-width: 1200px) {
  .block-features .features-container .feature .button {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 920px) {
  .block-features .features-container .feature .button {
    font-size: 0.8rem;
  }
}
.block-features .features-container .feature .button:hover {
  background-color: #458ceb;
  color: #ffffff !important;
}
.block-features .features-container .feature.centered {
  text-align: center;
  align-items: center;
  justify-content: center;
}
.block-features .features-container .feature.centered .feature-top {
  flex-grow: 0;
}
.block-features .features-container .feature.has-icon {
  line-height: 1.2;
}
.block-features .features-container .feature.has-icon.centered {
  justify-content: flex-start;
}
.block-features .features-container .feature.expand {
  flex-grow: 1;
}
.block-features .features-container .feature.has-custom-background .button {
  border-color: #ffffff;
  color: #ffffff !important;
}
.block-features .features-container .feature.has-custom-background .button:hover {
  background-color: #ffffff;
}
.block-features .features-container .feature.thick-border {
  border-width: 2px;
}
.block-features .features-container .feature.big-icon svg {
  height: 8rem;
}
@media screen and (max-width: 920px) {
  .block-features .features-container .feature.big-icon svg {
    height: 6rem;
  }
}
.block-features .features-container .feature.hover-effect {
  transition-property: background-color, color;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}
.block-features .features-container .feature.hover-effect:hover {
  background-color: #458ceb;
  color: #ffffff;
}
.block-features .features-container .feature.hover-effect:hover .button {
  border-color: #ffffff !important;
  background-color: #ffffff !important;
}
.block-features .features-container .feature.hover-effect:hover .button:hover {
  color: #458ceb !important;
}
@media screen and (max-width: 920px) {
  .block-features .features-container.count-1 .feature, .block-features .features-container.count-2 .feature {
    flex-basis: calc(50% - 0.5rem);
  }
}
@media screen and (max-width: 460px) {
  .block-features .features-container.count-1 .feature, .block-features .features-container.count-2 .feature {
    flex-basis: 100%;
  }
}
.block-features .features-container.count-4 .feature {
  flex-basis: calc(25% - 0.75rem);
  padding: 1.5rem 1rem 1rem 1rem;
}
@media screen and (max-width: 1200px) {
  .block-features .features-container.count-4 .feature {
    flex-basis: calc(50% - 0.5rem);
  }
}
@media screen and (max-width: 640px) {
  .block-features .features-container.count-4 .feature {
    flex-basis: 100%;
  }
}

.expandable-content {
  margin: 3rem 0;
}
.expandable-content .expandable-content-container {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.expandable-content .expandable-content-container > *:first-child {
  margin-top: 0;
}
.expandable-content .expandable-content-container > *:last-child {
  margin-bottom: 0;
}
.expandable-content .button {
  margin-top: 1.5rem;
  border: 1px solid #458ceb;
  background-color: transparent;
  color: #458ceb !important;
  font-size: 1rem;
}
@media screen and (max-width: 1200px) {
  .expandable-content .button {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 920px) {
  .expandable-content .button {
    font-size: 0.8rem;
  }
}
.expandable-content .button:hover {
  background-color: #458ceb;
  color: #ffffff !important;
}
.expandable-content.expanded .expandable-content-container {
  overflow: initial;
  display: block;
  -webkit-line-clamp: unset;
  text-overflow: unset;
}
.expandable-content.expanded .button {
  opacity: 0.5;
  cursor: not-allowed;
  display: none;
}

.team-container {
  display: grid;
  list-style: none;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 460px) {
  .team-container {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 640px) {
  .team-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 320px) {
  .team-container {
    grid-template-columns: 1fr;
  }
}
.team-container .team-member {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #458ceb;
  display: grid;
  grid-template-rows: auto 1fr;
}
.team-container .team-member .team-member-image {
  aspect-ratio: 1;
  background-color: #f2f2f2;
}
.team-container .team-member .team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}
.team-container .team-member .team-member-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  row-gap: 1.5em;
  padding: 1.35em 1em;
}
@media screen and (max-width: 920px) {
  .team-container .team-member .team-member-details {
    padding: 1em 0.5em;
  }
}
.team-container .team-member .team-member-details .team-member-details-top .team-member-name {
  font-weight: bold;
  margin: 0;
}
.team-container .team-member .team-member-details .team-member-details-top .team-member-designation {
  margin: 0;
}
.team-container .team-member .team-member-details .team-member-details-bottom .button {
  border: 1px solid #458ceb;
  background-color: transparent;
  color: #458ceb !important;
  font-size: 1rem;
}
@media screen and (max-width: 1200px) {
  .team-container .team-member .team-member-details .team-member-details-bottom .button {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 920px) {
  .team-container .team-member .team-member-details .team-member-details-bottom .button {
    font-size: 0.8rem;
  }
}
.team-container .team-member .team-member-details .team-member-details-bottom .button:hover {
  background-color: #458ceb;
  color: #ffffff !important;
}

.team-member-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.2;
}

.team-member-designation {
  margin-top: 0;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1.5em;
}

.team-member-title + .team-member-designation {
  margin-top: 0.5em;
}

.team-member-content {
  margin-top: 1.5em;
}
.team-member-content > *:last-child {
  margin-bottom: 0;
}

.cwi {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 7rem;
  margin-bottom: 4rem;
}
.cwi .cwi-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 55%;
  transform: translateY(-3rem);
  border-radius: 1rem;
  overflow: hidden;
}
.cwi .cwi-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}
.cwi .cwi-content {
  width: 80%;
  background-color: #458ceb;
  border-radius: 1rem;
  color: #ffffff;
  padding: 2.5em 2.5em;
  padding-left: 40%;
  min-height: 16em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cwi .cwi-content > *:first-child {
  margin-top: 0;
}
.cwi .cwi-content > *:last-child {
  margin-bottom: 0;
}
.cwi .cwi-content .cwi-content-wrapper > *:first-child {
  margin-top: 0;
}
.cwi .cwi-content .cwi-button-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1em;
  row-gap: 1em;
}
.cwi .cwi-content .cwi-button-wrapper > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1em;
  row-gap: 1em;
  justify-content: center;
}
.cwi .cwi-content .cwi-button-wrapper .before-button-text {
  margin: 0 1rem 0 0;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1;
}
.cwi .cwi-content .button {
  border: 1px solid #458ceb;
  background-color: transparent;
  color: #458ceb !important;
  font-size: 1rem;
  background-color: #ffffff;
  border-color: #ffffff;
  min-width: 6em;
}
@media screen and (max-width: 1200px) {
  .cwi .cwi-content .button {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 920px) {
  .cwi .cwi-content .button {
    font-size: 0.8rem;
  }
}
.cwi .cwi-content .button:hover {
  background-color: #458ceb;
  color: #ffffff !important;
}
.cwi .cwi-content .button:hover {
  color: #ffffff !important;
  border-color: #ffffff;
  background-color: transparent;
}
.cwi.position-right {
  justify-content: flex-start;
}
.cwi.position-right .cwi-image {
  right: 0;
  left: auto;
}
.cwi.position-right .cwi-content {
  padding-left: 2.5em;
  padding-right: 40%;
}
@media screen and (max-width: 640px) {
  .cwi {
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: -2rem;
  }
  .cwi .cwi-image {
    width: 100%;
    aspect-ratio: 2/1;
    transform: translateY(0);
    position: relative;
    z-index: 1;
  }
  .cwi .cwi-content {
    text-align: center;
    transform: translateY(-3rem);
    width: 100%;
    padding: 5rem 2rem 2rem 2rem;
    padding-left: 2rem;
    position: relative;
    z-index: 0;
    width: 90%;
  }
  .cwi .cwi-content .cwi-button-wrapper {
    justify-content: center;
  }
  .cwi.position-right .cwi-content {
    padding: 5rem 2rem 2rem 2rem;
    padding-right: 2rem;
  }
}

.block-cta {
  padding: 8rem 0;
  font-size: 1rem;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
}
@media screen and (max-width: 920px) {
  .block-cta {
    padding-bottom: 4rem;
  }
}
.block-cta .section-content {
  position: static;
}
.block-cta .cta-content {
  width: 45%;
  position: relative;
  z-index: 1;
}
.block-cta .cta-content > *:first-child {
  margin-top: 0;
}
.block-cta .cta-content > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 920px) {
  .block-cta .cta-content {
    width: 100%;
  }
}
.block-cta .cta-button {
  margin-top: 3em;
  position: relative;
  z-index: 1;
}
.block-cta .cta-button .button {
  border-color: #ffffff;
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
}
.block-cta .cta-button .button:hover {
  background-color: #cf1459;
  border: 1px solid #cf1459;
}
.block-cta .cta-decor {
  position: absolute;
  aspect-ratio: 1;
  max-height: 120%;
  z-index: 0;
}
.block-cta .cta-decor svg {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.block-cta .cta-decor.cta-decor1 {
  width: 45%;
  right: 0;
  top: -3rem;
}
@media screen and (max-width: 920px) {
  .block-cta .cta-decor.cta-decor1 {
    width: 20%;
    top: -4rem;
    right: 15%;
  }
}
.block-cta .cta-decor.cta-decor2 {
  width: 15%;
  right: -14%;
  top: -8rem;
}
.block-cta .cta-decor.cta-decor3 {
  width: 10%;
  left: 40%;
  top: -6rem;
}
.block-cta .cta-decor.cta-decor4 {
  width: 8%;
  right: 0%;
  bottom: -4rem;
}
@media screen and (max-width: 920px) {
  .block-cta .cta-decor.cta-decor4 {
    bottom: unset;
    top: -5rem;
    right: unset;
    left: 15%;
  }
}

.block-pricing .pricing-button-wrapper {
  display: flex;
  justify-content: center;
  margin: 3em 0;
}
.block-pricing .pricing-button-wrapper .pricing-button {
  font-size: 1rem;
}
.block-pricing .pricing-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 920px) {
  .block-pricing .pricing-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 460px) {
  .block-pricing .pricing-items {
    grid-template-columns: 1fr;
  }
}
.block-pricing .pricing-items .pricing-item {
  padding: 1.5em 1em;
  border-radius: 1rem;
  border: 1px solid #458ceb;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.block-pricing .pricing-items .pricing-item p {
  line-height: 1;
}
.block-pricing .pricing-items .pricing-item p:first-of-type {
  margin-top: 0;
}
.block-pricing .pricing-items .pricing-item p:last-of-type {
  margin-bottom: 0;
}
.block-pricing .pricing-items .pricing-item .pricing-title {
  font-weight: 600;
  margin-bottom: 0.7em;
}
.block-pricing .pricing-items .pricing-item .pricing-price {
  font-size: 2.5em;
  margin: 0;
  font-weight: 600;
}
.block-pricing .pricing-items .pricing-item .pricing-period {
  text-transform: uppercase;
}
.block-pricing .pricing-items .pricing-item .pricing-text {
  line-height: 1.35;
  margin-top: 2em;
}
.block-pricing .pricing-items .pricing-item .button {
  border: 1px solid #458ceb;
  background-color: transparent;
  color: #458ceb !important;
  font-size: 1rem;
  margin-top: 2em;
}
@media screen and (max-width: 1200px) {
  .block-pricing .pricing-items .pricing-item .button {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 920px) {
  .block-pricing .pricing-items .pricing-item .button {
    font-size: 0.8rem;
  }
}
.block-pricing .pricing-items .pricing-item .button:hover {
  background-color: #458ceb;
  color: #ffffff !important;
}

.block-testimonials-grid .section-title {
  text-align: center;
  margin-bottom: 2em;
}
.block-testimonials-grid .testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 920px) {
  .block-testimonials-grid .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 460px) {
  .block-testimonials-grid .testimonials {
    grid-template-columns: 1fr;
  }
}
.block-testimonials-grid .testimonials .testimonial {
  border-radius: 1rem;
  border: 1px solid #458ceb;
  text-align: center;
  overflow: hidden;
}
.block-testimonials-grid .testimonials .testimonial .testimonial-image {
  aspect-ratio: 1;
}
.block-testimonials-grid .testimonials .testimonial .testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-testimonials-grid .testimonials .testimonial .testimonial-meta {
  padding: 1.5em 1em;
}
.block-testimonials-grid .testimonials .testimonial .testimonial-meta > *:first-child p {
  margin-top: 0;
}
.block-testimonials-grid .testimonials .testimonial .testimonial-meta > *:last-child p {
  margin-bottom: 0;
}
.block-testimonials-grid .testimonials .testimonial .testimonial-meta .testimonial-title {
  margin-top: 0;
  font-size: 1em;
  margin-bottom: 1.5em;
}
.block-testimonials-grid .testimonials .testimonial .testimonial-meta .testimonial-description {
  font-size: 0.8em;
}

.block-hero {
  height: 100vh;
  min-height: 36rem;
  text-align: center;
}
.block-hero .section-wrapper,
.block-hero .wrapper,
.block-hero .section-content,
.block-hero .section-content-container {
  height: 100%;
}
.block-hero .section-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  mix-blend-mode: multiply;
}
.block-hero .section-content-container {
  display: grid;
  place-items: center;
}
.block-hero .section-content-container .hero-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}
.block-hero .section-content-container .hero-items .hero-title {
  margin: 0;
  font-size: 3em;
}
.block-hero .section-content-container .hero-items .hero-text {
  max-width: 20em;
  margin: 0;
}
.block-hero .section-content-container .hero-items .hero-button {
  background-color: transparent;
  border: 1px solid #ffffff;
}
.block-hero .section-content-container .hero-items .hero-button:hover {
  background-color: #458ceb;
  border: 1px solid #458ceb;
}
.block-hero .section-content-container .hero-tagline {
  position: absolute;
  bottom: 5em;
  left: 50%;
  transform: translateX(-50%);
  width: 20em;
  height: auto;
  max-width: 70%;
}
.block-hero .section-content-container .hero-tagline svg {
  width: 100%;
  height: auto;
}
.block-hero .section-content-container .hero-arrow {
  position: absolute;
  bottom: 1.5em;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: auto;
}
.block-hero .section-content-container .hero-arrow svg {
  width: 100%;
  height: auto;
}

.block-wysiwyg.has-content-background .button {
  background-color: transparent;
  border: 1px solid #efefef;
  font-size: 1rem;
}
.block-wysiwyg.has-content-background .button:hover {
  background-color: #cf1459;
  border-color: #cf1459;
}

.icons-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6%;
}
@media screen and (max-width: 920px) {
  .icons-container {
    max-width: 30em;
    margin-left: auto;
    margin-right: auto;
  }
}
.icons-container .icon-tile {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-decoration: none;
  text-align: center;
  width: 20.5%;
}
@media screen and (max-width: 920px) {
  .icons-container .icon-tile {
    width: 47%;
  }
}
.icons-container .icon-tile .icon-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: 0.1s transform ease-in-out;
}
.icons-container .icon-tile .icon-image svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.icons-container .icon-tile .icon-title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: rgba(0, 0, 0, 0.5) 0 0 30px;
}
.icons-container .icon-tile:hover .icon-image {
  transform: scale(1.05);
}

.block-icons .button-wrapper {
  text-align: center;
}
.block-icons .icons-content-block {
  margin: 3em 0;
}
.block-icons .button {
  border: 1px solid #ffffff;
  background-color: transparent;
  border-radius: 0.5em;
  padding: 0.75em 0.75em;
}
.block-icons .button:hover {
  background-color: #cf1459;
  border-color: #cf1459;
}

.gallery-slider .gallery-image {
  aspect-ratio: 3/4;
}
.gallery-slider .gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
}

.block-faq .wrapper {
  border-radius: 15px;
  background: #F2F2F2;
  padding-top: 80px;
  padding-bottom: 25px;
}
.block-faq .faq-header {
  text-align: center;
  margin-bottom: 5rem;
}
.block-faq .faq-header .section-title {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 30px;
  color: #458ceb;
}
.block-faq .faq-header .section-subtitle {
  margin: 0;
  color: #458ceb;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.block-faq .faq-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.block-faq .faq-categories .faq-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid currentColor;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}
.block-faq .faq-categories .faq-category .category-icon {
  width: 4rem;
  height: 4rem;
}
.block-faq .faq-categories .faq-category .category-icon svg {
  width: 100%;
  height: 100%;
}
.block-faq .faq-categories .faq-category .category-icon svg path, .block-faq .faq-categories .faq-category .category-icon svg rect, .block-faq .faq-categories .faq-category .category-icon svg circle, .block-faq .faq-categories .faq-category .category-icon svg polygon {
  fill: currentColor;
  transition: fill 0.3s ease;
}
.block-faq .faq-categories .faq-category:hover, .block-faq .faq-categories .faq-category.active {
  background-color: #458ceb;
  border-color: #458ceb;
  color: #fff !important;
}
.block-faq .faq-categories .faq-category:hover .category-icon svg path, .block-faq .faq-categories .faq-category:hover .category-icon svg rect, .block-faq .faq-categories .faq-category:hover .category-icon svg circle, .block-faq .faq-categories .faq-category:hover .category-icon svg polygon, .block-faq .faq-categories .faq-category.active .category-icon svg path, .block-faq .faq-categories .faq-category.active .category-icon svg rect, .block-faq .faq-categories .faq-category.active .category-icon svg circle, .block-faq .faq-categories .faq-category.active .category-icon svg polygon {
  fill: currentColor;
}
.block-faq .faq-categories .faq-category .category-title {
  margin: 0;
  font-size: 1.25rem;
  text-align: center;
}
.block-faq .faq-content .faq-category-content {
  display: none;
}
.block-faq .faq-content .faq-category-content.active {
  display: block;
}
.block-faq .faq-content .faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.block-faq .faq-content .faq-item .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  font-size: 24px;
  font-style: normal;
  line-height: 1.4;
  text-transform: capitalize;
  padding: 30px;
}
.block-faq .faq-content .faq-item .faq-question .faq-toggle {
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
  position: relative;
}
.block-faq .faq-content .faq-item .faq-question .faq-toggle::before, .block-faq .faq-content .faq-item .faq-question .faq-toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.3s ease;
}
.block-faq .faq-content .faq-item .faq-question .faq-toggle::before {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}
.block-faq .faq-content .faq-item .faq-question .faq-toggle::after {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.block-faq .faq-content .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.block-faq .faq-content .faq-item.active {
  border-radius: 15px;
  background: #458ceb;
  padding: 30px;
  margin-bottom: 15px;
}
.block-faq .faq-content .faq-item.active .faq-question {
  color: white;
  padding: 0;
  margin-bottom: 20px;
}
.block-faq .faq-content .faq-item.active .faq-toggle::after {
  transform: translateX(-50%) rotate(90deg);
}
.block-faq .faq-videos {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.block-faq .faq-videos .video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 640px) {
  .block-faq .faq-videos .video-grid {
    grid-template-columns: 1fr;
  }
}
.block-faq .faq-videos .video-item .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
}
.block-faq .faq-videos .video-item .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block-faq .faq-videos .video-item .video-title {
  margin: 1rem 0 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: #458ceb;
}

.container-block {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.container-block.container-width-narrow {
  max-width: 800px;
}
.container-block.container-width-default {
  max-width: 1200px;
}
.container-block.container-width-wide {
  max-width: 1600px;
}
.container-block.container-width-full {
  max-width: none;
}
.container-block.container-padding-none {
  padding: 0;
}
.container-block.container-padding-small {
  padding: 1rem;
}
.container-block.container-padding-medium {
  padding: 2rem;
}
.container-block.container-padding-large {
  padding: 4rem;
}
.container-block .container-inner {
  height: auto;
  min-height: 0;
  display: flow-root;
  overflow: visible;
}
.container-block .container-inner > .block-editor-inner-blocks {
  width: 100%;
}
.container-block .container-inner .wp-block {
  max-width: 100%;
}

/* Splide
--------------------------------------------- */
/* Glightbox
--------------------------------------------- */
.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: none;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
.glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
.gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gslide-image img {
  border-radius: 1em;
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-top .gslide-image img,
.desc-bottom .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
.desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  /* max-width: 160vmin; */
  margin: auto;
}

.gslide-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.desc-top .gslide-media,
.desc-bottom .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.gslide-description.description-left,
.gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
.gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}

/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/
.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
.glightbox-closing .gprev,
.glightbox-closing .gclose {
  opacity: 0 !important;
}

/*Skin */
.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

/*CSS Animations*/
.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@-webkit-keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
  .glightbox-container .ginner-container.desc-top .gslide-image img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left,
  .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    -webkit-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner,
  .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gprev,
  .glightbox-clean .gnext,
  .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gprev:hover,
  .glightbox-clean .gnext:hover,
  .glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}
/* Navigation
--------------------------------------------- */
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}
.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
  gap: 1em;
  margin-top: 2em;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 calc(50% - 0.5em);
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 calc(50% - 0.5em);
}
.comment-navigation a,
.posts-navigation a,
.post-navigation a {
  display: inline-block;
  padding: 0.5em 1em 0.4em 1em;
  text-decoration: none;
  border: 0;
  border-radius: 0.75em;
  background-color: #cf1459;
  font-weight: 600;
  text-align: center;
  color: #ffffff !important;
  line-height: 1.1;
  transition: 0.1s background-color ease;
  border: 1px solid #458ceb;
  background-color: transparent;
  color: #458ceb !important;
  font-size: 1rem;
}
.comment-navigation a:hover,
.posts-navigation a:hover,
.post-navigation a:hover {
  background-color: #f28f1f;
}
@media screen and (max-width: 1200px) {
  .comment-navigation a,
  .posts-navigation a,
  .post-navigation a {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 920px) {
  .comment-navigation a,
  .posts-navigation a,
  .post-navigation a {
    font-size: 0.8rem;
  }
}
.comment-navigation a:hover,
.posts-navigation a:hover,
.post-navigation a:hover {
  background-color: #458ceb;
  color: #ffffff !important;
}
.comment-navigation .nav-previous a,
.posts-navigation .nav-previous a,
.post-navigation .nav-previous a {
  text-align: left;
}
.comment-navigation .nav-next a,
.posts-navigation .nav-next a,
.post-navigation .nav-next a {
  text-align: right;
}

/* Posts and pages
--------------------------------------------- */
.after-event {
  background: rgb(69, 140, 235);
  background: linear-gradient(0deg, #458ceb 0%, rgba(255, 255, 255, 0) 100%);
  font-size: 22px;
  padding-bottom: 3em;
}
@media screen and (max-width: 1800px) {
  .after-event {
    font-size: 21px;
  }
}
@media screen and (max-width: 1500px) {
  .after-event {
    font-size: 20px;
  }
}
@media screen and (max-width: 920px) {
  .after-event {
    font-size: 16px;
  }
}
.after-event .has-small-font-size {
  font-size: 0.8em !important;
}
.after-event .has-medium-font-size {
  font-size: 1em !important;
}
.after-event .has-large-font-size {
  font-size: 2em !important;
}
.after-event .has-x-large-font-size {
  font-size: 3em !important;
}
.after-event .after-event-section {
  color: #ffffff;
  margin: 5em 0;
}
.after-event .after-event-section .section-title {
  text-align: center;
  color: #ffffff;
}
.after-event .after-event-section:nth-of-type(1) {
  color: #458ceb;
}
.after-event .after-event-section:nth-of-type(1) .section-title {
  color: #458ceb;
}
.after-event .post-end-buttons .plain-button {
  color: #ffffff !important;
}

.speakers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 640px) {
  .speakers {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 460px) {
  .speakers {
    grid-template-columns: 1fr;
  }
}
.speakers .speaker {
  border: 1px solid #458ceb;
  border-radius: 1rem;
  overflow: hidden;
}
.speakers .speaker-image {
  background-image: url("img/profile-placeholder.jpg");
  aspect-ratio: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.speakers .speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}
.speakers .speaker-content {
  background-color: #ffffff;
  text-align: center;
  padding: 2em 1em;
}
.speakers .speaker-content .speaker-title {
  margin: 0 0 1em 0;
  font-weight: 600;
}
.speakers .speaker-content .speaker-description {
  margin: 1em 0 0 0;
}

.sticky {
  display: block;
}

.post,
.page {
  margin: 0;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.entry-header {
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 920px) {
  .entry-header {
    margin-bottom: 3rem;
  }
}
.entry-header .entry-title {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.1;
}
@media screen and (max-width: 1500px) {
  .entry-header .entry-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .entry-header .entry-title {
    font-size: 2.4rem;
  }
}

.page-intro {
  height: clamp(12rem, 33vw, 32rem);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 2rem;
  position: relative;
}
.page-intro h1 {
  font-size: 2em;
}
.page-intro h2 {
  font-size: 1.5em;
}
@media screen and (max-width: 920px) {
  .page-intro {
    display: block;
    height: auto;
    margin-bottom: 0;
  }
}
.page-intro .page-intro-image {
  height: clamp(12rem, 33vw, 32rem);
  border-radius: 1rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
@media screen and (max-width: 1200px) {
  .page-intro .page-intro-image {
    border-radius: 0;
  }
}
@media screen and (max-width: 920px) {
  .page-intro .page-intro-image {
    position: static;
    width: 100%;
  }
}
.page-intro .page-intro-container {
  width: 50%;
  border-radius: 1rem;
  background-color: #458ceb;
  color: #ffffff;
  padding: 4% 3%;
  transform: translate(-2rem, 2rem);
  position: relative;
  z-index: 1;
}
.page-intro .page-intro-container .intro-decor {
  position: absolute;
  width: 10rem;
  aspect-ratio: 1;
  left: -5rem;
  bottom: -5rem;
}
.page-intro .page-intro-container .intro-decor svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 920px) {
  .page-intro .page-intro-container .intro-decor {
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    bottom: -4rem;
  }
}
@media screen and (max-width: 920px) {
  .page-intro .page-intro-container {
    transform: translate(0, -2rem);
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 640px) {
  .page-intro .page-intro-container {
    padding: 2rem 3rem;
  }
}
@media screen and (max-width: 460px) {
  .page-intro .page-intro-container {
    width: calc(100% - 2rem);
    padding: 1.5rem 2rem;
  }
}
.page-intro .page-intro-container > *:first-child {
  margin-top: 0;
}
.page-intro .page-intro-container > *:last-child {
  margin-bottom: 0;
}
.page-intro.size-large {
  margin-bottom: 12rem;
}
@media screen and (max-width: 920px) {
  .page-intro.size-large {
    margin-bottom: 2rem;
  }
}
.page-intro.size-large .page-intro-container {
  width: 75%;
  transform: translate(-2rem, 12rem);
}
@media screen and (max-width: 920px) {
  .page-intro.size-large .page-intro-container {
    width: calc(100% - 4rem);
    transform: translate(0, -2rem);
  }
}
@media screen and (max-width: 460px) {
  .page-intro.size-large .page-intro-container {
    width: calc(100% - 2rem);
  }
}
.page-intro.size-small .page-intro-container {
  width: 33%;
}
@media screen and (max-width: 1200px) {
  .page-intro.size-small .page-intro-container {
    width: 50%;
  }
}
@media screen and (max-width: 920px) {
  .page-intro.size-small .page-intro-container {
    width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 460px) {
  .page-intro.size-small .page-intro-container {
    width: calc(100% - 2rem);
  }
}

.posts-loop {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 640px) {
  .posts-loop {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 460px) {
  .posts-loop {
    grid-template-columns: 1fr;
  }
}

.post {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #458ceb;
  display: grid;
  grid-template-rows: auto 1fr;
}
.post .post-thumbnail {
  display: block;
  aspect-ratio: 16/10;
}
.post .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}
@media screen and (max-width: 460px) {
  .post .post-thumbnail {
    aspect-ratio: 5/2;
  }
}
.post .post-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 1.5em;
  padding: 0.5rem 2rem;
}
@media screen and (max-width: 1200px) {
  .post .post-details {
    padding: 0.5rem 1rem;
  }
}
.post .post-details .post-date {
  margin: 0.5em 0;
  font-size: 0.7em;
}
.post .post-details .post-title {
  font-size: 1em;
  font-weight: 600;
  margin: 0;
}
.post .post-details .post-title a {
  text-decoration: none;
}
.post .post-details .button {
  margin: 0.5em 0;
  border: 1px solid #458ceb;
  background-color: transparent;
  color: #458ceb !important;
  font-size: 1rem;
}
@media screen and (max-width: 1200px) {
  .post .post-details .button {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 920px) {
  .post .post-details .button {
    font-size: 0.8rem;
  }
}
.post .post-details .button:hover {
  background-color: #458ceb;
  color: #ffffff !important;
}

.first-post {
  margin-bottom: 1.5em;
}
.first-post .first-article .first-article-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 1rem;
  border: 1px solid #458ceb;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .first-post .first-article .first-article-container {
    grid-template-columns: 2fr 3fr;
  }
}
@media screen and (max-width: 640px) {
  .first-post .first-article .first-article-container {
    grid-template-columns: 1fr;
  }
}
.first-post .first-article .first-article-container .first-article-image {
  height: 100%;
}
.first-post .first-article .first-article-container .post-thumbnail {
  min-height: 16rem;
  height: 100%;
  display: block;
  position: relative;
}
@media screen and (max-width: 640px) {
  .first-post .first-article .first-article-container .post-thumbnail {
    min-height: unset;
    aspect-ratio: 16/9;
  }
}
.first-post .first-article .first-article-container .post-thumbnail img {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.first-post .first-article .first-article-container .first-article-details {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12% 10%;
}
@media screen and (max-width: 640px) {
  .first-post .first-article .first-article-container .first-article-details {
    padding: 2em 1.5em;
  }
}
.first-post .first-article .first-article-container .first-article-details .post-title {
  font-size: 1.5em;
  margin-top: 0;
  font-weight: 600;
  line-height: 1.1;
}
@media screen and (max-width: 640px) {
  .first-post .first-article .first-article-container .first-article-details .post-title {
    font-size: 1.35em;
  }
}
.first-post .first-article .first-article-container .first-article-details a {
  text-decoration: none;
}
.first-post .first-article .first-article-container .first-article-details .button {
  border: 1px solid #458ceb;
  background-color: transparent;
  color: #458ceb !important;
  font-size: 1rem;
}
@media screen and (max-width: 1200px) {
  .first-post .first-article .first-article-container .first-article-details .button {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 920px) {
  .first-post .first-article .first-article-container .first-article-details .button {
    font-size: 0.8rem;
  }
}
.first-post .first-article .first-article-container .first-article-details .button:hover {
  background-color: #458ceb;
  color: #ffffff !important;
}

.blog-navigation {
  margin-bottom: 2em;
}
.blog-navigation .blog-navigation-container {
  display: flex;
  gap: 0.5em;
  justify-content: center;
}
.blog-navigation .blog-navigation-container a {
  display: inline-block;
  padding: 0.5em 1em 0.4em 1em;
  text-decoration: none;
  border: 0;
  border-radius: 0.75em;
  background-color: #cf1459;
  font-weight: 600;
  text-align: center;
  color: #ffffff !important;
  line-height: 1.1;
  transition: 0.1s background-color ease;
  border: 1px solid #458ceb;
  background-color: transparent;
  color: #458ceb !important;
  font-size: 1rem;
}
.blog-navigation .blog-navigation-container a:hover {
  background-color: #f28f1f;
}
@media screen and (max-width: 1200px) {
  .blog-navigation .blog-navigation-container a {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 920px) {
  .blog-navigation .blog-navigation-container a {
    font-size: 0.8rem;
  }
}
.blog-navigation .blog-navigation-container a:hover {
  background-color: #458ceb;
  color: #ffffff !important;
}
.blog-navigation .blog-navigation-container a:hover {
  background-color: #f28f1f !important;
  border-color: #f28f1f;
}
.blog-navigation .blog-navigation-container a.active {
  background-color: #458ceb;
  color: #ffffff !important;
}

.single-post .site-main {
  padding-bottom: 2rem;
}
.single-post .entry-header .entry-title {
  margin-bottom: 0;
}
.single-post .post-thumbnail {
  text-align: center;
}
.single-post .post-thumbnail img {
  vertical-align: middle;
  border-radius: 1rem;
  max-height: 32rem;
  width: auto;
  max-width: 100%;
}

.share-button {
  background-color: #458ceb !important;
  position: relative;
  min-width: 7rem;
  border: 1px solid #ffffff;
}
.share-button .share-buttons {
  position: absolute;
  right: 0;
  bottom: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 0.3em;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s opacity ease-in-out;
  padding-bottom: 0.5em;
  border-radius: 1rem;
  font-size: 0.8em;
}
@media screen and (max-width: 920px) {
  .share-button .share-buttons {
    font-size: 1em;
  }
}
.share-button .share-buttons .button {
  background-color: #458ceb !important;
  border: 1px solid #ffffff;
}
.share-button .share-buttons .button:hover {
  background-color: #cf1459 !important;
}
.share-button:hover {
  background-color: #f28f1f !important;
}
.share-button:hover .share-buttons {
  opacity: 1;
  pointer-events: initial;
}

.post-end-buttons {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.post-end-buttons .plain-button {
  background-color: transparent;
  border: 0;
  padding: 0;
  color: #458ceb !important;
  font-weight: 400;
  font-size: 22px;
}
@media screen and (max-width: 1800px) {
  .post-end-buttons .plain-button {
    font-size: 21px;
  }
}
@media screen and (max-width: 1500px) {
  .post-end-buttons .plain-button {
    font-size: 20px;
  }
}
@media screen and (max-width: 920px) {
  .post-end-buttons .plain-button {
    font-size: 16px;
  }
}
.post-end-buttons .plain-button .has-small-font-size {
  font-size: 0.8em !important;
}
.post-end-buttons .plain-button .has-medium-font-size {
  font-size: 1em !important;
}
.post-end-buttons .plain-button .has-large-font-size {
  font-size: 2em !important;
}
.post-end-buttons .plain-button .has-x-large-font-size {
  font-size: 3em !important;
}

.projects-loop {
  padding-top: 2em;
}
.projects-loop .project {
  margin-bottom: 6em;
}
@media screen and (max-width: 640px) {
  .projects-loop .project {
    margin-bottom: 5em;
  }
}

.single-project .page-intro .page-intro-container {
  text-align: center;
}
.single-project .page-intro .page-intro-container h2 {
  margin-top: 0;
}
.single-project .page-intro .page-intro-container > p:first-of-type {
  margin-top: 0;
}
.single-project .page-intro .page-intro-container > p:last-of-type {
  margin-bottom: 0;
}

.project-content {
  margin-top: 8em;
  margin-bottom: 4em;
}
@media screen and (max-width: 920px) {
  .project-content {
    margin-top: 4em;
  }
}

.project {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  position: relative;
}
.project::before {
  content: "";
  background-color: #458ceb;
  width: 85%;
  height: calc(100% + 4em);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  position: absolute;
  border-radius: 1rem;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .project {
    gap: 1em;
  }
}
.project .button {
  border: 1px solid #458ceb;
  background-color: transparent;
  color: #458ceb !important;
  font-size: 1rem;
  border-color: #ffffff;
  color: #ffffff !important;
}
@media screen and (max-width: 1200px) {
  .project .button {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 920px) {
  .project .button {
    font-size: 0.8rem;
  }
}
.project .button:hover {
  background-color: #458ceb;
  color: #ffffff !important;
}
.project .button:hover {
  background-color: #ffffff;
  color: #458ceb !important;
}
.project .post-thumbnail {
  width: 25%;
  aspect-ratio: 1/1;
  display: inline-block;
  border: 2px solid #458ceb;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
  align-self: flex-start;
}
.project .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.project .post-details {
  color: #ffffff;
  width: calc(75% - 2em);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 3em 0 0;
}
@media screen and (max-width: 640px) {
  .project .post-details {
    padding-right: 1em;
  }
}
.project .post-details .post-details-top {
  flex-grow: 1;
  padding-bottom: 1em;
}
.project .post-details .post-details-top .post-title {
  font-size: 1.5em;
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  .project .post-details .post-details-top .post-title {
    font-size: 1.2em;
  }
}
.project .post-details .post-details-top .post-title a {
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  .project .post-details .post-details-top .post-excerpt {
    font-size: 0.9em;
  }
}

.other-projects {
  background-color: #458ceb;
  padding: 4em 0;
  color: #ffffff;
}
.other-projects .section-title {
  margin-top: 0;
  text-align: center;
  margin-bottom: 1em;
}
.other-projects .other-projects-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
}
@media screen and (max-width: 640px) {
  .other-projects .other-projects-container {
    flex-direction: column;
  }
}
.other-projects .other-projects-container .project {
  margin-bottom: 0;
  width: calc(33% - 0.3em);
  flex-direction: column;
  border-radius: 1em;
  border: 1px solid #ffffff;
  overflow: hidden;
  row-gap: 0;
}
.other-projects .other-projects-container .project::before {
  display: none;
}
@media screen and (max-width: 640px) {
  .other-projects .other-projects-container .project {
    padding: 2em 0;
    flex-direction: row;
    width: 100%;
    column-gap: 0;
    border: 0;
    border-radius: 0;
  }
  .other-projects .other-projects-container .project:not(:last-child) {
    border-bottom: 1px solid #ffffff;
  }
}
.other-projects .other-projects-container .project .post-thumbnail {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0;
  border: 0;
}
@media screen and (max-width: 640px) {
  .other-projects .other-projects-container .project .post-thumbnail {
    width: 30%;
    border: 1px solid #ffffff;
    border-radius: 1em;
  }
}
.other-projects .other-projects-container .project .post-details {
  padding: 0;
  width: 100%;
  padding: max(1em, 10%);
}
@media screen and (max-width: 640px) {
  .other-projects .other-projects-container .project .post-details {
    width: 70%;
    padding: 0 1em 0 1em;
  }
}
.other-projects .other-projects-container .project .post-details .post-details-top .post-title {
  font-size: 1.2em;
}
.other-projects .other-projects-container .project .post-details .post-details-top .post-excerpt {
  display: none;
}

.project-gallery {
  padding: 4em 0;
}
.project-gallery .section-title {
  margin-top: 0;
  text-align: center;
  margin-bottom: 1em;
}
.project-gallery .project-gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.project-gallery .project-gallery-container .project-gallery-item {
  flex-basis: calc((100% - 2.5em) / 6);
  flex-shrink: 1;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 0.5em;
}
@media screen and (max-width: 1200px) {
  .project-gallery .project-gallery-container .project-gallery-item {
    flex-basis: calc((100% - 2em) / 5);
  }
}
@media screen and (max-width: 920px) {
  .project-gallery .project-gallery-container .project-gallery-item {
    flex-basis: calc((100% - 1.5em) / 4);
  }
}
@media screen and (max-width: 640px) {
  .project-gallery .project-gallery-container .project-gallery-item {
    flex-basis: calc((100% - 1em) / 3);
  }
}
@media screen and (max-width: 460px) {
  .project-gallery .project-gallery-container .project-gallery-item {
    flex-basis: calc((100% - 0.5em) / 2);
  }
}
.project-gallery .project-gallery-container .project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-partners {
  padding: 4em 0 6em 0;
}
.project-partners .section-title {
  margin-top: 0;
  text-align: center;
  margin-bottom: 1em;
}
.project-partners .project-partners-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  margin-top: 4em;
}
.project-partners .project-partners-container .project-partner {
  text-decoration: none;
  display: inline-block;
  width: 9em;
  aspect-ratio: 3;
}
@media screen and (max-width: 640px) {
  .project-partners .project-partners-container .project-partner {
    width: 6em;
  }
}
.project-partners .project-partners-container .project-partner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.project-gallery + .project-partners {
  padding-top: 0;
}

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

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}
.widget select {
  max-width: 100%;
}

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

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
:root {
  --tec-color-text-primary: $color__primary;
  --tec-border-radius-default: 1em;
  --tec-color-icon-active: $color__primary;
  --tec-line-height-1: 1.2;
  --tec-color-text-secondary: $color__red;
  --tec-color-icon-primary: $color__primary;
  --tec-color-icon-active: $color__primary;
}

body .tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
  padding-top: calc(var(--header-height) + 2rem);
  max-width: 1200px;
}
body .tribe-common--breakpoint-medium.tribe-common .tribe-common-l-container {
  padding-left: 2rem;
  padding-right: 2rem;
}
body .tribe-common--breakpoint-medium.tribe-common .tribe-common-l-container .wrapper {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 460px) {
  body .tribe-common--breakpoint-medium.tribe-common .tribe-common-l-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
body .tribe-events .tribe-events-l-container {
  padding-top: calc(var(--header-height) + 1rem);
}
body .tribe-common--breakpoint-medium.tribe-events .tribe-events-header--has-event-search .tribe-events-c-events-bar {
  border-radius: 1.5rem;
  overflow: hidden;
}
body .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-events-bar__search-container {
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}
body .tribe-events .tribe-events-c-view-selector--tabs .tribe-events-c-view-selector__content {
  border-radius: 1rem;
}
body .tribe-common .tribe-common-c-btn, body .tribe-common .tribe-common-c-btn:focus, body .tribe-common .tribe-common-c-btn:hover, body .tribe-common a.tribe-common-c-btn, body .tribe-common a.tribe-common-c-btn:focus, body .tribe-common a.tribe-common-c-btn:hover, body .tribe-common button.tribe-common-c-btn, body .tribe-common button.tribe-common-c-btn:focus, body .tribe-common button.tribe-common-c-btn:hover {
  border-radius: 1em;
}
body .tribe-common .tribe-common-form-control-text__input:focus {
  outline: 0;
}
body .tribe-events-calendar-list__event-venue-title {
  color: #cf1459;
  font-weight: 400 !important;
}
body .tribe-events .tribe-events-calendar-list__event-featured-image {
  border-radius: 1rem;
  max-height: 15rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body .tribe-common.tribe-common--breakpoint-medium button.tribe-events-c-top-bar__datepicker-button {
  font-size: 1em;
}
body .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-top-bar__datepicker-button-icon-svg path {
  fill: #458ceb !important;
}
body .tribe-events .tribe-events-calendar-month__calendar-event-tooltip-featured-image {
  border-radius: 1rem;
}
body .tribe-events .tribe-events-calendar-month__calendar-event-title-link,
body .tribe-events .tribe-events-calendar-month__calendar-event-tooltip-title-link {
  line-height: 1.2;
}
body .tribe-events-calendar-latest-past__event-featured-image,
body .tribe-events-event-image {
  text-align: center;
}
body .tribe-events-calendar-latest-past__event-featured-image img,
body .tribe-events-event-image img {
  border-radius: 1rem;
  max-height: 32rem;
  width: auto;
  display: inline-block;
}
body #tribe-events-pg-template {
  padding-top: calc(var(--header-height) + 2rem);
  max-width: 1200px;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 0;
}
body #tribe-events-pg-template .wrapper {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 460px) {
  body #tribe-events-pg-template {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
body .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button,
body .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button {
  display: flex;
  align-items: center;
}
body .tribe-events-single-event-title {
  text-align: center;
  line-height: 1;
}
body .tribe-events-schedule h2 {
  width: auto;
  text-align: center;
}
body .tribe-events-schedule {
  justify-content: center;
  margin-top: 0;
}
body .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-nav__next-icon-svg path,
body .tribe-events .tribe-events-c-nav__next:focus .tribe-events-c-nav__next-icon-svg path,
body .tribe-events .tribe-events-c-nav__next:hover .tribe-events-c-nav__next-icon-svg path,
body .tribe-events button.tribe-events-c-nav__next:focus .tribe-events-c-nav__next-icon-svg path,
body .tribe-events button.tribe-events-c-nav__next:hover .tribe-events-c-nav__next-icon-svg path {
  fill: #458ceb;
}
body .tribe-events .datepicker .day {
  padding: 7px 5px 4px 5px;
}
body .tribe-events .datepicker .day.current {
  color: #ffe500;
}
body .tribe-events .tribe-events-calendar-list__event-date-tag-weekday {
  background-color: #458ceb;
  color: #ffffff;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  padding-top: 0.7rem;
}
body .tribe-events .tribe-events-calendar-list__event-date-tag-daynum {
  background-color: #458ceb;
  color: #ffffff;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  padding-bottom: 0.6rem;
}
body abbr[title] {
  text-decoration: none;
}
body .tribe-events .datepicker .month.current {
  color: #ffe500;
}
body .tribe-events-back {
  display: none;
}
@media screen and (min-width: 768px) {
  body .tribe-events-calendar-list__event-row {
    position: relative;
    padding-left: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  body .tribe-events-calendar-list__event-row:before {
    inset: -1rem 15% -1rem 1.5rem;
    position: absolute;
    content: "";
    background-color: transparent;
    border: 1px solid #458ceb;
    border-radius: 1rem;
    z-index: -1;
  }
}
body .tribe-events .tribe-events-calendar-list__event-date-tag {
  width: 70px;
  margin-right: 1rem;
}
body .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-date-tag {
  min-width: 120px;
}
body .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-row {
  margin-top: calc(var(--tec-spacer-8) + 2rem);
  margin-bottom: calc(var(--tec-spacer-6) + 2rem);
}
body .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__month-separator + .tribe-events-calendar-list__event-row {
  margin-top: calc(var(--tec-spacer-5) + 2rem);
}
body .tribe-events .tribe-events-calendar-list__event-featured-image-link:focus,
body .tribe-events .tribe-events-calendar-list__event-featured-image-link:hover {
  opacity: 1;
}
body .tribe-events-sub-nav {
  padding-left: 0;
}
body .tribe-events-sub-nav .tribe-events-nav-previous,
body .tribe-events-sub-nav .tribe-events-nav-next {
  display: inline-block;
  padding: 0.5em 1em 0.4em 1em;
  text-decoration: none;
  border: 0;
  border-radius: 0.75em;
  background-color: #cf1459;
  font-weight: 600;
  text-align: center;
  color: #ffffff !important;
  line-height: 1.1;
  transition: 0.1s background-color ease;
  border: 1px solid #458ceb;
  background-color: transparent;
  color: #458ceb !important;
  font-size: 1rem;
}
body .tribe-events-sub-nav .tribe-events-nav-previous:hover,
body .tribe-events-sub-nav .tribe-events-nav-next:hover {
  background-color: #f28f1f;
}
@media screen and (max-width: 1200px) {
  body .tribe-events-sub-nav .tribe-events-nav-previous,
  body .tribe-events-sub-nav .tribe-events-nav-next {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 920px) {
  body .tribe-events-sub-nav .tribe-events-nav-previous,
  body .tribe-events-sub-nav .tribe-events-nav-next {
    font-size: 0.8rem;
  }
}
body .tribe-events-sub-nav .tribe-events-nav-previous:hover,
body .tribe-events-sub-nav .tribe-events-nav-next:hover {
  background-color: #458ceb;
  color: #ffffff !important;
}
body .tribe-events-sub-nav .tribe-events-nav-previous:empty,
body .tribe-events-sub-nav .tribe-events-nav-next:empty {
  opacity: 0;
  pointer-events: none;
}
body .tribe-events-sub-nav .tribe-events-nav-previous {
  text-align: left;
}
body .tribe-events-sub-nav .tribe-events-nav-next {
  text-align: right;
}

body .gform_wrapper .ginput_container select,
body .gform_wrapper .ginput_container input,
body .gform_wrapper .ginput_container textarea {
  color: #458ceb;
  border: 1px solid #458ceb;
  border-radius: 0.5em;
  min-height: 3em;
  padding: 0.2em 0.7em;
  transition: 0.1s border-color ease;
  font-size: 1rem;
  line-height: 1;
  transition-property: color, border-color, background;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}
body .gform_wrapper .ginput_container select:focus,
body .gform_wrapper .ginput_container input:focus,
body .gform_wrapper .ginput_container textarea:focus {
  color: #458ceb;
  outline: 0;
  border-color: #f28f1f;
}
body .gform_wrapper .ginput_container select::placeholder,
body .gform_wrapper .ginput_container input::placeholder,
body .gform_wrapper .ginput_container textarea::placeholder {
  font-weight: 500;
}
body .gform_wrapper .ginput_container select:focus,
body .gform_wrapper .ginput_container input:focus,
body .gform_wrapper .ginput_container textarea:focus {
  outline: 0;
  box-shadow: none;
}
body .gform_wrapper .ginput_container select {
  font-weight: 500;
  line-height: 2.5em;
}
body .gform_wrapper .ginput_container select:focus {
  color: #458ceb;
}
body .gform_wrapper .ginput_container textarea {
  padding: 0.9em 0.7em;
}
body .gform_wrapper .gfield_label {
  color: inherit;
}
body .gform_wrapper .gfield_label .gfield_required {
  color: #cf1459;
}
body .gform_wrapper .gform_footer input[type=submit].gform_button {
  display: inline-block;
  padding: 0.5em 1em 0.4em 1em;
  text-decoration: none;
  border: 0;
  border-radius: 0.75em;
  background-color: #cf1459;
  font-weight: 600;
  text-align: center;
  color: #ffffff !important;
  line-height: 1.1;
  transition: 0.1s background-color ease;
}
body .gform_wrapper .gform_footer input[type=submit].gform_button:hover {
  background-color: #f28f1f;
}
body.scheme-light .gform_wrapper .ginput_container select,
body.scheme-light .gform_wrapper .ginput_container input,
body.scheme-light .gform_wrapper .ginput_container textarea, body.scheme-dark .gform_wrapper .ginput_container select,
body.scheme-dark .gform_wrapper .ginput_container input,
body.scheme-dark .gform_wrapper .ginput_container textarea {
  border-color: #ffffff;
  background-color: #458ceb;
  color: #ffffff;
}
body.scheme-light .gform_wrapper .ginput_container select::placeholder,
body.scheme-light .gform_wrapper .ginput_container input::placeholder,
body.scheme-light .gform_wrapper .ginput_container textarea::placeholder, body.scheme-dark .gform_wrapper .ginput_container select::placeholder,
body.scheme-dark .gform_wrapper .ginput_container input::placeholder,
body.scheme-dark .gform_wrapper .ginput_container textarea::placeholder {
  color: #ffffff;
}
body .gform-theme--foundation .gfield textarea.large {
  min-height: 10rem;
}
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
  display: inline-block;
  padding: 0.5em 1em 0.4em 1em;
  text-decoration: none;
  border: 0;
  border-radius: 0.75em;
  background-color: #cf1459;
  font-weight: 600;
  text-align: center;
  color: #ffffff !important;
  line-height: 1.1;
  transition: 0.1s background-color ease;
  background-color: #bd63bf;
  min-width: 10em;
}
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover {
  background-color: #f28f1f;
}
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover {
  background-color: #cf1459;
}
body.scheme-light .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), body.scheme-light .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), body.scheme-light .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), body.scheme-dark .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), body.scheme-dark .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), body.scheme-dark .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
  background-color: #458ceb;
  border: 1px solid #ffffff;
}
body.scheme-light .gform-theme--framework .gform_validation_errors .gform-icon,
body.scheme-light .gform-theme--framework .gform_validation_errors .gform_submission_error, body.scheme-dark .gform-theme--framework .gform_validation_errors .gform-icon,
body.scheme-dark .gform-theme--framework .gform_validation_errors .gform_submission_error {
  color: #ffe500;
}
body.scheme-light .gform-theme--framework .gform_validation_errors .gform-icon, body.scheme-dark .gform-theme--framework .gform_validation_errors .gform-icon {
  border-color: #ffe500;
}
body.scheme-light .gform-theme--framework .gform_validation_errors, body.scheme-dark .gform-theme--framework .gform_validation_errors {
  border: 1px solid #ffe500;
  border-radius: 1rem;
  background-color: transparent;
}
body.scheme-light .gform-theme--framework .gfield_validation_message, body.scheme-dark .gform-theme--framework .gfield_validation_message {
  color: #ffe500;
}
body .gform-theme--foundation .gform_footer, body .gform-theme--foundation .gform_page_footer {
  align-items: flex-start;
  height: auto;
  justify-content: center;
}
body .gform-theme--foundation .gform_footer br, body .gform-theme--foundation .gform_page_footer br {
  display: none;
}
body .gform_required_legend {
  display: none;
}
body .gform-theme--foundation .gform_fields {
  column-gap: 1rem;
  row-gap: 1.5rem;
}

body .root-data-givewp-embed {
  height: 100%;
  overflow: hidden;
}
body .givewp-layouts-section__fieldset__legend legend {
  color: #458ceb;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #458ceb;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

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

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/*# sourceMappingURL=style.css.map */
