
#modalContainer {
  position: fixed;
  inset: 0;
  padding: 50px;
  overflow: auto;
  z-index: 3000;
  pointer-events: none;
}

  #modalContainer::before {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0,0,0,0.7);
    opacity: 0;
    transition: .3s;
  }

  .modalWindow {
    position: relative;
    width: calc(100vw - 60px);
    max-width: 660px;
    margin: 0 auto;
    padding: 80px 80px 60px;
    font-size: var(--default-p);
    background: var(--offwhite);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .25s cubic-bezier(0.4, 0.0, 0.2, 1) 0.01s;
    transform: translate(0, -20px);
    box-shadow: 0px 5px 12px rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
  }

    .modalClose .btn {
      display: block;
    }

body.modalActive {
  overflow: hidden;
}

  body.modalActive #modalContainer {
    pointer-events: all;
  }

  body.modalActive #modalContainer::before {
    opacity: 1;
  }

  body.modalActive .modalWindow {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: all;
  }


@media (max-width: 768px) {
  #modalContainer {
    padding: 0;
  }

  .modalWindow {
    --modal-window-padding: clamp(16px, 10.42vw, 80px);
    padding-top: var(--modal-window-padding);
    padding-left: var(--modal-window-padding);
    padding-right: var(--modal-window-padding);
    padding-bottom: 20px;
    width: 100%;
  }
}

@media (max-width: 526px) {
  .modalWindow {
    min-height: 100vh;
  }
}

:root {
	--blue: #809BAF;
	--dark-blue: #768D9F;
	--green: #97A27A;

	--black: #252525;
	--charcoal: #1e1e1e;
	--grey: #D6D6D6;
	--khaki: #EFE6DF;
	--white: #F7F4EE;
	
	--nav-background: rgba(247, 244, 238, .7);
	--nav-text: var(--charcoal);
	--nav-text-size: clamp(13px, 3.55vw, 18px);
	--nav-underline: var(--black);
	
	--primary-color-hex: var(--green);
	--primary-color: var(--primary-color-hex);
	--primary-color-text: var(--white);

	--secondary-color-hex: var(--blue);
	--secondary-color: var(--secondary-color-hex);
	--secondary-color-text: var(--white);

	--mobile-menu-background: rgba(247,244,238,0.95);
	--mobile-nav-text-color: var(--charcoal);
	
	--section-padding-top: 70px;
	--section-padding-bottom: 70px;
	--left-right-padding: clamp(40px, 7.85vw, 80px);
	/* --left-right-padding: clamp(40px, 9.72vw, 140px); */
	
	--footer-background-color: var(--black);
	--footer-text-color: #fff;

	--copyright-background-color: var(--footer-background-color);
	
/* 	--font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	--font-secondary: 'Helvetica Neue', Helvetica, Arial, sans-serif; */
	--font-primary: "Inter", Helvetica, Arial, sans-serif;
	--font-secondary: "Inter", Helvetica, Arial, sans-serif;
	
	--default-lh: 1.5;
	--default-p: clamp(14px, 1.56vw, 16px);
	--default-p-weight: 400;

	--default-h1: clamp(36px, 3.47vw, 50px);
	--default-h2: clamp(30px, 4.68vw, 48px);
	--default-h3: clamp(34px, 4.02vw, 58px);
	--default-h4: clamp(21px, 2.73vw, 28px);
	--default-h5: clamp(16px, 2.05vw, 21px);
	--default-btn: var(--default-p);

	--max-width: 1920px;

	--header_spacer_height: 145px;

	--arrow-button-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 15'%3E%3Cpath d='M28.3735 8.70711C28.764 8.31658 28.764 7.68342 28.3735 7.29289L22.0095 0.928932C21.619 0.538408 20.9858 0.538408 20.5953 0.928932C20.2048 1.31946 20.2048 1.95262 20.5953 2.34315L26.2521 8L20.5953 13.6569C20.2048 14.0474 20.2048 14.6805 20.5953 15.0711C20.9858 15.4616 21.619 15.4616 22.0095 15.0711L28.3735 8.70711ZM0.549072 9H27.6664V7H0.549072V9Z' /%3E%3C/svg%3E");

	--cc-font-family: var(--font-secondary);
	--cc-modal-border-radius: .5rem;
	--cc-btn-border-radius: .4rem;
	--cc-modal-transition-duration: .25s;
	--cc-link-color: var(--cc-btn-primary-bg);
	--cc-modal-margin: 1rem;
	--cc-z-index: 2147483647;
	--cc-bg: #fff;
	--cc-primary-color: #2c2f31;
	--cc-secondary-color: #5e6266;
	--cc-btn-primary-bg: #30363c;
	--cc-btn-primary-color: #fff;
	--cc-btn-primary-border-color: var(--cc-btn-primary-bg);
	--cc-btn-primary-hover-bg: #000;
	--cc-btn-primary-hover-color: #fff;
	--cc-btn-primary-hover-border-color: var(--cc-btn-primary-hover-bg);
	--cc-btn-secondary-bg: #eaeff2;
	--cc-btn-secondary-color: var(--cc-primary-color);
	--cc-btn-secondary-border-color: var(--cc-btn-secondary-bg);
	--cc-btn-secondary-hover-bg: #d4dae0;
	--cc-btn-secondary-hover-color: #000;
	--cc-btn-secondary-hover-border-color: #d4dae0;
	--cc-separator-border-color: #f0f4f7;
	--cc-toggle-on-bg: var(--cc-btn-primary-bg);
	--cc-toggle-off-bg: #667481;
	--cc-toggle-on-knob-bg: #fff;
	--cc-toggle-off-knob-bg: var(--cc-toggle-on-knob-bg);
	--cc-toggle-enabled-icon-color: var(--cc-bg);
	--cc-toggle-disabled-icon-color: var(--cc-bg);
	--cc-toggle-readonly-bg: #d5dee2;
	--cc-toggle-readonly-knob-bg: #fff;
	--cc-toggle-readonly-knob-icon-color: var(--cc-toggle-readonly-bg);
	--cc-section-category-border: var(--cc-cookie-category-block-bg);
	--cc-cookie-category-block-bg: #f0f4f7;
	--cc-cookie-category-block-border: #f0f4f7;
	--cc-cookie-category-block-hover-bg: #e9eff4;
	--cc-cookie-category-block-hover-border: #e9eff4;
	--cc-cookie-category-expanded-block-bg: transparent;
	--cc-cookie-category-expanded-block-hover-bg: #dee4e9;
	--cc-overlay-bg: rgba(0,0,0,.65);
	--cc-webkit-scrollbar-bg: var(--cc-section-category-border);
	--cc-webkit-scrollbar-hover-bg: var(--cc-btn-primary-hover-bg);
	--cc-footer-bg: var(--cc-btn-secondary-bg);
	--cc-footer-color: var(--cc-secondary-color);
	--cc-footer-border-color: #e4eaed;
	--cc-pm-toggle-border-radius: 4em;
}


@keyframes divider-hero {
	0% {
		width: 0%;
		/* height: 4px; */
		opacity: 0;
	}
	5% {
		opacity: 1;
	}
	100% {
		width: 100%;
		/* height: 4px; */
		opacity: 1;
	}
}

@keyframes divider-horizontal {
	0% {
		width: 0;
	}
	100% {
		width: var(--divider-width);
	}
}


.divider {
	--divider-size: 4px;
	--divider-color: var(--black);

	position: absolute;
}


/* Default Styles test
   ========================================================================== */


article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
    display: block
}

audio,
canvas,
progress,
video {
    display: inline-block
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

a:active,
a:hover,
a:visited:hover,
a:active:hover {
	color: inherit;
    text-decoration: none;
    outline-width: 0
}

b,
strong {
    font-weight: inherit
}

b,
strong {
    font-weight: bolder
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

a img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

.p_form {
	line-height: 1.5 !important;
}

.p_form .fld_check input, .p_form .fld_radio input {
	margin-top: 5px !important;
}

button,
input,
select,
textarea {
    font: inherit;
    margin: 0
}

optgroup {
    font-weight: bold
}

button,
input {
    overflow: visible
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

textarea {
    overflow: auto
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

html {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

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

.wow {
	visibility: hidden;
}
  
  /* Page Layout & Utility0
   ========================================================================== */

body {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
}

.main-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  padding: 0;
  margin: 0 auto;
}

.wide {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.container {
  position: relative;
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.nowrap {
	text-wrap: nowrap;
}


.mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .wide, .main-container {
    width: 100%;
    min-width: 0;
  }

/*
  .container {
    width: 540px;
  }
*/
/*
.flex.stacked {
	margin-right: auto !important;
}
*/
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*  Header
   ========================================================================== */
#header_spacer {
	position: relative;
	height: var(--header_spacer_height);
	transition: .25s ease-out;
}
#header-gradient {
	position: absolute;
	top: 0;
	width: 100%;
	background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.54) 100%);
	height: 200px;
	z-index: 1;
	pointer-events: none;
	display: none;
}

.primary {
	position: fixed;
	padding: 0;
	display: block;
	z-index: 3000;
	/* background-image: linear-gradient(180deg, rgba(0,0,0,0.2), transparent); */
	background-color: var(--nav-background);
	transition: .3s;
}

	.scrolled {
		--header_spacer_height: 90px;
	}

	.scrolled .primary {
		background-image: none;
		box-shadow: 0 -5px 10px #000;
		background-color: var(--nav-background);
		backdrop-filter: blur(10px);
		top:0;
	}

	.mobile_open .scrolled .primary {
		background-color: transparent;
	}

.primary > .container {
  width: 100%;
	height: var(--header_spacer_height);
  padding-left: var(--left-right-padding);
  display: flex;
	align-items: center;
	justify-content: space-between;
	transition: .25s ease-out;
}

#logo {
  transition: .25s ease-out;
  line-height: 1;
}

	.scrolled #logo {
	}

	#logo a {
		display: flex;
		transition: .25s ease-out;
	}

		#logo img {
			width: 100%;
			height: auto;
			transition: .3s;
		}

		#logo svg {
			height: 61px;
		}

			#logo_icon {
				transition: .25s ease-out;
			}

@media (max-width: 1024px) {
	:root {
		--header_spacer_height: 90px;
	}

	#logo img {
		max-width: 170px;
	}
  .primary {
/*     padding: 10px 0; */
    display: block;
  }
}

/*
@media (max-height: 600px) {
  .primary {
    position: relative;
    padding: 0;
  }
  
  	.primary.scrolled {
	  	padding: 0;
  	}
  
  .primary > .container {

    width: 100%;
    padding: 0;
  }
  
  #logo {
    float: left;
    display: block;
    margin-left: 2%;
    padding: 12px 0;
    width: 70%;
    max-width: 300px;
    
    float: none;
  }
  
  	#logo img {
	  	width: 100%;
  	}
}
*/
  
/*  Navigation
   ========================================================================== */

/*  Subscribe
   ========================================================================== */


section#subscribe {
    padding-left: var(--left-right-padding);
    padding-right: var(--left-right-padding);
    background: var(--green);
    padding-top: var(--section-padding-top);
	padding-bottom: 40px;
}
section#subscribe #mc_embed_signup{
	background: transparent !important;
	color: #fff;
	width: 100$;
}
		div#mc_embed_signup_scroll {  display: grid;
			grid-template-columns: 1fr 1fr 1fr;
			grid-template-rows: 1fr 1fr 1fr;
			gap: 0px 0px;
			grid-auto-flow: row;
		}
		
		#mc_embed_signup_scroll > div:nth-child(3) { grid-area: 2 / 1 / 3 / 2; }
		
		#mc_embed_signup_scroll > div:nth-child(4) { grid-area: 2 / 2 / 3 / 3; }
		
		#mc_embed_signup_scroll > div:nth-child(5) { grid-area: 2 / 3 / 3 / 4; }
		
		.clear { grid-area: 3 / 1 / 4 / 4; }
		
		div#mc_embed_signup_scroll h2 { 
			grid-area: 1 / 1 / 2 / 4; 
			color: #fff;
			font-weight: 400;
		}
		
		.indicates-required { 
			color: #fff;
			grid-area: 2 / 1 / 3 / 2; 
		}

		#mc_embed_signup .mc-field-group {
			color: #fff;
		}

			#mc_embed_signup .mc-field-group input {
				background: transparent;
				color: #fff;
			}
			#mc_embed_signup input {
				border: 2px solid #fff;
			}
				#mc_embed_signup input:focus {
					border-color: var(--white);
				}
	#mc_embed_signup .button {
		--btn-color: var(--white);
		--bg-color: var(--charcoal);
		--border-color: var(--charcoal);
/* 		position: relative; */
		padding: 10px 15px;
		font-size: var(--default-btn);
		font-weight: 500;
		letter-spacing: 1px;
		line-height: 1;
		text-align: center;
		text-decoration: none;
		transition: all .4s;
		opacity: 1;
		display: inline-block;
		border: 2px solid #fff;
		border-radius: 0 !important;
		/* border-radius: 4px; */
		cursor: pointer;
	
		color: var(--btn-color);
		background: var(--bg-color);
		border-color: var(--border-color);
	}
	#mc-embedded-subscribe {
		border-color: #111 !important;
	}
	input#mce-LNAME,
	input#mce-FNAME,
	input#mce-EMAIL {
		border: 2px solid #fff !important;
	}
	


/*  General Content Styles
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

#content .cb-body img {
  max-width: 100%;
  height: auto;
}


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

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

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

a.btn, a.btn:visited,
span.btn,
input.btn {
	--btn-color: inherit;
	--bg-color: transparent;
	--border-color: var(--green);
	--hover-color: var(--white);
	--hover-bg: var(--border-color);

	position: relative;
	padding: 10px 15px;
	font-size: var(--default-btn);
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transition: all .4s;
	opacity: 1;
	display: inline-block;
	border: 2px solid #fff;
	/* border-radius: 4px; */
	cursor: pointer;

	color: var(--btn-color);
	background: var(--bg-color);
	border-color: var(--border-color);
}

	.btn::before,
	.btn::after {
		content: "";
		position: absolute;
		inset: 2px;
		opacity: 0;
		transition: .5s;
	}

	.btn::before {
		--border-color: var(--white);
		border-top: solid 2px;
		border-left: solid 2px;
		bottom: 100%;
		right: 100%;
		z-index: 1;
	}

		.btn:hover::before {
			bottom: 2px;
			right: 2px;
			opacity: 1;
		}

	.btn::after {
		--border-color: var(--white);
		border-color: var(--border-color);
		border-bottom: solid 2px;
		border-right: solid 2px;
		top: 100%;
		left: 100%;
	}

		.btn:hover::after {
			top: 2px;
			left: 2px;
			opacity: 1;
		}

	a.btn:hover, a.btn:visited:hover,
	span.btn:hover,
	input.btn:hover {
		color: var(--hover-color);
		background: var(--hover-bg);
	}

	a.btn.green, a.btn.green:visited,
	span.btn.green,
	input.btn.green {
		--btn-color: var(--white);
		--bg-color: var(--green);
		--border-color: var(--green);
	}

	a.btn.blue, a.btn.blue:visited,
	span.btn.blue,
	input.btn.blue {
		--border-color: var(--blue);
	}

	a.btn.yellow, a.btn.yellow:visited,
	span.btn.yellow,
	input.btn.yellow {
		--border-color: var(--yellow);
	}

	a.btn.orange, a.btn.orange:visited,
	span.btn.orange,
	input.btn.orange {
		--border-color: var(--orange);
	}

	a.btn.white, a.btn.white:visited,
	span.btn.white,
	input.btn.white {
		--btn-color: var(--white);
		--hover-color: var(--charcoal);
		--border-color: var(--white);
	}
	
	a.btn.white-transparent, a.btn.white-transparent:visited,
	span.btn.white-transparent,
	input.btn.white-transparent {
		--btn-color: var(--white);
		--hover-color: var(--charcoal);
		--border-color: var(--white);
	}

	a.btn.charcoal, a.btn.charcoal:visited,
	span.btn.charcoal,
	input.btn.charcoal {
		--btn-color: var(--white);
		--bg-color: var(--charcoal);
		--border-color: var(--charcoal);
	}

	a.btn.arrow, a.btn.arrow:visited,
	span.btn.arrow,
	input.btn.arrow {
		--btn-color: var(--border-color);
		--hover-bg: transparent;
		--hover-bg: var(--border-color);
		color: var(--btn-color);
		border-width: 0;
		padding-left: 44px;
		overflow: hidden;
	}

		a.btn.arrow:hover, a.btn.arrow:visited:hover,
		span.btn.arrow:hover,
		input.btn.arrow:hover {
			color: var(--hover-color);
		}

		a.btn.arrow::before, a.btn.arrow:visited::before,
		span.btn.arrow::before,
		input.btn.arrow::before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 27px;
			height: 100%;
			display: block;
			background: var(--arrow-color, var(--white));
			opacity: var(--arrow-opacity, .5);
			-webkit-mask-image: var(--arrow-button-svg);
			mask-image: var(--arrow-button-svg);
			mask-position: center;
			mask-repeat: no-repeat;
			transition: .2s;
			z-index: 1;
		}

			a.btn.arrow:hover::before, a.btn.arrow:visited:hover::before,
			span.btn.arrow:hover::before,
			input.btn.arrow:hover::before {
				background-color: var(--hover-color);
				transform: translateX(5px);
			}

		a.btn::after, a.btn:visited::after,
		span.btn::after,
		input.btn::after {
			content: "";
			position: absolute;
			/* inset: 0; */
			/* background-color: var(--hover-bg); */
			transition: .5s;
			/* clip-path: polygon(0 0, 0 0, -20% 100%, 0 100%); */
			z-index: 0;
		}

			a.btn:hover::after, a.btn:visited:hover::after,
			span.btn:hover::after,
			input.btn:hover::after {
				clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
			}

		a.btn span,
		span.btn span {
			position: relative;
			/* display: inline-block; */
			/* transition: .2s; */
			z-index: 1;
		}


  	a.btn:hover,
  	span.btn:hover,
  	input.btn:hover {
		filter: brightness(110%);
		cursor: pointer;
	}
	
		a.btn:hover span,
		span.btn:hover span {
			transform: translateX(4px);
		}
	
	#content a:not(.btn) {
		font-weight: 300;
	}

		#content a:not(.btn):hover {
			text-decoration: underline;
		}

.divider-line {
	position: absolute;
	top: 0;
	left: 0;
	width: 90px;
	height: 2px;
	/* transform: translateX(calc(var(--default-h2) + 45px)); */
}

	.divider-line.divider-line-right {
		left: unset;
		right: 0;
		transform: translateX(calc(100% - (var(--default-h2) + 45px)));
	}
	.divider-line.divider-line-bottom {
		top: unset;
		bottom: 0;
	}
	.divider-line.divider-line-relative {
		position: relative;
		transform: none;
	}

	.divider-line.blue {
		background-color: var(--blue);
	}

	.divider-line.brown {
		background-color: var(--brown);
	}

	.divider-line.gold {
		background-color: var(--gold);
	}

	.divider-line.grey {
		background-color: var(--grey);
	}

.play-button {
	position: absolute;
	inset: 0;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin: auto;
	transform: scale(1, 1);
	transition: .3s;

	/* background: rgba(255, 255, 255, 0.31); */
	/* border-radius: 16px; */
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	/* backdrop-filter: blur(4px); */
	/* -webkit-backdrop-filter: blur(4px); */
	border: 4px solid rgba(0, 0, 0, 0.3);
}

	.play-button svg {
		fill: var(--yellow);
    stroke: var(--white);
    /* stroke-linejoin: round; */
    stroke-width: 2;
    transition: all 0.3s;
		transform: scale(1.2);
	}

.cb-icon {}

	.cb-icon svg {
		width: 100%;
		height: 100%;
	}
	h6 {
		font-size: clamp(14px, 3.71vw, 16px);
		margin: 0;
		text-transform: uppercase;
		font-weight: 400;
	}


/*  Footer
   ========================================================================== */

#bottom {
	--default-p: clamp(15px, 1.25vw, 18px);

	background-color: var(--footer-background-color);
	height: auto;
	min-height: 300px;
	padding-top: 70px;
	font-size: var(--default-p);
	font-weight: 500;
}

	#bottom > .footer-wrapper {
		position: relative;
		padding: 0 var(--left-right-padding);
	}

	.footer-wrapper > .container {
		gap: 10px;
	}

	#bottom .container {
		padding-bottom: var(--section-padding-top);
		padding-bottom: calc(var(--section-padding-bottom) + 20px);
	}

	#bottom .logo_container {
		width: 212px;

		img {
			filter: brightness(0) invert(1);
		}
	}

	#bottom .columns_contact_container {
		padding: 60px var(--left-right-padding);
	}

#bottom .contact_container {
	
}

	#bottom .contact_container h5 {
		position: relative;
		margin: 0;
		color: var(--footer-text-color);
		font-size: var(--default-p);
		font-weight: 500;
		line-height: 1.1;
	}

	#bottom .contact_container p {
		margin: 0;
		font-size: clamp(10px, 0.83vw, 16px);
		font-weight: 200;
		text-transform: initial;
		line-height: 2;
	}

	#bottom .contact_container .newsletter_container {
		max-width: calc(var(--max-width) * .35);
	}

	#bottom .contact_container form {
		position: relative;
		padding-top: 20px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 12px 6px;
	}

	.contact_container input:not([type="submit"]) {
		width: 100%;
		padding: 5px 20px;
		color: var(--white);
		font-size: clamp(10px, 0.83vw, 16px);
		display: block;
		border-radius: 0;
		border-width: 0;
		background-color: rgba(224, 224, 225, 0.11);
		transition: .2s;
	}

		#bottom .contact_container input[type="submit"] {
			border-radius: 0;
			justify-self: flex-start;
			justify-self: start;
		}

		#bottom .contact_container input:focus {
			color: var(--dark-grey);
			background-color: var(--white);
		}

		#bottom .contact_container input::placeholder {
			color: var(--white);
		}

			#bottom .contact_container input:focus::placeholder {
				color: var(--dark-grey);
			}
		
		.contact_container .formSubmit {
			width: auto;
		}

		#bottom .columns_container {
			position: relative;
			text-transform: uppercase;
			flex: auto;
			display: flex;
			justify-content: flex-end;
		}
		
			.columns_container .columns_wrapper {
				position: relative;
				width: 100%;
				max-width: calc(var(--max-width) * .65);
			}

				#bottom .columns {
					position: relative;
					max-width: calc(var(--max-width) * .65);
					display: grid;
					grid-template-columns: 1fr 1.5fr 40%;
					justify-content: space-between;
					align-items: flex-start;
					gap: 40px;
					flex-wrap: wrap;
				}

					#bottom .columns .footer-list {
						padding: 0;
						margin: 0;
						list-style-type: none;
						font-weight: normal;
						text-transform: initial;
					}

						#bottom .columns .footer-list li {
							display: flex;
							gap: .5em;
						}

							#bottom .columns .footer-list li span {
								color: var(--gold);
								font-size: 11px;
								line-height: 2;
							}

							#bottom .columns .footer-list li p {
								font-weight: 100;
							}



.columns .col {
	position: relative;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

	.columns .col:last-child {
	}

.col h4 {
	position: relative;
	margin: 0.5em 0 0.5em;
	color: var(--footer-text-color);
	font-family: var(--font-primary);
	font-size: var(--default-h4);
	font-weight: 400;
}

	.col h4 img {
		--footer-icon-width: 27px;
		
		width: var(--footer-icon-width);
		height: var(--footer-icon-width);
		margin-right: 5px;
		display: inline-block;
		object-fit: contain;
	}

	.col h4 a {
		color: var(--footer-text-color);
		text-decoration: none;
	}

		.col h4 a:hover {
			text-decoration: underline;
		}

.col p {
	position: relative;
	margin: 0;
	line-height: 1.75;
	font-weight: 300;
}

	.col p a {
		color: var(--footer-text-color);
		
	}
	
		.col p a:not(.btn):hover {
			/* color: var(--primary-color); */
			text-decoration-line: underline;
			text-decoration-color: var(--yellow);
			text-underline-position: under;
			text-decoration-thickness: 1px;
		}

.col.column-one ul {
	padding: 0;
	list-style-type: none;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
	

.col.column-three {
	padding-left: 20%;
	padding-bottom: 30px;
	/* border-left: 3px solid var(--green); */
}

	.col.column-three p {
		margin-bottom: 1em;
		line-height: 1.5;
	}

	.col.column-three::before,
	.col.column-three::after {
		content: "";
		position: absolute;
		left: 0;
		background-color: var(--white);
		width: 2px;
		height: 0;
		display: block;
		transition: height 1s ease-in-out;
	}

		.col.column-three::before {
			top: 0;
		}
		.col.column-three::after {
			bottom: 0;
		}

		.col.column-three.inView::before,
		.col.column-three.inView::after {
			height: 50%;
		}

.footer-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 75%;
	height: 100%;
	/* max-height: 370px; */
	background-image: var(--background-image);
	background-position: -1% center;
	background-repeat: no-repeat;
	background-size: contain;
	opacity: .1;
	pointer-events: none;

	img {
		max-width: 100%;
		max-height: 100%;
		transform: translateX(-50%);
	}
}


.site-footer a {
		color: var(--footer-text-color);
		text-decoration: none;
}

.site-footer .location-info {
	position: relative;
}
	.site-footer .location-info p {
	    margin: 0;
	    font-family: var(--font-secondary);
	    font-size: 1.7rem;
	    font-weight: 700;
	    color: var(--footer-text-color);
	    text-transform: uppercase;
	    line-height: 1.5;
		white-space: nowrap;
		letter-spacing: 3px;
	}

	.site-footer .contact-info {
		position: relative;
		margin-top: 3em;
	}

		.site-footer .contact-info p {
		    margin: 0;
		    font-size: 1.4rem;
		    font-weight: 700;
		    color: var(--footer-text-color);
		    text-transform: uppercase;
		    line-height: 1.2;
			white-space: nowrap;
		}
		
			.contact-info a[href^='tel'] {
				font-size: 35px;
				font-weight: 400;
			}
	
			.contact-info a[href^='mailto:'] {
				font-size: 18px;
			}
	

.site-footer {
	background-image: var(--background-image);
	background-position: center bottom;
	background-size: cover;
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
  overflow: hidden;
  padding: 0;
}

.footer-row {
  margin: 5em auto;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
  -webkit-flex-flow: row nowrap;
          flex-flow: row;
  -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
}

.footer-column {
  font-size: 1.4em;
  line-height: 1.6;
}

.footer-column p {
  margin: .2em 0;
}

.footer-column a:not(.button) {
  color: #fff;
}

.footer-column strong {
  font-size: 1.14em;
}

.footer-column strong,
.footer-column strong a {
  color: #dea92c !important;
  font-weight: 600;
}

.footer-column a:not(.button):not(.social-link):hover {
  text-decoration: underline;
}

.footer-column a.button {
  font-size: 14px;
  margin: 1em 0;
}

#search {
  position: relative;
  width: 260px;
  margin: 0;
}

.search-input {
  position: relative;
  width: 100%;
  padding: 8px 48px 8px 8px;
  font-size: 16px;
  line-height: 16px;
  background: #404140;
  color: #fff;
  outline: 0;
  box-sizing: border-box;
}

.search-btn,
.search-input {
  margin: 0;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
}

.search-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  background: var(--primary-color);
  color: #fff;
  font-size: 13px;
}

.footer-info {
  padding: 2em 0;
	padding: 2em var(--left-right-padding);
	background-color: var(--charcoal);
}

	.footer-info::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: var(--copyright-background-color);
	}

	.footer-info .container {
		position: relative;
		width: var(--max-width);
		display: flex;
		align-items: center;
		justify-content: space-between;	
	}

	.footer-info p {
		margin: 0;
	}

	.footer-social-wrapper {
		position: relative;
		display: flex;
	}

		.footer-social-wrapper img {
			width: 215px;
		}

		.social_container {
			padding-top: .5em;
			color: var(--primary-color);
			font-size: clamp(20px, 2.73vw, 30px);
			display: flex;
			align-items: center;
		}
		
			.social_container a {
				color: var(--yellow);
				text-decoration: none;
				transition: .2s;
			}
			
				.social_container a:not(:first-child) {
					padding-left: 0.7em;
				}
			
				.social_container a:hover {
					color: var(--primary-color);
				}

				.social_container .santuary_mobile {
					font-size: .8em;
				}

.footer-info .container .btn {
	font-size: 12px;
}
.footer-copyright {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
}

.footer-copyright p {
	margin: 0;
	color: #fff;
  font-family: var(--font-primary);
}

.footer-copyright a,
.footer-copyright a:visited{
  color: #fff;
  text-decoration: none;
} 

.footer-copyright .privacy-policy a:hover {
	text-decoration: underline;
}

.footer-copyright img {
	display: block;
	/* filter: invert(1); */
	opacity: .7;
}
.footer-text {
    font-weight: 100;
    text-transform: none;
}
#bottom .columns,
#bottom .columns_container .columns_wrapper {
    max-width: 100%;
}


.modalBody.old_redirect {
	position: relative;
	color: var(--black);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-bottom: 50px;
}

.modalBody.old_redirect img,
.modalBody.old_redirect svg {
	max-width: 100%;
	margin: 0 auto;
	filter: brightness(0);
}

	.modalBody.old_redirect img:first-of-type {
		max-width: 80%;
	}

.modalBody.old_redirect .video_embed {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
}
	.modalBody.old_redirect video,
	.modalBody.old_redirect iframe {
		position: absolute;
		width: 100%;
		height: 100%;
	}

@media (max-width: 1300px) {
	.footer-info .container {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

}

	
@media (max-width: 1080px) {

}

@media (max-width: 1024px) {
}

@media (max-width: 900px) {
	.footer-background {
		max-height: 260px;
	}
	#bottom .columns {
		grid-template-columns: 1fr 1fr;
	}

	#bottom .columns .column-two {
		grid-row: 2;
	}

}

@media (max-width: 768px) {
	.flex.stacked > img {
	    margin: 0 auto;
	}
	

	#bottom .columns .column-two {
		grid-column: 2;
		grid-row: 1;
	}

	#bottom .columns .column-three {
		padding-left: 0;
		padding-top: 20px;
		border-left: none;
		/* border-top: 3px solid var(--green); */
		grid-row: 2;
		grid-column: 1 / 3;
	}

		.col.column-three::before,
		.col.column-three::after {
			top: 0;
			width: 0;
			height: 3px;
			transition: width 1s ease-in-out;
		}

		.col.column-three::before {
			left: 0;
		}
		.col.column-three::after {
			left: unset;
			right: 0;
		}

		.col.column-three.inView::before,
		.col.column-three.inView::after {
			width: 50%;
			height: 3px;
		}


	#bottom > .container {
		width: 95%;
		align-items: center;
	}
	
		#bottom > .container > div {
			width: 100%;
			align-items: center;
		}

		.site-footer .contact-info p {
			text-align: center;
		}

		.footer-copyright p:first-child {
			transform: scale(.8);
		}



	body.modal_active #modal_container {
		overflow: hidden;
	}
	
	#modal_container[data-modal] .modal_window {
		width: 100%;
		height: 100%;
		top: 0;
		padding-bottom: 0;
	}
	
	#modal_container .modal_window .modal_body {
		overflow: auto;
	}
	div#mc_embed_signup_scroll {  display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: 1fr;
		gap: 0px 0px;
		grid-auto-flow: row;
	}
	#mc_embed_signup_scroll > div:nth-child(3),
	#mc_embed_signup_scroll > div:nth-child(4),
	#mc_embed_signup_scroll > div:nth-child(5),
	.clear,
	div#mc_embed_signup_scroll h2,
	.indicates-required {  
		 grid-area: auto;
	 }
}	

@media (max-width: 768px) and (min-width: 641px) {
	.footer-copyright p:first-child {
		position: absolute;
		right: 0;
		bottom: 0;
		transform: scale(.8) translateY(50%);
	}
}
	
@media (max-width: 640px) {
	:root {
		/* --default-p: clamp(10px, 2.19vw, 14px); */
		--left-right-padding: clamp(18px, 7vw, 115px);
	}

	a.btn, a.btn:visited,
	span.btn,
	input.btn {

	}

	#logo {
		width: 150px;
	}




	.footer-info .container {
		align-items: center;
	}

	.footer-social-wrapper {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.footer-copyright {
		flex-direction: column;
		gap: 20px;
	}

}

@media (max-width: 560px) {
	#bottom .columns_container {
		flex-direction: column;
		align-items: flex-start;
	}

	#bottom .columns {
		grid-template-columns: 1fr;
	}

	#bottom .columns .column-two {
		grid-column: 1;
		grid-row: 2;
	}
	#bottom .columns .column-three {
		grid-column: 1;
		grid-row: 3;
	}
}

@media (max-width: 420px) {
	#logo .logo-wordmark {
		display: none;
	}

	#bottom .columns .col {
		padding: 30px 0 0;
	}

	#bottom .columns .col:last-child {
		padding-bottom: 30px;
	}
}

@keyframes grow {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.05);
	}
}

@keyframes reveal-top-down {
	0% {
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}
	100% {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
}

@keyframes reveal-center-down {
	0% {
		clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
	}
	100% {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
}
#announcement {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 40px;
  padding: 3px;
  color:white;
  font-size: var(--default-p);
  background:var(--announcement-color, transparent);
  display:flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
}

  #announcement p {
    margin: 0;
  }

.scrolled #announcement {
  display: none;
}

.show-countdown .primary {
  padding-top: 70px;
}

.scrolled .show-countdown .primary {
  padding-top: 60px;
}

#countdown-live {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

  .countdown-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: var(--white);
    font-size: 16px;
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
  }

    .countdown-header {
      font-weight: 700;
      text-transform: uppercase;
    }

    .countdown-timer {
      margin: 0;
    }

      .countdown-timer span {
        font-weight: bold;
      }

    .countdown-wrapper.live-now {
      padding: 10px;
    }

      .countdown-wrapper.live-now span.btn {
        padding: 10px;
      }

  #countdown-live .live-in {
    opacity: 1;
    pointer-events: auto;
  }
  #countdown-live.live .live-in {
    opacity: 0;
  }
  #countdown-live.live .live-now {
    opacity: 1;
    pointer-events: auto;
  }

@media (max-width: 768px) {
  .countdown-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: column;
    gap: 5px;
  }
}
#menu {
	display: none;
	appearance: none;
}


.navigation {
	position: relative;
	width: 100%;
	z-index: 100;
	text-align: right;
}

	.navigation ul {
		position: relative;
		margin: 0 auto;
		padding: 0;
		list-style: none;
		overflow: visible;
		font-size: 0;
	}

		.navigation ul li {
			position: relative;
			font-family: var(--font-secondary);
			font-size: 14px;
			text-align: center;
			display: inline-block;
		}

		.scrolled {
		}

			.navigation > ul > li > a,
			.navigation > ul > li > a:visited {
				position: relative;
				margin: 0;
				padding: 25px clamp(18px, 3vw, 38px);
				color: var(--nav-text);
				font-size: var(--nav-text-size);
				font-weight: 400;
				line-height: 1;
				letter-spacing: 1px;
				text-align: center;
				text-decoration: none;
				border-top: 3px solid transparent;
				border-bottom: 3px solid transparent;
				display: block;
				transition:.12s cubic-bezier(.4,0,.2,1);

				cursor: pointer;
			}

				.navigation > ul > li:first-child > a,
				.navigation > ul > li:first-child > a:visited {
					padding-left: 10px;
				}

				.navigation > ul > li > a::before {
					content: "";
					position: absolute;
					left: 0;
					bottom: 0;
					width: 0;
					width: 100%;
					height: 2px;
					background-color: var(--nav-underline, var(--primary-color));
					transition:.2s cubic-bezier(.4,0,.2,1);
				}

					.navigation > ul > li:hover > a::before,
					.navigation > ul > li > a:hover::before,
					.navigation > ul > li > a:focus::before,
					.navigation > ul > li > a.active::before,
					.navigation > ul > li > a.active:hover::before {
						background-color: var(--green);
					}


				.navigation > ul > li:hover > a,
				.navigation > ul > li > a:hover,
				.navigation > ul > li > a:focus,
				.navigation > ul > li > a.active,
				.navigation > ul > li > a.active:hover {
					/* border-bottom-color: var(--primary-color); */
				}
				

				.navigation > ul > li:hover > a:visited,
				.navigation > ul > li > a:visited:hover,
				.navigation > ul > li > a:visited:focus,
				.navigation > ul > li > a.active:visited,
				.navigation > ul > li > a.active:visited:hover {
					color: var(--nav-text);
				}

				.scrolled .navigation > ul > li:hover > a,
				.scrolled .navigation > ul > li > a:hover,
				.scrolled .navigation > ul > li > a:focus,
				.scrolled .navigation > ul > li > a.active,
				.scrolled .navigation > ul > li > a.active:hover {
					/* color: var(--primary-color); */
				}

				#navigation a:hover {
					text-decoration: none;
				}

#navigation > ul > li .subNav {
	position: absolute;
	opacity: 0;
	width: 200px;
	min-width: 230px;
	padding: 8px 0;
	visibility: hidden;
	background: #fff;
	background: rgba(255,255,255,.95);
	box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);
	transition: transform .15s cubic-bezier(0,0,.2,1), opacity .15s cubic-bezier(0,0,.2,1);
	transform: translateY(-12px);
	overflow: hidden;
}

	#navigation > ul > li:hover .subNav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	#navigation > ul > li .subNav li {
		display: block;
		font-size: 15px;
		font-weight: 500;
		text-align: left;
	}

		#navigation > ul > li .subNav li a {
			position: relative;
			display: block;
			padding: 10px 20px;
			font-size: 13px;
			font-weight: 500;
			margin: 0;
			color: #262626;
			line-height: normal;
			text-decoration: none;
			transition: .15s cubic-bezier(0,0,.2,1);
		}

			#navigation > ul > li .subNav li.active a,
			#navigation > ul > li .subNav li a:hover {
				color: var(--primary-color);
			}	 


.subnavOpen {
	display: none;
}

.search-container{
	position:absolute;
	right:20px;
	top:20%;
	height:100%;
	z-index:1
}
	.search-container .search {
		position:absolute;
		right:-70px;
		bottom:30%;
		width:40px;
		height:40px;
		background:0 0;
		border-radius:50%;
		transition:all 1s;
		z-index:4;
		font-size:9px;
		transform: scale(60%);
	}
		.search-container .search:hover{
			cursor:pointer
		}
			.search-container .search::before {
				content:"";
				position:absolute;
				margin:auto;
				top:22px;
				right:0;
				bottom:0;
				left:22px;
				width:12px;
				height:2px;
				background:var(--nav-text);
				transform:rotate(45deg);
				transition:all .5s;
				zoom:.7
			}
				.search-container .search::after{
					content:"";
					position:absolute;
					margin:auto;
					top:-5px;
					right:0;
					bottom:0;
					left:-5px;
					width:25px;
					height:25px;
					border-radius:50%;
					border:2px solid var(--nav-text);
					transition:all .5s;
					zoom:.7
				}
					.search-container input{font-family:var(--font-primary);position:absolute;right:-60px;bottom:30%;width:50px;height:39px;outline:0;border:none;background:#fff;color:#fff;padding:0 20px 0 20px;border-radius:3px;transition:all 1s;opacity:0;z-index:5;font-weight:100;letter-spacing:.1em;font-size:13px}
					.search-container input:hover{cursor:pointer}.search-container input:focus{right: -50px;box-shadow: 1px 1px 7px rgb(0 0 0 / 4%);color:#000;width:200px;opacity:1;cursor:text;font-weight:500;font-size:13px;background:#fff;padding:12px;letter-spacing:0}.search-container input:focus~.search{right:-70px;background:var(--secondary-color);z-index:6}.search-container input:focus~.search::before{top:0;left:0;width:25px;background:#fff}.search-container input:focus~.search::after{top:0;left:0;width:25px;height:2px;border:none;background:#fff;border-radius:0;transform:rotate(-45deg)}
					.primary.scrolled .search-container input{background:#fff;color:#000;}
					
					.primary.scrolled #navigation > ul > .search-container > form > .search:before {
						background: #000;
					}
					.primary.scrolled #navigation > ul > .search-container > form > .search:after {
						border-color: #000;
					}
					.primary.scrolled #navigation > ul > .search-container input:focus~.search::before{
						background: #fff;
					}


html.mobile_open {
	overflow: hidden;
}

#mobile-navigation-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	padding: 80px 7% 60px;
	background-color: var(--mobile-menu-background);
	opacity: 0;
	pointer-events: none;
	clip-path: circle(1.5% at 93% 15%);
	transition: all .4s ease-in-out;
	overflow: hidden;
}

	.mobile_open #mobile-navigation-container {
		opacity: 1;
		pointer-events: all;
		clip-path: circle(100% at 50% 50%);
		overflow: auto;
	}

	.mobile_open #logo {
		opacity: 0;
	}

	.mobile_nav {
		max-width: var(--max-width);
		padding-top: 50px;
		margin: 0 auto;
	}

	.mobile_nav_header {
		position: relative;
		transform: translateY(-20px);
	}

		.mobile_nav_header img {
			max-width: 200px;
			height: auto;
			filter: brightness(0);
		}
	
	.mobile_navigation {
		position: relative;
		padding: 0;
		list-style: none;
		display: flex;
		flex-direction: column;
		align-items: start;
	}

		.mobile_navigation a {
			position: relative;
			padding: 10px;
			color: var(--mobile-nav-text-color);
			font-size: 21px;
			line-height: 1;
			letter-spacing: .14px;
			text-decoration: none;
			display: inline-block;
		}

			.mobile_navigation a::before {
				content: '';
				position: absolute;
				top: 70%;
				left: 50%;
				width: 0;
				height: 2px;
				border-radius: 30px;
				background: var(--mobile-nav-text-color);
				transform: translate(-50%, -50%);
				transition: all .4s;
			}

				.mobile_navigation a:hover::before {
					top: 85%;
					width: 80%;
				}

				.mobile_navigation .subNav {
					--subnav-left: 10px;

					list-style: none;
					padding-left: var(--subnav-left);
					border-left: var(--subnav-left) solid var(--charcoal);
					border-left: 3px solid var(--blue);
					transform: translateX(var(--subnav-left));
				}

					.mobile_navigation .subNav a {
						font-size: 18px;
					}
		
		.mobile_nav_footer {
			margin-top: 40px;
			display: flex;
			flex-direction: column;
			align-items: center;
		}

			.mobile_nav_footer .mobile-social {
				position: relative;
				display: flex;
				justify-content: center;
			}
				
				.mobile_nav_footer a.mobile-social-link {

					margin-bottom: 20px;
					padding-left: 20px;
					padding-right: 20px;
					transition: all .3s ease-in-out;
				}
				
					.mobile_nav_footer a.mobile-social-link:hover {

					}

			.mobile_nav_footer .button_wrapper {
				margin-top: 10px;
			}

				.mobile_nav_footer .button_wrapper a {
					font-size: 15px;
				}
					

@media (max-width: 1375px) {
}

@media (max-width: 1264px) {
}


/* @media (max-width: 1264px) { */
@media (max-width: 1024px) {
	body.navActive {
		height: 100vh;
		overflow: hidden;
	}

	/*
	 * Menu Button
	 */

	#menu {
		z-index: 201;
		font: inherit;
		display: block;
		overflow: visible;
		margin: 0;
		/* padding: 29px 20px; */
		cursor: pointer;
		transition-timing-function: linear;
		transition-duration: .15s;
		transition-property: opacity,filter;
		text-transform: none;
		color: inherit;
		border: 0;
		background-color: transparent;
		appearance: none;


		position: absolute;
		top: 50%;
		right: 0;
		float: none;
		transform: translate(-50%, -50%);
	}
	#menu:focus,
	#menu:active {
		outline: 0;
	}

	.menu-bars {
		position: relative;
			display: block;
			width: 30px;
			height: 20px;
	}

	.menu-bar {
		display: block;
		top: 50%;
		margin-top: -1px;
	}
	.menu-bar,
	.menu-bar::before,
	.menu-bar::after {
		width: 30px;
		height: 2px;
		background-color: var(--primary-color);
		background-color: var(--black);
		border-radius: 4px;
		position: absolute;
		transition-property: transform;
		transition-duration: 0.15s;
		transition-timing-function: ease;
	}

		.scrolled .menu-bar,
		.scrolled .menu-bar::before,
		.scrolled .menu-bar::after {

		}

		.mobile_open .menu-bar,
		.mobile_open .menu-bar::before,
		.mobile_open .menu-bar::after {
			background-color: var(--mobile-nav-text-color);
		}
	
	.menu-bar::before,
	.menu-bar::after {
		content: "";
		display: block;
	}
	.menu-bar::before {
		top: -8px;
	}
	.menu-bar::after {
		bottom: -8px;
	}

	/*
	 * Menu Animation
	 */
	 
	#menu.active {
		background-color: transparent;
	}
	
	.active .menu-bar,
	.active .menu-bar::before,
	.active .menu-bar::after {
	}
	
	.menu-bar {
		transition-duration: 0.1s;
		transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	
	.menu-bar::before {
		transition: top 0.1s 0.14s ease, opacity 0.1s ease;
	}
	
	.menu-bar::after {
		transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	.active .menu-bar,
	.mobile_open .menu-bar {
		transform: rotate(45deg);
		transition-delay: 0.14s;
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	
	.active .menu-bar::before,
	.mobile_open .menu-bar::before {
		top: 0;
		opacity: 0;
		transition: top 0.1s ease, opacity 0.1s 0.14s ease;
	}
	
	.active .menu-bar::after,
	.mobile_open .menu-bar::after {
		bottom: 0;
		transform: rotate(-90deg);
		transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	
	.main-container {
		left: 0;
		transition: left .2s cubic-bezier(.4,0,.2,1);
	}
	
		.navActive .main-container {
			/* transform: translate3d(-250px,0,0); */
			/* position: fixed; */
			overflow-x: visible;
			left: -250px;
		}
	
	.navigation {
		position: fixed;
		top: 0;
		right: -250px;
		display: block;
		margin: 0;
		width: 250px;
		max-width: 100%;
		height: 100%;
		max-height: 100%;
		float: none;
		transition: right .2s cubic-bezier(.4,0,.2,1);
		overflow: hidden;
		background: var(--primary-color);
		z-index: -1;
		padding-right: 0;
	}
	
		.navigation.active {
			visibility:visible;
			/* transition:visibility 0s linear 0s; */
			overflow: scroll;
			right: 0;
		}

		.navigation ul {
			position:relative;
			height:auto;
			width:100%;
		}
		
			.navigation > ul > li {
				border-bottom: 1px solid rgba(255, 255, 255, 0.5);
			}
	
				.navigation > ul > li:first-child {
					border-top: 1px solid rgba(255, 255, 255, 0.5);
				}

				.navigation ul li,
				.navigation ul li a {
					width: 100%;
					display: block;
					float: none;
					margin: 0;
					color: var(--primary-color-text);
				}

				.navigation > ul > li > a {
					position: relative;
					width: 100%;
					display: block;
					float: none;
					box-sizing: border-box;
					margin: 0;
					padding: 12px 20px;
					font-size: 17px;
					line-height: 24px;
					text-align: left;
				}
		
					.navigation ul li a:hover {
						border-color: transparent;
					}
					
					.navigation > ul > li > a:hover,
					.navigation > ul > li > a:focus,
					.navigation > ul > li > a.active,
					.navigation > ul > li > a.active:hover {
						color: #fff;
					}
			
			
		.subnavOpen {
			position: absolute;
			top: 50%;
			right: -25px;
			/* width: 60px; */
			font-size: 24px;
			text-align: center;
			transform: translateY(-50%);
		}
				
		.subnavOpen,
		.subnavOpen span {
			display: block;
			/* height: 100%; */
			/* line-height: 48px; */
		}

		.subnavOpen span {
				width: 100%;
				transition: .2s ease-out;
		}
		
		.subnavOpen.active {
			
		}
		
		.subnavOpen.active span {
			transform: rotateX(180deg);
		}
				
		.subnavMask {
			position: relative;
			height: 0;
			overflow: hidden;
			transition: .3s ease-in-out;
		}
		

		#navigation > ul > li .subNav {
			position: relative;
			width: 100%;
			opacity: 1;
			transform: none;
			visibility: visible;
			box-shadow: none;
			background: #fff;
		}
		
		.navigation > ul > li:hover > a, .navigation > ul > li > a.active {
			border-color: transparent;
			background-color: var(--charcoal);
		}
		.navigation > ul > li > a {
			--b: 0;
		}

		.search-container {
			position: relative;
			right: unset;
			top: unset;
			padding-top: 40px;
			height: 100%;
			z-index: 1;
	}

	.search-container form {
			display: block;
			background: white;
	}

	.search-container form input {
		position: relative;
		width: 100%;
		display: block;
		background: transparent;
		color: black;
		opacity: 1;
		letter-spacing: 0;
		top: unset;
		left: unset;
		right: unset;
		bottom: unset;
		font-weight: 500;
	}

		.search-container form input:focus {
			padding: 0 20px;
			right: unset;
		}

		.search-container .search {
			position: absolute;
			bottom: 30%;
			width: 40px;
			left: 0;
			top: 1px;
			height: 40px;
			background: 0 0;
			border-radius: 50%;
			transition: all 1s;
			z-index: 9999999999;
			font-size: 9px;

			display: none;
	}
}
@media (max-width:768px) {

}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@font-face {
  font-family: 'SocialIcons';
  src:
    url('/includes/fonts/social-icons/fonts/SocialIcons.ttf?e7e1as') format('truetype'),
    url('/includes/fonts/social-icons/fonts/SocialIcons.woff?e7e1as') format('woff'),
    url('/includes/fonts/social-icons/fonts/SocialIcons.svg?e7e1as#SocialIcons') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="ico-"], [class*=" ico-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'SocialIcons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ico-x:before {
  content: "\e905";
}
.ico-twitter:before {
  content: "\e905";
}
.ico-check:before {
  content: "\e5ca";
}
.ico-search:before {
  content: "\e8b6";
}
.ico-arrow_right:before {
  content: "\e904";
}
.ico-youtube:before {
  content: "\ea9d";
}
.ico-arrow-right:before {
  content: "\e903";
}
.ico-arrow-left:before {
  content: "\e901";
}
.ico-arrow-down:before {
  content: "\e902";
}
.ico-wordpress:before {
  content: "\e900";
}
.ico-twitter-square:before {
  content: "\f081";
}
.ico-facebook-square:before {
  content: "\f082";
}
.ico-linkedin-square:before {
  content: "\f08c";
}
.ico-twitter1:before {
  content: "\f099";
}
.ico-facebook:before {
  content: "\f09a";
}
.ico-facebook-f:before {
  content: "\f09a";
}
.ico-feed:before {
  content: "\f09e";
}
.ico-rss:before {
  content: "\f09e";
}
.ico-pinterest-square:before {
  content: "\f0d3";
}
.ico-envelope:before {
  content: "\f0e0";
}
.ico-linkedin:before {
  content: "\f0e1";
}
.ico-rss-square:before {
  content: "\f143";
}
.ico-instagram:before {
  content: "\f16d";
}
.ico-vimeo-square:before {
  content: "\f194";
}
.ico-pinterest:before {
  content: "\f231";
}
.ico-vimeo:before {
  content: "\f27d";
}
.ico-snapchat:before {
  content: "\f2ac";
}

@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
.flex {
	display: flex;
}

.centered {
	justify-content: center;
	align-items: center;
}

.stacked {
	flex-direction: column;
}
.middle{
	align-items: center;
}

.grid-10 {
	width: 10%;
}

.grid-15 {
	width: 15%;
}

.grid-20 {
	width: 20%;
}

.grid-25 {
	width: 25%;
}

.grid-30 {
	width: 30%;
}

.grid-35 {
	width: 35%;
}

.grid-40 {
	width: 40%;
}

.grid-45 {
	width: 45%;
}

.grid-50 {
	width: 50%;
}

.grid-55 {
	width: 55%;
}

.grid-60 {
	width: 60%;
}

.grid-65 {
	width: 65%;
}

.grid-70 {
	width: 70%;
}

.grid-75 {
	width: 75%;
}

.grid-80 {
	width: 80%;
}

.grid-85 {
	width: 85%;
}

.grid-90 {
	width: 90%;
}

.grid-95 {
	width: 95%;
}

.grid-100 {
	width: 100%;
}

.grid-33 {
	width: 33.33%;
}

@media (max-width: 768px) {
	.grid-10, .grid-15, .grid-20, .grid-25, .grid-30, .grid-35, .grid-40, .grid-45, .grid-50, .grid-55, 
	.grid-60, .grid-65, .grid-70, .grid-75, .grid-80, .grid-85, .grid-90, .grid-95, .grid-100, .grid-33 {
		width: 100%;
	}
	
	.flex {
		flex-direction: column;
	}
}
/* Slider */

section.wide {
    padding: 35px 0;
    font-weight: 300;
    overflow: hidden;
}

#eventSlider {
    position: relative;
}

.sliderMask {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.sliderContainer {
	--slide-count: 3;

    position: absolute;
    left: 0;
    display: flex;
}

.sliderContainer.animate {
    transition: .25s cubic-bezier(0.4, 0.0, 0.2, 1);;
}

#eventSlider .slide {
    position: relative;
    width: 300px;
    width: 350px;
    min-height: 450px;
    height: auto;
    padding: 3em 4.5em;
    padding: 3em 0;
    margin: 0 20px;
    margin: 0 53px;
    flex: 0 0 auto;
}

.slide-container{
	position: relative;
	min-height: 100%;
    margin: auto;
    padding: 30px 10px 60px 50px;
    color: var(--white);
    background-color: var(--black);
}


.slide .event_image {
    position: relative;
    transform: scale(1.2);
    transform-origin: top right;
}

    .slide img {
        width: 100%;
        aspect-ratio: 16/9;
        transform: translateX(-30px);
    }

    .slide .event_date {
    }

.slide .event_details {
    --padding-top: 120px;
    padding-top: var(--padding-top);
    padding-bottom: 20px;

    p {
        margin: 0;
    }

    .event_title {
        margin-bottom: .5em;
        font-family: var(--font-primary);
        font-size: var(--default-h4);
        font-weight: 400;
    }
}

.slide a.btn.arrow::before {
    background-color: var(--green);
    opacity: 1;
}

    .slide a.btn.arrow:hover::before {
        background-color: var(--white);
    }


#slideNext,
#slidePrev {
    position: absolute;
    top: 50%;
    margin-top: -27px;
    z-index: 100;
    width: 54px;
    color: var(--charcoal);
    font-size: 34px;
    text-align: center;
    line-height: 54px;
    cursor: pointer;
    transition: .25s ease-out;
}

.ico-arrow::before {
    color: inherit;
}


#slideNext:hover,
#slidePrev:hover {
    color: #aaa;
}

#slidePrev {
    left: -10px;
    transform: scaleX(-1);
}

#slideNext {
    right: -10px;
}

@media (max-width: 768px) {
	
    .section3 .container-title{
        position: relative;
        margin: 0 auto 60px;
        width: 100%;
    }

    .section3 h2{
        -moz-transform: unset;
        -o-transform: unset;
        -webkit-transform: unset;
        filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=0.083);
        -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0.083)";
        transform: unset;
    }

    .slide .month{
        font-size: 26px;
    }

    .slide .day {
        font-size: 50px;
    }

    .slide-container{
        /* margin: 0 0 0 5px; */
        /* padding-left: 20px; */
    }

    #eventSlider{
        width: 100%;
    }

    .sliderMask{
        width: 80%;
    }

}

@media (max-width: 640px) {

    section {
        padding: 45px 0;
    }

}

@media (max-width: 576px) {
	
    .sliderMask {
        width: 85%;
    }
}


@media (max-width: 480px) {
	
    .sliderMask {
        width: 70%;
    }
    
    	#eventSlider .slide {
	    	width: 260px;
	    }
}

@media (max-width: 420px) {
    
    	#eventSlider .slide {
	    	width: 200px;
	    }
}


#backdrop{
	bottom:0;
	background:rgba(0,0,0,.7);
}

#backdrop,#popup{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
} 

#popup{
	z-index:3500;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-flow:column nowrap;
	    flex-flow:column;
	-ms-flex-pack:center;
	    justify-content:center;
}

	#popupContainer{
	    position: relative;
		width: 350px;
	    max-width: 88%;
	    max-height: 90%;
	    height: auto;
	    background: rgba(255,255,255,.9);
	    font-size: 22px;
	    line-height: 1.5;
	    color: #3d3d3d;
	    margin: 0 auto;
	}
	
		#popup .wrapper{
		    line-height: 1.2;
		    padding: 32px 32px 20px;			
/* 		    padding: 40px;
		    max-height: 100%; */
			overflow: auto;
/* 			padding-right: 40px; */
		}
		#popupContainer .wrapper img {
		    max-width: 100%;
		    max-height: 100%;
		    width: auto;
		    height: auto;
		}
		
	#popupClose{
		position:absolute;
		top:-15px;
		right:-15px;
	}

/* 	@media (max-width: 500px) {
		#popupContainer {
			max-width: 76%;
		}

		#popup .wrapper {
			padding: 20px;
			padding-right: 20px;
		}
	} */

	@media (max-height:760px) {
		/*
			#popupContainer {
			 overflow-y: scroll;	
			}
		*/
				#popup .wrapper{
					overflow-y: scroll;
					-ms-overflow-style: none;
					scrollbar-width: none;
					overflow-style: none;
					height: 100%;
				}	
				#popup .wrapper::-webkit-scrollbar {
					display: none;
				}
		}
:root {
	--font-primary:  "rustica", Helvetica, Arial, sans-serif;
	--font-secondary: "Inter", Helvetica, Arial, sans-serif;
	--section-title-size: var(--default-h2);
	--kids-green: #6E7A34;
	--kids-blue:#234151;
	--kids-yellow: #F4CC25;
	--kids-orange: #EF4624;
	--student-gradient: linear-gradient(20deg,rgba(247, 243, 239, 1) 0%, rgba(255, 255, 255, 1) 68%);
	--default-h1: clamp(3.157rem, 5.99vw, 4.209rem);

}
.social_container {
	color: var(--kids-green);
}
	.col h4 {
		font-weight: 700;
		text-transform: uppercase;
	}

.primary {
	background-color: transparent;
}

	.navigation > ul > li > a::before {
		height: 7px;
		background-color: var(--kids-orange);

	}

	.navigation > ul > li > a:focus::before {
		background-color: var(--charcoal);
	}
	.navigation > ul > li:hover > a::before, 
	.navigation > ul > li > a:hover::before,
	.navigation > ul > li > a:focus::before {
		background-color: var(--charcoal);
	}
	#logo a {
		content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_2' data-name='Layer 2' xmlns='http://www.w3.org/2000/svg' width='211.54697' height='68.5698' viewBox='0 0 211.54697 68.5698'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %231c3e4f; %7D .cls-2 %7B fill: %23ff4025; %7D .cls-3 %7B fill: %232b2e34; %7D .cls-4 %7B fill: %230c0c0c; %7D %3C/style%3E%3C/defs%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cg id='Group_4318' data-name='Group 4318'%3E%3Cg id='Group_4227' data-name='Group 4227'%3E%3Cpath id='Path_10453' data-name='Path 10453' class='cls-2' d='M17.53001,0l-7.388,7.339,8.343,9.055-.955-16.394Z'/%3E%3C/g%3E%3Cg id='Group_4228' data-name='Group 4228'%3E%3Cpath id='Path_10454' data-name='Path 10454' class='cls-2' d='M0,17.64802l16.167.883L7.2,10.36602,0,17.64802Z'/%3E%3C/g%3E%3Cg id='Group_4229' data-name='Group 4229'%3E%3Cpath id='Path_10455' data-name='Path 10455' class='cls-1' d='M.18701,21.94296l6.508,7.876,9.76-8.829L.18701,21.94296Z'/%3E%3C/g%3E%3Cg id='Group_4230' data-name='Group 4230'%3E%3Cpath id='Path_10456' data-name='Path 10456' class='cls-1' d='M17.53501,42.13406l.9-19.11-8.86,9.556,7.96,9.554Z'/%3E%3C/g%3E%3Cg id='Group_4233' data-name='Group 4233'%3E%3Cg id='Group_4231' data-name='Group 4231'%3E%3Cpath id='Path_10457' data-name='Path 10457' class='cls-4' d='M42.79501,30.276c.21682-.70861.56786-1.36893,1.034-1.945.47012-.57182,1.0618-1.03164,1.732-1.346.7589-.34732,1.5866-.51826,2.421-.5.8322-.01887,1.65776.15212,2.414.5.66632.31651,1.25463.7761,1.723,1.346.46719.57584.81925,1.23617,1.037,1.945.23167.7497.34767,1.53033.344,2.315.00364.78434-.11236,1.56464-.344,2.314-.21659.70689-.56882,1.36481-1.037,1.937-.4701.56609-1.05813,1.02272-1.723,1.338-.75624.34788-1.5818.51887-2.414.5-.8344.01826-1.6621-.15268-2.421-.5-.66873-.31316-1.26012-.77002-1.732-1.338-.46711-.57244-.81831-1.23034-1.034-1.937-.23219-.74926-.34854-1.5296-.345-2.314-.00364-.78474.11271-1.56542.345-2.315M43.82101,34.471c.1586.59607.42573,1.15779.788,1.657.36051.49168.8297.89345,1.371,1.174.62034.30911,1.30717.4609,2,.442.691.01994,1.37615-.13193,1.994-.442.53872-.2819,1.00567-.68352,1.365-1.174.36206-.49934.62917-1.06102.788-1.657.16886-.61239.2543-1.24476.254-1.88.00128-.63794-.08417-1.27308-.254-1.888-.15982-.59439-.42687-1.15458-.788-1.653-.3592-.48868-.82498-.88914-1.362-1.171-.61776-.31041-1.30291-.46263-1.994-.443-.69291-.01859-1.37975.13355-2,.443-.54179.27973-1.01193.6804-1.374,1.171-.361.4974-.62805,1.05659-.788,1.65-.17044.61584-.25622,1.25201-.255,1.891.00003.63529.0858,1.26766.255,1.88'/%3E%3C/g%3E%3Cg id='Group_4232' data-name='Group 4232'%3E%3Cpath id='Path_10458' data-name='Path 10458' class='cls-4' d='M54.58199,31.29398c.16429-.3481.40903-.65214.714-.887.31657-.23665.6763-.40921,1.059-.508.43944-.11405.89202-.16953,1.346-.165.37456.00004.74826.03587,1.116.107.35691.06448.69708.20054,1,.4.3073.21039.55581.49572.722.829.20373.43376.30011.91016.281,1.389v4.5c-.04665.2968.15613.57522.45293.62187.05099.00802.10287.00873.15407.00213.11312.00169.22529-.02081.329-.066v.87c-.121.022-.228.039-.32.049-.11759.01214-.23579.01749-.354.016-.21572.00867-.43091-.02742-.632-.106-.14904-.06285-.27705-.16693-.369-.3-.09113-.14141-.14987-.30123-.172-.468-.02866-.19869-.04237-.39926-.041-.6h-.033c-.1722.25598-.36129.50019-.566.731-.18569.20845-.40139.38809-.64.533-.24919.14809-.51872.25893-.8.329-.35229.08212-.71331.12074-1.075.115-.37578.00107-.75004-.04769-1.113-.145-.32694-.08511-.63314-.23583-.9-.443-.26107-.20536-.47034-.46909-.611-.77-.1553-.34896-.2308-.72817-.221-1.11-.0296-.49455.10929-.98454.394-1.39.27416-.34086.63367-.60308,1.042-.76.46929-.18475.96027-.30876,1.461-.369.542-.07133,1.092-.13967,1.65-.205.22067-.022.41233-.04933.575-.082.14793-.02614.28806-.08527.41-.173.11348-.08698.20126-.2031.254-.336.06722-.1781.09849-.36775.092-.558.01082-.29693-.04845-.59224-.173-.862-.10836-.21689-.27269-.4009-.476-.533-.21494-.13644-.45497-.22857-.706-.271-.28446-.05099-.57301-.07576-.862-.074-.57321-.02524-1.13875.13926-1.609.468-.44259.36895-.68593.92453-.657,1.5h-1.034c.02044-.4428.12638-.87746.312-1.28M59.75299,33.82198c-.08543.13501-.22172.22983-.378.263-.16125.04928-.32561.0877-.492.115-.43733.07667-.88867.145-1.354.205-.43107.05321-.85668.14388-1.272.271-.34876.10106-.67103.27756-.944.517-.25735.25113-.39214.60217-.369.961-.00532.2424.04785.48251.155.7.10306.20132.24555.37986.419.525.17902.14974.38506.2638.607.336.22755.07631.46599.11515.706.115.38464.00134.76695-.05979,1.132-.181.34587-.11181.66655-.29016.944-.525.26917-.2315.48714-.51656.64-.837.16435-.34979.24645-.73257.24-1.119v-1.346h-.034Z'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4234' data-name='Group 4234'%3E%3Cpath id='Path_10460' data-name='Path 10460' class='cls-4' d='M63.49296,26.49597v7.667l4.895-4.278h1.437l-3.765,3.269,4.022,5.562h-1.349l-3.495-4.81-1.745,1.455v3.354h-1.078v-12.219h1.078Z'/%3E%3C/g%3E%3Cg id='Group_4241' data-name='Group 4241'%3E%3Cg id='Group_4235' data-name='Group 4235'%3E%3Cpath id='Path_10461' data-name='Path 10461' class='cls-4' d='M74.872,31.63094c-.11492-.2286-.28045-.42798-.484-.583-.20929-.15663-.44703-.27109-.7-.337-.27311-.07204-.55455-.10768-.837-.106-.23526.00052-.46983.02532-.7.074-.22788.04643-.44672.12951-.648.246-.1925.11047-.35572.26547-.476.452-.12651.20735-.18944.44725-.181.69-.00689.20778.05343.41224.172.583.11745.16049.26524.29639.435.4.18195.11124.37626.20084.579.267.20733.072.39867.12933.574.172l1.379.312c.30078.04564.59535.12549.878.238.27927.10854.53951.26077.771.451.22781.19073.41487.4254.55.69.14823.3007.22132.63286.213.968.01444.41489-.09336.82487-.31,1.179-.20464.31898-.47797.5882-.8.788-.33588.2075-.70544.35471-1.092.435-.39419.0863-.79647.13022-1.2.131-.86122.03936-1.7111-.20864-2.416-.705-.66606-.56514-1.05273-1.39251-1.059-2.266h1.034c.00208.61613.28251,1.19832.763,1.584.50094.36754,1.11107.55565,1.732.534.26209-.00105.52342-.02853.78-.082.26326-.05246.51645-.14665.75-.279.2219-.12477.41481-.29518.566-.5.15257-.21955.22945-.48284.219-.75.00763-.2203-.04603-.43839-.155-.63-.10606-.17181-.24922-.31771-.419-.427-.18708-.12062-.38868-.21705-.6-.287-.22467-.07733-.45167-.144-.681-.2l-1.33-.293c-.31797-.07919-.63032-.17941-.935-.3-.26862-.10617-.52028-.25103-.747-.43-.21134-.16788-.38223-.38114-.5-.624-.1289-.28593-.1908-.59751-.181-.911-.01064-.3866.08928-.76821.288-1.1.18698-.30174.44302-.55469.747-.738.31835-.19135.66547-.33013,1.028-.411.36878-.0864.74623-.13035,1.125-.131.40254-.00364.80345.05162,1.19.164.35356.10249.68279.27527.968.508.28121.23285.50816.52431.665.854.17303.37707.26793.78527.279,1.2h-1.037c-.00445-.28773-.07277-.57089-.2-.829'/%3E%3C/g%3E%3Cg id='Group_4236' data-name='Group 4236'%3E%3Cpath id='Path_10462' data-name='Path 10462' class='cls-4' d='M85.50101,29.06895c-.21644-.34504-.49478-.64711-.821-.891-.32292-.24089-.68345-.42672-1.067-.55-.39524-.12662-.80798-.19007-1.223-.188-.69291-.01859-1.37975.13355-2,.443-.54134.27954-1.01112.67986-1.373,1.17-.36084.49749-.62788,1.05665-.788,1.65-.17024.61485-.25603,1.25001-.255,1.888-.0003.63524.08514,1.26761.254,1.88.15918.59604.42663,1.15771.789,1.657.36075.49146.82988.89318,1.371,1.174.62025.30945,1.30709.46159,2,.443.50839.00621,1.01226-.09607,1.478-.3.42677-.18874.81161-.46072,1.132-.8.32402-.34919.5852-.75179.772-1.19.2002-.46746.32735-.96291.377-1.469h1.116c-.06304.67389-.23388,1.33328-.506,1.953-.24321.55239-.5886,1.05385-1.018,1.478-.42132.40791-.92108.726-1.469.935-.60073.22573-1.23832.33731-1.88.329-.83472.01827-1.66275-.15267-2.422-.5-.66824-.31394-1.25922-.77108-1.731-1.339-.46711-.57244-.81831-1.23034-1.034-1.937-.23253-.74921-.34921-1.52955-.346-2.314-.00311-.78412.11357-1.56411.346-2.313.21658-.70962.56763-1.37097,1.034-1.948.47042-.5715,1.06203-1.03126,1.732-1.346.75925-.34733,1.58728-.51827,2.422-.5.55361-.00065,1.10415.08228,1.633.246.51966.15914,1.0081.4064,1.444.731.43341.32416.80099.72805,1.083,1.19.29897.49611.48663,1.05124.55,1.627h-1.116c-.08973-.42747-.25353-.83596-.484-1.207'/%3E%3C/g%3E%3Cg id='Group_4237' data-name='Group 4237'%3E%3Cpath id='Path_10463' data-name='Path 10463' class='cls-4' d='M89.055,26.72998v4.711h.033c.20122-.51902.57101-.95538,1.05-1.239.49665-.31153,1.07173-.47525,1.658-.472.50484-.01385,1.008.06408,1.485.23.36916.13287.69943.35557.961.648.24942.29628.42398.64816.509,1.026.10323.44651.15291.90373.148,1.362v5.45h-1.035v-5.281c.00183-.33923-.03168-.67772-.1-1.01-.05719-.29205-.1747-.56895-.345-.813-.17059-.23559-.39984-.42244-.665-.542-.32848-.14223-.68421-.21051-1.042-.2-.38097-.00432-.75834.07416-1.106.23-.31351.13885-.5935.34347-.821.6-.23194.27047-.41013.58272-.525.92-.12898.37243-.19817.76293-.205,1.157v4.941h-1.034v-11.718h1.034Z'/%3E%3C/g%3E%3Cg id='Group_4238' data-name='Group 4238'%3E%3Cpath id='Path_10464' data-name='Path 10464' class='cls-4' d='M96.32604,31.29398c.16416-.34819.40892-.65225.714-.887.31654-.2367.67628-.40926,1.059-.508.43944-.11405.89202-.16953,1.346-.165.37456.00004.74826.03587,1.116.107.35691.06448.69708.20054,1,.4.30718.21052.55566.49582.722.829.20373.43376.30011.91016.281,1.389v4.5c-.04665.2968.15613.57522.45293.62187.05099.00802.10287.00873.15407.00213.11312.00175.22531-.02075.329-.066v.87c-.121.022-.227.039-.32.049-.11726.01211-.23512.01746-.353.016-.21573.00878-.43094-.02731-.632-.106-.14935-.06279-.2777-.16686-.37-.3-.09137-.14129-.15013-.30116-.172-.468-.02891-.19867-.04261-.39925-.041-.6h-.033c-.1722.25598-.36129.50019-.566.731-.18545.2087-.40119.38837-.64.533-.24919.14809-.51872.25893-.8.329-.35229.08212-.71331.12074-1.075.115-.37578.00104-.75003-.04772-1.113-.145-.32694-.08511-.63314-.23583-.9-.443-.26074-.20545-.46966-.46917-.61-.77-.15587-.34881-.23172-.72807-.222-1.11-.0296-.49455.10929-.98454.394-1.39.27454-.3409.63438-.60311,1.043-.76.46931-.18469.96028-.30869,1.461-.369.54133-.07133,1.09133-.13967,1.65-.205.22067-.022.41233-.04933.575-.082.14793-.02614.28806-.08527.41-.173.11348-.08698.20126-.2031.254-.336.0672-.1781.09846-.36775.092-.558.01136-.29687-.04757-.59222-.172-.862-.10824-.21698-.27259-.40101-.476-.533-.21461-.13638-.4543-.22852-.705-.271-.28447-.05094-.57301-.07571-.862-.074-.5732-.02516-1.13872.13932-1.609.468-.44246.36904-.68577.92456-.657,1.5h-1.037c.02044-.4428.12638-.87746.312-1.28M101.49704,33.82198c-.08511.13487-.22104.22969-.377.263-.16159.04925-.32629.08767-.493.115-.43733.07667-.88867.145-1.354.205-.43107.05321-.85668.14388-1.272.271-.34876.10106-.67103.27756-.944.517-.25735.25113-.39214.60217-.369.961-.00537.24251.04816.48271.156.7.10288.20144.2454.38001.419.525.17897.1498.38503.26387.607.336.22753.0764.46598.11524.706.115.38465.00143.76697-.0597,1.132-.181.34591-.11172.66661-.29007.944-.525.2693-.23138.48729-.51647.64-.837.16412-.34987.2462-.7326.24-1.119v-1.346h-.035Z'/%3E%3C/g%3E%3Cg id='Group_4239' data-name='Group 4239'%3E%3Cpath id='Path_10465' data-name='Path 10465' class='cls-4' d='M105.20398,29.98104v1.608h.033c.22793-.57579.64235-1.05853,1.177-1.371.55985-.32583,1.19835-.49186,1.846-.48.58163-.01418,1.15835.10953,1.683.361.46526.23178.87207.56578,1.19.977.32521.42602.56495.91093.706,1.428.15557.55829.23298,1.13545.23,1.715.00298.57955-.07443,1.15671-.23,1.715-.14093.51712-.38068,1.00204-.706,1.428-.31679.4103-.72403.74191-1.19.969-.52616.2462-1.10225.36703-1.683.353-.30989-.00045-.61855-.03907-.919-.115-.29963-.07378-.5872-.18995-.854-.345-.263-.1524-.49942-.34661-.7-.575-.20598-.2341-.36488-.50572-.468-.8h-.03v4.728h-1.034v-11.596h.949ZM110.87598,32.91104c-.09551-.41133-.26201-.80286-.492-1.157-.22128-.33664-.51471-.61982-.859-.829-.38364-.22238-.82176-.33321-1.265-.32-.49309-.01505-.98265.0878-1.428.3-.36704.18265-.68312.45338-.92.788-.23677.34519-.40139.73464-.484,1.145-.09424.45323-.14083.91508-.139,1.378,0,.43965.05237.87774.156,1.305.09549.41421.26817.80673.509,1.157.23899.3429.55337.62649.919.829.42678.2251.90474.33537,1.387.32.44288.01281.88057-.098,1.264-.32.34548-.20869.63999-.49192.862-.829.23005-.35411.39655-.74565.492-1.157.10338-.42731.15575-.86536.156-1.305-.00061-.43797-.05297-.87432-.156-1.3'/%3E%3C/g%3E%3Cg id='Group_4240' data-name='Group 4240'%3E%3Cpath id='Path_10466' data-name='Path 10466' class='cls-4' d='M114.01395,35.65303c.09792.38647.26752.75112.5,1.075.23189.32008.52782.58843.869.788.38472.2171.82144.32498,1.263.312.64466.038,1.27921-.17364,1.772-.591.44537-.42563.75382-.9743.886-1.576h1.034c-.15813.85172-.58002,1.63218-1.206,2.231-.70106.56413-1.58797.84526-2.486.788-.59588.01518-1.18743-.10518-1.73-.352-.46976-.22066-.87833-.553-1.19-.968-.31472-.42884-.54545-.91336-.68-1.428-.15047-.55915-.22514-1.13597-.222-1.715-.00068-.55486.074-1.10724.222-1.642.13765-.51597.36807-1.00256.68-1.436.31246-.42693.71983-.77542,1.19-1.018.53659-.26875,1.13107-.40131,1.731-.386.60554-.0177,1.20514.12366,1.739.41.4695.26188.87147.62961,1.174,1.074.30982.46387.52964.98188.648,1.527.1311.57295.18624,1.16066.164,1.748h-6.512c.00167.39132.05343.78082.154,1.159M119.13295,32.49303c-.11918-.34945-.29966-.67487-.533-.961-.23026-.27873-.5151-.50742-.837-.672-.34599-.17377-.72888-.26126-1.116-.255-.39238-.00754-.78076.07995-1.132.255-.322.16444-.60686.39315-.837.672-.23591.29019-.42179.61768-.55.969-.1351.36191-.22511.73908-.268,1.123h5.477c-.0095-.38565-.07865-.76751-.205-1.132'/%3E%3C/g%3E%3C/g%3E%3Cpath id='Path_10468' data-name='Path 10468' class='cls-4' d='M121.10498,38.71508h1.078v-12.219h-1.078v12.219Z'/%3E%3Cg id='Group_4243' data-name='Group 4243'%3E%3Cg id='Group_4242' data-name='Group 4242'%3E%3Cpath id='Path_10469' data-name='Path 10469' class='cls-3' d='M56.83204,45.26506v4.442c-1.76557-1.22202-3.85312-1.89456-6-1.933-2.238,0-3.9.916-3.9,2.645,0,1.594,1.389,2.374,4.2,3.526,3.462,1.39,7.056,2.883,7.056,7.29,0,4.374-3.492,7.291-8.748,7.291-2.53442.05161-5.02619-.65719-7.154-2.035v-4.746c1.9093,1.67616,4.34254,2.63538,6.882,2.713,2.441,0,4.272-1.153,4.272-3.086,0-1.8-1.763-2.611-4.781-3.866-2.95-1.221-6.341-2.746-6.341-6.883s3.323-6.952,8.342-6.952c2.1621-.02383,4.29183.5262,6.172,1.594'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4244' data-name='Group 4244'%3E%3Cpath id='Path_10471' data-name='Path 10471' class='cls-3' d='M59.53998,43.073v4.171h7.211v20.893h4.666v-20.893h7.211v-4.171h-19.088Z'/%3E%3C/g%3E%3Cg id='Group_4247' data-name='Group 4247'%3E%3Cg id='Group_4245' data-name='Group 4245'%3E%3Cpath id='Path_10472' data-name='Path 10472' class='cls-3' d='M100.60499,59.20197c.0463,5.12665-4.07213,9.32016-9.19878,9.36646-.15511.0014-.31023-.00109-.46522-.00746-5.11103.22124-9.43369-3.74271-9.65493-8.85374-.00729-.16831-.00998-.3368-.00808-.50526v-15.123h4.479v14.817c-.16764,2.82383,1.98563,5.2489,4.80946,5.41653.1257.00746.25163.01029.37754.00847,2.83969.03027,5.16625-2.24721,5.19652-5.0869.0012-.11275-.0013-.22551-.00752-.3381v-14.817h4.475l-.003,15.123Z'/%3E%3C/g%3E%3Cg id='Group_4246' data-name='Group 4246'%3E%3Cpath id='Path_10473' data-name='Path 10473' class='cls-3' d='M114.43902,64.22104c4.34754.07196,7.93026-3.39408,8.00223-7.74162.00198-.11946.00124-.23895-.00223-.35838.11388-4.34223-3.31387-7.95462-7.65609-8.0685-.11461-.00301-.22927-.00351-.34391-.0015h-3.8v16.175l3.8-.005ZM106.20002,44.11304h8.613c6.52956-.22772,12.00742,4.88092,12.23514,11.41048.00685.19643.0088.39299.00586.58952.12739,6.52566-5.05943,11.91902-11.58509,12.0464-.21864.00427-.43736.00247-.65591-.0054h-8.613v-24.041Z'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4248' data-name='Group 4248'%3E%3Cpath id='Path_10475' data-name='Path 10475' class='cls-3' d='M131.04602,43.073v25.064h16.368v-4.1h-11.738v-6.5h9.3v-4.072h-9.3v-6.292h11.313v-4.1h-15.943Z'/%3E%3C/g%3E%3Cg id='Group_4249' data-name='Group 4249'%3E%3Cpath id='Path_10476' data-name='Path 10476' class='cls-3' d='M167.392,43.03809v16.968l-12.479-16.968h-3.994v25.1h4.666v-16.97l12.478,16.97h3.96v-25.1h-4.631Z'/%3E%3C/g%3E%3Cg id='Group_4250' data-name='Group 4250'%3E%3Cpath id='Path_10477' data-name='Path 10477' class='cls-3' d='M173.79602,43.073v4.171h7.211v20.893h4.667v-20.893h7.212v-4.171h-19.09Z'/%3E%3C/g%3E%3Cg id='Group_4252' data-name='Group 4252'%3E%3Cg id='Group_4251' data-name='Group 4251'%3E%3Cpath id='Path_10478' data-name='Path 10478' class='cls-3' d='M210.19397,45.26506v4.442c-1.76554-1.22208-3.85311-1.89462-6-1.933-2.238,0-3.9.916-3.9,2.645,0,1.594,1.39,2.374,4.2,3.526,3.459,1.391,7.053,2.883,7.053,7.291,0,4.374-3.492,7.291-8.748,7.291-2.5344.05149-5.02614-.6573-7.154-2.035v-4.747c1.90965,1.67623,4.34322,2.63544,6.883,2.713,2.441,0,4.272-1.153,4.272-3.086,0-1.8-1.763-2.611-4.781-3.866-2.95-1.221-6.34-2.746-6.34-6.883s3.322-6.952,8.341-6.952c2.16277-.02414,4.29323.5259,6.174,1.594'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4253' data-name='Group 4253'%3E%3Cpath id='Path_10480' data-name='Path 10480' class='cls-2' d='M23.084,0l-.956,16.394,8.343-9.055L23.084,0Z'/%3E%3C/g%3E%3Cg id='Group_4254' data-name='Group 4254'%3E%3Cpath id='Path_10481' data-name='Path 10481' class='cls-2' d='M33.41797,10.36902l7.2,7.279-16.167.883,8.967-8.162Z'/%3E%3C/g%3E%3Cg id='Group_4255' data-name='Group 4255'%3E%3Cpath id='Path_10482' data-name='Path 10482' class='cls-1' d='M40.42604,21.94296l-6.513,7.876-9.76-8.829,16.273.953Z'/%3E%3C/g%3E%3Cg id='Group_4256' data-name='Group 4256'%3E%3Cpath id='Path_10483' data-name='Path 10483' class='cls-1' d='M23.07805,42.13406l-.9-19.11,8.865,9.556-7.965,9.554Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

	}
#header_spacer {
	height: 0;
}
.scrolled {
    --header_spacer_height: 145px;
}
.hero_container {
	position: relative;
	/* height: calc(100vh - var(--header_spacer_height)); */
	height: 100vh;
	min-height: 600px;
	display: flex;
	flex-direction: column;
	transition: .25s ease-out;
	background: var(--student-gradient);
	z-index: 2;
}

	.hero_image {
		position: relative;
		background-image: var(--background-image);
		background-position: var(--background-position, center);
		background-size: cover;
		overflow: hidden;
		animation: grow 1.5s ease-out forwards;
	}

.hero.wide {
	position: relative;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	overflow: hidden;
	display: grid;
	grid-template-columns: calc(460px + var(--left-right-padding)) 1fr;
	grid-template-columns: auto 63.61vw;
	gap: 60px;
	padding-top: var(--header_spacer_height);
}

.hero_container a.pc-edit {
	top: 100px;
}


/* bgvid */
@media (max-width: 1024px) {
	.bgvid {
		display: none!important;
	}
	
/*
	.hero, .site-header {
    position: relative;
    height: 71vh;
}
.button-container {
    left: 50%;
    text-align: center;
    bottom: 140px;
}
*/
	}



.bgvid {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  filter:grayscale(100%);
}


/* end bgvid */

.hero_text {
	--divider-size: 2px;

	position: relative;
	padding-bottom: 150px;
	align-self: end;
}

	h1 {
		position: relative;
		margin: 0;
		padding-left: var(--left-right-padding);
		color: var(--black);
		font-family: var(--font-primary);
		font-size: var(--default-h1);
		font-weight: 700;
		line-height: 1.1;
		text-transform: uppercase;
	}

		.divider {
			--divider-size: 2px;

			position: relative;
			height: var(--divider-size);
			width: 100%;
		}

			.divider::before {
				content: "";
				position: absolute;
				bottom: 0;
				left: 50%;
				left: 0;
				width: 0;
				height: var(--divider-size);
				/* transform: translateX(-50%); */
				transition: 1s;
				box-sizing: border-box;
				opacity: 0;

				border-color: var(--divider-color);
				border-width: var(--divider-size);
				border-style: solid;
				border-top-width: 0;
				
			}

				.divider.inView::before {
					animation: divider-hero 2s ease-in-out .5s forwards;
				}

		p.tag-action {
			margin: 0;
			font-family: var(--font-secondary);
			font-style: normal;
			text-indent: 0;
			display: flex;
			align-items: center;
			justify-content: center;
			height: 100%;
		}
	
	
				

#section-container {
	position: relative;
	background-color: var(--white);
	font-size: var(--default-p);
}


section {
	position: relative;
	padding: var(--section-padding-top) 0;
	padding: var(--section-padding-top) var(--left-right-padding);

}

	.section_background_container {
		position: absolute;
		width: 100%;
		height: 100%;
	}
	
		.section_background_container::before {
			content: "";
			position: absolute;
			width: 100%;
			height: 100%;
	
			background-image: var(--background-image);
			background-position: var(--background-position);
			background-size: cover;
		}
	
			.section_background {
				width: 100%;
				height: 0%;
				background-position: center;
				background-size: cover;
				background-repeat: no-repeat;
				background-image: var(--background-image);
			}

	section h2 {
		position: relative;
		margin: 0.25em 0 0.5em;
		font-family: var(--font-primary);
		font-size: var(--default-h2);
		font-weight: 700;
		text-align: left;
		line-height: 1;
		text-transform: uppercase;
	}
	
		section .section-title h2 {
			margin: 0;
		}
	
	section h3 {
		color: var(--charcoal);
		font-family: var(--font-primary);
		font-size: var(--default-h3);
		font-weight: 700;
		line-height: 1.1;
		margin: 0;
	}
	
	section h4 {
		margin: 0;
/* 		color: var(--charcoal); */
		font-family: var(--font-primary);
		font-size: var(--default-h4);
		font-weight: 700;
		text-transform: uppercase;
	}
	
		section h4.active {
		}
		
			section h4:before {
				content: var(--icon-arrow-right-charcoal);
				position: absolute;
				left: 0;
				top: 50%;
				transform: translate(-150%, -50%);
				display: inline-block;
				vertical-align: middle;
				opacity: 0;
				transition: .3s;
			}

				section .active h4:before {
					opacity: 1;
				}
		section h5 {
			margin: 0;
			font-family: var(--font-primary);
			font-size: var(--default-p);
			font-weight: 400;
			text-transform: uppercase;
			/* letter-spacing: 2px; */
		}

	section .section-title {
		position: relative;
		font-size: var(--section-title-size);
		line-height: 1.2;
	}
	
	section .section_content_wrapper {
		position: relative;
		/* width: 86%; */
		max-width: var(--max-width);
		margin: 0 auto;
		display: flex;
	}
	section p {
		position: relative;
		font-size: var(--default-p);
		font-weight: var(--default-p-weight);
		line-height: var(--default-lh);
	}

	section h2 p {
		margin: 0;
		font-size: inherit;
		font-weight: inherit;
		line-height: inherit;
	}


	section .section-header {
		margin-bottom: 3rem;
	}

		section .section-header.centered {
			text-align: center;
		}


	.column_container {
		position: relative;
		width: 100%;
		padding: 60px 100px;
		display: flex;
		justify-content: center;
	}
	
		.column_container .column {
			position: relative;
			width: 50%;
		}
		
			.column_container .column-image {
/* 				width: 55%; */
			}
			
/*
			.column_container .column:not(.column-image) {
				padding: 0 9em;
			}
*/
		
			.column.left {
				padding-right: 0;
			}

			.column.right {
				padding-left: 0;
			}
		



		section .left,
		section .right {
			position: relative;
		}

		section .section_button {
			text-align: center;
		}
		
			section .section_button a {
				font-size: 17pt;
			}
		
		section .background_container {
			position: relative;
			height: 0;
			padding-top: 56.25%;
		}

			section .background_container .background {
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				background-position: center;
				background-size: cover;
				background-image: var(--background-image);
			}
	
/*
		.section_action a.btn:first-child {
			margin-left: 0;
		}
		.section_action a.btn:last-child {
			margin-right: 0;
		}
*/

.tri_1 {
	content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_2' data-name='Layer 2' xmlns='http://www.w3.org/2000/svg' width='222.19995' height='139.875' viewBox='0 0 222.19995 139.875'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: %23242424; %7D .cls-3 %7B fill: %239eaf5e; %7D %3C/style%3E%3C/defs%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cg%3E%3Cpolygon class='cls-3' points='222.19995 0 0 133.875 19.9585 133.875 222.19995 12.02502 222.19995 0'/%3E%3Crect class='cls-1' x='14.97925' y='131.06189' width='.00452' height='11.62623'/%3E%3Cpolygon class='cls-1' points='222.19995 133.875 27.71375 133.875 24.39429 135.875 222.19995 135.875 222.19995 16.69507 222.19995 16.69507 222.19995 133.875'/%3E%3Cpolygon class='cls-3' points='222.19995 16.69507 27.71375 133.875 222.19995 133.875 222.19995 16.69507'/%3E%3Crect class='cls-1' x='3.02512' y='72.94891' width='236.1104' height='.00226' transform='translate(-20.27792 72.95052) rotate(-31.06886)'/%3E%3Cpolygon class='cls-2' points='222.19995 16.69507 222.19995 12.02515 19.96289 133.875 10.00464 139.875 222.19995 139.875 222.19995 135.875 24.39429 135.875 27.71375 133.875 222.19995 16.69507'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	position: absolute;
    right: 0px;
    top: -80px;
}
.icon_1 {
	content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_2' data-name='Layer 2' xmlns='http://www.w3.org/2000/svg' width='388.08295' height='768.833' viewBox='0 0 388.08295 768.833'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; %7D .cls-2 %7B fill: %23ff4025; %7D .cls-3 %7B fill: %23f6f2ee; %7D %3C/style%3E%3C/defs%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cg%3E%3Crect id='Rectangle_369' data-name='Rectangle 369' class='cls-1' width='388.08295' height='768.833'/%3E%3Cg id='Group_4309' data-name='Group 4309'%3E%3Cpath id='Path_10484' data-name='Path 10484' class='cls-2' d='M336.40897,0l-134.8,133.912,152.228,165.22899L336.40897,0Z'/%3E%3Cpath id='Path_10485' data-name='Path 10485' class='cls-2' d='M16.53297,322.01607l295.01599,16.10899-163.71599-148.92799L16.53297,322.01607Z'/%3E%3Cpath id='Path_10486' data-name='Path 10486' class='cls-3' d='M19.95399,400.39306l118.761,143.732,178.09401-161.113-296.85501,17.381Z'/%3E%3Cpath id='Path_10487' data-name='Path 10487' class='cls-3' d='M336.506,768.83298l16.37801-348.70001-161.67,174.37703,145.29199,174.32298Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	position: absolute;
    right: 0px;
    top: -100px;
	z-index: 1;
}
.icon_2 {
	content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_2' data-name='Layer 2' xmlns='http://www.w3.org/2000/svg' width='263.99988' height='643.44189' viewBox='0 0 263.99988 643.44189'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %231c3e4f; %7D .cls-2 %7B fill: %23ff4025; %7D %3C/style%3E%3C/defs%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cg%3E%3Cpolygon class='cls-2' points='0 179.4729 86.33887 85.77124 0 0 0 179.4729'/%3E%3Cpolygon class='cls-2' points='0 280.75391 263.99988 266.3313 137.96191 138.83911 0 264.34546 0 280.75391'/%3E%3Cpolygon class='cls-1' points='0 346.80347 146.71997 479.5332 260.71997 341.56323 0 326.2981 0 346.80347'/%3E%3Cpolygon class='cls-1' points='0 643.44189 96.30078 527.89917 0 424.02246 0 643.44189'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	position: absolute;
    left: 0px;
    top: -100px;
	z-index: 0;
}



section#first-section {
	padding: 0;
	height: 610px;
	background-color: var(--kids-blue);
	color: var(--primary-color-text);
}

	#first-section .divider {
		--divider-color: var(--white);
		left: calc(var(--left-right-padding) * -1);
   		 width: calc(100% + var(--left-right-padding));
	}

	#first-section .section_content_wrapper {
		height: 100%;
		display: grid;
		grid-template-columns: 75% 1fr;
		overflow: visible;
	}

	#first-section p {
		margin: 0;
	}

		#first-section .section-title-container {
			position: relative;
			padding: 45px var(--left-right-padding);
			height: 100%;
			color: var(--white);
			font-family: var(--font-secondary);
			align-content: center;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: start;
			gap: 20px;
			z-index: 2;
		}

			#first-section .section-title-container .section-title {
				margin: 0;

				/* &::after {
					content: "";
					position: relative;
					width: calc(105% + var(--left-right-padding));
					height: 2px;
					margin-top: 10px;
					background-color: var(--white);
					transform: translateX(calc(var(--left-right-padding) * -1));
					display: block;
				} */
			}

			#first-section .section_action {
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 40px;
			}

section#second-section {
	padding: var(--section-padding-top) 0;
	background-color: var(--cream);
}
	section#second-section .section_wrapper {
	
	}
		section#second-section .section_content_wrapper {
			display: block;
			padding: var(--section-padding-top) 0 var(--section-padding-top) var(--left-right-padding);

		}

		section#second-section .section_background {
			width: 100%;
			height: 0%;
			background-position: center;
			background-size: cover;
			background-repeat: no-repeat;
			background-image: var(--background-image);
			padding-bottom: 79.63483146067415%;
		}
			section#second-section .section_text_container {
				--divider-size: 2px;
				position: relative;
				color: var(--charcoal);
				align-self: end;
				padding: 50px var(--left-right-padding);
				z-index: 2;
			}
			#second-section .bg_container {
				z-index: 3;
			}






	
section#third-section {
	padding: 0;
	background-color: var(--khaki);
	z-index: 3;
}

	#third-section .section_wrapper {
		position: relative;
		display: grid;
		grid-template-columns: auto 63.61vw;
	}

		#third-section .column_container {
			padding: 30px 0px 30px 30px;
			flex-direction: column;
			z-index: 3;
		}
		#third-section .section_content_wrapper {
			margin: 0;
			padding: 45px var(--left-right-padding);
			flex-direction: column;
			justify-content: top;
			gap: 30px;
			z-index: 3;

			h2 {
				margin: 0;
			}

			.section_action {
				text-align: end;
			}
		}

			#third-section .divider {
				left: calc(var(--left-right-padding) * -1);
				width: calc(100% + var(--left-right-padding));
			}

				#third-section .divider.inView {
				}

			#third-section .section_content {
			}

			#third-section .column_container .column {
				width: 100%;
				display: flex;
				/* grid-template-rows: 1fr 1fr; */
				padding: 30px 0px 30px 30px;
				

			}
			.column_text_wrapper {
				position: relative;
				padding: 35px 45px;
				color: var(--white);
				width: 100%;
				background-color: var(--charcoal);
				color: var(--primary-color-text);
			}
			
			#third-section summary {
				display: flex;
				align-items: center;
				justify-content: space-between;
				list-style: none;
			}
			#third-section summary::-webkit-details-marker,
			#third-section summary::marker {
				list-style: none;
				display: none;
			}

					#mainContainer #third-section .column_container summary .arrow {
						content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_2' data-name='Layer 2' xmlns='http://www.w3.org/2000/svg' width='38' height='38' viewBox='0 0 38 38'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23f2412b; %7D .cls-2 %7B isolation: isolate; %7D %3C/style%3E%3C/defs%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cg id='_' data-name=' ' class='cls-2'%3E%3Cg class='cls-2'%3E%3Cpath class='cls-1' d='M38,13.5404v10.9192h-13.51477v13.5404h-10.97145v-13.5404H0v-10.9192h13.51378V0h10.97145v13.5404h13.51477Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
						width: 46px;
						height: 100%;
						position: relative;
						display: block;
						transform: rotate(0deg);
						transition: .25s transform;
						transition-timing-function: ease-in-out;					
					}
					#mainContainer #third-section details[open] .arrow {
						content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_2' data-name='Layer 2' xmlns='http://www.w3.org/2000/svg' width='38' height='38' viewBox='0 0 38 38'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; %7D .cls-2 %7B fill: %23f2412b; %7D .cls-3 %7B isolation: isolate; %7D %3C/style%3E%3C/defs%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cg%3E%3Cg id='_' data-name=' ' class='cls-3'%3E%3Cg class='cls-3'%3E%3Cpath class='cls-2' d='M24.4596,38h-10.9192V0h10.9192v38Z'/%3E%3C/g%3E%3C/g%3E%3Crect class='cls-1' width='38' height='38' transform='translate(38) rotate(90)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
						transform: rotate(90deg);
						transition: .25s transform;
						transition-timing-function: ease-in-out;
					}

			#third-section details {
				z-index: 3;
			}
			#mainContainer #third-section details {
				max-height: 10rem;
				transition: max-height .25s ease-in-out;
			}
				#mainContainer #third-section details[open] {
					max-height: 20rem;
				}
				#third-section h2 {
				}
				

					#third-section h5 {
						margin-bottom: 5px;
					}
					#third-section 	.column_text_container {
						padding-top: 15px;
					}
					#third-section 	.column_text_container strong {
						font-weight: 400;
					}
					#third-section 	.column_text_container p {
						font-weight: 300;
					}

			#third-section .section_text {
				display: flex;
				flex-direction: column;
				gap: 30px;
			}

			#third-section p { 
				margin: 0;
			}

			#third-section img {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}
			#third-section .column_text_wrapper {
				padding: 35px 45px 35px 65px;
			}
			#third-section summary::marker {
				display: none !important;
			}




section#fourth-section {
	padding: 0;
	height: 610px;
	background-color: var(--kids-blue);
}

	#fourth-section .divider {
		--divider-color: var(--white);
		left: calc(var(--left-right-padding) * -1);
    width: calc(100% + var(--left-right-padding));
	}

	#fourth-section .section_content_wrapper {
		height: 100%;
		display: grid;
		grid-template-columns: 64% 1fr;
	}

	#fourth-section p {
		margin: 0;
	}

		#fourth-section .section-title-container {
			position: relative;
			padding: 45px var(--left-right-padding);
			height: 100%;
			align-content: center;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: start;
			gap: 20px;
			z-index: 2;
			color: var(--primary-color-text);
		}

			#fourth-section .section-title-container .section-title {
				margin: 0;
			}


		#fourth-section .section_text {
			position: relative;
			height: 100%;
			color: var(--white);
			font-weight: 300;
			background-image: var(--background-image);
			background-repeat: no-repeat;
			background-size: cover;
			display: flex;
			flex-direction: column;
			justify-content: center;
			gap: 10px;
			background-position: center;
		}



section#fifth-section {
	padding: var(--section-padding-top) var(--left-right-padding);
	background-color: var(--khaki);
	color: var(--charcoal);
	z-index: 2;
}
	#fifth-section .section_content_wrapper {
		display: flex;
		flex-direction: column;
		width: 100%;
		align-items: flex-end;
	}


	#fifth-section .section_wrapper {
		position: relative;
		max-width: var(--max-width);
		aspect-ratio: 16/9;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
	}
	#fifth-section .section-title {
		width: auto;
		min-width: 310px;
	}
	#fifth-section .section-text {
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#fifth-section a.btn.white {
		white-space: nowrap;
		width: auto;
	}





section#sixth-section {
	padding: 0;
	background-color: var(--cream);
}

	#sixth-section .section_wrapper {
		position: relative;
		display: grid;
		grid-template-columns: auto 63.61vw;
	}

		#sixth-section .column_container {
			padding: 30px 0px 30px 30px;
			flex-direction: column;
		}
		#sixth-section .section_content_wrapper {
			margin: 0;
			padding: 45px var(--left-right-padding);
			flex-direction: column;
			justify-content: top;
			gap: 30px;

			h2 {
				margin: 0;
			}

			.section_action {
				text-align: end;
			}
		}

			#sixth-section .divider {
				left: calc(var(--left-right-padding) * -1);
				width: calc(100% + var(--left-right-padding));
			}

				#sixth-section .divider.inView {
				}

			#sixth-section .section_content {
			}

			#sixth-section .column_container .column {
				width: 100%;
				display: flex;
				/* grid-template-rows: 1fr 1fr; */
				padding: 30px 0px 30px 30px;
				

			}
			.column_text_wrapper {
				position: relative;
				padding: 35px 45px;
				color: var(--white);
				width: 100%;
				background-color: var(--charcoal);
				color: var(--primary-color-text);
			}
			#sixth-section .column_text_wrapper {
				background-color: var(--kids-green);
			}
			
			#sixth-section summary {
				display: flex;
				align-items: center;
				justify-content: space-between;
			}

				

					#sixth-section h5 {
						margin-bottom: 5px;
					}
					#sixth-section 	.column_text_container {
						padding-top: 15px;
					}
					#sixth-section 	.column_text_container strong {
						font-weight: 400;
					}
					#sixth-section 	.column_text_container p {
						font-weight: 300;
					}

			#sixth-section .section_text {
				display: flex;
				flex-direction: column;
				gap: 30px;
			}

			#sixth-section p { 
				margin: 0;
			}

			#sixth-section img {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}
		

#mainContainer a.btn.white, 
#mainContainer a.btn.white:visited, 
#mainContainer span.btn.white, 
#mainContainer input.btn.white {
	--btn-color: var(--charcoal);
	--hover-color: var(--charcoal);
	--border-color: var(--white);
	--bg-color: var(--white);
}
#mainContainer a.btn.green, 
#mainContainer a.btn.green:visited, 
#mainContainer span.btn.green, 
#mainContainer input.btn.green {
	--btn-color: var(--white);
	--hover-color: var(--charcoal);
	--border-color: var(--kids-green);
	--bg-color: var(--kids-green);
}
	#mainContainer a.btn.green:hover, 
	#mainContainer a.btn.green:visited:hover, 
	#mainContainer span.btn.green:hover, 
	#mainContainer input.btn.green:hover {
		color: var(--white) !important;
	}
	#mainContainer .btn.green::before,
	#mainContainer .btn.green::after {
		color: var(--charcoal);
	}

	/* #mainContainer a.btn.green span {
		color: var(--white);
	} */
	#mainContainer .btn::before, 
	#mainContainer .btn::after {
		content: "";
		position: absolute;
		inset: -2px;
		opacity: 0;
		transition: .5s;
		transform: translate(4px, 3px);
	}
	#mainContainer .btn:hover::before {
		bottom: -2px;
		right: -2px;
		opacity: 1;
	}
	#mainContainer .btn:hover::after {
		top: -2px;
		left: -2px;
		opacity: 1;
	}



.hero_text:before {
	animation: reveal-bottom-up 2s 0s ease-in-out forwards;
	content: "";
    position: absolute;
    top: 0;
    left: calc(var(--left-right-padding) - 30px);
    width: 10px;
    height: 100%;
    background-color: var(--kids-green);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    z-index: 1;
}
#first-section .section-title-container:before {
	animation: reveal-top-down 2s 0s ease-in-out forwards;
	content: "";
    position: absolute;
    top: 0;
    left: calc(var(--left-right-padding) - 30px);
    width: 10px;
    height: 80%;
    background-color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    z-index: 1;
	max-height: 312px;
}
#third-section .section_content_wrapper:before {
	animation: reveal-top-down 2s 0s ease-in-out forwards;
	content: "";
    position: absolute;
    top: 0;
    left: calc(var(--left-right-padding) - 30px);
    width: 10px;
    height: 95%;
    background-color: var(--kids-orange);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	max-height: 290px;
    z-index: 1;
	
}
#third-section .column_text_wrapper:before {
	animation: reveal-bottom-up 2s 0s ease-in-out forwards;
	content: "";
    position: absolute;
    top: 0;
    left: calc(var(--left-right-padding) / 2);
    width: 10px;
    height: 100%;
	max-height: 100px;
    background-color: var(--kids-green);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    z-index: 1;
}
section#second-section .section_text_container:before {
	animation: reveal-top-down 2s 0s ease-in-out forwards;
	content: "";
    position: absolute;
    top: -150px;
    left: calc(var(--left-right-padding) - 30px);
    width: 10px;
    height: 100%;
    background-color: var(--kids-blue);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    max-height: 310px;
    z-index: 0;
	
}
#fourth-section .section-title-container:before {
	animation: reveal-top-down 2s 0s ease-in-out forwards;
	content: "";
    position: absolute;
    top: 0;
    left: calc(var(--left-right-padding) - 30px);
    width: 10px;
    height: 80%;
    background-color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    z-index: 1;
	max-height: 282px;
}
#fifth-section .content_wrapper:before {
	animation: reveal-top-down 2s 0s ease-in-out forwards;
	content: "";
    position: absolute;
    top: -70px;
    left: 28%;
    width: 10px;
    height: 100%;
	max-height: 140px;
    background-color: var(--kids-green);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    z-index: 1;
}
#sixth-section .section_content_wrapper:before {
	animation: reveal-top-down 2s 0s ease-in-out forwards;
	content: "";
    position: absolute;
    top: -150px;
    left: calc(var(--left-right-padding) - 30px);
    width: 10px;
    height: 100%;
    background-color: var(--kids-blue);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    max-height: 310px;
    z-index: 0;
	
}

@keyframes grow {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.05);
	}
}

@keyframes reveal-top-down {
	0% {
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}
	100% {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
}
@keyframes reveal-bottom-up {
	0% {
		clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
	}
	100% {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	}
}

@keyframes reveal-center-down {
	0% {
		clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
	}
	100% {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
}		


@font-face {
	font-family: 'Metorius';
	src: url('/fonts/Metorius-Sans.eot');
	src: local('Metorius Sans'), local('Metorius-Sans'),
		url('/fonts/Metorius-Sans.eot?#iefix') format('embedded-opentype'),
		url('/fonts/Metorius-Sans.woff2') format('woff2'),
		url('/fonts/Metorius-Sans.woff') format('woff'),
		url('/fonts/Metorius-Sans.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
	
	


.modalBody.old_redirect {
	font-size: 16px;
}
@media (max-width: 1260px) {
}


@media (max-width: 1200px) {
}


@media (max-width: 1024px) {
	#third-section {
		.section_wrapper {
			grid-template-columns: 1fr;

			.column_container {
	
				.column {
				}
			}
		}
	}

}

@media (max-width: 768px) {
	#fifth-section .content_wrapper:before {
		left: -30px;
		z-index: -1;
	}
	section#second-section .section_content_wrapper {
		padding: 0;
	}
	.icon_2 {
		display: none;
	}
	#logo a {
		height: 60px;
	}
	.hero.wide {
		grid-template-columns: 1fr;

		& > * {
			grid-column: 1;
			grid-row: 1;
		}

		.hero_image::before {
			content: "";
			position: absolute;
			inset: 0;
			background-color: var(--black);
			opacity: .3;
		}

		.hero_text {
			margin-right: var(--left-right-padding);
			justify-self: start;
			z-index: 1;

			h1 {
				color: var(--white);
			}

			.divider {
				--divider-color: var(--white);
			}
		}

	}

	section#first-section {
		height: auto;

		.section_content_wrapper {
			grid-template-columns: 1fr;

			.section-title-container {
				order: 1;
			}
		}
		.section_text {
			padding-top: 40px;
			padding-bottom: 40px;
		}
	}

	#second-section {
		.section_wrapper {
			grid-template-columns: 1fr;

			.column_container {
				flex-direction: column;
				
				.column {
					width: 100%;
					grid-template-columns: .7fr 1fr;
					grid-template-rows: 1fr;

					img {
						aspect-ratio: 16/9;
						object-position: 0% 10%;
						grid-row: 1;
						grid-column: 1;
					}

					.column_text_wrapper {
						grid-row: 1;
						grid-column: 2;
					}
				}
			}
		}
	}
	section#fourth-section {
		height: 100%;
	}
		section#fourth-section .section_content_wrapper {
			grid-template-columns: 1fr;

		}
			#fourth-section .section_text {
				aspect-ratio: 1 / 1;
			}

	#fifth-section .section_content_wrapper {
		flex-direction: column;
	}
    #sixth-section {
        .section_wrapper {
            grid-template-columns: 1fr;
        }
	}
	#third-section .column_container,
	#sixth-section .column_container {
		padding: 0;
		z-index: 3;
	}
	.column_text_wrapper {
		padding: 25px 25px 35px;

	}
	section#second-section {
		padding-bottom: 0;
	}
	.hero.wide:before {
		display: none;
	}
	.primary {
		background-color: var(--white);
	}
	.tri_5 {
		width: 40%;
	}
	.tri_1 {
		display: none;
	}

	.tri_3,
	.tri_4,
	.icon_1 {
		width: 20%;
	}
	.tri_2 {
		width: 7%;
	}

	
		

}

@media (max-width: 640px) {
	#second-section .column_container {
		flex-direction: column;

		.column {
			img {
			}
		}
	}

	#mainContainer #third-section .column_container summary .arrow {
		width: 26px;
	}


	#fifth-section .section_wrapper {

		&::before {
			position: relative;
			width: 100%;
			aspect-ratio: 16/9;
		}

		.video_play {
			bottom: unset;
			top: 0;
			left: 0;
			aspect-ratio: 16 / 9;
			width: 100%;
		}

		.play-button {
			position: absolute;
			inset: 0;
    }

		.section_content_wrapper {
			align-self: unset;
		}
	}
}

@media (max-width: 520px) {
	#first-section .section_action {
		flex-direction: column;
		gap: 20px;
	}

	#second-section {
		.section_wrapper {

			.column_container {
				
				.column {
					grid-template-columns: 1fr;

					.column_text_wrapper {
						grid-column: 1;
					}
				}
			}
		}
	}

}

@media (max-width: 420px) {
}
@media (max-width: 365px) {


}



@media (max-width: 768px) and (min-height: 640px) {		
}

@media (max-height: 640px) {
}



@media (max-height: 700px) {
}

@media (max-height: 580px) {
}

@media (max-height: 450px) {
	
}
