@import "flexboxgrid.min.css";
/* 
xs 
sm = min-width: 48em 
md = min-width: 62em
lg = min-width: 75em
*/
:root {
    --color-primary: #6a953f;
    --color-primary-50: #f4f8ed;
    --color-primary-100: #e5f0d7;
    --color-primary-200: #cde2b4;
    --color-primary-300: #adcf87;
    --color-primary-400: #8fba61;
    --color-primary-500: #6a953f;
    --color-primary-600: #577e32;
    --color-primary-700: #43612a;
    --color-primary-800: #394e26;
    --color-primary-900: #324324;
    --color-primary-950: #18240f;
    --color-secondary: #0099a8;
    --color-secondary-50: #eafffc;
    --color-secondary-100: #cafff9;
    --color-secondary-200: #8fded9;
    --color-secondary-300: #52d4cb;
    --color-secondary-400: #1cd4d1;
    --color-secondary-500: #1ec8ce;
    --color-secondary-600: #0aafbe;
    --color-secondary-700: #0099a8;
    --color-secondary-800: #0b727f;
    --color-secondary-900: #0e5e6b;
    --color-secondary-950: #023f4a;
    /* --color-bright: #AAAD00; */
    --color-bright: #FFAF15;
    --color-bright-5: #FFAF1533;
    --color-green: #63A70A;

    --system-ui: system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --max-width: 1200px;
    --focus-outline: 2px solid #32432466;
    interpolate-size: allow-keywords;
    --hero-height: 75vh;
    --hero-min-height: 300px;
}
/* reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
    font: inherit;
}
*:focus-visible {
    outline: var(--focus-outline);
}
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}
strong, b {
	font-weight: bold;
}
i, em {
	font-style: italic;
}
/* reset */
html, body, input, textarea, select {
    font-family: var(--system-ui);
}
.content-grid {
    --content-width: var(--max-width);
    --content-gap: 1rem;
    --full: minmax(var(--content-gap), 1fr);
    --content-max: min(var(--content-width), 100% - var(--content-gap) * 2);
    --popout-gap: minmax(0, 2rem);
    --feature-gap: minmax(0, 5rem);
    display: grid;
    grid-template-columns:
        [full-start] var(--full)
        [feature-start] var(--feature-gap)
        [popout-start] var(--popout-gap)
        [content-start] var(--content-max) [content-end]
        var(--popout-gap) [popout-end]
        var(--feature-gap) [feature-end]
        var(--full) [full-end];
}
.content-grid > * {
    grid-column: content;
}
.popout {
    grid-column: popout;
}
.feature {
    grid-column: feature;
}
.full {
    grid-column: full;
}
/* prose */
.prose {
    line-height: 1.6;
    max-width: 75ch;
    padding-block: 1rem;
    margin-inline: auto;
    text-align: left;
}
.prose-wide {
    max-width: 100ch;
}
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
    font-weight: bold;
    margin-block-start: 1em;
}
.prose h2 {
    font-size: 1.6em;
    line-height: 1;
}
.prose h3 {
    font-size: 1.4em;
    line-height: 1.2;
}
.prose h4 {
    font-size: 1.2em;
    line-height: 1.4;
}
.prose p {
    margin-block-start: 1em;
}
.prose ul,
.prose ol {
    margin-block-start: 1em;
	margin-inline-start: 2em;
	margin-bottom: 2em;
}
.prose ul ul,
.prose ol ol,
.prose ol ul,
.prose ul ol {
    margin-block-start: 1em;
	margin-inline-start: 2em;
	margin-bottom: .5em;
}
.prose ul li::marker {
	color: var(--color-primary);
}
.prose blockquote{
    font-size: 1.1em;
    max-width: 760px;
    margin:20px auto;
    padding:1.2em 1.5em 1.2em 3em;
    border-left: 4px solid var(--color-primary) ;
    line-height:1.6;
    position: relative;
    background:#f6f6f6;
}
.prose blockquote::before{
    content: "\201C";
    color:var(--color-primary);
    font-size:4em;
    position: absolute;
    left: 10px;
    top:-20px;
}
/* utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border-width: 0;
}
.maxwidth {
	max-width: var(--max-width);
	margin: auto;
}
.maxwidth-960 {
	max-width: 960px;
	margin: auto;
}
.sticky {
	position: sticky;
	top: 5rem;
}
.centered {
	text-align: center;
}
.text-mid {
	color: #666;
}
.text-light {
	color: #999;
}
.text-primary {
	color: var(--color-primary);
}
.text-secondary {
	color: var(--color-secondary);
}
.text-white {
	color: #fff;
}
.text-sm {
	font-size: .9rem !important;
}
.text-md {
	font-size: 1rem !important;
}
.text-lg {
	font-size: 1.2rem !important;
}
.text-xl {
	font-size: 1.4rem;
	line-height: 1.4;
}
.text-2xl {
	font-size: 1.5rem;
	line-height: 1.3;
}
.text-3xl {
	font-size: 1.6rem;
	line-height: 1.2;
}
.text-bold {
	font-weight: bold;
}
.text-300 {
	font-weight: 300;
}
.text-bolder {
	font-weight: 600;
}
.bg-primary {
	background-color: var(--color-primary);
}
.bg-primary-darker {
	background-color: var(--color-primary-600);
}
.bg-primary-lighter {
	background-color: var(--color-primary-400);
}
.bg-primary-50 {
	background-color: var(--color-primary-50);
}
.bg-primary-100 {
	background-color: var(--color-primary-100);
}
.bg-secondary {
	background-color: var(--color-secondary);
}
.bg-secondary {
	background-color: var(--color-secondary);
}
.bg-secondary-50 {
	background-color: var(--color-secondary-50);
}
.bg-secondary-100 {
	background-color: var(--color-secondary-100);
}
.bg-secondary-darker {
	background-color: var(--color-secondary-600);
}
.bg-secondary-lighter {
	background-color: var(--color-secondary-400);
}
.bg-secondary-50 {
	background-color: var(--color-secondary-50);
}
.bg-secondary-100 {
	background-color: var(--color-secondary-100);
}
.bg-light {
	background-color: #f6f6f6;
}
.bg-white {
	background-color: #fff;
}
.bg-highlight-5 {
	background-color: var(--color-bright-5);
}
.bg-motif-1 {
    background-image: url("../img/bg-1.svg");
    background-repeat: no-repeat;
    background-position: top right;
}
.bg-motif-2 {
    background-image: url("../img/bg-dots.svg");
    background-repeat: no-repeat;
    background-position: bottom left;
}
.bg-motif-3 {
    background-image: url("../img/bg-hexagons.svg");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 500px;
}
.bg-motif-4 {
    background-image: url("../img/bg-hexagons-2.svg");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 500px;
}
.uppercase {
	text-transform: uppercase;
}
.text-balance {
	text-wrap: balance;
}
.text-pretty {
	text-wrap: pretty;
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
/* defaults */
html {
	scroll-behavior: smooth;
}
a {
    color: var(--color-primary);
}
a:hover {
    color: var(--color-secondary);
}
hr {
    color: #333;
    border-top: 1px solid currentColor;
    border-bottom: none;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;       /* Remove default arrow */
	background: url(../img/arrow-down.svg) no-repeat calc(100% - 1em) 50%;   /* Add custom arrow */
}
select::-ms-expand {
    display: none; /* Hide the default arrow in Internet Explorer 10 and Internet Explorer 11 */
}
/* Target Internet Explorer 9 to undo the custom arrow */
@media screen and (min-width:0\0) {
    select {
        background: none\9;
        padding: 5px\9;
    }
}
.form-group {
    padding: 2rem;
    margin-block: 2rem;
}
.form-group h4 {
    font-weight: 500;
}
.form-group-gap {
    row-gap: 1rem;
}
.form-group label {
    display: inline-block;
    margin-block-end: .2rem;
}
.required-label {
    color: red;
}
input,
textarea,
select {
	border-radius: 0px;
	border: none;
	background-color: #eee;
	padding: .5em 1em;
	box-sizing: border-box;
	width: 100%;
	display: block;
    border-radius: .2rem;
}
textarea {
	height: 100px;
}
input[type=checkbox] {
	margin-right: 10px;
}
input[type=submit],
button,
.btn {
    display: inline-flex;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    justify-content: center;
	color: #333;
	background: #eee;
	padding: .5em 1.2em .45em;
	cursor: pointer;
	border: none;
    border-radius: 50rem;
	box-sizing: border-box;
	transition: background-color .3s, color .3s;
}
.btn-block {
    display: flex;
    width: 100%;
}
input[type=submit]:hover,
button:hover,
.btn:hover {
	background: var(--color-bright);
    color: #333;
}
.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--color-primary-600);
    color: #fff;
}
.btn-secondary {
    background-color: var(--color-secondary);
    color: #fff;
}
.btn-secondary:hover {
    background-color: var(--color-secondary-800);
    color: #fff;
}
/* radio */
/* checkbox */
.checkbox input[type=checkbox] {
	width: 0;
	height: 0;
	visibility: hidden;
	position: absolute;
}
.checkbox input[type=checkbox] + label {
	font-size: .9em;
	text-transform: unset;
	padding: .5em 1em .5em 3em;
	cursor: pointer;
	display: block;
	position: relative;
	margin-top: .5em;
}
.checkbox input[type=checkbox] + label::before {
	content: "";
	display: block;
	position: absolute;
	left: .5em;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 1.5em;
	height: 1.5em;
	border: 2px solid var(--color-primary);
	opacity: .3;
	margin-right: 1em;
	border-radius: .15rem;
    transition: all .3s;
    background-color: #fff;
}
.checkbox input[type=checkbox] + label::after {
	content: "";
	display: block;
	position: absolute;
	left: 1em;
	top: -.25rem;
	bottom: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
    transform: rotate(45deg);
	margin-right: 1em;
    transition: all .2s;
}
.checkbox input[type=checkbox]:checked + label::before {
	opacity: 1;
}
.checkbox input[type=checkbox] + label:hover::before {
	opacity: .8;
}
.checkbox input[type=checkbox]:checked + label::before {
	opacity: 1;
	background-color: var(--color-primary);
}
.checkbox input[type=checkbox]:checked + label::after {
	width: .5em;
	height: .9em;
}
/* radio */
.radio input[type=radio] {
	width: 0;
	height: 0;
	visibility: hidden;
	position: absolute;
}
.radio input[type=radio] + label {
	font-size: .9em;
	text-transform: unset;
	padding: .5em 1em .5em 3em;
	cursor: pointer;
	display: block;
	position: relative;
	margin-top: .5em;
}
.radio input[type=radio] + label:before {
	content: "";
	display: block;
	position: absolute;
	left: .5em;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 1.5em;
	height: 1.5em;
	border: 2px solid var(--color-primary);
	opacity: .3;
	margin-right: 1em;
	border-radius: 50%;
    transition: border-width .3s;
}
.radio input[type=radio]:checked + label::before {
	opacity: 1;
}
.radio input[type=radio] + label:hover::before {
	opacity: .8;
}
.radio input[type=radio]:checked + label:before {
	opacity: 1;
    border-width: .5rem;
}
/* custom */
.top-header {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 2px 5px #0001;
}
.logo {
  display: flex;  
  width: 120px;
}
.logo img {
    width: 100%;
    height: auto;    
}
.primary-menu nav > ul {
    list-style: none;
    font-weight: 600;
    transition: margin .3s ease-in-out;
    /* font-size: .8rem; */
    /* text-transform: uppercase; */
}
.primary-menu nav a {
    display: flex;
    gap: .5rem;
    text-decoration: none;
    color: inherit;
    padding: .75rem;
}
.primary-menu ul ul {
    list-style: none;
    margin-inline-start: 1rem;
    font-weight: normal;
}
.secondary-menu-wrapper {
    padding-block: 1rem;
    border-top: 1px solid #eee;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
}
.search-field {
    display: flex;
    background-color: #eee;
    border-radius: 2px;
    grid-column: 1 / -1;
    border-radius: 50px;
}
.search-field-input {
    border-radius: 50px;
}
.search-field-button {
    border-radius: 0px;
    background-color: transparent;
    color: var(--color-primary);
    padding-inline: 1em;
    border-radius: 50px;
    opacity: .8;
}
.search-field-button:hover,
.search-field-button:focus-visible {
    opacity: 1;
    background-color: transparent;
}
.heroslider {
    background-color: var(--color-primary-900);
    overflow: hidden;
}
.heroslider .slides > li {
    position: relative;
}
.heroslider .slides > li > img {
    --_translate: 0;
    width: 100%;
    height: var(--hero-height);
    min-height: var(--hero-min-height);
    object-fit: cover;
    transition: transform 6s ease-in-out;
    translate: 0 var(--_translate);
    opacity: .9;
}
.heroslider li.flex-active-slide > img {
    transform: scale(1.05);
}
.hero-content-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    color: #fff;
    background: linear-gradient(#6a953f00, #6a953f22, #6a953fcc);
}
.hero-content {
    margin-block: auto 2rem;
    max-width: 75ch;
}
.hero-content h1 {
    font-size: 3rem;
    margin-block-end: .5em;
    text-shadow: 2px 2px 15px #0006;
    text-wrap: balance;
}
.flex-control-nav {
    --_gap: .7rem;
    --_size: .7rem;
    --_size-active: 1.5rem;
    --_radius: 1rem;
    --_opacity: .5;
    --_opacity-active: 1;
    --_color: var(--color-secondary);
    list-style: none;
    display: flex;
}
.flex-control-nav a {
    display: block;
    text-indent: -100px;
    overflow: hidden;
    width: var(--_size);
    height: var(--_size);
    border-radius: var(--_radius);
    background-color: var(--_color);
    transition: width .3s, opacity .3s;
    opacity: var(--_opacity);
}
.flex-control-nav a.flex-active {
    width: var(--_size-active);
    opacity: var(--_opacity-active);
}
.flex-direction-nav {
    list-style: none;
    position: absolute;
    z-index: 2;
    display: none;
}
.flex-direction-nav li {
    list-style: none;
}
.heroslider .flex-control-nav {
    --_color: var(--color-secondary-50);
    justify-content: end;
    gap: .7rem;
    margin-block-start: -2rem;
    position: relative;
    z-index: 2;
}
.home-section,
.page-section {
    padding-block: 2rem;
}
.home-section-tight {
    padding-block: 0;
}
.home-section h2,
.page-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-block: .5em 1em;
	text-wrap: balance;
}
.home-section h3,
.page-section h3 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-block: .5em;
    text-wrap: balance;
}
.home-section p,
.page-section p {
    margin-block: 1em;
    line-height: 1.6;
}
.tile {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    display: grid;
    grid-template-rows: 220px auto;
    background-color: #f6f6f6;
}
.tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tile h3 {
    line-height: 1;
    font-weight: bold;
    font-size: 1.6rem;
    text-wrap: balance;
    margin-block-end: 0;
}
.tile-text {
    padding-inline: 1rem;
    line-height: 1.4;
}
.membership-item {
    padding: 1rem;
}
.blog-item {
    position: relative;
    margin-block: 1rem;
}
.blog-item-thumbnail {
    border-radius: .25rem;
    overflow: hidden;
    display: block;
}
.blog-item-thumbnail img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
    transition: transform .3s ease-in-out;
}
.blog-item:hover .blog-item-thumbnail img {
    transform: scale(1.05);
}
.blog-item h4 {
    position: absolute;
    top: .5rem;
    left: .5rem;
    padding: .25rem .5rem;
    background-color: var(--color-primary-700);
    color: #fff;
    border-radius: .2rem;
    text-transform: uppercase;
    font-size: .75rem;
}
.blog-item-date,
.news-item-date {
    text-transform: uppercase;
    font-size: .85rem;
    margin-block: .75rem;
}
.blog-item-excerpt,
.news-item-excerpt {
    text-decoration: none;
    color: inherit;
    line-height: 1.5;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.featured-events {
    display: grid;
    gap: 2rem;
    margin-block: 2rem;
}
.event-tile-wrapper {
    container-type: inline-size;
    container-name: event;
    margin-block-end: 2rem;
}
.tile-event {
    --event-height: 500px;
    height: var(--event-height);
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background-color: var(--color-primary-900);
}
.tile-event-listing .tile-event {
    background-color: #fff;
    box-shadow: 2px 2px 15px #0002;
}
.tile-event-thumbnail {
    overflow: hidden;
    position: absolute;
    inset: 0 0 100px;
}
.tile-event-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease-in-out;
}
.tile-event:hover .tile-event-thumbnail img {
    transform: scale(1.05);
}
.tile-event h4 div {
    display: inline-block;
    padding: .25rem .5rem;
    background-color: var(--color-bright);
    border-radius: .2rem;
    text-transform: uppercase;
    font-size: .75rem;
    color: #000;
}
.tile-event-details {
    background-image: linear-gradient(#32432400, #324324 100px);
    color: #fff;
    padding: 1rem;
    padding-block-start: 3rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.tile-event-listing .tile-event-details {
    background: #fff;
    color: #333;
    padding-block-start: 1rem;
}
.tile-event-details h3 {
    font-size: 1.4rem;
}
.tile-event-details dl {
    display: grid;
    grid-template-columns: 40px auto;
    row-gap: .5rem;
    margin-block-end: 1rem;
}
@container event (min-width: 600px) {
    .tile-event-details {
        margin-block-start: auto;
        padding-right: 180px;
    }
    .event-cta {
        position: absolute;
        right: 1rem;
        bottom: 1rem;
    }
    .tile-event-details dl {
        margin-block-end: 0;
    }
}
.event-timer {
	color: #fff;
    display: flex;
    gap: .5rem;
    margin-block: 1rem;
    justify-content: center;
}
.timer-segment {
    padding: .3rem;
    background-color: #0003;
    border-radius: .3rem;
}
.counter-number {
	font-size: 1rem;
}
.counter-unit {
	text-transform: uppercase;
	font-size: .75rem;
}
.event-data {
    background-color: #f6f6f6;
    border-radius: .5rem;
    padding: 2rem;
    margin-block: 2rem;
}
.event-data h2 {
    font-weight: bold;
    font-size: 1.6rem;
    margin-block-end: 1em;
}
.event-data h3 {
    font-size: .9rem;
    text-transform: uppercase;
    margin-top: 1.5rem;
    font-weight: bold;
}
.event-data .event-cta {
    margin-block-start: 2rem;
    border-top: 1px solid #ccc;
    padding-block-start: 2rem;
    text-align: center;
}
.member-scroller ul {
    margin-block: 1rem;
    list-style: none;
}
.member-scroller img {
    height: 80px;
    width: 100%;
    object-fit: contain;
    object-position: center;
}
.page-header-wrapper {
    position: relative;
    padding-block-start: 200px;
    color: #fff;
    background: linear-gradient(#00000000, #00000066, #000000cc);
    overflow: hidden;
}
.language-bar {
    position: fixed;
    bottom: 2rem;
    right: 0;
    padding: .5rem;
    border: 1px solid #ddd;
    background-color: #f6f6f6;
    border-radius: 3px 0 0 3px;
    box-shadow: 0 2px 4px  #0002;
    z-index: 99;
    transform: translateX(110%);
    transition: transform .5s ease-in;
}
.language-bar.loaded {
    transform: translateX(0%);
}
.language-bar:empty {
    display: none;
}
.language-bar > ul {
	list-style:none;
	position: relative;
}
.language-bar .sub-menu {
    position: absolute;
    list-style: none;
    bottom: 100%;
    right: -10px;
    background: #f6f6f6;
    padding: 5px 10px;
    width: 44px;
    box-shadow: 0 2px 4px #0002;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease-in, visibility .2s ease-in;
}
.language-bar:focus-within .sub-menu,
.language-bar:hover .sub-menu {
    visibility: visible;
    opacity: 1;
}
.asiex-header .page-header-wrapper {
    color: inherit;
    background: linear-gradient(90deg, #ffffffdd, #ffffff99, #ffffff00);
}
.page-header {
    position: relative;
    overflow: hidden;
    background-color: var(--color-secondary);
}
.page-header.asiex-header {
    background-color: var(--color-primary-50);
}
.page-header > img {
    --_translate: 0;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .8;
    translate: 0 var(--_translate);
}
.page-header.asiex-header > img {
    filter: grayscale(1);
    opacity: .5;
    border-radius: 0;
}
.page-header-content {
    min-height: 150px;
    text-align: center;
    margin-block-end: 3rem;
}
.page-header-content img {
    margin-block-end: 1rem;
}
.breadcrumbs {
    display: none;
    text-transform: uppercase;
    margin-block-end: 1rem;
    font-size: .75rem;
}
.breadcrumbs a {
    text-decoration: none;
    color: inherit;
    margin-inline: .5rem;
    opacity: .5;
}
.breadcrumbs > span {
	display: none;
}
.breadcrumbs a[href] {
    opacity: 1;
}
.page-header-text {
    line-height: 1.4;
    max-width: 50rem;
    margin-inline: auto;
}
.page-header h1 {
    font-size: 2.5rem;
    margin-block-end: .5em;
    text-wrap: balance;
    line-height: 1;
}
.blog-header .page-header-wrapper {
    text-align: center;
    background: linear-gradient(#00000000, #00000066);
}
.blog-header h1 {
    margin-inline: auto;
}
footer {
    padding-block: 2rem;
    background-color: #262626;
    font-size: .8rem;
    color: #ffffff99;
}
.footer-links {
    margin: 2rem .5rem;
}
footer a {
    text-decoration: none;
    color: inherit;
}
footer a:hover {
    color: var(--color-primary);
}
.footer-logo {
    display: inline-block;
    margin-block-end: 1rem;
}
.footer-logo img {
    width: 130px;
    filter: grayscale(1);
}
.footer-links > ul {
    list-style: none;
    display: grid;
    gap: 2rem;
    font-weight: bold;
    color: var(--color-primary);
}
.footer-links > ul ul {
    list-style: none;
    font-weight: normal;
    margin-block-start: 1rem;
    color: #fff9;
}
.footer-links > ul ul li {
    margin-block-end: .5rem;
}
.sm-links {
    list-style: none;
    margin-block: 1rem;
    display: flex;
    gap: .5rem;
}
.sm-links a {
    filter: grayscale(1);
    transition: filter .3s;
}
.sm-links a:hover {
    filter: grayscale(0);
}
.sm-links img {
    width: 32px;
    height: 32px;
}
footer h4 {
    font-weight: bold;
    color: var(--color-primary);
    margin-block-start: 2rem;
}
.newsletter-field {
    display: flex;
    background-color: #eee;
    border-radius: 100px;
    grid-column: 1 / -1;
    margin-block: .5rem;
    max-width: 320px;
}
.newsletter-field-input {
    border-radius: 100px;
}
.newsletter-field-button {
    border-radius: 100px;
    background-color: transparent;
    color: var(--color-primary);
    padding-inline: 1em;
    flex-shrink: 0;
}
.newsletter-field-button:hover,
.newsletter-field-button:focus-visible {
    background-color: var(--color-primary-600);
    color: #fff;
}
.copyright-strip {
    border-top: 1px solid #333;
    margin-block-start: 2rem;
    padding-block-start: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.copyright-strip ul {
    list-style: none;
}
.copyright-strip li {
    margin-block: .5rem;
}
.mission-vision {
    background-color: var(--color-primary-50);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}
.mission-vision > div {
    padding: 2rem;
}
.mission-vision > div + div {
    border-top: 1px solid var(--color-primary-200)
}
.mission-vision h3 {
    color: var(--color-primary);
}
.mission-vision p {
    text-wrap: balance;
}
.tabs-select {
    padding: 1rem;
    overflow-x: auto;
    white-space: nowrap;
}
.tabs-select a {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    padding: .5rem;
    color: inherit;
    opacity: .6;
}
.tabs-select a.active {
    opacity: 1;
}
.tab-content-item {
    scroll-margin: 200px;
    display: none;
    background-color: var(--color-secondary);
    padding: 1rem 2rem;
    color: #fff;
    border-radius: .5rem;
}
.tab-content-item.show {
    display: block;
}
.about-map {
    height: 80vh;
}
.timeline {
    margin-block: 2rem;
    position: relative;
}
.cta-section {
    position: relative;
    min-height: 250px;
    display: grid;
    align-items: center;
    background-image: linear-gradient(-90deg, var(--color-primary), var(--color-secondary) );
}
.feature-cta-section {
    padding-inline: 2rem;
    border-radius: .5rem;
    margin-block: 2rem;
}
.cta-section > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask: linear-gradient(90deg, #fff0, #fff);
}
.cta-section-content {
    position: relative;
    color: #fff;
    font-size: 1.4rem;
}
.cta-section-content p {
    margin-block-end: 1rem;
}
.staff-tile {
    display: block;
    margin-inline: 1rem;
    border-radius: .75rem;
    margin-block: 2rem;
    text-decoration: none;
    color: #333;
}
.staff-tile-pic {
    overflow: hidden;
    border-radius: .5rem;
}
.staff-tile-pic img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: scale .5s ease-in-out;
}
.staff-name {
    font-size: 1.2rem !important;
    margin-block-end: 0 !important;
    font-weight: normal;
}
.staff-title {
    margin-block: .25rem  !important;
}
.staff-tile:hover {
    color: var(--color-primary);
}
.staff-tile:hover img {
    scale: 1.05;
}
.staff-modal {
    position: fixed;
    inset: 0;
    overflow-y: auto;
    z-index: 51;
    display: none;
    opacity: 0;
    transition: display .2s ease-in allow-discrete, opacity .2s ease-in;
}
.staff-modal.show {
    opacity: 1;
    @starting-style {
        opacity: 0;
    }
}
.staff-modal.show {
    display: flex;
    flex-direction: column;
}
.staff-modal .modal-overlay {
    background: #f6f6f699;
    backdrop-filter: blur(10px);
    position: fixed;
    inset: 0;
}
.staff-modal-box {
    position: relative;
    background-color: #fff;
    width: calc(100vw - 2rem);
    max-width: 960px;
    margin: auto;
    box-shadow: 2px 2px 15px #0002;
    border-radius: .5rem;
    padding: 4rem 1rem;
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;

    opacity: 0;
    scale: .9;
    display: none;
    transition: display .2s ease-in allow-discrete, opacity .2s ease-in, scale .2s ease-in;
}
.staff-modal.show .staff-modal-box {
    display: block;
    opacity: 1;
    scale: 1;
    @starting-style {
        opacity: 0;
        scale: .9;
    }
}
.staff-modal-box .close-modal {
    position: absolute;
    top: .25rem;
    right: .25rem;
    font-size: 1.4rem;
    padding: .5rem .7rem;
    border-radius: .2rem;
    line-height: 1;
}
.staff-modal-box .staff-tile-pic {
    margin-block-end: 1rem;
}
.staff-modal-box .staff-details {
    margin-block-end: 2rem;
}
/* flip staff card */
.staff-card-wrapper {
    padding-block-end: 2rem;
}
.staff-card {
    display: block;
    text-decoration: none;
}
.staff-card-content {
    width: 100%;
    border-radius: .5rem;
    background: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.staff-card-front img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.staff-card-back {
    color: #333;
    padding: .5rem;
}
@media (hover: hover) {
    .staff-card-wrapper {
        position: relative;
        width: min(300px, 100%);
        height: auto;
        aspect-ratio: 1;
        margin-block-end: 2rem;
        display: inline-block;
    }
    .staff-card {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        margin: -50%;
        perspective: 1000px;
    }
    .staff-card-content {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        box-shadow: 0 0 15px rgba(0,0,0,0.1);

        transition: transform 1s;
        transform-style: preserve-3d;
    }
    .staff-card:hover .staff-card-content {
        transform: rotateY( 180deg ) ;
        transition: transform 0.5s;
    }
    .staff-card-front,
    .staff-card-back {
        position: absolute;
        height: 100%;
        width: 100%;
        border-radius: inherit;
        background: white;
        text-align: center;
        overflow: hidden;
        backface-visibility: hidden;
    }
    .staff-card-front img {
        position: absolute;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .staff-card-back {
        background: var(--color-primary);
        color: white;
        transform: rotateY( 180deg );
        display: grid;
        align-content: center;
        padding-inline: 2rem;
    }
}
/* accordion */
.accordion-group {
	margin-block: 2rem;
    width: 100%;
}
.accordion-group .accordion-button {
	display: flex;
    border-radius: 0;
	text-align-last: left;
	width: 100%;
	margin-top: 1rem;
	border: none;
	background-color: #fff;
	box-shadow: 2px 2px 5px #0001;
	padding: 1rem;
	font-weight: bold;
	font-size: 1.2rem;
	text-align: left;
	line-height: 1.2;
}
.accordion-group .accordion-button:hover {
	cursor: pointer;
    color: var(--color-secondary);
}
.accordion-group .accordion-button::after {
	content: "+";
	margin-left: auto;
}
.accordion-group .accordion-button.active::after {
	content: "-";
}
.accordion-group .accordion-content {
	display: none;
	padding: 1rem 2rem;
	background-color: #fff;
	box-shadow: 2px 2px 5px #0001;
    text-align: left;
}
.testimonial-item {
    margin-block: 2rem;
}
.testimonial-pic {
    height: 150px;
    object-fit: cover;
}
.testimonial-text::before {
    content: "";
    display: block;
    background: url("../img/quotes.svg") no-repeat;
    width: 2rem;
    height: 2rem;
    background-size: contain;
    line-height: 2rem;
}
.blog-article-header img {
    margin-block-start: -1.5rem;
    position: relative;
    margin-inline: auto;
    max-height: 55vh;
    width: auto;
}
.blog-article-meta {
    padding-block-start: 1rem;
}
.blog-article-author {
    margin-block: 1.5rem;
    background-color: #f6f6f6;
    border-radius: .5rem;
    padding: .5rem 1rem;
    line-height: 1.4;
}
.blog-article-author h4 {
    font-weight: bold;
    margin-block: .5rem;
}
.blog-article-author p {
    margin-block-end: .5rem;
}
.share-page {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.blog-article-content {
    padding-block-start: 1rem;
    margin-inline: auto;
    margin-block-end: 2rem;
    font-size: 1.2rem;
}
.news-item {
    display: block;
    margin-block-end: 2rem;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    border-radius: .5rem;
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.news-item-thumbnail img {
    height: 150px;
    width: 100%;
    object-fit: contain;
}
.newsletter-item-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 100%;
}
.newsletter-item {
    margin-block-end: 1rem;
    text-decoration: none;
    color: inherit;
    display: grid;
    grid-template-columns: 50px auto;
    gap: 1rem;

    padding: .8rem 1.6rem;
    border-radius: .5rem;
    background: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.newsletter-editions {
    text-align: center;
    padding-block: 1rem;
    margin-block-end: 2rem;
    border-bottom: 1px solid #ccc;
}
.capital-section {
    padding: 1rem;
    border-radius: .5rem;
    margin-block-end: 2rem;
    text-align: left;
    display: grid;
    grid-template-columns: min(150px, 40vw) auto;
    gap: 1rem;
    background-color: #fff;
    box-shadow: 2px 2px 10px var(--color-primary-100);
}
.capital-section img {
    aspect-ratio: 1;
    object-fit: cover;
    max-height: 300px;
}
.pagination a,
.pagination .current {
    display: inline-flex;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
	color: #333;
	background: #eee;
	padding: .5em 1.2em .45em;
    border-radius: 20rem;
	transition: background-color .3s, color .3s;
}
.pagination .current {
    color: var(--color-secondary);
    background-color: transparent;
    box-shadow: inset 0 0 0 1px #eee;
}
.pagination a:hover {
    background-color: var(--color-bright);
    color: #333;
}
/* wizard */
.step-app > .step-steps {
    margin: 0;
    display: flex;
	gap: 30px;
	justify-content: center;
    overflow:hidden;
}
.step-app > .step-steps > li {
	flex: 1;
	border-bottom: 4px solid var(--color-primary-100);
	text-transform: uppercase;
	font-size: .75em;
	padding: .5em 0;
	list-style: none;
    cursor: pointer;
	position: relative;
}
.step-app > .step-steps > li:not(:last-child)::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	right: -18px;
	border-right: 1px solid var(--color-primary-50);
	border-bottom: 1px solid var(--color-primary-50);
	transform: rotate(-45deg);
}
.step-app > .step-steps > li:hover {
    border-color: var(--color-primary-100);
}
.step-app > .step-steps > li.active {
    border-color:var(--color-primary);
}
.step-app > .step-steps > li.error{
    background-color:#e7505a;
    color:#fff
}
.step-app > .step-steps > li.done {
    border-color: var(--color-primary);
}
.step-app > .step-steps > li > .number {
    background:#fff;
    padding:0 8px;
    display:inline-block;
    text-align:center;
    margin-right:15px;
    border-radius:3px;
    color:#333
}
.step-app > .step-content{
    padding-top: 1em;
}
.step-app > .step-content > .step-tab-panel{
    display:none;
	min-height: 350px;
}
.step-app > .step-content > .step-tab-panel.active{
    display:block
}
.step-app > .step-footer{
	border-top: 2px solid var(--color-primary-50);
	padding-top: .5em;
    margin-top:15px;
    margin-bottom:15px
}
.step-app > .step-footer > .step-btn {
	color: #fff;
	background-color: var(--color-primary);
	color: #fff;
	font-size: .9em;
	text-transform: uppercase;
	padding: 10px 40px;
	cursor: pointer;
	border: none;
	box-sizing: border-box;
	transition: background-color .3s;
}
.step-app > .step-footer > .step-btn:hover {
	background: var(--color-primary-800);
}
/* wizard end */
.member-item {
    display: block;
    margin-block-end: 2rem;
    padding: .5rem 2rem;
    text-decoration: none;
    color: inherit;
    border-radius: .5rem;
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.member-item-logo img {
    height: 150px;
    width: 100%;
    object-fit: contain;
    border-radius: 0;
}
.member-item h4 {
    font-weight: bold;
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-block-end: 1rem;
}
.member-item dl {
    display: grid;
    grid-template-columns: 100px auto;
    row-gap: .25rem;
}
@media only screen and (min-width: 48em) { /* sm */
    .footer-links > ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .copyright-strip li {
        display: inline-block;
        padding-inline: 1rem;
    }
    .tabs-select {
        white-space: unset;
    }
    .tabs-select a {
        display: block;
        border-left: 4px solid #ccc;
        padding-inline-start: 2rem;
        text-wrap: balance;
    }
    .tabs-select a.active {
        border-left-color: var(--color-secondary);
    }
    .tabs-content {
        padding: 1rem;
        font-size: 1.2rem;
    }
}
@media only screen and (min-width: 62em) { /* md */
    .featured-events {
        grid-template-columns: repeat(2, 1fr);
    }
    .mission-vision {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .mission-vision > div + div {
        border-top: none;
        border-left: 1px solid var(--color-primary-200)
    }
}
@media only screen and (width < 75em) { /* < lg */
    .primary-menu {
        padding-block: 1rem;
        display: grid;
        grid-template-columns: auto auto;
    }
    .toggle-menu {
        display: block;
        position: relative;
        padding-inline: .5rem;
        width: 3rem;
        height: 3rem;
        margin-inline-start: auto;
        margin-block: auto;
        background-color: transparent;
    }
    .toggle-menu::before,
    .toggle-menu::after {
        content: "";
        position: absolute;
        inset: 0;
        margin: auto;
        height: 2px;
        width: 1.5rem;
        border-radius: 1px;
        background-color: currentColor;
        transition: inset .2s ease-in-out, transform .2s ease-in-out;
    }
    .toggle-menu::before {
        transform: translateY(-.5rem);
        box-shadow: 0 .5rem currentColor;
    }
    .toggle-menu::after {
        transform: translateY(.5rem);
    }
    .primary-menu li.has-children > a::after {
        content: "";
        display: inline-block;
        width: .75rem;
        height: 1rem;
        background: url("../img/chevron-down.svg") no-repeat;
        background-size: contain;
        align-self: self-end;
        filter: grayscale(1);
    }
    .menu-active .primary-menu nav > ul {
        margin-block-start: 1rem;
    }
    .menu-active .toggle-menu::before, 
    .menu-active .toggle-menu::after {
        inset: 0;
        margin: auto;
        box-shadow: none;
    }
    .menu-active .toggle-menu::before {
        transform: rotate(45deg);
    }
    .menu-active .toggle-menu::after {
        transform: rotate(-45deg);
    }
    .primary-menu nav {
        grid-column: 1 / -1;
    }
    .primary-menu nav,
    .secondary-menu {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows .3s ease-in-out;
    }
    .menu-active .primary-menu nav,
    .menu-active .secondary-menu {
        grid-template-rows: 1fr;
    }
    .primary-menu nav > ul,
    .secondary-menu > * {
        overflow: hidden;
    }
    .primary-menu nav > ul > li {
        border: 1px solid #f6f6f6;
        border-radius: .5rem;
        margin-block-start: .2rem;
    }
    .primary-menu .has-children ul {
        height: 0;
        display: none;
        overflow: hidden;
        transition: height .3s ease-in, display .3s ease-in allow-discrete;
    }
    .primary-menu .has-children.open-submenu ul {
        height: auto;
        display: block;
        @starting-style {
            height: 0;
        }
    }
    .tile h3 {
        grid-row: 1 / 2;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1rem;
        padding-block-start: 5rem;
        text-shadow: 0 -1px 2px 2px #f6f6f6;
        background-image: linear-gradient(#f6f6f600, #f6f6f699, #f6f6f6);
    }
}
@media only screen and (min-width: 75em) { /* lg */
    :root {
        --hero-height: 95vh;
        --hero-min-height: 600px;
    }
    .top-header {
        flex-direction: column-reverse;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        z-index: 50;
        box-shadow: none;
        transition: background-color .2s;
    }
    .top-header::after {
        content: "";
        position: absolute;
        inset: 0;
        bottom: -20px;
        z-index: -1;
        background-image: linear-gradient(#0009, #0006, #0000);
        transition: opacity .5s;
    }
    .menu-floating .top-header,
    .top-header:hover {
        background-color: var(--color-primary);
    }
    .menu-floating .top-header::after,
    .top-header:hover::after {
        opacity: 0;
    }
    .logo {
        width: 140px;
        filter: brightness(10);
        transition: width .2s ease-in-out;
    }
    .primary-menu {
        padding-block: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .primary-menu nav > ul {
        display: flex;
        font-weight: normal;
    }
    .toggle-menu {
        display: none;
    }
    .primary-menu nav ul {
        position: relative;
    }
    .primary-menu .has-children ul {
        margin-inline-start: -.5rem;
        position: absolute;
        padding: .3rem;
        background-color: #fffe;
        backdrop-filter: blur(5px);
        border-radius: 1rem;
        box-shadow: 0 2px 5px #0002;
        max-width: 250px;
        min-width: max-content;
        display: none;
        margin-block-start: 1rem;

        transform-origin: top left;
        transition: all ease-in-out .1s .1s allow-discrete;
        top: 110%;
        opacity: 0;
    }
    .primary-menu .has-children ul::before {
        content: "";
        position: absolute;
        top: -1rem;
        height: 1rem;
        width: 100%;
    }
    .primary-menu .has-children:hover ul,
    .primary-menu .has-children:focus-within ul {
        display: block;
        top: 90%;
        opacity: 1;
        @starting-style {
            opacity: 0;
            top: 110%;
            transform: scaleY(1.1);
        }
    }
    .primary-menu nav > ul > li > a {
        color: #fff;
    }
    .primary-menu nav a {
        border-radius: .8rem;
    }
    .primary-menu nav > ul > li > a::before {
        content: "";
        position: absolute;
        bottom: 2px;
        width: 0;
        height: 2px;
        background-color:  #fff;
        opacity: .5;
        transition: all .3s ease-in;
    }
    /* .primary-menu li.has-children > a::after {
        content: "";
        display: inline-block;
        width: .75rem;
        height: .6rem;
        background: url("../img/chevron-down.svg") no-repeat;
        background-size: contain;
        align-self: center;
        filter: grayscale(1) brightness(2);
    } */
    .primary-menu nav > ul > li:hover > a::before,
    .primary-menu nav > ul > li:focus-within > a::before {
        width: 50px;
        opacity: 1;
    }
    .primary-menu .has-children ul a {
        padding-inline: 1rem;
    }
    .primary-menu .has-children ul a:hover {
        color: var(--color-primary);
    }
    .secondary-menu {
        background-color: #0003;
    }
    .secondary-menu-wrapper {
        padding-block: .5rem;
        display: flex;
        justify-content: end;
        gap: .5rem;
        border-top: none;
        position: relative;
    }
    .search-field {
        order: -1;
        /* border-bottom: 1px solid #fff6; */
        background-color: #0003;
    }
    .search-field-input {
        color: #fff;
        background-color: transparent;
        line-height: 1rem;
    }
    .search-field-input::placeholder {
        color: #fff;
    }
    .search-field-button,
    .search-field-button:hover {
        color: #fff;
    }
    .page-header-wrapper {
        margin-block-start: 150px;
    }
    .home-section {
        padding-block: 4rem;
    }
    .home-section-tight {
        padding-block: 1rem;
    }
    .tile {
        --_transition-speed: .8s;
        display: block;
        height: 420px;
        position: relative;
    }
    .tile::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: var(--color-primary);
        mix-blend-mode: multiply;
        opacity: 0;
        transition: opacity var(--_transition-speed);
    }
    .tile:hover {
        grid-template-rows: 420px 1fr;
        --_transition-speed: .6s;
    }
    .tile:hover::before {
        opacity: 1;
    }
    .tile h3 {
        padding-block-end: 1rem;
        line-height: 1.2;
    }
    .tile-text {
        /* padding-block-start: 80px; */
        color: #fff;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        overflow: hidden;
        isolation: isolate;
    }
    .tile-text::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        transition: opacity var(--_transition-speed);
        background-image: linear-gradient(#6a953f00, #6a953fcc);
    }
    .tile-description {
        overflow: hidden;
        max-height: 0;
        transition: max-height var(--_transition-speed);
    }
    .tile:hover .tile-description {
        max-height: 420px;
    }
    .membership-item {
        padding: 2rem 1rem;
    }
    .blog-item {
        margin-block: 1.5rem;
    }
    .blog-item-thumbnail img {
        height: 250px;
    }
    .featured-events {
        grid-template-columns: repeat(3, 1fr);
    }
    .event-tile-lg {
        grid-column: 1 / 3;
    }
    footer {
        padding-block: 4rem;
    }
    .footer-links {
        margin-block-start: 0;
    }
    .footer-links > ul {
        grid-template-columns: repeat(3, 1fr);
    }
    .copyright-strip {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .cta-section-content {
        font-size: 2rem;
    }
    .feature-cta-section {
        padding-inline: 4rem;
    }
    .blog-article-meta {
        position: sticky;
        top: 100px;
    }
}
@media only screen and (min-width: 75em) and (max-width: 96em) { 
    .secondary-menu {
        overflow: hidden;
        max-height: 80px;
        transition: max-height .5s ease-in-out;
    }
    .menu-floating .secondary-menu {
        max-height: 0;
    }
}
@media only screen and (min-width: 96em) { 
    :root {
        --max-width: 1600px;
    }
	.content-grid {
	    	--content-width: 1400px;
    }
    .top-header {
        display: grid;
        grid-template-columns: auto auto;
    }
    .primary-menu {
        gap: 2rem;
        justify-content: space-between;
    }
    .secondary-menu {
        display: flex;
        justify-content: right;
        align-items: center;
        background-color: transparent;
    }
    .secondary-menu .btn {
        white-space: nowrap;
    }
}