:root {
    --duration-short: 100ms;
    --duration-default: 200ms;
    --duration-announcement-bar: 250ms;
    --duration-medium: 300ms;
    --duration-long: 500ms;
    --duration-extra-long: 600ms;
    --duration-extra-longer: 750ms;
    --duration-extended: 3s;
    --ease-out-slow: cubic-bezier(0, 0, 0.3, 1);
    --animation-slide-in: slideIn var(--duration-extra-long) var(--ease-out-slow) forwards;
    --animation-slide-in--menu: slideIn var(--duration-medium) var(--ease-out-slow) forwards;
    --animation-fade-in: fadeIn var(--duration-extra-long) var(--ease-out-slow);

    --header-height: 80px;
    --page-gutter: 40px;
    --page-max-width: 1380px;
    --num-grid-columns: 12;
}

@media screen and (max-width: 1024px) {
    :root {
        --page-gutter: 32px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --page-gutter: 24px;
    }
}

@media screen and (max-width: 640px) {
    :root {
        --page-gutter: 16px;
    }
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
    border-width: 0;
    border-style: solid;
}

html {
    box-sizing: border-box;    
	font-family: system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
	line-height: 1.15; /* 1. Correct the line height in all browsers. */
	-webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
	-moz-tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
	tab-size: 4; /* 3 */
}

body {
	margin: 0; /* Remove the margin in all browsers. */
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; 
    text-rendering: optimizeLegibility;
}

abbr[title] {
	text-decoration: underline dotted;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

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

.google-map * {
    border-style: none;
}

.swiper-wrapper {
    box-sizing: border-box;
}

ul, ol {
	margin-bottom: 1.5rem;
    padding-left: 1rem; 
}

ol {
    padding-left: 1.75rem;
}

@media screen and (max-width: 768px) {
    h2, h3, h4, h5 {
        margin-bottom: 1rem;
    }
}

.wp-block-post-content {
    overflow: hidden;
}

.gradient-text {
    background: linear-gradient(90deg, #02EC93 0%, #7FCCF7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-wrap: nowrap;
}
  
@keyframes pulse {
    0%, 100% {
      background-color: #1A5252;
    }
    50% {
      background-color: #164848;
    }
}

.badge {
    display: inline-flex;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    border-radius: 40px;
    background-color: rgba(0, 197, 141, 0.15);;
    color: #133A3A;
}

.yoast-breadcrumbs > span {
    display: flex;
    flex-wrap: wrap; 
    align-items: center; 
    gap: 12px; 
}

.yoast-breadcrumbs span > span, 
.yoast-breadcrumbs span > a, 
.yoast-breadcrumbs span > svg {
    display: inline-block; 
    vertical-align: middle;
    text-decoration: none;
}

.wp-block-embed.is-type-video.is-provider-youtube.wp-has-aspect-ratio {
    overflow: hidden;
    border-radius: 30px;
}

.wp-embed-responsive .wp-embed-aspect-5-4 .wp-block-embed__wrapper:before {
    aspect-ratio: 5 / 4;
}

.header-mobile-banner .block--search-popup path {
    fill: #02EC93;
}

.wp-block-navigation-item.current-menu-item > .wp-block-navigation-item__content {
    text-decoration: underline !important;
    text-underline-offset: 2px;
}

.wp-block-navigation__submenu-container.wp-block-navigation-submenu {
    padding: 8px;
}

.wp-block-navigation__submenu-container >  .wp-block-navigation-item {
    padding: 4px;
}

.gmap-iframe {
    min-height: 720px;
    height: 100%;
    flex-grow: 1;
}

@media screen and (max-width: 640px) {
    .gmap-iframe {
        min-height: 400px;
    }
}