@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Hind&family=Montserrat:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap");

/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

html {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

/**
Add the correct font weight in Edge and Safari.
*/

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

/**
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.
*/

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button { /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='reset'] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-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; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

::-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; /* 1 */
  font: inherit; /* 2 */
}

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */


h1,
h2,
h3,
h4,
hr,
p {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: Hind, sans-serif; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #8F8F8F;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  color: #8F8F8F;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #8F8F8F;
}

button,
[role="button"] {
  cursor: pointer;
}

/**
 * Override legacy focus reset from Normalize with modern Firefox focus styles.
 *
 * This is actually an improvement over the new defaults in Firefox in our testing,
 * as it triggers the better focus styles even for links, which still use a dotted
 * outline in Firefox by default.
 */

h1,
h2,
h3,
h4 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

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

/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */

[hidden] {
  display: none;
}

*, ::before, ::after{
  --tw-border-opacity: 1;
  border-color: rgba(201, 201, 201, var(--tw-border-opacity));
}

.container{
  width: 100%;
}

@media (min-width: 100%){
  .container{
    max-width: 100%;
  }
}

@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}

@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}

.visible{
  visibility: visible !important;
}

.absolute{
  position: absolute !important;
}

.relative{
  position: relative !important;
}

.top-1{
  top: 0.25rem !important;
}

.right-0{
  right: 0px !important;
}

.bottom-0{
  bottom: 0px !important;
}

.bottom-10{
  bottom: 2.5rem !important;
}

.mx-auto{
  margin-left: auto !important;
  margin-right: auto !important;
}

.mt-3{
  margin-top: 0.75rem !important;
}

.mt-5{
  margin-top: 1.25rem !important;
}

.mt-6{
  margin-top: 1.5rem !important;
}

.mt-10{
  margin-top: 2.5rem !important;
}

.mt-auto{
  margin-top: auto !important;
}

.mr-3{
  margin-right: 0.75rem !important;
}

.mb-0{
  margin-bottom: 0px !important;
}

.mb-2{
  margin-bottom: 0.5rem !important;
}

.mb-3{
  margin-bottom: 0.75rem !important;
}

.mb-5{
  margin-bottom: 1.25rem !important;
}

.mb-10{
  margin-bottom: 2.5rem !important;
}

.ml-3{
  margin-left: 0.75rem !important;
}

.ml-5{
  margin-left: 1.25rem !important;
}

.ml-auto{
  margin-left: auto !important;
}

.block{
  display: block !important;
}

.inline-block{
  display: inline-block !important;
}

.flex{
  display: flex !important;
}

.hidden{
  display: none !important;
}

.h-full{
  height: 100% !important;
}

.min-h-screen{
  min-height: 100vh !important;
}

.w-full{
  width: 100% !important;
}

.max-w-none{
  max-width: none !important;
}

.max-w-md{
  max-width: 28rem !important;
}

.max-w-lg{
  max-width: 32rem !important;
}

.flex-1{
  flex: 1 1 0% !important;
}

.transform{
  --tw-translate-x: 0 !important;
  --tw-translate-y: 0 !important;
  --tw-rotate: 0 !important;
  --tw-skew-x: 0 !important;
  --tw-skew-y: 0 !important;
  --tw-scale-x: 1 !important;
  --tw-scale-y: 1 !important;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}

@-webkit-keyframes spin{
  to{
    transform: rotate(360deg);
  }
}

@keyframes spin{
  to{
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes pulse{
  50%{
    opacity: .5;
  }
}

@keyframes pulse{
  50%{
    opacity: .5;
  }
}

@-webkit-keyframes bounce{
  0%, 100%{
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@keyframes bounce{
  0%, 100%{
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.cursor-pointer{
  cursor: pointer !important;
}

.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.flex-col{
  flex-direction: column !important;
}

.items-end{
  align-items: flex-end !important;
}

.items-center{
  align-items: center !important;
}

.gap-5{
  gap: 1.25rem !important;
}

.gap-10{
  gap: 2.5rem !important;
}

.overflow-hidden{
  overflow: hidden !important;
}

.rounded-md{
  border-radius: 0.375rem !important;
}

.rounded-xl{
  border-radius: 0.75rem !important;
}

.border{
  border-width: 1px !important;
}

.border-r{
  border-right-width: 1px !important;
}

.border-b{
  border-bottom-width: 1px !important;
}

.border-green{
  --tw-border-opacity: 1 !important;
  border-color: rgba(35, 133, 139, var(--tw-border-opacity)) !important;
}

.border-gray-200{
  --tw-border-opacity: 1 !important;
  border-color: rgba(201, 201, 201, var(--tw-border-opacity)) !important;
}

.bg-white{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.bg-green-100{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(199, 236, 218, var(--tw-bg-opacity)) !important;
}

.bg-orange-700{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(236, 168, 121, var(--tw-bg-opacity)) !important;
}

.hover\:bg-green:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(35, 133, 139, var(--tw-bg-opacity)) !important;
}

.hover\:bg-orange:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(167, 81, 21, var(--tw-bg-opacity)) !important;
}

.p-5{
  padding: 1.25rem !important;
}

.px-0{
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.px-3{
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.px-5{
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.px-8{
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-2{
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-5{
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.pt-5{
  padding-top: 1.25rem !important;
}

.pt-10{
  padding-top: 2.5rem !important;
}

.pr-2{
  padding-right: 0.5rem !important;
}

.pr-3{
  padding-right: 0.75rem !important;
}

.pr-5{
  padding-right: 1.25rem !important;
}

.pb-2{
  padding-bottom: 0.5rem !important;
}

.pb-3{
  padding-bottom: 0.75rem !important;
}

.pb-5{
  padding-bottom: 1.25rem !important;
}

.pb-16{
  padding-bottom: 4rem !important;
}

.pl-2{
  padding-left: 0.5rem !important;
}

.pl-3{
  padding-left: 0.75rem !important;
}

.text-left{
  text-align: left !important;
}

.font-serif{
  font-family: Montserrat, serif !important;
}

.text-xs{
  font-size: 0.75rem !important;
  line-height: 1rem !important;
}

.text-sm{
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}

.text-base{
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}

.text-xl{
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
}

.text-2xl{
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}

.text-3xl{
  font-size: 1.875rem !important;
  line-height: 2.25rem !important;
}

.text-4xl{
  font-size: 2.25rem !important;
  line-height: 2.5rem !important;
}

.text-6xl{
  font-size: 3.75rem !important;
  line-height: 1 !important;
}

.font-medium{
  font-weight: 500 !important;
}

.font-semibold{
  font-weight: 600 !important;
}

.font-bold{
  font-weight: 700 !important;
}

.uppercase{
  text-transform: uppercase !important;
}

.lowercase{
  text-transform: lowercase !important;
}

.capitalize{
  text-transform: capitalize !important;
}

.normal-case{
  text-transform: none !important;
}

.leading-7{
  line-height: 1.75rem !important;
}

.leading-none{
  line-height: 1 !important;
}

.leading-tight{
  line-height: 1.25 !important;
}

.leading-snug{
  line-height: 1.375 !important;
}

.tracking-wide{
  letter-spacing: 0.025em !important;
}

.text-white{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.text-green{
  --tw-text-opacity: 1 !important;
  color: rgba(35, 133, 139, var(--tw-text-opacity)) !important;
}

.text-yellow{
  --tw-text-opacity: 1 !important;
  color: rgba(149, 156, 80, var(--tw-text-opacity)) !important;
}

.text-orange{
  --tw-text-opacity: 1 !important;
  color: rgba(167, 81, 21, var(--tw-text-opacity)) !important;
}

.text-gray-200{
  --tw-text-opacity: 1 !important;
  color: rgba(201, 201, 201, var(--tw-text-opacity)) !important;
}

.text-gray-300{
  --tw-text-opacity: 1 !important;
  color: rgba(168, 168, 168, var(--tw-text-opacity)) !important;
}

.text-gray-600{
  --tw-text-opacity: 1 !important;
  color: rgba(89, 89, 89, var(--tw-text-opacity)) !important;
}

.hover\:text-white:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.hover\:text-black:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(20, 20, 20, var(--tw-text-opacity)) !important;
}

.hover\:text-orange:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(167, 81, 21, var(--tw-text-opacity)) !important;
}

.underline{
  text-decoration: underline !important;
}

*, ::before, ::after{
  --tw-shadow: 0 0 #0000;
}

.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

*, ::before, ::after{
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

a, a:hover {
  transition: all 0.4s;
}

p {
  font-family: Hind, sans-serif;
  font-weight: 400;
}

.tag-p {
  font-family: Montserrat, serif;
  font-weight: 700;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgba(168, 168, 168, var(--tw-text-opacity));
}

h1, h2, h3, h4 {
  font-family: Montserrat, serif;
}

header {
  z-index: 102;
}

@media (max-width: 1280px) {
  header .logo {
    max-width: 190px;
  }
}

header .menu > li {
  margin-left: 1.25rem;
  display: inline-block;
  font-family: Montserrat, serif;
}

header .menu > li .sub-menu {
  display: none;
  position: absolute;
  padding-top: 1.25rem;
}

header .menu > li .sub-menu li {
  min-width: 180px;
  width: 100%;
  display: inline-block;
  clear: both;
  float: left;
}

header .menu > li .sub-menu li a {
  display: inline-block;
  width: 100%;
  border-width: 0px;
  --tw-bg-opacity: 1;
  background-color: rgba(209, 138, 89, var(--tw-bg-opacity));
}

header .menu > li .sub-menu li a:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(167, 81, 21, var(--tw-bg-opacity));
}

header .menu > li .sub-menu li a{
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

header .menu > li .sub-menu li.current-menu-item a {
  --tw-bg-opacity: 1;
  background-color: rgba(167, 81, 21, var(--tw-bg-opacity));
}

header .menu > li a {
  border-bottom: 3px solid transparent;
  padding-bottom: 0.5rem;
}

header .menu > li.current-menu-item > a, header .menu > li.current-menu-ancestor > a{
  --tw-border-opacity: 1;
  border-color: rgba(167, 81, 21, var(--tw-border-opacity));
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(167, 81, 21, var(--tw-text-opacity));
}

header .menu > li a:hover {
  --tw-border-opacity: 1;
  border-color: rgba(167, 81, 21, var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgba(167, 81, 21, var(--tw-text-opacity));
}

header .menu > li:last-of-type a {
  border-bottom-color: transparent !important;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgba(35, 133, 139, var(--tw-bg-opacity));
}

header .menu > li:last-of-type a:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(41, 94, 78, var(--tw-bg-opacity));
}

header .menu > li:last-of-type a{
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

header .menu > li:hover .sub-menu {
  display: block;
}

header.scrolled-js {
  position: fixed;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

@media (max-width: 768px) {
  header.scrolled-js .logo {
    max-width: 150px;
  }
}

header #menu-trigger {
  display: inline-block;
  height: 37px;
  width: 37px;
  background: url(../img/mobile.svg) center;
  background-size: cover;
}

body.single-policies header .menu > li.menu-item-object-policies > a {
  --tw-border-opacity: 1;
  border-color: rgba(167, 81, 21, var(--tw-border-opacity));
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(167, 81, 21, var(--tw-text-opacity));
}

/*!
 * mmenujs.com/mmenu-light
 *
 * Copyright (c) Fred Heusschen
 * www.frebsite.nl
 *
 * License: CC-BY-4.0
 * http://creativecommons.org/licenses/by/4.0/
 */

.mm,
.mm a,
.mm li,
.mm span,
.mm ul {
  display: block;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --mm-item-height: 50px;
  --mm-item-indent: 20px;
  --mm-line-height: 24px;
}

.mm-hidden {
  display: none !important;
}

.mm {
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  color: #444;
  background: #f3f3f3;
  line-height: 24px;
  line-height: var(--mm-line-height);
  transform: translateX(0);
}

.mm {
  cursor: pointer;
}

.mm:before {
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  top: calc(var(--mm-item-height) / 2);
  left: 20px;
  left: var(--mm-item-indent);
  width: 10px;
  height: 10px;
  margin-top: 2px;
  border-top: 2px solid;
  border-left: 2px solid;
  transform: rotate(-45deg) translate(50%, -50%);
  opacity: 0.4;
}

.mm.mm--main {
  cursor: default;
}

.mm.mm--main:before {
  content: none;
  display: none;
}

.mm:after {
  content: attr(data-mm-title);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  height: var(--mm-item-height);
  padding: 0 40px;
  padding: 0 calc(var(--mm-item-indent) * 2);
  line-height: 50px;
  line-height: var(--mm-item-height);
  opacity: 0.4;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.625), 0 1px 0 0 currentColor;
}

.mm.mm--main:after {
  padding-left: 20px;
  padding-left: var(--mm-item-indent);
}

.mm ul {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 50px;
  top: var(--mm-item-height);
  left: 100%;
  bottom: 0;
  width: 200%;
  padding-right: 100%;
  overflow: visible;
  overflow-y: auto;
  background: inherit;
  transition: left 0.3s ease 0s;
  cursor: default;
}

.mm ul:after {
  content: "";
  display: block;
  height: 50px;
  height: var(--mm-item-height);
}

.mm > ul {
  left: 0;
}

.mm ul.mm--open {
  left: 0;
}

.mm ul.mm--parent {
  left: -100%;
  overflow-y: hidden;
}

.mm li {
  position: relative;
  background: inherit;
  cursor: pointer;
}

.mm li:before {
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  top: calc(var(--mm-item-height) / 2);
  right: 25px;
  right: calc(var(--mm-item-height) / 2);
  z-index: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg) translate(0, -50%);
  opacity: 0.4;
}

.mm li:after {
  content: "";
  display: block;
  margin-left: 20px;
  margin-left: var(--mm-item-indent);
  border-top: 1px solid;
  opacity: 0.15;
}

.mm a,
.mm span {
  position: relative;
  z-index: 1;
  padding: 13px 20px;
  padding: calc((var(--mm-item-height) - var(--mm-line-height)) / 2) var(--mm-item-indent);
}

.mm a {
  background: inherit;
  color: inherit;
  text-decoration: none;
}

.mm a:not(:last-child) {
  width: calc(100% - 50px);
  width: calc(100% - var(--mm-item-height));
}

.mm a:not(:last-child):after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-right: 1px solid;
  opacity: 0.15;
}

.mm span {
  background: 0 0;
}

.mm.mm--dark {
  background: #333;
  color: #ccc;
}

.mm.mm--vertical:after,
.mm.mm--vertical:before {
  content: none;
  display: none;
}

.mm.mm--vertical {
  overflow-y: auto;
}

.mm.mm--vertical ul {
  width: 100%;
  padding-right: 0;
  position: static;
}

.mm.mm--vertical ul ul {
  display: none;
  padding-left: 20px;
  padding-left: var(--mm-item-indent);
}

.mm.mm--vertical ul ul:after {
  height: 25px;
  height: calc(var(--mm-item-height) / 2);
}

.mm.mm--vertical ul.mm--open {
  display: block;
}

.mm.mm--vertical li.mm--open:before {
  transform: rotate(135deg) translate(-50%, 0);
}

.mm.mm--vertical ul ul li:last-child:after {
  content: none;
  display: none;
}

:root {
  --mm-width: 80%;
  --mm-min-width: 200px;
  --mm-max-width: 440px;
}

.mm-body--open {
  overflow-y: hidden;
  pointer-events: none;
}

.mm {
  pointer-events: auto;
}

.mm.mm--offcanvas {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 9995;
  width: 80%;
  width: var(--mm-width);
  min-width: 200px;
  min-width: var(--mm-min-width);
  max-width: 440px;
  max-width: var(--mm-max-width);
  transition: transform 0.3s ease 0s, bottom 0s ease 0s;
}

.mm.mm--offcanvas:not(.mm--open) {
  bottom: 100%;
  transform: translateX(-100%);
  transition-delay: 0s, 0.6s;
}

.mm.mm--right {
  left: auto;
  right: 0;
}

.mm.mm--right:not(.mm--open) {
  transform: translateX(100%);
}

.mm-blocker {
  pointer-events: auto;
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  top: 100%;
  z-index: 9990;
  width: 100%;
  opacity: 0;
  transition-property: opacity, top;
  transition-timing-function: ease, linear;
  transition-duration: 0.45s, 0s;
  transition-delay: 0s, 0.45s;
}

.mm-blocker.mm--open {
  top: 0;
  z-index: 9999;
  width: calc(100% - 80%);
  width: calc(100% - var(--mm-width));
  min-width: calc(100% - 440px);
  min-width: calc(100% - var(--mm-max-width));
  max-width: calc(100% - 200px);
  max-width: calc(100% - var(--mm-min-width));
  opacity: 1;
  transition-delay: 0.3s, 0s;
}

.mm.mm--right {
  left: auto;
  right: 0;
}

.mm.mm--right:not(.mm--open) {
  transform: translateX(100%);
}

.mm-blocker.mm--right {
  right: auto;
  left: 0;
}

#menu {
  --tw-bg-opacity: 1;
  background-color: rgba(34, 125, 103, var(--tw-bg-opacity));
}

body .mm .logo-mobile {
  width: 100%;
  text-align: center;
  display: block;
  margin-top: 50px;
}

body .mm .logo-mobile img {
  margin: 0 auto;
  max-width: 100px;
}

#main-menu-mobile ul {
  text-align: center;
  margin-top: 100px;
}

#main-menu-mobile ul li a {
  color: white;
  width: 100%;
  z-index: 0;
  font-family: Montserrat, serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
}

#main-menu-mobile ul li a:not(:last-child):after {
  content: none;
}

#main-menu-mobile ul li.current_page_item > a {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(255, 211, 181, var(--tw-text-opacity));
}

#main-menu-mobile ul li.current_page_item:before {
  --tw-border-opacity: 1;
  border-color: rgba(255, 211, 181, var(--tw-border-opacity));
}

#main-menu-mobile ul li:before {
  border-color: white;
  top: 22px;
  z-index: 11;
}

#main-menu-mobile ul li:not(.menu-item-has-children):before {
  content: none;
}

#main-menu-mobile li:after {
  content: none;
}

#main-menu-mobile > ul > li:last-of-type a {
  margin-top: 1.25rem;
  display: inline-block;
  width: auto;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgba(35, 133, 139, var(--tw-bg-opacity));
}

#main-menu-mobile > ul > li:last-of-type a:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(41, 94, 78, var(--tw-bg-opacity));
}

#main-menu-mobile > ul > li:last-of-type a{
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.mm:after {
  font-size: 12px;
  font-family: Montserrat, serif;
  font-weight: 500;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.mm:before {
  border-color: white;
}

.site-footer {
  position: relative;
  --tw-bg-opacity: 1;
  background-color: rgba(249, 247, 207, var(--tw-bg-opacity));
  padding-bottom: 1.25rem;
}

.site-footer .footer-shape {
  display: inline-block;
  height: 120px;
  position: absolute;
  background: url(../img/footer-shape.svg);
  width: 100%;
  background-size: cover;
  background-position: 0;
  top: -120px;
  z-index: -1;
}

.site-footer .logo-footer {
  max-width: 300px;
}

@media (max-width: 768px) {
  .site-footer .logo-footer {
    max-width: 200px;
    margin-bottom: 15px;
  }
}

.menu-legal {
  display: inline-block;
  padding-left: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.menu-legal li {
  display: inline-block;
}

.menu-legal li:not(:last-of-type):after {
  content: " · ";
}

.menu-legal li a {
  --tw-text-opacity: 1;
  color: rgba(89, 89, 89, var(--tw-text-opacity));
}

.menu-legal li a:hover{
  text-decoration: underline;
}

.slider {
  min-height: 70vh;
  overflow: hidden;
  position: relative;
}

.slider img {
  max-width: 844px;
}

.slider:after {
  content: "";
  -webkit-clip-path: ellipse(200% 100% at -30.84% 0%);
          clip-path: ellipse(200% 100% at -30.84% 0%);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  display: inline-block;
  --tw-bg-opacity: 1;
  background-color: rgba(34, 125, 103, var(--tw-bg-opacity));
}

@media (min-width: 769px) {
  .slider:after {
    -webkit-clip-path: ellipse(144% 100% at -30.84% 0%);
            clip-path: ellipse(144% 100% at -30.84% 0%);
  }
}

.shadow-img {
  border-radius: 0.5rem;
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.cycle-pager {
  z-index: 101;
  margin-top: 1.25rem;
  width: 100%;
  text-align: center;
}

.cycle-pager span {
  height: 16px;
  width: 16px;
  border-radius: 100%;
  cursor: pointer;
  text-indent: -999900px;
  cursor: pointer;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  display: inline-block;
  --tw-bg-opacity: 1;
  background-color: rgba(236, 168, 121, var(--tw-bg-opacity));
}

.cycle-pager span:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(167, 81, 21, var(--tw-bg-opacity));
}

.cycle-pager span.cycle-pager-active {
  width: 32px;
  border-radius: 10px;
  --tw-bg-opacity: 1;
  background-color: rgba(167, 81, 21, var(--tw-bg-opacity));
}

.entry-content h2.title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
}

.entry-content h2.title + hr {
  height: 5px;
  width: 50px !important;
  border: none;
  margin-top: 0 !important;
  margin-bottom: 2.5rem !important;
  --tw-bg-opacity: 1;
  background-color: rgba(128, 206, 187, var(--tw-bg-opacity));
}

.entry-content h3.title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.entry-content h3.title + hr {
  height: 5px;
  width: 50px !important;
  border: none;
  margin-top: 0 !important;
  margin-bottom: 1.5rem !important;
  --tw-bg-opacity: 1;
  background-color: rgba(128, 206, 187, var(--tw-bg-opacity));
}

.entry-content h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 600;
}

.entry-content h1 + h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
}

.entry-content h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}

.entry-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.entry-content h4, .entry-content h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.entry-content p:not(:last-child), .entry-content ol:not(:last-child), .entry-content ul:not(:last-child), .entry-content .wp-block-image:not(:last-child), .entry-content .wp-block-buttons:not(:last-child){
  margin-bottom: 1.25rem;
}

.entry-content li a:not(.main-button), .entry-content p:not(.text-yellow) a:not(.main-button) {
  --tw-text-opacity: 1;
  color: rgba(35, 133, 139, var(--tw-text-opacity));
  text-decoration: underline;
}

.entry-content ul li {
  padding-left: 0.75rem;
}

.entry-content ul li::before {
  content: "\2022";
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  --tw-text-opacity: 1;
  color: rgba(128, 206, 187, var(--tw-text-opacity));
}

.entry-content ol li {
  counter-increment: inst;
  padding-left: 0.75rem;
}

.entry-content ol li::before {
  content: counter(inst) " .";
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  display: inline-block;
  --tw-text-opacity: 1;
  color: rgba(128, 206, 187, var(--tw-text-opacity));
}

.entry-content .wp-block-image.size-full img {
  width: 100%;
}

.entry-content .wp-block-quote {
  --tw-border-opacity: 1;
  border-color: rgba(255, 211, 181, var(--tw-border-opacity));
}

.entry-content hr.wp-block-separator {
  width: 100% !important;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  --tw-border-opacity: 1;
  border-color: rgba(201, 201, 201, var(--tw-border-opacity));
}

.card-wva {
  max-width: 400px;
}

.card-wva .wp-post-image {
  transition: all 0.4s;
  width: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.card-wva .wp-post-image:hover {
  transform: scale(1.05);
}

.card-wva.card-wva-vertical {
  max-width: 100%;
}

@media (max-width: 768px) {
  .card-wva.card-wva-vertical {
    max-width: 400px;
  }
}

.card-wva.card-wva-vertical h2 {
  min-height: 100px;
}

.card-wva.card-wva-vertical .wp-post-image {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.card-wva.card-wva-policies {
  max-width: 100%;
}

.card-wva.card-wva-entries {
  max-width: 100%;
}

.card-wva.card-wva-entries .wp-post-image {
  border-top-right-radius: 0;
}

.card-wva.card-wva-entries .wp-post-image:hover {
  transform: scale(1);
}

.spacer {
  height: 5rem;
}

.has-light-blue-color {
  --tw-text-opacity: 1;
  color: rgba(128, 206, 187, var(--tw-text-opacity));
}

.has-blue-color {
  --tw-text-opacity: 1;
  color: rgba(35, 133, 139, var(--tw-text-opacity));
}

.has-gray-color {
  --tw-text-opacity: 1;
  color: rgba(168, 168, 168, var(--tw-text-opacity));
}

.wp-block-button__link {
  border-radius: 0.375rem;
  border-width: 2px;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.wp-block-button__link.has-light-blue-color {
  --tw-border-opacity: 1;
  border-color: rgba(128, 206, 187, var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgba(128, 206, 187, var(--tw-text-opacity));
}

.wp-block-button__link.has-light-blue-color:hover{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.wp-block-button__link.has-light-blue-color:hover {
  background-color: #80cebb !important;
}

.wp-block-button__link.has-blue-color {
  --tw-border-opacity: 1;
  border-color: rgba(35, 133, 139, var(--tw-border-opacity));
}

.wp-block-button__link.has-blue-color:hover{
  --tw-border-opacity: 1;
  border-color: rgba(41, 94, 78, var(--tw-border-opacity));
}

.wp-block-button__link.has-blue-color{
  --tw-text-opacity: 1;
  color: rgba(35, 133, 139, var(--tw-text-opacity));
}

.wp-block-button__link.has-blue-color:hover{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.wp-block-button__link.has-blue-color:hover {
  background-color: #295E4E !important;
}

.wp-block-button__link.has-blue-background-color {
  --tw-border-opacity: 1;
  border-color: rgba(35, 133, 139, var(--tw-border-opacity));
}

.wp-block-button__link.has-blue-background-color:hover{
  --tw-border-opacity: 1;
  border-color: rgba(41, 94, 78, var(--tw-border-opacity));
}

.wp-block-button__link.has-blue-background-color{
  --tw-bg-opacity: 1;
  background-color: rgba(35, 133, 139, var(--tw-bg-opacity));
}

.wp-block-button__link.has-blue-background-color:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(41, 94, 78, var(--tw-bg-opacity));
}

.wp-block-button__link.has-blue-background-color{
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.wp-block-button__link.has-light-blue-background-color {
  --tw-border-opacity: 1;
  border-color: rgba(128, 206, 187, var(--tw-border-opacity));
}

.wp-block-button__link.has-light-blue-background-color:hover{
  --tw-border-opacity: 1;
  border-color: rgba(41, 94, 78, var(--tw-border-opacity));
}

.wp-block-button__link.has-light-blue-background-color{
  --tw-bg-opacity: 1;
  background-color: rgba(128, 206, 187, var(--tw-bg-opacity));
}

.wp-block-button__link.has-light-blue-background-color:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(41, 94, 78, var(--tw-bg-opacity));
}

.wp-block-button__link.has-light-blue-background-color{
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.main-button {
  border-bottom-color: transparent !important;
  display: inline-block;
  width: auto;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgba(35, 133, 139, var(--tw-bg-opacity));
}

.main-button:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(41, 94, 78, var(--tw-bg-opacity));
}

.main-button{
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

@media (max-width: 768px) {
  .wp-block-columns {
    display: block;
  }

  .wp-block-columns .wp-block-column:not(last-of-type) {
    margin-bottom: 1.25rem;
  }
}

.wp-block-columns.alignfull {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.wp-block-columns:not(.alignfull) {
  width: 100%;
}

@media (min-width: 100%){
  .wp-block-columns:not(.alignfull){
    max-width: 100%;
  }
}

@media (min-width: 1024px){
  .wp-block-columns:not(.alignfull){
    max-width: 1024px;
  }
}

@media (min-width: 1280px){
  .wp-block-columns:not(.alignfull){
    max-width: 1280px;
  }
}

.wp-block-columns:not(.alignfull){
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 1024px){
  .wp-block-columns:not(.alignfull){
    padding-left: 0px;
    padding-right: 0px;
  }
}

.wp-block-image.circle-img {
  position: relative;
  display: inline-block;
}

.wp-block-image.circle-img:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  bottom: -10%;
  left: -10%;
  z-index: -2;
  background: url(../img/circle-dark-green.svg);
  background-size: cover;
  transform: scale(1.2);
}

.wp-block-image.circle-img:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  top: -10%;
  right: -10%;
  z-index: -1;
  background: url(../img/circle-green.svg);
  background-size: cover;
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .wp-block-image.circle-img:after, .wp-block-image.circle-img:before {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .wp-block-image.circle-img:before {
    left: -5%;
  }

  .wp-block-image.circle-img:after {
    right: -5%;
  }
}

.section-title {
  margin-bottom: 30px;
  position: relative;
  --tw-bg-opacity: 1;
  background-color: rgba(34, 125, 103, var(--tw-bg-opacity));
}

.section-title:after {
  content: "";
  background: url(../img/page-header.svg);
  height: 180px;
  position: absolute;
  left: 0;
  bottom: -145px;
  display: block;
  width: 100%;
  background-size: 100% auto;
  z-index: -1;
  background-position: top;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .section-title:after {
    bottom: -165px;
  }
}

.breadcrumbs a {
  padding-right: 0.5rem;
}

.breadcrumbs span.breadcrumb_last {
  padding-left: 0.5rem;
  font-weight: 700;
}

.grid-sidebar {
  grid-template-columns: 70% 30%;
}

.navigation {
  margin-top: 2.5rem;
  text-align: center;
}

.navigation ol li {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.navigation ol li a:not(.prev):not(.next),
    .navigation ol li span:not(.prev):not(.next) {
  width: 32px;
  height: 32px;
  line-height: 32px !important;
  display: inline-block;
}

.navigation ol li a:not(.prev):not(.next), .navigation ol li span:not(.prev):not(.next){
  margin-left: 0.75rem;
  margin-right: 0.75rem;
  border-radius: 9999px;
}

.navigation ol li a:not(.prev):not(.next):hover, .navigation ol li span:not(.prev):not(.next):hover{
  --tw-bg-opacity: 1;
  background-color: rgba(167, 81, 21, var(--tw-bg-opacity));
}

.navigation ol li a:not(.prev):not(.next), .navigation ol li span:not(.prev):not(.next){
  text-align: center;
}

.navigation ol li a:not(.prev):not(.next):hover, .navigation ol li span:not(.prev):not(.next):hover{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.navigation ol li a:not(.prev):not(.next).page.current, .navigation ol li span:not(.prev):not(.next).page.current{
  --tw-bg-opacity: 1;
  background-color: rgba(167, 81, 21, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.navigation ol .prev {
  margin-right: 0.75rem;
}

.navigation ol .next {
  margin-left: 0.75rem;
}

.policies-nav li:last-of-type {
  border-right: none !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.policies-nav li {
  --tw-text-opacity: 1;
  color: rgba(149, 156, 80, var(--tw-text-opacity));
}

.entry-content li a:not(.main-button), .entry-content p:not(.text-yellow) a:not(.main-button) {
  --tw-text-opacity: 1;
  color: rgba(35, 133, 139, var(--tw-text-opacity));
  text-decoration: underline;
}

.policies-nav li img:nth-child(2) {
  display: none;
}

.policies-nav li:hover img:nth-child(1),
.policies-nav li.active img:nth-child(1) {
  display: none;
}

.policies-nav li:hover img:nth-child(2),
.policies-nav li.active img:nth-child(2) {
  display: block;
}

.policies-nav li.active {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(167, 81, 21, var(--tw-text-opacity));
}

@media (max-width: 1280px) {
  .policies-nav img {
    height: 30px !important;
  }
}

.widget {
  margin-top: 1.25rem;
}

.widget .widget-title {
  margin-bottom: 1.25rem;
}

.widget .widget-title span {
  margin-bottom: 0.5rem;
  display: inline-block;
  font-family: Montserrat, serif;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}

.widget .widget-title span + hr {
  height: 5px;
  width: 50px !important;
  border: none;
  --tw-bg-opacity: 1;
  background-color: rgba(128, 206, 187, var(--tw-bg-opacity));
}

.widget .widget-content .menu li {
  font-family: Montserrat, serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.widget .widget-content .menu li:not(:last-of-type) {
  margin-bottom: 0.75rem;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(201, 201, 201, var(--tw-border-opacity));
  padding-bottom: 0.75rem;
}

.widget .widget-content .menu li.current-menu-item {
  font-weight: 600;
}

.widget:last-of-type {
  position: -webkit-sticky;
  position: sticky;
  top: 130px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 111;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.modal .overlay {
  content: "";
  display: block;
  height: 100vh;
  width: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
}

.modal .modal-wrapper {
  width: 100%;
  max-width: 600px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  max-height: 90vh;
}

@media (max-height: 900px) {
  .modal .modal-wrapper .entry-content {
    overflow-y: scroll;
    max-height: 70vh;
  }
}

.modal .modal-wrapper div[role=dialog] {
  max-height: 90vh;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding: 1.25rem;
}

.modal.is-open {
  display: block;
}

.member-img {
  position: relative;
  display: inline-block;
}

.member-img img {
  max-width: 120px;
  border-radius: 100% !important;
  position: relative;
  z-index: 3;
}

.member-img:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  bottom: -10%;
  left: -10%;
  z-index: 2;
  background: url(../img/circle-dark-green.svg);
  background-size: cover;
  transform: scale(1.2);
}

.member-img:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  top: -10%;
  right: 0;
  z-index: 1;
  background: url(../img/circle-green.svg);
  background-size: cover;
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .member-img:after, .member-img:before {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .member-img:before {
    left: -5%;
  }

  .member-img:after {
    right: -5%;
  }
}

.widget-content-wva a h4 {
  --tw-text-opacity: 1;
  color: rgba(168, 168, 168, var(--tw-text-opacity));
}

.widget-content-wva a:hover *, .widget-content-wva a.active *{
  --tw-text-opacity: 1;
  color: rgba(167, 81, 21, var(--tw-text-opacity));
}

.widget-content-wva a:last-of-type {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.council h3 {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

aside .widget:first-of-type {
  margin-top: 4rem !important;
}

.accordeon input[type=checkbox] + i + i {
  display: none;
}

.accordeon input[type=checkbox]:checked + i + i {
  display: inline-block;
}

.accordeon input[type=checkbox]:checked + i {
  display: none;
}

.accordeon input[type=checkbox] + i + i + div {
  display: none;
}

.accordeon input[type=checkbox]:checked + i + i + div {
  display: block;
}

.accordeon hr:last-of-type {
  display: none;
}

.accordeon > div:last-of-type {
  margin-bottom: 0 !important;
}

body .gform_wrapper input[type=text],
body .gform_wrapper input[type=tel],
body .gform_wrapper input[type=url],
body .gform_wrapper input[type=email],
body .gform_wrapper textarea {
  padding-top: 1rem;
  padding-bottom: 1rem;
  outline: none;
  resize: none;
  width: 100% !important;
}

body .gform_wrapper input[type=text], body .gform_wrapper input[type=tel], body .gform_wrapper input[type=url], body .gform_wrapper input[type=email], body .gform_wrapper textarea{
  border-radius: 0.375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(201, 201, 201, var(--tw-border-opacity));
}

body .gform_wrapper input[type=submit] {
  border-bottom-color: transparent !important;
  display: inline-block;
  width: auto;
  width: 100%;
  cursor: pointer;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgba(35, 133, 139, var(--tw-bg-opacity));
}

body .gform_wrapper input[type=submit]:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(41, 94, 78, var(--tw-bg-opacity));
}

body .gform_wrapper input[type=submit]{
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

@media (min-width: 768px){
  body .gform_wrapper input[type=submit]{
    width: auto;
  }
}

body .gform_wrapper label {
  margin-bottom: 0 !important;
  font-size: 0.9rem !important;
  font-family: Montserrat, serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgba(168, 168, 168, var(--tw-text-opacity));
}

body .gform_wrapper .gfield_checkbox input[type=checkbox] {
  opacity: 0;
}

body .gform_wrapper .gfield_checkbox input[type=checkbox]:checked + label:after {
  content: '\00D7';
}

body .gform_wrapper .gfield_checkbox label {
  font-weight: normal;
  padding-left: 1rem !important;
  position: relative;
}

body .gform_wrapper .gfield_checkbox label::before {
  content: "";
  display: block;
  height: 24px;
  width: 24px;
  left: -1rem;
  top: 2px;
  position: absolute;
  border-radius: 0.375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(168, 168, 168, var(--tw-border-opacity));
}

body .gform_wrapper .gfield_checkbox label::after {
  content: none;
  position: absolute;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  left: -1rem;
  top: 2px;
  font-size: 2rem;
  --tw-text-opacity: 1;
  color: rgba(20, 20, 20, var(--tw-text-opacity));
}

body .gform_wrapper .gfield_checkbox label a {
  text-decoration: underline;
}

body .gform_wrapper .gfield_required.gfield_required_text {
  text-indent: -99999px;
  position: relative;
}

body .gform_wrapper .gfield_required.gfield_required_text::after {
  content: "*";
  text-indent: 0px;
  position: absolute;
  left: 0;
}

body .gform_wrapper .field_description_below .gfield_description {
  padding-top: 7px !important;
}

body .gform_wrapper .validation_message.gfield_description {
  background: transparent;
  border: none;
  padding: 0 !important;
  font-size: 12px !important;
}

body .gform_wrapper li.gfield {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 32px !important;
}

body .gform_wrapper .gfield_required, body .gform_wrapper .validation_message{
  --tw-text-opacity: 1;
  color: rgba(255, 19, 0, var(--tw-text-opacity));
}

body .gform_wrapper .gfield_error {
  border: none !important;
  background: none !important;
}

body .gform_wrapper .gfield_error .gfield_label {
  --tw-text-opacity: 1;
  color: rgba(255, 19, 0, var(--tw-text-opacity));
}

body .gform_wrapper .gfield.gsection {
  margin-top: 3rem !important;
  padding-bottom: 0;
  --tw-border-opacity: 1;
  border-color: rgba(35, 133, 139, var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgba(35, 133, 139, var(--tw-text-opacity));
}

body .gform_wrapper div.validation_error {
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 19, 0, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton, #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton {
  border-radius: 0.375rem !important;
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton, .gdpr_cookie_settings_shortcode_content .gdpr-shr-button.button-green {
  border-radius: 0.375rem !important;
}

.maps .world {
  z-index: 0;
}

.maps .map {
  position: absolute;
  top: 30px;
  left: 0;
}

.maps .region {
  z-index: 0;
}

.maps .region .background {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}

.maps .region .background:hover, .maps .region .background.active {
  opacity: 1;
}

.maps ul a {
  text-decoration: none !important;
}

.maps ul a.active {
  font-weight: 600;
}

.modal {
  font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: calc(900px - 30px);
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

@media (max-width: 990px) {
  .modal__container {
    max-width: 90%;
  }
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "\2715";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: .875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: .25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/

@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }

  to {
    transform: translateY(0);
  }
}

@-webkit-keyframes mmslideOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10%);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

@media (min-width: 768px){

  .md\:absolute{
    position: absolute !important;
  }

  .md\:mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .md\:mt-3{
    margin-top: 0.75rem !important;
  }

  .md\:mb-0{
    margin-bottom: 0px !important;
  }

  .md\:mb-4{
    margin-bottom: 1rem !important;
  }

  .md\:mb-5{
    margin-bottom: 1.25rem !important;
  }

  .md\:ml-10{
    margin-left: 2.5rem !important;
  }

  .md\:ml-auto{
    margin-left: auto !important;
  }

  .md\:block{
    display: block !important;
  }

  .md\:flex{
    display: flex !important;
  }

  .md\:grid{
    display: grid !important;
  }

  .md\:hidden{
    display: none !important;
  }

  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .md\:items-center{
    align-items: center !important;
  }

  .md\:gap-10{
    gap: 2.5rem !important;
  }

  .md\:px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .md\:px-5{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .md\:pt-10{
    padding-top: 2.5rem !important;
  }

  .md\:text-4xl{
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }

  .md\:text-6xl{
    font-size: 3.75rem !important;
    line-height: 1 !important;
  }
}

@media (min-width: 1024px){

  .lg\:mb-0{
    margin-bottom: 0px !important;
  }

  .lg\:block{
    display: block !important;
  }

  .lg\:flex{
    display: flex !important;
  }

  .lg\:grid{
    display: grid !important;
  }

  .lg\:hidden{
    display: none !important;
  }

  .lg\:flex-1{
    flex: 1 1 0% !important;
  }

  .lg\:gap-10{
    gap: 2.5rem !important;
  }

  .lg\:border-r{
    border-right-width: 1px !important;
  }

  .lg\:border-b-0{
    border-bottom-width: 0px !important;
  }

  .lg\:px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .lg\:pb-0{
    padding-bottom: 0px !important;
  }
}

@media (min-width: 1280px){

  .xl\:px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .xl\:text-xl{
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }
}
