/*
Theme Name: CCC Training
Text Domain: ccctraining
Version: 1.0
Tested up to: 6.4
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Custom
Author URI: https://wordpress.org/
Theme URI: https://wordpress.org/themes/twentytwenty/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

All files, unless otherwise stated, are released under the GNU General Public
License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

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



html,
body {
	font-family: 'Open Sans', sans-serif;
	border: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
	border: none;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	padding: 0;
	text-align: inherit;
}



/* -------------------------------------------------------------------------- */

/*	1. Document Setup
/* -------------------------------------------------------------------------- */


html {
	font-size: 13px; /* 1rem = 10px */
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	background: #ffffff;
	box-sizing: border-box;
	color: #000;
	font-size: inherit;
	letter-spacing: 0;
	text-align: left;
}


*,
*::before,
*::after {
	box-sizing: inherit;
	-webkit-font-smoothing: antialiased;
	word-break: break-word;
	word-wrap: break-word;
}

#site-content {
	overflow: hidden;
}


/* Clearing ---------------------------------- */

.group::after,
.entry-content::after {
	clear: both;
	content: "";
	display: block;
}


/* Base Transitions -------------------------- */

a,
path {
	transition: all 0.15s linear;
}




/* Skip Link --------------------------------- */

.skip-link {
	left: -9999rem;
	top: 2.5rem;
	z-index: 999999999;
	text-decoration: underline;
}

.skip-link:focus {
	display: block;
	left: 6px;
	top: 7px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	line-height: normal;
	padding: 15px 23px 14px;
	z-index: 100000;
	right: auto;
}


/* Fonts ------------------------------------- */

/*
 * Chrome renders extra-wide &nbsp; characters for the Hoefler Text font.
 * This results in a jumping cursor when typing in both the classic editor and
 * block editor. The following font-face override fixes the issue by manually
 * inserting a custom font that includes just a Hoefler Text space replacement
 * for that character instead.
 */


/* ----------------------------------------------
Inter variable font. Usage:

@supports (font-variation-settings: normal) {
	html { font-family: 'Inter var', sans-serif; }
}
---------------------------------------------- */




/* Accessibility Settings -------------------- */

@media ( prefers-reduced-motion: reduce ) {

	* {
		animation-duration: 0s !important;
		transition-duration: 0s !important;
	}
}


/* -------------------------------------------------------------------------- */

/*	2. Element Base
/* ---------------------------------------------*---------------------------- */


main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
.faux-heading {
	font-feature-settings: "lnum";
	font-variant-numeric: lining-nums;
	font-weight: 700;
	letter-spacing: -0.0415625em;
	line-height: 1.25;
}

.page-simple h1,
.page-simple h2,
.page-simple h3,
.page-simple h4,
.page-simple h5,
.page-simple h6 {
	font-family: 'open sans',Helvetica,Arial,sans-serif;
	text-transform:uppercase;
	color: #222222;
}
.page-simple h1 {
  font-size: 34px;
  line-height: 1.1em;
}


h1,
.heading-size-1 {
	font-family: 'Tauri', sans-serif;
	font-size: 2.2rem;
	font-weight: 800;
	line-height: 1.138888889;
	letter-spacing: 1px;
}

h2,
.heading-size-2 {
	font-family: 'Tauri', sans-serif;
	font-size: 1.5rem;
	letter-spacing: 0px;
}

h3,
.heading-size-3 {
	font-family: 'Tauri', sans-serif;
	font-size: 1.2rem;
	letter-spacing: 0px;
}

h4,
.heading-size-4 {
	font-family: 'Tauri', sans-serif;
	font-size: 1.1rem;
}

h5,
.heading-size-5 {
	font-family: 'Tauri', sans-serif;
	font-size: 1rem;
}

h6,
.heading-size-6 {
	font-family: 'Tauri', sans-serif;
	font-size: 0.8rem;
	letter-spacing: 0.03125em;
	text-transform: uppercase;
}

p {
	line-height: 1.5;
	margin: 0 0 1em 0;
}

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


b,
strong {
	font-weight: 700;
}


hr {
	border-style: solid;
	border-width: 0.1rem 0 0 0;
	border-color: #dcd7ca;
	margin: 4rem 0;
}


a {
	color: #719430;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #83a83d;
	text-decoration: none;
}


/* Lists ------------------------------------- */

ul,
ol {
	margin: 0 0 3rem 3rem;
}

ul {
	list-style: disc;
}

ul ul {
	list-style: circle;
}

ul ul ul {
	list-style: square;
}

ol {
	list-style: decimal;
}

ol ol {
	list-style: lower-alpha;
}

ol ol ol {
	list-style: lower-roman;
}

li {
	line-height: 1.5;
	margin: 0.5rem 0 0 2rem;
}

li > ul,
li > ol {
	margin: 1rem 0 0 2rem;
}

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

.reset-list-style li {
	margin: 0;
}

dt,
dd {
	line-height: 1.5;
}

dt {
	font-weight: 700;
}

dt + dd {
	margin-top: 0.5rem;
}

dd + dt {
	margin-top: 1.5rem;
}





/* Code -------------------------------------- */

code,
kbd,
pre,
samp {
	font-family: monospace;
	font-size: 0.9em;
	padding: 0.4rem 0.6rem;
}

code,
kbd,
samp {
	background: rgba(0, 0, 0, 0.075);
	border-radius: 0.2rem;
}

pre {
	border: 0.1rem solid #dcd7ca;
	line-height: 1.5;
	margin: 4rem 0;
	overflow: auto;
	padding: 3rem 2rem;
	text-align: left;
}

pre code {
	background: transparent;
	padding: 0;
}


/* Media ------------------------------------- */

figure {
	display: block;
	margin: 0;
}

iframe {
	display: block;
	max-width: 100%;
}

video {
	display: block;
}

svg,
img,
embed,
object {
	display: block;
	height: auto;
	max-width: 100%;
}



/* Inputs ------------------------------------ */

fieldset {
	border: 0.2rem solid #dcd7ca;
	padding: 2rem;
}

legend {
	font-size: 0.85em;
	font-weight: 700;
	padding: 0 1rem;
}

label {
	display: block;
	font-size: 1.2rem;
	font-weight: 400;
	margin: 0 0 0.5rem 0;
}

label.inline,
input[type="checkbox"] + label {
	display: inline;
	font-weight: 400;
	margin-left: 0.5rem;
}

input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	top: 2px;
	display: inline-block;
	margin: 0;
	width: 1.5rem;
	min-width: 1.5rem;
	height: 1.5rem;
	background: #fff;
	border-radius: 0;
	border-style: solid;
	border-width: 0.1rem;
	border-color: #dcd7ca;
	box-shadow: none;
	cursor: pointer;
}

input[type="checkbox"]:checked::before {
	/* Use the "Yes" SVG Dashicon */
	content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23000000%27%2F%3E%3C%2Fsvg%3E");
	position: absolute;
	display: inline-block;
	margin: -0.1875rem 0 0 -0.25rem;
	height: 1.75rem;
	width: 1.75rem;
}

input,
textarea,
button,
.button,
.faux-button,
.wp-block-button__link,
.wp-block-file__button {
	line-height: 1;
}


input,
textarea {
	border-color: #dcd7ca;
	color: #000;
}

code,
input[type="url"],
input[type="email"],
input[type="tel"] {

	/*rtl:ignore*/
	direction: ltr;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="color"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  border-radius: 0;
  border-style: solid;
  border-width: 1px;
  box-shadow: none;
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  margin: 0;
  max-width: 100%;
  padding: 7px 10px;
  width: 100%;
  color: black;
  border-color: #e1e1e1;
  outline: none;
}

input[type="number"] {
	padding-right: 0.5rem;
}

select {
	font-size: 1em;
}

textarea {
	height: 12rem;
	line-height: 1.5;
	width: 100%;
}

input::-webkit-input-placeholder {
	line-height: normal;
}

input:-ms-input-placeholder {
	line-height: normal;
}

input::-moz-placeholder {
	line-height: revert; /* Reset to the value from the user-agent stylesheet. */
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}



input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	border-color: currentColor;
}

input[type="search"]:focus {
	outline: thin dotted;
	outline-offset: -4px;
}

/* Tables ------------------------------------ */

table {
	border: 0.1rem solid #dcd7ca;
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
	font-size: 1.6rem;
	margin: 4rem 0;
	max-width: 100%;
	overflow: hidden;
	width: 100%;
}

.alignleft > table {
	margin: 0;
}

.alignright > table {
	margin: 0;
}

th,
td {
	border: 0.1rem solid #dcd7ca;
	line-height: 1.4;
	margin: 0;
	overflow: visible;
	padding: 0.5em;
}

caption {
	background: #dcd7ca;
	font-weight: 600;
	padding: 0.5em;
	text-align: center;
}

thead {
	vertical-align: bottom;
	white-space: nowrap;
}

th {
	font-weight: 700;
}


/* -------------------------------------------------------------------------- */

/*	3. Helper Classes
/* -------------------------------------------------------------------------- */





/* Hiding and Showing ------------------------ */



/* Typography -------------------------------- */

.no-select {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


/* Colors ------------------------------------ */



/* Image Classes ----------------------------- */

.bg-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-attachment-fixed {
	background-attachment: fixed;
}

@supports ( -webkit-overflow-scrolling: touch ) {

	.bg-attachment-fixed {
		background-attachment: scroll;
	}
}

@media ( prefers-reduced-motion: reduce ) {

	.bg-attachment-fixed {
		background-attachment: scroll;
	}
}



/* -------------------------------------------------------------------------- */

/*	4.	Site Header
/* -------------------------------------------------------------------------- */


#site-header {
	background: #fff;
	position: relative;
}

.header-ul.primary-menuinner {
	max-width: 168rem;
	padding: 3.15rem 0;
	z-index: 100;
}

/* Header Titles ----------------------------- */

.header-titles-wrapper {
	align-items: center;
	display: flex;
	justify-content: center;
	text-align: center;
}

body:not(.enable-search-modal) .header-titles-wrapper {
	justify-content: flex-start;
	padding-left: 0;
	text-align: left;
}


.site-logo {
	max-width: 200px;
}

.site-title {
	font-size: 2.1rem;
	font-weight: 600;
	line-height: 1;
}

.site-title a {
	color: inherit;
	display: block;
	text-decoration: none;
}

.site-title a:hover,
.site-title a:focus {
	text-decoration: underline;
}

.site-top-tag {
	display: flex;
	justify-content: flex-end;
	color: #000000;
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 2rem;
}

.site-logo a,
.site-logo img {
	display: block;
}

.header-titles .site-logo .site-logo {
	margin: 0;
}

.site-logo img {
	max-height: 6rem;
	margin: 0 auto;
	width: auto;
}

body:not(.enable-search-modal) .site-logo img {
	margin: 0;
}

/* Overlay Header ---------------------------- */

.overlay-header #site-header {
	background: transparent;
	margin: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 2;
}

.overlay-header .header-inner {
	color: #fff;
}


.overlay-header .toggle {
	color: inherit;
}

.overlay-header .header-inner .toggle-wrapper::before {
	background-color: currentColor;
	opacity: 0.25;
}

.admin-bar.overlay-header #site-header {
	top: 32px;
}

/* Header Navigation ------------------------- */

.header-navigation-wrapper {
	display: none;
}

/* Header Toggles ---------------------------- */

.header-toggles {
	display: none;
}

.header-inner .toggle {
	align-items: center;
	display: flex;
	overflow: visible;
}

.header-inner .toggle svg {
	display: block;
	position: relative;
	z-index: 1;
}

.header-inner .toggle path {
	fill: currentColor;
}

.toggle-inner {
	display: flex;
	justify-content: center;
	height: 2.3rem;
	position: relative;
}

.toggle-icon {
	display: block;
	overflow: hidden;
}

.toggle-inner .toggle-text {
	color: #6d6d6d;
	font-size: 1rem;
	font-weight: 600;
	position: absolute;
	top: calc(100% + 0.5rem);
	width: auto;
	white-space: nowrap;
	word-break: break-all;
}

.overlay-header .toggle-text {
	color: inherit;
}

.header-inner .toggle:focus .toggle-text,
.header-inner .toggle:hover .toggle-text {
	text-decoration: underline;
}


/* Navigation Toggle ------------------------- */

.toggle.nav-toggle.mobile-nav-toggle {
  background: transparent;
  cursor:pointer;
}

.header-inner.section-inner {
  display: flex;
}



.above-logo-section {

}

.logo-right {
	margin-right: 7rem;
	font-size: 1.1rem;
}

.border-bottom-grey {
	border-bottom: 1px solid #e1e1e1;
}

/* Primary Menu ---------------------------- */

.primary-menu-wrapper {
	display: none;
}

ul.primary-menu {
	display: flex;
	font-size: 1rem;
	font-weight: 400;
	flex-wrap: wrap;
	justify-content: flex-start;
}

ul.primary-menu li {
	display: flex;
  	align-items: center;
}

.primary-menu .icon {
	display: block;
	height: 0.7rem;
	position: absolute;
	pointer-events: none;
	transform: rotate(-45deg);
	width: 1.3rem;
}

.primary-menu .icon::before,
.primary-menu .icon::after {
	content: "";
	display: block;
	background-color: currentColor;
	position: absolute;
	bottom: calc(50% - 0.1rem);
	left: 0;
}

.primary-menu .icon::before {
	height: 0.9rem;
	width: 0.2rem;
}

.primary-menu .icon::after {
	height: 0.2rem;
	width: 0.9rem;
}

.primary-menu li {
	font-size: inherit;
	line-height: 1.25;
	position: relative;
}

.primary-menu > li {
	border-left:1px solid rgb(225, 225, 225);
}

.primary-menu > li.menu-item-has-children > a {
	padding-right: 2rem;
}

.primary-menu > li > .icon {
	right: -0.5rem;
	top: calc(50% - 0.4rem);
}

.primary-menu a {
	color: inherit;
	display: block;
	line-height: 1.6;
	text-decoration: none;
	word-break: normal;
	word-wrap: normal;
	text-align: center;
    padding: 0.2rem 1rem;
}

.primary-menu a:hover::after {
	content: "";
	position: absolute;
	bottom:0;
	left: 0;
	z-index: 99999;
	width: 100%;
	height: 2px;
	background-color: #719430;
  	color: #ffffff;
  	border-color: #507210;
}



.primary-menu .current_page_item a::after {
	content: "";
	position: absolute;
	bottom:0;
	left: 0;
	z-index: 99999;
	width: 100%;
	height: 2px;
	background-color: #68774b;
  	color: #ffffff;
  	border-color: #68774b;
}


.menu-underline {
	font-size: 0.9rem;
	background-color: #92a078;
	border-color: #e1e1e1;
	color: white;
	padding: 2px 3px 3px 3px;
	border-radius: 2px;
	display: inline-block;
	transform: translateY(-3px);
	line-height: 0.7rem;
  }

  li:hover > a .menu-underline {
	scale: 1.07;
	background-color: #719430;
	transition: scale 0.5s;
  }


.primary-menu a:hover,
.primary-menu a:focus,
.primary-menu .current_page_ancestor {
	text-decoration: none;
}

.primary-menu li.current-menu-item > a,
.primary-menu li.current-menu-item > .link-icon-wrapper > a {
	text-decoration: none;
}

.primary-menu li.current-menu-item > a:hover,
.primary-menu li.current-menu-item > .link-icon-wrapper > a:hover,
.primary-menu li.current-menu-item > a:focus,
.primary-menu li.current-menu-item > .link-icon-wrapper > a:focus {
	text-decoration: none;
}

/* SUB MENU */

.primary-menu ul {
	background: #000;
	border-radius: 0.4rem;
	color: #fff;
	font-size: 1.7rem;
	opacity: 0;
	padding: 1rem 0;
	position: absolute;
	right: 9999rem;
	top: calc(100% + 2rem);
	transition: opacity 0.15s linear, transform 0.15s linear, right 0s 0.15s;
	transform: translateY(0.6rem);
	width: 20rem;
	z-index: 1;
}

.primary-menu li.menu-item-has-children:hover > ul,
.primary-menu li.menu-item-has-children:focus > ul,
.primary-menu li.menu-item-has-children.focus > ul {
	right: 0;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.15s linear, transform 0.15s linear;
}

.primary-menu ul::before,
.primary-menu ul::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 100%;
}

.primary-menu ul::before {
	height: 2rem;
	left: 0;
	right: 0;
}

.primary-menu ul::after {
	border: 0.8rem solid transparent;
	border-bottom-color: #000;
	right: 1.8rem;
}

.primary-menu ul a {
	background: transparent;
	border: none;
	color: inherit;
	display: block;
	padding: 1rem 2rem;
	transition: background-color 0.15s linear;
	width: 100%;
}

.primary-menu ul li.menu-item-has-children > a {
	padding-right: 4.5rem;
}

.primary-menu ul li.menu-item-has-children .icon {
	position: absolute;
	right: 1.5rem;
	top: calc(50% - 0.5rem);
}

/* DEEP DOWN */


.hr {
  clear: both;
  display: block;
  width: 100%;
  height: 25px;
  line-height: 25px;
  position: relative;
  margin: 30px 0;
  float: left;
}
.hr-inner {
	position: absolute;
	height: 1px;
	left: 0;
	top: 50%;
	width: 30%;
	margin-top: -1px;
	border-top-width: 1px;
	border-top-style: solid;
	border-color: #cecece;
  }

  .hr-inner .hr-inner-style {
	border-radius: 20px;
	height: 9px;
	width: 9px;
	border-width: 1px;
	border-style: solid;
	display: block;
	position: absolute;
	left: 0;
	margin-left: -8px;
	margin-top: -5px;
	border-color: #cecece;
  }




.primary-menu ul ul {
	top: -1rem;
}

.primary-menu ul li.menu-item-has-children:hover > ul,
.primary-menu ul li.menu-item-has-children:focus > ul,
.primary-menu ul li.menu-item-has-children.focus > ul {
	right: calc(100% + 2rem);
}

.primary-menu ul ul::before {
	bottom: 0;
	height: auto;
	left: auto;
	right: -2rem;
	top: 0;
	width: 2rem;
}

.primary-menu ul ul::after {
	border-bottom-color: transparent;

	/*rtl:ignore*/
	border-left-color: #000;
	bottom: auto;
	right: -1.6rem;
	top: 2rem;
}

.rtl .primary-menu ul ul::after {
	transform: rotate(180deg);
}

/*
 * Enable nav submenu expansion with tapping on arrows on large-viewport
 * touch interfaces (e.g. tablets or laptops with touch screens).
 * These rules are supported by all browsers (>IE11) and when JS is disabled.
 */
@media (any-pointer: coarse) {

	.primary-menu > li.menu-item-has-children > a {
		padding-right: 0;
		margin-right: 2rem;
	}

	.primary-menu ul li.menu-item-has-children > a {
		margin-right: 4.5rem;
		padding-right: 0;
		width: unset;
	}

}

/* Repeat previous rules for IE11 (when JS enabled for polyfill). */
body.touch-enabled .primary-menu > li.menu-item-has-children > a {
	padding-right: 0;
	margin-right: 2rem;
}

body.touch-enabled .primary-menu ul li.menu-item-has-children > a {
	margin-right: 4.5rem;
	padding-right: 0;
	width: unset;
}

/* -------------------------------------------------------------------------- */

/*	5. Menu Modal
/* -------------------------------------------------------------------------- */


.menu-modal {
	background: transparent;
	display: none;
	opacity: 0;
	overflow-y: auto;
	overflow-x: hidden;
	position: fixed;
	bottom: 0;
	left: -99999rem;
	right: 99999rem;
	top: 0;
	transition: opacity 0.25s ease-in, left 0s 0.25s, right 0s 0.25s;
	z-index: 10099;
}

.modal-menu-up-svg {
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
  width: 15px;
  position: relative;
  top: 2px;
}

.admin-bar .menu-modal {
	top: 32px;
}


.menu-modal.show-modal {
	display: flex;
}

.menu-modal.active {
	left: 0;
	opacity: 1;
	right: 0;
	transition: opacity 0.25s ease-out;
}

.menu-modal-inner {
	background: #00000091;
	display: flex;
	justify-content: stretch;
	overflow: auto;
	-ms-overflow-style: auto;
	width: 100%;
}

.menu-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}

button.close-nav-toggle {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  justify-content: flex-end;
  padding: 12px 0;
  width: 100%;
  background: #f3f3f3;
  cursor:pointer;
}

button.close-nav-toggle:hover {
  background: #c7c7c7;
}

button.close-nav-toggle svg {
	height: 1.6rem;
	width: 1.6rem;
}

button.close-nav-toggle .toggle-text {
	margin-right: 1.6rem;
}

.menu-modal .menu-top {
	flex-shrink: 0;
	background-color:white;
}


/* Main Menu --------------------------------- */

.modal-menu {
	position: relative;
	left: calc(50% - 50vw);
	width: 100vw;
}

.modal-menu .current_page_item {
  box-shadow: 0px 0px 21px 13px inset #e8e8e8;
}

.modal-menu li {
	border-color: #dedfdf;
	border-style: solid;
	border-width: 0.1rem 0 0 0;
	display: flex;
	flex-wrap: wrap;
	line-height: 1;
	justify-content: flex-start;
	margin: 0;
}

.modal-menu > li:last-child {
	border-bottom-width: 0.1rem;
}

.modal-menu .ancestor-wrapper {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.modal-menu a {
	display: block;
	padding: 15px 20px;
	text-decoration: none;
	width: 100%;
	font-size: 24px;
	color: #000;
	text-transform:uppercase;
}

.modal-menu a:hover {
	text-decoration: none;
	background-color: #f8f8f8;
}

.modal-menu a .menu-underline {
	background-color: #3c3c3c;
    padding: 4px 4px;
}
.modal-menu a:hover .menu-underline {
	background-color: #83a83d;
    scale: 1;
    transition: margin 0.5s;
    margin-left: 30px;
}


button.sub-menu-toggle {
	border-left: 0.1rem solid #dedfdf;
	flex-shrink: 0;
	margin: 1rem 0;
	padding: 0 2.5rem;
}

button.sub-menu-toggle svg {
	height: 0.9rem;
	transition: transform 0.15s linear;
	width: 1.5rem;
}

button.sub-menu-toggle.active svg {
	transform: rotate(180deg);
}

.modal-menu ul {
	display: none;
	margin: 0;
	width: 100%;
}

.modal-menu ul li {
	border-left-width: 1rem;
}

.modal-menu ul li a {
	color: inherit;
	font-weight: 500;
}

/* Main menu animation ----------------------- */

.menu-wrapper .menu-item {
	position: relative;
}

.menu-wrapper .active {
	display: block;
}

.menu-wrapper.is-toggling {
	pointer-events: none;
}

.menu-wrapper.is-toggling .menu-item {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
}

.menu-wrapper.is-toggling .menu-bottom .social-menu .menu-item {
	width: auto;
}

.menu-wrapper.is-animating .menu-item,
.menu-wrapper.is-animating .toggling-target {
	transition-duration: 250ms;
}

.menu-wrapper.is-animating .menu-item {
	transition-property: transform;
}

.menu-wrapper.is-toggling .toggling-target {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
}

.menu-wrapper.is-toggling .toggling-target.active {
	opacity: 0;
}

.menu-wrapper.is-animating.is-toggling .toggling-target {
	display: block;
	transition-property: opacity;
	opacity: 0;
}

.menu-wrapper.is-animating.is-toggling .toggling-target.active {
	opacity: 1;
}

.menu-wrapper.is-toggling .modal-menu > li:last-child li {
	border-top-color: transparent;
	border-bottom-width: 0.1rem;
}

@media (prefers-reduced-motion: reduce) {

	.menu-wrapper.is-animating .menu-item,
	.menu-wrapper.is-animating .toggling-target {
		transition-duration: 1ms !important;
	}

}


/* Expanded Menu ----------------------------- */

.expanded-menu {
	display: none;
}

.mobile-menu {
	display: block;
}








/* Posts ------------------------------------- */




/* Search Results ---------------------------- */

.no-search-results-form {
	padding-top: 5rem;
}


/* -------------------------------------------------------------------------- */

/*	9. Post: Single
/* -------------------------------------------------------------------------- */


/* Post Header ------------------------------- */

.singular .entry-header {
	background-color: #fff;
	padding: 4rem 0;
}

.entry-categories {
	line-height: 1.25;
	margin-bottom: 2rem;
}

.entry-categories-inner {
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	margin: -0.5rem 0 0 -1rem;
}

.entry-categories a {
	border-bottom: 0.15rem solid currentColor;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.036666667em;
	margin: 0.5rem 0 0 1rem;
	text-decoration: none;
	text-transform: uppercase;
}

.entry-categories a:focus,
.entry-categories a:hover {
	border-bottom-color: transparent;
}

h1.entry-title,
h2.entry-title {
	margin: 0;
}

.entry-title a {
	color: inherit;
	text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
	text-decoration: underline;
}

.intro-text {
	margin-top: 2rem;
}

.singular .intro-text {
	font-size: 2rem;
	letter-spacing: -0.0315em;
	line-height: 1.4;
}

/* POST META */

.post-meta-single-top .post-meta {
	justify-content: center;
}

.post-meta-wrapper {
	margin-top: 2rem;
	margin-right: auto;
	margin-left: auto;
	max-width: 58rem;
	width: 100%;
}

.post-meta {
	color: #6d6d6d;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.5rem;
	font-weight: 500;
	list-style: none;
	margin: -1rem 0 0 -2rem;
}

.post-meta li {
	flex-shrink: 0;
	letter-spacing: -0.016875em;
	margin: 1rem 0 0 2rem;
	max-width: calc(100% - 2rem);
}

.post-meta a {
	color: inherit;
	text-decoration: none;
}

.post-meta a:focus,
.post-meta a:hover {
	text-decoration: underline;
}

.post-meta .meta-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
}

.post-meta .meta-icon {
	flex-shrink: 0;
	margin-right: 1rem;
}

.sticky .post-sticky {
	color: inherit;
}

.post-meta .post-author .meta-icon svg {
	width: 1.6rem;
	height: 1.8rem;
}

.post-meta .post-categories .meta-icon svg {
	width: 1.8rem;
	height: 1.7rem;
}

.post-meta .post-comment-link .meta-icon svg {
	width: 1.8rem;
	height: 1.8rem;
}

.post-meta .post-date .meta-icon svg {
	width: 1.7rem;
	height: 1.8rem;
}

.post-meta .post-edit .meta-icon svg {
	width: 1.8rem;
	height: 1.8rem;
}

.post-meta .post-sticky .meta-icon svg {
	width: 1.5rem;
	height: 1.8rem;
}

.post-meta .post-tags .meta-icon svg {
	width: 1.8rem;
	height: 1.8rem;
}

.post-meta svg * {
	fill: currentColor;
}


/* Featured Media ---------------------------- */

.featured-media {
	margin-top: 5rem;
	position: relative;
}

.singular .featured-media {
	margin-top: 0;
}

.singular .featured-media-inner {
	position: relative;
	left: calc(50% - 50vw);
	width: 100vw;
}

.singular .featured-media::before {
	background: #fff;
	content: "";
	display: block;
	position: absolute;
	bottom: 50%;
	left: 0;
	right: 0;
	top: 0;
}

.featured-media img {
	margin: 0 auto;
}

.featured-media figcaption {
	margin: 1.5rem auto 0 auto;
	text-align: center;
	width: calc(100% - 5rem);
}



/* Post Footer ------------------------------- */

/* POST NAV LINKS */

.post-nav-links {
	border-radius: 0.4rem;
	display: flex;
	font-size: 0.9em;
	font-weight: 600;
	line-height: 1;
	margin: 3em auto 0 auto;
	padding: 0;
	width: calc(100% - 4rem);
	max-width: 58rem;
}

.post-nav-links > span.label {
	padding: 1em 0;
}

.post-nav-links > * {
	padding: 1em 0.75em;
}

/* POST META BOTTOM */

.post-meta-wrapper.post-meta-single-bottom {
	margin-top: 3rem;
}





/* Single Pagination ------------------------- */

.pagination-single {
	font-size: 1.8rem;
	margin-top: 5rem;
}

.pagination-single-inner {
	display: flex;
	flex-direction: column;
}

.pagination-single hr:first-child {
	margin: 0 0 2.8rem 0;
}

.pagination-single hr:last-child {
	margin: 2.8rem 0 0.8rem 0;
}

.pagination-single a {
	align-items: baseline;
	display: flex;
	font-weight: 600;
	letter-spacing: -0.0275em;
	text-decoration: none;
	flex: 1;
}

.pagination-single a + a {
	margin-top: 1rem;
}

.pagination-single a .arrow {
	margin-right: 1rem;
}

.pagination-single a:focus .title,
.pagination-single a:hover .title {
	text-decoration: underline;
}




/* -------------------------------------------------------------------------- */

/*	11. Entry Content
/* -------------------------------------------------------------------------- */


.entry-content {
	line-height:1.5;
	color:rgb(10, 10, 10);
}

.entry-content > * {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.25em;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.read-more-button-wrap {
	margin-top: 1em;
	text-align: center;
}

.entry-content a:hover,
.entry-content a:focus {
	text-decoration: none;
}

.entry-content p,
.entry-content li {
	line-height: 1.5;
}

.entry-content li img {
	display: inline-block;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin: 2rem auto 2rem;
}

.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
	margin-bottom: 1rem;
}

.entry-content hr {
	margin: 4rem auto;
}


/* Font Families ----------------------------- */

.entry-content {
	font-size: 1rem;
}



/* Alignment Classes ------------------------- */


[class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	max-width: 58rem;
	width: 100%;
}

.alignnone,
.aligncenter,
.alignleft,
.alignright,
.alignwide {
	margin-top: 4rem;
	margin-right: auto;
	margin-bottom: 4rem;
	margin-left: auto;
}

[class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright) {
	margin-left: auto;
	margin-right: auto;
}

/* Full */

.alignfull {
	margin-top: 5rem;
	margin-right: auto;
	margin-bottom: 5rem;
	margin-left: auto;
	max-width: 100vw;
	position: relative;
	width: 100%;
}

[class*="__inner-container"] > .alignfull {
	max-width: 100%;
}

/* Wide */

.alignwide {
	max-width: 120rem;
	position: relative;
	width: calc(100% - 4rem);
}

[class*="__inner-container"] > .alignwide {
	width: 100%;
}

/* Center */

.aligncenter,
.aligncenter img {
	margin-left: auto;
	margin-right: auto;
}

/* Left and right */

.alignleft,
.alignright {
	max-width: 50%;
}

.alignleft {

	/*rtl:ignore*/
	float: left;
	margin: 0.3rem 2rem 2rem 2rem;
}

.alignright {

	/*rtl:ignore*/
	float: right;
	margin: 0.3rem 2rem 2rem 2rem;
}

[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {

	/*rtl:ignore*/
	margin-left: 2rem;
}

[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {

	/*rtl:ignore*/
	margin-right: 2rem;
}

/* Entry Media ------------------------------- */

.alignfull > figcaption,
.alignfull > .wp-caption-text {
	margin-left: auto;
	margin-right: auto;
	max-width: 58rem;
	width: calc(100% - 4rem);
}


/* -------------------------------------------------------------------------- */

/*	12. Comments
/* -------------------------------------------------------------------------- */


/* Comment Headers ----------------------------- */

.comments-wrapper {
	margin-top: 5rem;
}

.comment-reply-title {
	margin: 0 0 4rem 0;
	text-align: center;
}


/* Comment Item ----------------------------- */

/* COMMENT HEADER */

.comments .comment,
.comments .pingback,
.comments .trackback,
.comments .review {
	padding-top: 3.5rem;
}

div.comment:first-of-type {
	margin-top: 3.5rem;
	padding-top: 0;
}

.comments .comments-header + div {
	margin-top: 0;
	padding-top: 0;
}

.comment-body {
	position: relative;
}

.comment .comment {
	padding-left: 5%;
}

.comment-meta {
	line-height: 1.1;
	margin-bottom: 1.5rem;
	min-height: 5rem;
	padding-left: 5rem;
	position: relative;
}

.hide-avatars .comment-meta {
	min-height: 0;
	padding-left: 0;
}

.comment-meta a {
	color: inherit;
}

.comment-author {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: -0.027777778em;
}

.comment-author a {
	text-decoration: underline;
}

.comment-author a:hover,
.comment-author a:focus {
	text-decoration: none;
}

.comment-meta .avatar {
	height: 4rem;
	position: absolute;
	left: 0;
	top: 0;
	width: 4rem;
}

.comment-author .url {
	text-decoration: underline;
}

.comment-metadata {
	color: #6d6d6d;
	font-size: 1.4rem;
	font-weight: 500;
	margin-top: 0.6rem;
}

.comment-metadata a {
	text-decoration: none;
}

.comment-metadata a:focus,
.comment-metadata a:hover {
	text-decoration: underline;
}


/* COMMENT CONTENT */


.comment-content.entry-content .alignleft {

	/*rtl:ignore*/
	margin-left: 0;
}

.comment-content.entry-content .alignright {

	/*rtl:ignore*/
	margin-right: 0;
}

/* COMMENT FOOTER */

.comment-footer-meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.2rem;
	font-weight: 600;
	justify-content: flex-start;
	letter-spacing: 0.030833333em;
	line-height: 1;
	margin: 1.5rem 0 -1rem -1.5rem;
	text-transform: uppercase;
}

.comment-footer-meta > * {
	margin: 0 0 1rem 1.5rem;
}

.comment-reply-link {
	background-color: #cd2653;
	color: #fff;
	display: block;
	padding: 0.7rem;
}

.bypostauthor .comment-footer-meta .by-post-author {
	display: block;
}

.comment-footer-meta a {
	text-decoration: none;
}

.comment-footer-meta a:focus,
.comment-footer-meta a:hover {
	text-decoration: underline;
}




/* Comments Pagination ---------------------------- */

.comments-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 6rem;
	text-align: center;
}

.comments-pagination.only-next {
	justify-content: flex-end;
}

.comments-pagination .page-numbers {
	display: none;
	text-decoration: none;
}

.comments-pagination .page-numbers:focus,
.comments-pagination .page-numbers:hover {
	text-decoration: underline;
}

.comments-pagination .prev,
.comments-pagination .next {
	display: block;
}

.comments-pagination .prev {
	left: 0;
}

.comments-pagination .next {
	right: 0;
	text-align: right;
}


/* Comment Respond ---------------------------- */

.comment-respond::after {
	clear: both;
	content: "";
	display: block;
}

.comment-respond .comment-notes,
.comment-respond .logged-in-as {
	color: #6d6d6d;
	font-size: 1.6rem;
	line-height: 1.4;
	margin: -3rem 0 4rem 0;
	text-align: center;
}

.comment-respond .required-field-message {
	display: inline-block;
}

.comment-respond p {
	line-height: 1.1;
	margin-bottom: 2rem;
	margin-left: auto;
	margin-right: auto;
}

.comment-respond p:not(.comment-notes) {
	max-width: 58rem;
}

.comment-form-cookies-consent {
	align-items: baseline;
	display: flex;
}

.comment-respond > p:last-of-type {
	margin-bottom: 0;
}

.comment-respond label {
	display: block;
}

.comment-respond input[type="checkbox"] + label {
	font-size: 1.5rem;
	line-height: 1.25;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond textarea {
	margin-bottom: 0;
}

.comment-respond textarea {
	height: 15rem;
}

.comment-respond #submit {
	display: block;
}

.comment-respond .comments-closed {
	text-align: center;
}


/* Reply Respond ---------------------------- */

.comments .comment-respond {
	padding: 3rem 0 0;
}

.comments .comment-respond .comment-reply-title,
.comments .comment-respond .comment-notes,
.comments .comment-respond .logged-in-as {
	text-align: left;
}

.comment-reply-title small {
	display: block;
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: -0.0277em;
	margin: 0.5rem 0 0 0;
	white-space: nowrap;
}

.comment-reply-title small a {
	text-decoration: none;
}

.comment-reply-title small a:focus,
.comment-reply-title small a:hover {
	text-decoration: underline;
}


/* -------------------------------------------------------------------------- */

/*	13. Site Pagination
/* -------------------------------------------------------------------------- */


.pagination .nav-links {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.8rem;
	font-weight: 600;
	margin: -1.5rem 0 0 -2.5rem;
	width: calc(100% + 2.5rem);
}

.pagination-separator {
	margin: 5rem 0;
}

.nav-links > * {
	margin: 1.5rem 0 0 2.5rem;
}

.nav-links .placeholder {
	display: none;
	visibility: hidden;
}

.pagination a {
	text-decoration: none;
}

.pagination a:focus,
.pagination a:hover {
	text-decoration: underline;
}

.pagination .dots {
	transform: translateY(-0.3em);
	color: #6d6d6d;
}

.nav-short {
	display: none;
}

/* -------------------------------------------------------------------------- */

/*	14. Error 404
/* -------------------------------------------------------------------------- */


.error404 #site-content {
	padding-top: 4rem;
}

.error404-content {
	text-align: center;
}

.error404 #site-content .search-form {
	justify-content: center;
	margin-top: 3rem;
}


/* -------------------------------------------------------------------------- */

/*	15.	Widgets
/* -------------------------------------------------------------------------- */


/* Widget Base ------------------------------- */

.widget {
	margin-top: 3rem;
}

.widget:first-child {
	margin-top: 0;
}

.widget-content > div > *:first-child {
	margin-top: 0;
}

.widget-content > div > *:last-child {
	margin-bottom: 0;
}

.widget .widget-title {
	margin: 0 0 2rem;
}

.widget li {
	margin: 2rem 0 0 0;
}

.widget li:first-child,
.widget li > ul,
.widget li > ol {
	margin-top: 0;
}

.widget table,
.widget table * {
	border-color: #dedfdf;
}

.widget table caption {
	background-color: #dedfdf;
}

.widget .post-date,
.widget .rss-date {
	color: #6d6d6d;
	display: block;
	font-size: 0.85em;
	font-weight: 500;
	margin-top: 0.2rem;
}

.widget select {
	max-width: 100%;
}

/* Font Families ----------------------------- */

.widget_text p,
.widget_text ol,
.widget_text ul,
.widget_text dl,
.widget_text dt,
.widget-content .rssSummary {
	font-family: NonBreakingSpaceOverride, "Hoefler Text", "Noto Serif", Garamond, "Times New Roman", serif;
	letter-spacing: normal;
}

.widget-content cite,
.widget-content figcaption,
.widget-content .wp-caption-text {
}

@supports ( font-variation-settings: normal ) {

	.widget-content cite,
	.widget-content figcaption,
	.widget-content .wp-caption-text {
	}
}

/* Base List Widget -------------------------- */

.widget_archive ul,
.widget_categories ul,
.widget_pages ul,
.widget_meta ul,
.widget_nav_menu ul,
.widget_recent_comments ul,
.widget_recent_entries ul,
.widget_rss ul {
	list-style: none;
	margin: 0;
}

.widget_archive li,
.widget_categories li,
.widget_pages li,
.widget_meta li,
.widget_nav_menu li {
	color: #6d6d6d;
	margin: 0.3rem 0;
}

.widget_archive li li,
.widget_categories li li,
.widget_pages li li,
.widget_meta li li,
.widget_nav_menu li li {
	margin-left: 2rem;
}

.widget_archive a,
.widget_categories a,
.widget_pages a,
.widget_meta a,
.widget_nav_menu a {
	font-weight: 700;
	text-decoration: none;
}

.widget_archive a:focus,
.widget_archive a:hover,
.widget_categories a:focus,
.widget_categories a:hover,
.widget_pages a:focus,
.widget_pages a:hover,
.widget_meta a:focus,
.widget_meta a:hover,
.widget_nav_menu a:focus,
.widget_nav_menu a:hover {
	text-decoration: underline;
}

/* Widget: Calendar -------------------------- */

.calendar_wrap {
	font-size: 2.4rem;
}

.calendar_wrap th,
.calendar_wrap td,
.wp-calendar-nav span {
	display: table-cell;
	font-size: 1em;
	font-weight: 500;
	line-height: 1;
	padding: 2.5% 2.5% 1.75% 2.5%;
	text-align: center;
}

.wp-calendar-table {
	margin-bottom: 0;
}

.wp-calendar-nav {
	display: table;
	width: 100%;
	font-size: 1.8rem;
}

.calendar_wrap tfoot td {
	border-bottom: none;
}

.calendar_wrap tfoot a,
.calendar_wrap .wp-calendar-nav a {
	text-decoration: none;
}

.calendar_wrap tfoot #prev,
.calendar_wrap .wp-calendar-nav-prev {
	text-align: left;
}

.calendar_wrap tfoot #next,
.calendar_wrap .wp-calendar-nav-next {
	text-align: right;
}

/* Widget: Image ----------------------------- */

/* Widget: Gallery --------------------------- */

.widget_media_gallery .gallery {
	margin: 0 -0.4em -0.8em -0.4em;
	width: calc(100% + 0.8em);
}

.widget_media_gallery .gallery-item {
	margin: 0 0 0.8em 0;
	padding: 0 0.4em;
}

/* Widget: Nav Menu -------------------------- */

.widget_nav_menu .widget-content > div > ul {
	margin-left: 0;
}

/* Widget: Recent Comments ------------------- */

.widget_recent_comments li {
	font-weight: 700;
}

.widget_recent_comments a {
	text-decoration: none;
}

.widget_recent_comments a:focus,
.widget_recent_comments a:hover {
	text-decoration: underline;
}

/* Widget: Recent Entries -------------------- */

.widget_recent_entries a {
	font-weight: 700;
	text-decoration: none;
}

.widget_recent_entries a:focus,
.widget_recent_entries a:hover {
	text-decoration: underline;
}

/* Widget: RSS ------------------------------- */

.widget_rss .widget-title a.rsswidget:first-of-type:not(.rss-widget-title) {
	display: none;
}

.widget_rss .rsswidget {
	font-weight: 700;
}

.widget_rss a {
	text-decoration: none;
}

.widget_rss a:focus,
.widget_rss a:hover {
	text-decoration: underline;
}

.widget_rss .rssSummary {
	margin-top: 0.5rem;
}

.widget_rss cite::before {
	content: "— ";
}

/* Widget: Search ---------------------------- */

.widget_search .search-field {
	border-color: #dedfdf;
}

/* Widget: Tag Cloud ------------------------- */

.widget_tag_cloud a {
	font-weight: 700;
	margin-right: 0.5rem;
	text-decoration: none;
	white-space: nowrap;
}

.widget_tag_cloud a:focus,
.widget_tag_cloud a:hover {
	text-decoration: underline;
}

/* Widget: Text ------------------------------ */

/* Widget: Blocks ---------------------------- */

.widget .wp-block-social-links li {
	margin-top: 0;
}


/* -------------------------------------------------------------------------- */

/*	16. Site Footer
/* -------------------------------------------------------------------------- */


.footer-widgets-area {
	font-size:13px;
	color:rgb(69, 69, 69);
	letter-spacing:0px;
	font-family: 'open sans',Helvetica,Arial,sans-serif; 
	
  border-bottom-color: #e8e8e8;
  border-bottom-width:1px;
  border-bottom-style:solid;
  border-top-color: #e8e8e8;
  border-top-width:1px;
  border-top-style:solid;
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-widgets-area  a {
	font-size:13px;
	color:rgb(69, 69, 69);
	letter-spacing:0px;
}

.footer-widgets-area ul {
	list-style: none outside;
}

.widgettitle {
  color: #808080;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
  font-family: 'open sans',Helvetica,Arial,sans-serif;
  margin-bottom:10px;
}


.footer-copyright {
	font-weight: 400;
	margin: 0;
	font-size: 11px;
}

#site-footer .section-inner {
  padding-top: 15px;
  padding-bottom: 15px;
}


	/* TITLES */

	h2.special-heading {
		font-family: 'Open Sans', sans-serif;
		font-weight: 600;
		font-size: 2.1rem;
		letter-spacing: 1px;
		text-transform: uppercase;
		position:relative;
	}




/* home page revs */


.iconbox {
	margin-bottom: 30px;
	position: relative;
	clear: both;
	display: block;
	padding: 0;
  	border: 0;
  }

  .iconbox_icon {
	width: 74px;
	height: 74px;
	font-size: 27px;
	line-height: 72px;
	border-style: solid;
	border-width: 1px;
	border-radius: 500px;
	text-align: center;
	margin: 2px 10px 0 0;
	margin-right: 22px;
	float: left;
	transition: all 0.3s ease-in-out;
	border-color: #e1e1e1;
  }

  .iconbox_content_title {
	color: #0a0a0a;
	margin: 0 0 -3px 0;
	padding: 2px 0 0 0;
  	position: relative;
	clear: none;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 1.25em;
	font-family: 'open sans',Helvetica,Arial,sans-serif;
	line-height: 1.1em;
	font-weight: 600;
  }
  .iconbox_content {
	overflow: hidden;
	box-sizing: border-box;
  }
  .iconbox_content_container {
	line-height: 1.65em;
	color: #0a0a0a;
  }


.avia_message_box{
	background-color: #96B857;
	border-color: #8BAF5B;
	text-shadow: 0 0px 0 rgba(255, 255, 255, 0.7);
	color: #FFFFFF;
	border-radius: 69px 2px 2px 2px;
	padding: 35px;
	padding-bottom: 10px;
	text-align: center;
	position: relative;
	clear: both;
	margin: 30px 0 1.2rem;
}

.avia_message_box_title {
	background-color: rgba(78, 113, 15, 0.2);
	position: absolute;
	top: -5px;
	left: 25px;
	padding: 5px 20px;
	font-size: 11px;
	text-shadow: none;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 10px;
  }

  .avia_message_box_content {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	margin: 0;
	padding: 0;
	border: 0;
  }

  .avia_message_box_content p {
	display: inline;
	margin: 0.85em 0;
	padding: 0;
	vertical-align: baseline;
  }

  .avia_message_box_content_title {
	font-family: tauri;
	text-shadow: 0px 0px 0px black;
	letter-spacing: 0.3px;
  }

  .avia_message_box_content_text {
	font-weight: 300;
	font-size: 11px;
	color: rgba(251, 255, 244, 1);
	background-color: rgba(92, 92, 92, 0.22);
	padding: 1px 4px;
	border-radius: 4px;
	border-color: #e1e1e1;
	margin: 0;
	vertical-align: baseline;
	box-sizing: border-box;
	text-transform: uppercase;
	text-shadow: 0 0px 0 rgba(255, 255, 255, 0.7);

  }

  .wp-container-core-columns-layout-1.wp-container-core-columns-layout-1 {
	gap:3rem;
  }


  .article-icon-entry-box {
	display: flex;
	margin-bottom: 3rem;
  }

 .article-icon-entry header.entry-content-header {
	padding: 12px;
	background-color: rgb(0, 0, 0);
	border-radius: 7px 30px 2px 77px;
	color:white;
	border-color: #e1e1e1;
	display: block;
	margin: 0;
	border: 0;
	box-sizing: border-box;
	text-align: right;
	max-width: 206px;
	margin-bottom: 2rem;
  }

  .article-icon-entry header.entry-content-header h4 {
	margin: 0;
	text-transform: uppercase;
	top: 4px;
	margin-bottom: 0;
	position: relative;
  }


  .article-icon-entry ul {
	margin: 4px 0 5px 30px;
  }

  .article-icon-entry ul li {
	list-style: disc outside;
	padding: 0;
	margin: 0;
  }

  .iconlist-timeline {
	width: 1px;
	height: 99%;
	border-right-width: 1px;
	border-right-style: dashed;
	border-color: #e1e1e1;
	margin-left: 4rem;
  }

  .entry-content .wp-block-columns .special-action-heading {
	font-size: 21px;
	white-space: normal;
	padding: 0;
  	margin: 0;
	font-weight: 300;
	color: #222222;
	font-family: 'open sans',Helvetica,Arial,sans-serif;
	line-height: 1.1em;
  }
  .entry-content .wp-block-columns .special-action-heading-tagline {
	font-size: 10px;
	font-family: 'open sans',Helvetica,Arial,sans-serif;
	margin-top: 0.3em;
	line-height: 1.3em;
  }




	/* class list */

	.av-catalogue-container.av-catalogue-container-woo>ul.av-catalogue-list>li {
		margin-bottom: 12px;
		border-right: 1px dashed;
		border-right-color: currentcolor;
		border-left: 1px dashed;
		border-left-color: currentcolor;
		border-top: 1px dashed;
		border-top-color: currentcolor;
		border-color: rgba(114, 147, 55, 0.63);
		border-radius: 16px 4px 4px 4px;
	}

	.av-catalogue-container.av-catalogue-container-woo>ul.av-catalogue-list>li:hover {
		margin-bottom: 12px;
		border-right: 1px dashed;
		  border-right-color: currentcolor;
		border-left: 1px dashed;
		  border-left-color: currentcolor;
		border-top: 1px dashed;
		  border-top-color: currentcolor;
		border-color: rgba(114, 147, 55, 0.63);
		background-color: rgba(219, 242, 179, 0.06);
		box-shadow: 0px 0px 1px 1px rgb(114, 147, 55);
	  }

	  .av-catalogue-title.av-cart-update-title {
		font-size: 13px;
		line-height: 17px;
		font-family: "open sans", Helvetica, Arial, sans-serif;
		text-transform: uppercase;
		margin-bottom: 5px;
		padding-bottom: 5px;
		border-bottom: 1px dashed rgb(226, 226, 226);
		font-weight: 400;
		color: black;
	  }

	  span.classtype {
		  background-color: #8eae52;
		  padding: 0px 5px;
		  color: white;
		  font-size: 10px;
		  font-family: "open sans", Helvetica, Arial, sans-serif;
		  text-align: center;
		  display: table;
		  font-weight: normal;
		  letter-spacing: 0px;
		  margin-top: 3px;
	  }

	  .av-catalogue-price.av-cart-update-price {
		  font-size: 13px;
		  color: black;
		  text-align: left;
		  margin-right: 1rem;
		  margin-top: 6px;
		  margin-bottom: 1px;
	  }

	  span.amount {
		  display: inline-block;
		  background-color: #FFF;
		  padding: 0px 4px;
		  -moz-border-radius: 3px;
		  -webkit-border-radius: 3px;
		  border-radius: 10px;
		  -khtml-border-radius: 3px;
		  text-align: center;
		  color: #729337;
		  font-family: tauri;
		  border: 1px dotted #C2D2A2;
		  letter-spacing: 1px;
		  font-weight: 700;
		  font-size: 11px;
		  text-shadow: 0 0 0 black;
	  }

		a.av-catalogue-item .hp-list-class-inner-desc {
			display:none;
		}
		a.av-catalogue-item:hover .hp-list-class-inner-desc {
			display:block;
		}

		a.av-catalogue-item .hp-list-class-inner-desc ul.hp-list-class-inner-desc-ul {
		  list-style: disc;
		  margin-left: 12px;
		  margin-bottom: 0;
		}
		a.av-catalogue-item .hp-list-class-inner-desc ul.hp-list-class-inner-desc-ul li {
		  list-style: disc outside;
		  padding: 0;
		  margin: 0;
		}

		a.av-catalogue-item .hp-register {
		  background-color: #8eae52;
		  padding: 3px 10px;
		  color: white;
		  font-size: 12px;
		  font-family: "open sans", Helvetica, Arial, sans-serif;
		  text-align: center;
		  display: table;
		  font-weight: normal;
		  letter-spacing: 0px;
		  margin-top: 7px;
		  text-transform: uppercase;
		  border-radius: 2px;
		}

	  .av-catalogue-item-inner .av-catalogue-content {
		  color: rgb(0, 0, 0);
		  font-size: 12px;
		  margin-bottom: 6px;
		  margin-top: 14px;
		  margin-right: 14px;
	  }

	  .av-catalogue-content {
		padding: 5px;
		background-color: rgb(230, 239, 213);
		text-align: center;
		border-radius: 7px 30px 2px 77px;
		line-height: 21px;
	  }

	  .av-catalogue-item-inner .av-catalogue-content strong {
		color: rgb(0, 0, 0);
		font-size: 12px;
	  }

	  .av-catalogue-image {
		border-radius: 400px;
		width: 44px;
		margin-right: 5px;
	  }

	  .av-catalogue-item {
		text-decoration: none;
		padding: 10px 5px;
		display: block;
		overflow: hidden;
		position: relative;
  		overflow: hidden;
		color: #666666;
	  }

	  .av-catalogue-title-container {
		position: relative;
		font-size: 1.3em;
		line-height: 1.4em;
		display: flex;
	  }
	  ul.av-catalogue-list {
		margin: 0;
		padding: 0;
	  }

	  .av-catalogue-list>li {
		list-style-type: none;
		margin: 0;
		margin-bottom: 0px;
		border-bottom: 1px dashed;
		border-bottom-color: currentcolor;
		padding: 0;
		clear: both;
	  }

	  a.av-catalogue-item {
		text-decoration: none;
		padding: 10px 5px;
		display: flex;
		flex-wrap:wrap;
		align-items: flex-start;
		overflow: hidden;
		outline: 0;
		max-width: 100%;
		color: #353535;
	    background-image: linear-gradient(white, white,white, white, white, white,white, white, white, white, #fbfff5);
	  }

		a.av-catalogue-item .av-catalogue-item-inner {
		  flex: 1;
		}

	.av-catalogue-title .class-title {
	  background: transparent;
	  color: black;
	  padding: 0px 0px;
	  border-radius: 3px 16px 0px 18px;
	  font-size: 14px;
	  font-weight: 400;
	  letter-spacing: 0px;
	  line-height: 17px;
	}

.home-register-online-header {
  display: block;
  text-align: center;
}

.home-register-online-header .home-subtitle-green {
  background-color: #141c07;
  color: white;
  display: inline-block;
  padding: 0px 4px 1px 4px;
  border-radius: 1px;
  letter-spacing: 0px;
  font-size: 12px;
}

  .home-register-online-header .home-special-action-heading {
	font-size: 21px;
	white-space: normal;
	padding: 0;
  	margin: 2rem 0 3px 0;
	font-weight: 300;
	color: #222222;
	font-family: 'open sans',Helvetica,Arial,sans-serif;
	line-height: 1.1em;
  }
  .home-register-online-header .home-special-action-heading-tagline {
	font-size: 11px;
	font-family: 'open sans',Helvetica,Arial,sans-serif;
	margin-top: 0.3em;
	line-height: 1.3em;
  }


  /* Utils */

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

  .wp-block-group {
	max-width: 1030px;
  }


  /* logo */

  .logo-art {
	position: relative;
	height: 74px;
	width: 240px;
  }

 .logo-art .custom-logo-image {
	position: absolute;
	width: 70px;
	height: 70px;
	top: 2px;
	left: 2px;
  }
  .logo-art .logo-title {
	font-family: "Tenor Sans", sans-serif;
	  font-weight: 400;
	  font-style: normal;
	  letter-spacing: -0.5px;  
	position: absolute;
	font-size: 17.5px;
	line-height: 1;
	top: 4px;
	left: 65px;
	color: black;
	text-transform: uppercase;
  }

  .logo-art .logo-company {
	  position: absolute;
	  bottom: 3px;
	  left: 45px;
	  color: black;
	  font-size: 11.2px;
	  font-family: "Lato", sans-serif;
	  font-weight: 300;
	  font-style: normal;
	  letter-spacing: 0px;
  }

.av-catalogue-item-inner .av-catalogue-content p {
	margin-bottom:0px;
	margin-top:0px;
}

.iconlist_icon {
  height: 64px;
  width: 64px;
  line-height: 64px;
  font-size: 30px;
  text-align: center;
  border-radius: 500px;
  position: relative;
  float: left;
  margin-right: 30px;
  margin-left: 2px;
  z-index: 5;
  color: #fff;
  background-color:black;
}
.iconlist_icon span {
  display: block;
  position: relative;
  top: 1px;
}

.avia-icon-list-container {
  margin: 30px 0;
    margin-bottom: 30px;
  clear: both;
}

.avia-icon-list {
  margin: 0;
  padding: 0;
}

.avia-icon-list li {
  margin: 0;
  padding: 0 0 30px 0;
  list-style-type: none;
  list-style-position: outside;
  clear: both;
  position: relative;
  min-height: 60px;
  text-indent: 0;
}


.avia-icon-list .iconlist-timeline {
  position: absolute;
  top: 1%;
  left: 34px;
  width: 1px;
  height: 99%;
  border-right-width: 1px;
  border-right-style: dashed;
  border-color: #e1e1e1;
  margin: 0;
  padding: 0;
}

.avia-icon-list li:last-child .iconlist-timeline {
  display: none;
}

.avia-icon-list .av_iconlist_title {
  text-transform: uppercase;
  top: 0px;
  margin-bottom: 0;
  position: relative;
	color: #000000;
	font-family: 'open sans',Helvetica,Arial,sans-serif;
	font-size: 18px;
  line-height: 1.1em;
	font-weight: 600;
	letter-spacing:0px;
	margin-top: 0px;
}

.avia-icon-list .iconlist_content {
  line-height: 1.65em;
  margin-top: 0.85em;
  letter-spacing: 0px;
}

.avia-icon-list .iconlist_content_wrap {
  overflow: hidden;
  min-height: 1.5em;
  padding-bottom: 4px;
}

.iconlist_icon_image {
  height: 28px;
}

.av-special-heading-box {
  text-align: center;
  margin-top: 2rem;
}

.av-special-heading-box .av-special-heading-tag {
	white-space: normal;
	padding: 0;
    margin: 0;
	font-weight: 400;
	font-family: 'open sans',Helvetica,Arial,sans-serif;
	letter-spacing:0px;
	font-size: 20px;
    line-height: 1.1em;
}

.special_amp {
  color: #719430;
  font-family: "Baskerville","Palatino Linotype","Palatino","Times New Roman",serif;
  font-style: italic;
  font-size: 1.3em;
  line-height: 0.5em;
  font-weight: normal;
}

.av-special-heading-box .subtitle-green {
  background-color: #719430;
  color: white;
  display: inline-block;
  padding: 0px 4px 1px 4px;
  border-radius: 1px;
  letter-spacing:0px;
  font-size: 15px;
}

.av-special-heading-box .subtitle-small {
  font-size: 0.95rem;
  color: #454545;
}

.av-special-heading-box .av-subheading_below {
  margin-top: 0.3em;
  line-height: 1.3em;
}

.section-holder {
	padding:1rem;
}

.training-wrap-link {
	display: block;
	text-decoration:none;
	outline:0;
	overflow:hidden;
	margin:0;
	padding:0;
	border-color: #e1e1e1;
}

.training-wrap {
  border: 1px solid rgb(243,243,243) !important;
  padding: 10px 10px !important;
  margin: 5px 5px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -khtml-border-radius: 3px;
}

.training-wrap h2 {
  text-align: center;
  vertical-align: middle !important;
  color: rgb(68,68,68);
  margin: auto;
  display: block;
	font-weight: 600;
	font-family: 'open sans',Helvetica,Arial,sans-serif;
	letter-spacing:0px;
	font-size: 28px;
   line-height: 1.1em;
	
}

.training-mid-icon {
  height: 76px;
  text-align: center;
  padding: 10px;
  display: flex;
  justify-content: center;
}

.training-wrap .training-wrap-desc {
  color: #646464;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0px;
}

.training-wrap:hover {
  background-color: rgb(253,255,249);
}


/* grid system */

.pd-5 {
	padding: 10px;
}

.pd-t-10 {
	padding-top: 10px;
}
.pd-t-20 {
	padding-top: 20px;
}

.pd-lr-20 {
	padding-left:20px;
	padding-right:20px;
}

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

.font-md {
	font-size:30px;
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.row-container {
	max-width: 1030px;
	margin-left: auto;
   margin-right: auto;
}

.hp-pd-10 {
	padding: 0px 15px;
}
.hp-pd-5 {
	padding: 5px 10px;
}

.training-title {
  font-size: 28px;
  font-family: 'open sans',Helvetica,Arial,sans-serif;
  font-weight: 600;
  position: relative;
  letter-spacing: 0px;
}
.training-title:after {
	content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #e6e6e6;
  position: absolute;
  top: 18px;
  left: 190px;
}

.av-homepage-icon {
  height: 30px;
  position: absolute;
  top: 24px;
  left: 25px;
}

/* FORMS */

.entry-content .iphorm-title {
  color: rgb(255, 255, 255);
  background-color: rgb(156, 171, 131);
  padding: 5px 12px 8px 12px;
  margin-bottom: 9px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-left: auto;
  margin-right: auto;
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
  font-size: 24px;
  text-align: center;
  display: table;
  margin-bottom:0px;
}

#site-content .entry-content .wpforms-container {
	margin-top:5px;
}

.wpforms-form .wpforms-field-container .wpforms-field input, .wpforms-form .wpforms-field-container .wpforms-field textarea {
  color: black;
  border-color: #e1e1e1;
  padding: 8px 6px;
  outline: none;
  font: 1em "HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
  margin-bottom: 0px;
}

.wpforms-form .wpforms-field-container .wpforms-field input {
  height: auto;
}

.wpforms-form .wpforms-field-container .wpforms-field select {
  border-color: #e1e1e1;
  font: 1em "HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
  text-align: center;
}

.wpforms-form .wpforms-field-container .wpforms-field.estimatebox input {
  font-family: Tauri;
  font-size: 20px;
  border: 1px dashed #D0DBBC;
  text-align: center;
  font-weight: 400;
  color: #719430;
  letter-spacing: 0px;
}

.wpforms-form .wpforms-field-container .wpforms-field.remote>fieldset>ul {
  display: flex;
}

.wpforms-form .wpforms-field-container .wpforms-field.remote fieldset ul>li {
  flex:1;
  border-color: #7194309c;
  text-align: center;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
}
	
.wpforms-form .wpforms-field-container .wpforms-field.remote fieldset ul>li>label {
  display: flex;
  border: 1px solid gray;
  height: 40px;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #719430;
}

.wpforms-form .wpforms-field-container .wpforms-field.remote fieldset ul>li>label:hover {
  color: white;
  background-color: #719430c2;
  border: 1px solid white;
}

.wpforms-form .wpforms-field-container .wpforms-field.remote fieldset ul>li.wpforms-selected>label{
  color: white;
  background-color: #719430;
  border: 1px solid white;
}

.wpforms-form .wpforms-field-container .wpforms-field.remote fieldset ul>li>input {
  visibility: collapse;
  display: none;
}

#site-content .wpforms-container .wpforms-form .wpforms-submit-container .request-button.wpforms-submit {
  background-color: #719430;
  padding: 12px 16px 10px;
  font-size: 17px;
  min-width: 90px;
  color: #ffffff;
  border-color: #f0f2eb;
  border-style: solid;
  box-shadow: none;
  width: 100%;
  border-width: 1px;
  border-radius: 3px;
  text-align:center;
}

#site-content .wpforms-container .wpforms-form .wpforms-submit-container button.request-button.wpforms-submit:hover {
  background-color: #719430;
}

.wpforms-form .wpforms-field-container .wpforms-field-label {
  font-size: 14px;
  margin-bottom: 3px;
  padding-bottom: 0px;
  color: #5b5b5b;
  font-weight: 400;
}

.wpforms-form .wpforms-field-container .wpforms-field.minimum-notice textarea {
  resize: none;
  background-color: #719430;
  color: white;
  padding: 12px;
  text-align: center;
  border-radius: 2px;
  font-weight: 600;
  height: auto;
  font-family: "open sans", Helvetica, Arial, sans-serif;
  border: 0px;
}

.wpforms-form .wpforms-field-container .minimum-notice .wpforms-field-label {
  font-size: 12px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  color: white;
  font-weight: 400;
  background-color: #4f6c18;
  padding: 2px 15px;
  border: 0px solid;
  text-align: center;
}


/* contact form */


#site-content #wpforms-340.wpforms-container .wpforms-form .wpforms-submit-container .wpforms-submit {
  background-color: #719430;
  padding: 12px 16px 10px;
  font-size: 17px;
  min-width: 90px;
  color: #ffffff;
  border-color: #f0f2eb;
  border-style: solid;
  box-shadow: none;
  width: 100%;
  border-width: 1px;
  border-radius: 3px;
  text-transform:uppercase;
  text-align:center;
}

.support-box {
  padding: 10px 19px;
  border: 1px solid #e1e1e1;
  position:relative;
  margin-top: 20px;
}

.support-label {
  display: flex;
  align-items: center;
  color: #666666;
  font-weight: bold;
  font-size: 11px;
  letter-spacing: 0px;
  padding: 8px 20px;
  border: 1px solid #e1e1e1;
  position: absolute;
  left: 0;
  top: 0;
  border-top: 0px;
  border-left: 0px;
  background-color: #f9f9f9;
}

.email-icon {
  width: 11px;
  opacity: 0.4;
  margin-right: 3px;
  margin-top: 2px;
}

.phone-icon {
  width: 11px;
  opacity: 0.4;
  margin-right: 3px;
}

.spacer-blank-20 {
	height:20px;
}

.hide {
	display:none;
}


/* request page */

.pricetag {
  background-color: #719430 !important;
  padding: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -khtml-border-radius: 3px;
  text-align: center;
}

.priceinner {
  color: #FFFFFF;
  font-family: Tauri;
  background-color: #719430 !important;
  padding: 5px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -khtml-border-radius: 2px;
  border: 1px dotted #A5BB7A;
    border-top-color: rgb(165, 187, 122);
    border-right-color: rgb(165, 187, 122);
    border-bottom-color: rgb(165, 187, 122);
    border-left-color: rgb(165, 187, 122);
  font-size: 18px;
}

.pricefootnote {
  font-size: 11px;
  font-weight: 400;
}

.pricevalue {
  background-color: #788E4E !important;
  padding: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -khtml-border-radius: 3px;
  text-align: center;
}

.pricevalueinner {
  color: #FFFFFF;
  font-family: Tauri;
  background-color: #12150D !important;
  padding: 5px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -khtml-border-radius: 2px;
  border: 1px dotted #A5BB7A;
    border-top-color: rgb(165, 187, 122);
    border-right-color: rgb(165, 187, 122);
    border-bottom-color: rgb(165, 187, 122);
    border-left-color: rgb(165, 187, 122);
  font-size: 14px;
}

.largegroups {
  font-size: 13px;
}

.request-page-class-topic {
  font-family: 'open sans',Helvetica,Arial,sans-serif;
  font-size: 28px;
  line-height: 1.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: black;
  font-weight: 600;
}

.how-it-works h3 {
	color: #222222;
	font-family: 'open sans',Helvetica,Arial,sans-serif;
	font-size: 20px;
    line-height: 1.1em;
    margin-bottom: 8px;
	font-weight: 600;
	letter-spacing:1px;
}

.class-group-box {
	background-color: #f9f9f9;
	border-radius:22px;
	padding:5px 10px;
	position:relative;
	overflow:hidden;
}

.class-group-box-title {
  display: block;
  text-align: center;
  font-size: 32px;
  text-transform: uppercase;
  color: #b6b9af;
  font-weight: 300;
}

.class-group-box-title span {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  background-color: #fff;
  color: #a7aaa2;
  padding: 2px 8px;
  border-radius: 6px;
  vertical-align: middle;
  border: 1px solid #e6e6e6;
}

.class-group-box-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  opacity: 0.09;
}

span.workshops-location {
  font-weight: normal;
  font-size: 13px;
  text-transform: none;
  position: absolute;
  left: 70px;
  top: 33px;
  color: #718e3d;
}

/* Success Page */

.success-box {
	
}

.success-box-header {
  max-width: 484px;
  display: flex;
  align-items: center;
}

.special-heading-border {
  flex: 1;
}

.special-heading-inner-border {
	border-top:1px solid #e1e1e1;
	margin-left: 10px;
}

.success-box-title {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #222222;
  font-family: 'open sans',Helvetica,Arial,sans-serif;
  font-size: 28px;
  line-height: 1.1em;
  font-weight: 600;
}

.success-box-content {
  text-shadow: 0 1px 0 rgba(255,255,255,0.7);
  color: #4F5F39;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  background-color: #E0F1B5;
  border-color: #8BAF5B;
  padding: 17px;
  max-width: 484px;
}

/* END Success Page */

.iconbox_icon_small {
  width: 67px;
  height: 67px;
  border-style: solid;
  border-width: 1px;
  border-radius: 50%;
  text-align: center;
  margin: 2px 10px 0 0;
  margin-right: 22px;
  float: left;
  transition: all 0.3s ease-in-out;
  border-color: #e1e1e1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.iconbox_icon_small_image {
  width: 25px;
  margin-top: -2px;
  opacity: 0.4;
}

.post-inner {
  padding-top: 15px;
  padding-bottom: 40px;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: #ffffffeb;
  backdrop-filter: blur(5px);
}

.yellow {
	background-color: #fffcf0; 
}

.curriculum a {
  display: block;
  text-align: center;
  background-color: #9a9a9a;
  color: white;
  font-size: 18px;
  text-decoration: none;
  padding: 5px 20px;
  border-radius: 4px;
  margin-top: 15px;
}

.curriculum a:hover {
  background-color: black;
}

.curriculum a .curriculum-icon {
	display: inline-block;
	vertical-align: middle;
	margin-right: 3px;
	margin-top: -2px;
}


.how_it_works_area .hr {
  margin-top: 10px;
}

.wpcr3_respond_1.wpcr3_in_content {
  max-width: 1030px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.wpcr3_button_1.wpcr3_show_btn {
  background: white;
  color: #719236;
  border: 1px solid #719236;
}

.wpcr3_button_1.wpcr3_submit_btn {
  background: #729236;
  color: white;
}

.wpcr3_button_1.wpcr3_cancel_btn { 
  background: white;
  color: #719236;
  border: 1px solid #719236;
}

.level {
  background-color: #fff;
  color: #719236;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  margin-left: 8px;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #719236;
  vertical-align: bottom;
  justify-content: center;
  align-items: center;
}

.home-title-centered-box {
  text-align: center;
}

.home-title-centered-box .home-title-centered {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  color: #222222;
  font-family: 'open sans',Helvetica,Arial,sans-serif;
  font-size: 28px;
  line-height: 1.1em;
  margin-bottom: 4px;
}

.home-title-centered-box .home-title-centered-subheading {
  font-family: 'open sans',Helvetica,Arial,sans-serif;
  margin-top: 0;
  color: #666666;
}

h3.training-title {
  font-size: 20px;
}

.mb-20 {
	margin-bottom: 20px;
}

.menu-icon {
  display: inline-block;
  margin-right: 3px;
}

.sched-class-lvl {
  position: absolute;
  left: 17px;
  bottom: 15px;
  background: #f9fdf0;
  border-radius: 20px 20px 20px 0;
  padding: 4px 10px;
  color: #719236;
  font-size: 8px;
  border: 1px solid #719236;
  font-weight: 500;
  border-right-style: hidden;
  border-top-style: hidden;
}

.future-dates-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.future-dates-box.hide {
	display:none;
}

.future-dates-button a {
  display: block;
  background-color: #fff;
  color: #729236;
  padding: 7px 70px;
  border-radius: 2px;
  font-size: 14px;
  border: 1px solid #719236;
  box-shadow: 0px 0px 3px 1px #e0e0e0;
}

.future-dates-button a:hover {
  box-shadow: 0px 0px 3px 1px #719236;
}

.future-dates-button-svg {
	display:inline-block;
	margin-right:3px;
	vertical-align: middle;
    margin-top: -3px;
}

.hr-line {
	border-bottom: 1px solid #efefef;
	margin-top:20px;
}

.ccc_map_marker-box {
  position: relative;
  z-index: 0;
}

.dark-box {
	background-color: #293A0A;
	border-bottom-right-radius: 50px;
	box-shadow: 0px 0px 4px 2px #d0d0d0;
	padding: 27px 10px 10px 10px;
	border-bottom-right-radius: 2px;
	border-top-left-radius: 2px;
}
.dark-box:hover {
	background-color: black;
}

.dark-box .avia_message_box_content {
	font-size:12px;
}

/* timzones */

.tz-box.cdt .tz-EDT {
	display:none;
}
.tz-box.cdt .tz-CDT {
	display:block;
}
.tz-box.cdt .tz-MDT {
	display:none;
}
.tz-box.cdt .tz-PDT {
	display:none;
}

.tz-box.edt .tz-EDT {
	display:block;
}
.tz-box.edt .tz-CDT {
	display:none;
}
.tz-box.edt .tz-MDT {
	display:none;
}
.tz-box.edt .tz-PDT {
	display:none;
}

.tz-box.mdt .tz-EDT {
	display:none;
}
.tz-box.mdt .tz-CDT {
	display:none;
}
.tz-box.mdt .tz-MDT {
	display:block;
}
.tz-box.mdt .tz-PDT {
	display:none;
}

.tz-box.pdt .tz-EDT {
	display:none;
}
.tz-box.pdt .tz-CDT {
	display:none;
}
.tz-box.pdt .tz-MDT {
	display:none;
}
.tz-box.pdt .tz-PDT {
	display:block;
}

/* END timezones */


/* LOADING INDICATOR */
.lds-spinner-box {
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:200px;
}

.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
  box-sizing: border-box;
}
.lds-spinner {
  color: #bbcaa0;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3.2px;
  left: 36.8px;
  width: 6.4px;
  height: 17.6px;
  border-radius: 20%;
  background: currentColor;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


/* END loading indicator */



@media ( min-width: 1220px ) {
	
}

@media (min-width: 865px) {
	.col-md-2 {
		width:20%;
	}
	.col-md-3 {
		width:25%;
	}
	.col-md-4 {
		width:33.33%;
	}
	.col-md-5 {
		width:46.66%;
	}
	.col-md-6 {
		width:50%;
	}
	.col-md-8 {
		width:66.66%;
	}
	.col-md-9 {
		width:75%;
	}
	.col-md-12 {
		width:100%;
	}
	.header-inner {
		align-items: center;
		display: flex;
		justify-content: space-between;
		padding: 0 0;
	}
	.logo-right {
	  margin-right: 7rem;
	  font-size: 1.1rem;
	  flex: 1;
	}
	.phone-top {
	  text-align: right;
	}
	.phone-top-icon {
	  display: inline-block;
	  margin-right: 4px;
		position: relative;
		top: 2px;
	}
	.phone-top-icon-svg {
	  width:14px;
	  height:14px;
	}
	/* HEADER NAVIGATION */

	.header-navigation-wrapper {
		align-items: center;
		display: flex;
	}

	.primary-menu-wrapper {
		display: block;
		width: 100%;
	}
	.section-inner {
		max-width: 1030px;
		margin-left: auto;
        margin-right: auto;
	}
	.menu-modal.show-modal {
		display:none;
	}
	.pd-tb-header-tablet {
		padding-top: 5px;
        padding-bottom: 5px;
	}
	#site-content {
	  margin-top: 164px;
	}
}


@media ( max-width: 864px ) {
	.col-sm-3 {
		width:25%;
	}
	.col-sm-4 {
		width:33.33%;
	}
	.col-sm-6 {
		width:50%;
	}
	.col-sm-8 {
		width:66.66%;
	}
	.col-sm-9 {
		width:75%;
	}
	.col-sm-12 {
		width:100%;
	}
	
	.logo-right {
		display:none;
	}
	.header-inner.section-inner.nav-area {
	  display: flex;
	  justify-content: space-between;
	}
	.logo-art .custom-logo-image {
	  width: 50px;
	  height: 50px;
	}
	.logo-art .logo-title {
	  position: absolute;
	  font-size: 14px;
	  line-height: 1;
	  top: 4px;
	  left: 52px;
	  color: black;
	  text-transform: uppercase;
	}
	.logo-art .logo-company {
	  position: absolute;
	  top: 45px;
	  left: 28px;
	  color: black;
	  font-size: 10px;
	}
	.logo-art {
	  position: relative;
	  height: 60px;
	  width: 240px;
	}
	.mobile-toggle-icon {
	  height: 30px;
	}
	.section-inner {
	  width: 100%;
	}
	.site-top-tag {
		text-align: center;
		justify-content: center;
	}
	.admin-bar .screen-height {
		min-height: calc(100vh - 46px);
	}
	.admin-bar.overlay-header #site-header {
		top: 46px;
	}
	.admin-bar .menu-modal {
		top: 46px;
	}
	.admin-bar .search-modal.active {
		top: 46px;
	}
	.pd-lr-mobile {
		padding-left:20px;
		padding-right:20px;
	}
	.pd-lr-mobile.second {
		padding-left:10px;
		padding-right:10px;
	}
	.pd-tb-header-mobile {
		padding-top: 10px;
        padding-bottom: 10px;
	}
	#site-content {
	  margin-top: 110px;
	}
	.wpcr3_respond_2 input[type="text"] {
	  min-width: 100px;
	  max-width: 230px;
	}
	.wpcr3_respond_2 textarea {
	  min-width: 100px;
	  max-width: 100%;
	}
	button.close-nav-toggle, button.close-nav-toggle .toggle-text {
	  color: black;
	}
	.wpforms-container .wpforms-field-container .wpforms-one-third.wpforms-first,
	.wpforms-container .wpforms-field-container .wpforms-one-third,
	.wpforms-container .wpforms-field-container .wpforms-one-half.wpforms-first,
	.wpforms-container .wpforms-field-container .wpforms-one-half {
		width:100%;
		margin-left:0px;
	}
	.page-simple h1 {
	  font-size: 24px;
	}
	.hide-mobile {
		display:none;
	}
	body, html{
		overflow-x: hidden;
	}
}
