/*--------------------------------------------------------------
This is your custom stylesheet.

Add your own styles here to make theme updates easier.
To override any styles from other stylesheets, simply copy them into here and edit away.

Make sure to respect the media queries! Otherwise you may
accidentally add desktop styles to the mobile layout.
https://www.w3schools.com/css/css_rwd_mediaqueries.asp
--------------------------------------------------------------*/

:root {
	--clr-primary: #3B6022;
	--clr-accent: #0EACDD;
	--clr-accent-2: #5D59A7;
	--clr-accent-3: #DB4933;
	--block-padding: 90px;
}

@media screen and (max-width: 600px) {
	:root {
		--block-padding: 60px;
	}
}

h2, h3, h4 {
	font-weight: 400;
}

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

.c-courseAddInsert {
	width: 100%;
	margin: 50px 0;
}

.c-cardItems {
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
	row-gap: 32px;
	margin-top: 60px;
}

.c-cardItems:first-child {
	margin-top: 0;
}

.c-featuredCourses {
	padding: var(--block-padding) 0;
}

.c-courseContainer {
    transition: .3s opacity;
	padding: var(--block-padding) 0;
	background: white;
	position: relative;
	z-index:1;
}

.c-courseContainer:before {
	content: '';
	background: white;
	z-index: -1;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 100%;
	width: 2000px;
}

.c-courseContainer:after {
	content: '';
	background: white;
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 100%;
	width: 2000px;
}

.c-sessions:before, .c-sessions:after {
	display: none !important;
}

.c-courseContainer--loading {
    opacity: .5;
}

[data-layout="list"] .c-cardItems {
    grid-gap: 0;
}

.c-courseGrid__displayCount {
	text-align: center;
	margin-top: -16px;
}


.c-cardItem {
	display: block;
	border-radius: 24px;
	border: 1px solid transparent;
	box-shadow: 0px 16px 32px rgba(0,0,0,.05) !important;
	transition: .3s border;
	font-size: 14px;
	color: #000A1F;
}

.c-cardItems .c-cardItem {
	width: calc((100% - 32px) / 3);
}

@media screen and (max-width: 800px) {
	.c-cardItems .c-cardItem {
		width: calc((100% - 16px) / 2);
	}
}

@media screen and (max-width: 500px) {

	.c-cardItems {
		row-gap: 16px;
	}

	.c-cardItems .c-cardItem {
		width: 100%;
	}
}

.c-cardItem:hover {
	border: 1px solid #A4ABB1;
	color: #000A1F !important;
}

.c-cardItem__img {
	margin: 0 auto 24px;
}

[data-layout="list"] .c-cardItem__img {
	display: none;
}

.c-cardItem__img img {
	display: block;
	border-radius: 50%;
	width: 124px;
	height: 124px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.c-cardItem h3  {
	font-family: "Red Hat Display", Sans-serif !important;
	font-size: 21px;
	font-weight: 700 !important;
	margin: 0 0 16px;
	line-height: 1.2;
}

.c-cardItem .c-cardItem__virtual {
	display: flex;
	align-items: center;
	grid-gap: 8px;
}

.c-cardItem .c-cardItem__virtual:before {
	content: '';
	background: url('../../imgs/Icon_Camera.svg') center center / 22px 14px;
	width: 22px;
	height: 14px;
	flex-shrink: 0;
}


.c-cardItem__details {
	display: flex;
	flex-direction: column;
	grid-gap: 12px;
}

.c-cardItem__detail {
	display: flex;
	align-items: center;
	font-family: 'Lora', serif;
	line-height: 1.3;
}

.c-cardItem__detail:empty {
	display: none;
}

.c-cardItem__detail:before {
	content: '';
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	margin-right: 8px;
	background-size: 22px 22px;
	background-position: center center;
	background-repeat: no-repeat;

}

.c-cardItem__detail--lang:before {
	background-image: url('../../imgs/Icon_Lang.svg');
	background-size: 18px 18px;
}

.c-cardItem__detail--spots:before, .c-cardItem__detail--fac:before {
	background-image: url('../../imgs/Icon_Group.svg');
}

.c-cardItem__detail--loc:before {
	background-image: url('../../imgs/Icon_Pin.svg');
	background-size: 16px 20px;
}

.c-cardItem__detail--date:before {
	background-image: url('../../imgs/Icon_Calendar.svg');
}

.c-cardItem__detail--time:before {
	background-image: url('../../imgs/Icon_Clock.svg');
	background-size: 20px 20px;
}

.c-cardItem__detail--org:before {
	background-image: url('../../imgs/Icon_House.svg');
	background-size: 22px 20px;
}

.c-cardItem__thumb img {
	display: block;
	aspect-ratio: 77/48;
	object-fit: cover;
	border-top-right-radius: 24px;
	border-top-left-radius: 24px;
}

.c-cardItem__content {
	padding: 32px;
	display: block;
}

.c-cardItem__content :last-child {
	margin-bottom: 0;
}

.c-cardItem--pin {
	max-width: 340px;
}

.c-cardItem--pin, .c-cardItem--pin:hover {
	border: none;
	box-shadow: none;
}

.c-cardItem--pin .c-cardItem__content {
	padding: 20px;
}

.c-courseLabels { 
	display: none;
	width: 100%;
}

[data-layout="list"] .c-courseLabels { 
	display: flex;
}

.c-courseLabels {
	padding: 0 32px;
	grid-gap: 12px;
	flex-grow: 1;
}

.c-courseLabels span:nth-of-type(1) {
	flex-shrink: 0;
	width: 25%;
	margin-right: 4px;
}
.c-courseLabels span:nth-of-type(2) {
	width: 72px;
	flex-shrink: 0;
}

.c-courseLabels span:nth-of-type(3) {
	width: 88px;
	flex-shrink: 0;
}

.c-courseLabels span:nth-of-type(4) {
	flex-grow: 1;
}

.c-courseLabels span:nth-of-type(5) {
	width: 200px;
	flex-shrink: 0;
}

.c-courseLabels span:nth-of-type(6) {
	width: 120px;
	flex-shrink: 0;
}

.c-courseLabels span:nth-of-type(7) {
	width: 140px;
	flex-shrink: 0;
}

.c-cardsContainer--minimal[data-layout="list"] .c-cardItem h3 {
	width: 60%;
}

.c-cardsContainer--minimal[data-layout="list"] .c-cardItem__details {
	width: calc(40% - 16px);
}

.c-cardsContainer--minimal .c-courseLabels span:nth-of-type(1) {
	width: 60%;
}

.c-cardsContainer--minimal .c-courseLabels span:nth-of-type(2), .c-cardsContainer--minimal .c-courseLabels span:nth-of-type(3), .c-cardsContainer--minimal .c-courseLabels span:nth-of-type(4) {
	display: none;
}

.c-cardsContainer--minimal .c-cardItem__detail--loc, .c-cardsContainer--minimal  .c-cardItem__detail--lang, .c-cardsContainer--minimal  .c-cardItem__detail--spots {
	display: none !important;
}

.c-courseLabels span {
	font-family: "Red Hat Display", sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
}

[data-layout="list"] .c-cardItems {
	row-gap: 12px;
}

[data-layout="list"] .c-cardItem {
    width: 100%;
    display: flex;
    justify-content: space-between;
    grid-gap: 12px;
    padding: 0;
}

[data-layout="list"] .c-cardItem__content {
	display: flex;
	flex-direction: row;
	flex-grow: 1;
	grid-gap: 16px;
}

[data-layout="list"] .c-cardItem h3 {
	margin: 0;
	width: 25%;
	flex-shrink: 0;
}

[data-layout="list"] .c-cardItem__details {
	flex-direction: row;
	width: calc(75% - 16px);
	flex-shrink: 0;
}

[data-layout="list"] .c-cardItem__detail {
	font-size: 12px;
}

[data-layout="list"] .c-cardItem__detail:empty {
	display: flex;
}


[data-layout="list"] .c-cardItem__detail--spots {
	width: 88px;
	flex-shrink: 0;
}

[data-layout="list"] .c-cardItem__detail--fac {
	width: 200px;
	flex-shrink: 0;
}

[data-layout="list"] .c-cardItem__detail--loc {
	flex-grow: 1;
}

[data-layout="list"] .c-cardItem__detail--date {
	width: 120px;
	flex-shrink: 0;
}

[data-layout="list"] .c-cardItem__detail--time {
	width: 140px;
	flex-shrink: 0;
}

[data-layout="list"] .c-cardItem__detail--lang {
	width: 72px;
	flex-shrink: 0;
}

[data-layout="list"] .c-cardItem__detail:before {
	display: none;
}

@media screen and (max-width: 980px) {
	[data-layout="list"] .c-courseLabels { 
		display:none;
	}
	
	[data-layout="list"] .c-cardItem__content {
		flex-direction: column;
	}

	[data-layout="list"] .c-cardItem h3 {
		width: 100%;
	}

	[data-layout="list"] .c-cardItem__details {
		width: 100%;
	}

	[data-layout="list"] .c-cardItem__detail--spots {
		width: 28px;
	}

	[data-layout="list"] .c-cardItem__detail:empty {
		display: none;
	}
}

@media screen and (max-width: 700px) {
	[data-layout="list"] .c-cardItem__details {
		flex-direction: column;
		grid-gap: 4px;
	}

	[data-layout="list"] .c-cardItem__content {
		padding: 20px;
	}

	[data-layout="list"] .c-cardItem h3 {
		font-size: 16px;
		display: flex;
		grid-gap: 16px;
	}

	[data-layout="list"] .c-cardItem .c-cardItem__virtual {
		flex-shrink: 0;
		margin-left: auto;
		font-size: 14px;
	}

}

.c-courseMap--hidden {
    display: none;
}

.c-couresMap__map {
	width: 100%;
	border-radius: 24px;
	height: 630px;
	border: 1px solid #A4ABB1;
	margin-bottom: 12px;
	margin-top: 48px;
}


.c-facilitatorItems {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 12px;
}

.c-facilitatorContainer {
	padding: var(--block-padding) 0;
    transition: .3s opacity;
}

.c-facilitatorContainer--loading {
	opacity: .5;
}

.c-facilitatorGrid__displayCount {
	text-align: center;
	margin-top: -16px;
}


.c-facilitatorContainer[data-layout="list"] .c-facilitatorItems {
    grid-gap: 0;
}

.c-facilitatorItem {
    border: 1px solid #ececec;
    padding: 20px;
    border-radius: 8px;
}

.c-facilitatorItems .c-facilitatorItem {
	width: calc((100% - 24px) / 3);
}

.c-facilitatorContainer[data-layout="list"] .c-facilitatorItem {
    width: 100%;
    display: flex;
    justify-content: space-between;
    grid-gap: 12px;
    padding: 0;
    border: none;
}

.c-filters {
	border: 1px solid #A4ABB1;
	border-radius: 24px;
	background: white;
	position: relative;
	z-index: 99;
	margin-bottom: 20px;
	padding: 32px;
}

.c-filters--disabled {
	cursor: wait;
}

.c-filters__display, .c-filters__controlsWrap, .c-filters__activeTags  {
	transition: .3s opacity;
}

.c-filters--disabled .c-filters__display, .c-filters--disabled .c-filters__controlsWrap, .c-filters--disabled .c-filters__activeTags {
	pointer-events: none;
	opacity: .5;
}

.c-filters input, .c-filters select {
	font-size: 18px;
	font-family: 'Lora', serif;
	border-radius: 12px;
	border: 1px solid #A4ABB1;
	padding: 17px 20px;
	height: auto;
	display: block;
	width: 100%;
	background-color: #F5F6F8;
	transition: .3s all;
}

.c-filters .input-hidden {
	opacity: 0;
	visibility: hidden;
	transition: .3s opacity, 0s visibility .3s;
}

.c-filters select {
	background-image: url('../../imgs/Icon_Chevron.svg');
	background-size: 15px 8px;
	background-repeat: no-repeat;
	background-position: calc(100% - 12px) center;
}

.c-filters button[type="submit"] {
	font-size: 18px;
	font-weight: 700;
	font-family: "Red Hat Display", sans-serif;
	background: var(--clr-primary);
	color: white;
	border: none;
	border-radius: 50px;
	padding: 19px 26px;
	transition: .3s background, .3s color;
}

.c-filters button[type="submit"]:hover {
	background: var(--clr-accent);
}

.c-filters button[type="submit"]:focus {
	border: none;
	box-shadow: none;
}

.c-filters__display {
	display: flex;
	align-items: center;
}

.c-filters__layout {
	margin-left: auto;
	margin-right: 32px;
}

.c-filters__toggle {
	display: flex;
	align-items: center;
	grid-gap: 4px;
	background: none;
	color: #1A2129 !important;
	padding: 0;
	margin: 0;
	border: none;
	font-size: 20px;
	font-family: 'Lora', serif;
	min-width: 140px;
	justify-content: flex-end;
}


.c-filters__toggle:after {
	content: '';
	background: url('../../imgs/Icon_Chevron.svg') no-repeat center center / 18px 9px;
	width: 18px;
	height: 9px;
	transition: .3s transform;
}

.c-filters__toggle:hover, .c-filters__toggle:focus {
	background: none;
	color: #1A2129;
	box-shadow: none;
}
.c-filters__toggle--active:after {
	transform: rotate(-180deg);
}


.c-filters__controls {
	margin-top: 0;
	opacity: 0;
	visibility: hidden;
	height: 0;
	transition: .3s opacity, .3s transform, 0s visibility .3s, .3s height .15s, .3s margin;
}

.c-filters--active .c-filters__controls {
	opacity: 1;
	visibility: visible;
	transform: translateY(8px);
	transition-delay: 0s;
	height: auto;
	margin-top: 32px;
}

.c-filters__controlsWrap {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	grid-gap: 5%;
	row-gap: 16px;
}

.c-filters__control {
	width: calc((100% - 20%) / 5);
}

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

@media screen and (min-width: 1101px) {
	.c-filters__controlsWrap--four .c-filters__control {
		width: calc((100% - 15%) / 4);
	}
}

.c-filters__control h5 {
	font-family: 'Red Hat Display', sans-serif !important;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 1.2;
	margin: 0 0 12px 0;
	font-weight: 700;
	letter-spacing: .1em;
}

.c-filters__activeTags {
	border-top: 1px solid #E8EAEB;
	padding-top: 0;
	margin-top: 0;
	opacity: 0;
	visibility: hidden;
	transition: .3s opacity, .3s visibility .3s, .3s padding, .3s margin;
}

.c-filters--hasActiveFilters .c-filters__activeTags {
	opacity: 1;
	visibility: visible;
	padding-top: 20px;
	margin-top: 12px;
	transition-delay: 0s;
}


.c-filters__form {
	display: flex;
	flex-direction: column;
	grid-gap: 8px;
}

.c-filteredTags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	grid-gap: 8px;
}

.c-filteredTags__clear {
	background: none;
	border: none;
	color: #1A2129;
	text-decoration: underline;
	font-size: 12px;
	font-family: 'Lora', serif;
	padding: 0;
}

.c-filteredTags__clear:hover, .c-filteredTags__clear:focus {
	color: var(--clr-accent);
	border: none;
	background: none;
	text-decoration: underline;
	outline: none;
	box-shadow: none;
}

.c-layoutSwitcher {
	display: flex;
	align-items: center;
	grid-gap: 16px;
	flex-shrink: 0;
}

.c-layoutSwitcher button  {
	padding: 0;
	background: none;
	border: none;
}

.c-layoutSwitcher button:focus {
	outline: none;
	box-shadow: none;
}

.c-layoutSwitcher button svg {
	fill: #A4ABB1;
	width: 100%;
	max-height: auto;
	transition: .3s fill;
	display: block;
}

.c-layoutSwitcher button.active svg, .c-layoutSwitcher button:hover svg {
	fill: black;
}

.c-searchFilter {
	margin: 0 24px 0 0;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 695px;
	grid-gap: 16px;
}

.c-searchFilter button {
	flex-shrink: 0;
}

@media screen and (max-width: 1100px) {

	.c-filters__controlsWrap {
		flex-wrap: wrap;
	}
	.c-filters__control {
		width: calc((100% - 10%) / 3);
	}
}

@media screen and (max-width: 900px) {
	.c-filters__display {
		flex-wrap: wrap;
	}

	.c-searchFilter {
		max-width: 100%;
		margin: 0 0 12px 0;
	}

	.c-layoutSwitcher {
		margin-left: 0;
	}

	.c-filters__toggle {
		margin-left: auto;
	}

	.c-filters__control {
		width: calc((100% - 5%) / 2);
	}
}


@media screen and (max-width: 767px) {

	.c-filters {
		padding: 24px;
	}

	.c-filters--active .c-filters__controls {
		margin-top: 24px;
	}

	.c-filters input, .c-filters select {
		font-size: 16px;
		padding: 12px 16px;
	}

	.c-filters button[type="submit"] {
		font-size: 16px;
		padding: 13px 24px;
	}

	.c-filters__toggle {
		font-size: 17px;
		min-width: 126px;
	}

	.c-layoutSwitcher button {
		max-width: 24px;
	}

	.c-layoutSwitcher button svg {
		max-height: 27px;
		object-fit: contain;
	}

	.c-filterCheckbox label {
		font-size: 16px;
	}

	.c-filterCheckbox label::before {
		top: 0;
	}

	.c-filters__control {
		width: 100%;
	}



}


.c-filterCheckboxes {
	display: flex;
	flex-direction: column;
	grid-gap: 4px;
}

.c-filterCheckboxes--cols {
	flex-direction: row;
	flex-wrap: wrap;
	column-gap: 5%;
	grid-gap: 24px;
}

.c-filterCheckboxes--cols .c-filterCheckboxes__group {
	width: calc((100% - 10%) / 3);
}

.c-filterCheckboxes__group {
	display: flex;
	flex-direction: column;
	row-gap: 4px;
}

/* .c-filterCheckboxes__group:not(:first-child) {
	margin-bottom: 24px;
} */



@media screen and (max-width: 900px) {
	.c-filterCheckboxes--cols .c-filterCheckboxes__group  {
	  width: calc((100% - 5%) / 2);
	}
}

@media screen and (max-width: 767px) {
	.c-filterCheckboxes--cols .c-filterCheckboxes__group  {
	  width: 100%;
	}
  }

.c-filterCheckbox input {
	clip: rect(0 0 0 0);
	clip-path: inset(100%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap; 
	width: 1px;
}

.c-filterCheckbox label {
	display: flex;
	grid-gap: 8px;
	font-family: 'Lora', serif;
	cursor: pointer;
	font-size: 17px;
	line-height: 1.4;
}

.c-filterCheckbox label:before {
	content: '';
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid #A4ABB1;
	flex-shrink: 0;
	margin-top: 1px;
	transition: .3s border;
}

.c-filterCheckbox input:checked + label:before {
	border: 2px solid var(--clr-primary);
	background-image: url('../../imgs/Icon_Checkmark.svg');
	background-position: center center;
	background-size: 22px 22px;
}

.c-tag {
	border-radius: 24px;
	border: 1px solid #A4ABB1;
	background: white;
	color: #1A2129 !important;
	font-size: 12px;
	font-family: 'Lora', serif;
	padding: 8px 12px;
	transition: .3s background;
	display: flex;
	grid-gap: 4px;
	min-width: 0;
}

.c-tag span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.c-tag:after {
	content: '';
	width: 15px;
	height: 15px;
	flex-shrink: 0;
	background: url('../../imgs/Icon_Close.svg') center center / 15px 15px;
	opacity: .3;
}

.c-tag:hover {
	background: #F5F6F8;
	border: 1px solid #A4ABB1;
	color: #1A2129;
}

.c-tag:focus {
	background: #F5F6F8;
	border: 1px solid #A4ABB1;
	color: #1A2129;
	outline: none;
	box-shadow: none;
}


.c-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	grid-gap: 12px;
	justify-content: center;
	margin: 40px 0;
}

.c-pagination:last-child {
	margin-bottom: 0;
}

.c-pagination__link, .c-pagination__hiddenItems, .c-pagination__link:focus {
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	min-width: 40px;
	height: 40px;
	border: 1px solid #A4ABB1;
	padding: 0 12px;
	background: white;
	color: black !important;
	box-shadow: none;
	transition: .3s color, .3s background, .3s border;
}

.c-pagination__link--active, .c-pagination__link:hover, .c-pagination__link:focus-within {
	content: '';
	background: var(--clr-primary);
	border: 1px solid var(--clr-primary);
	color: white !important;
}

.c-pagination__control, .c-pagination__control:focus {
	background-color: transparent;
	border: none;
	box-shadow: none;
	background-size: 16px 9px;
	background-image: url('../../imgs/Icon_Chevron.svg');
	background-repeat: no-repeat;
	width: 16px;
	height: 9px;
	padding: 0;
	transition: .3s opacity;
}

.c-pagination__control:not(.c-pagination__control--disabled):hover {
	background-color: transparent;
	opacity: .8;
}

.c-pagination__control--next {
	transform: rotate(-90deg);
}


.c-pagination__control--prev {
	transform: rotate(90deg);
}

.c-pagination__control--disabled {
	opacity: .5;
	pointer-events: none;
}

.u-roundedImg{
	border-radius: 100% !important;
}

/* Breadccrumbs Styles */
#breadcrumbs {
    max-width: 1300px;
	position: relative;
}

#breadcrumbs > span{
	font-family: "Red Hat Display";
	font-size: 14px;
	line-height: 21px;
	color: #A4ABB1;
}

#breadcrumbs > span a{
	color: #A4ABB1;
}

#breadcrumbs > span a:hover{
	color: #0EACDD;
}

#breadcrumbs .breadcrumb_last{
	font-weight: bold;
}

.home #breadcrumbs{
	display: none !important;
}

@media only screen and (min-width: 992px) {
	#breadcrumbs > span{
		position: absolute;
		top: 40px;
		z-index: 3;
	}	
}

@media only screen and (max-width: 992px) {
	.gform_button, .gform-button{
		padding: 20px 10px !important;
	}	
}

.gfield_description, .gform-field-label{
    margin: 0 !important;
    padding: 0 !important;
	padding-bottom: 11px !important;
	font-family: var(--e-global-typography-secondary-font-family ), Sans-serif;
    font-weight: var(--e-global-typography-secondary-font-weight );
	color: #1A2129 !important;
	font-size: 12px !important;
	line-height: 18px !important;
}

.sidebar-form .uael-gf-form-desc{
	font-family: "Lora", serif !important;
}

.signin-button{
	color: #000A1F !important;
}

.signin-button:hover, .wpml-ls-link:hover{
	color: #0EACDD !important;
}

.uael-menu-item.elementor-button:hover{
	background-color: #0EACDD !important;
}

.jet-listing-grid__slider-icon{
	background: transparent !important;
    border: 1px solid #A4ABB1;
    box-shadow: 0px 16px 32px #D9DEE24D;
    color: #A4ABB1 !important;
}

.jet-listing-grid__slider-icon:hover{
	color: #3B6022 !important;
}

@media only screen and (min-width: 1300px) {
	.jet-listing-grid__slider-icon.next-arrow{
		right: -60px !important;
	}
	.jet-listing-grid__slider-icon.prev-arrow{
		left: -60px;
	}
}

.header-img img{
	min-width: 250px;
}

.elementor-widget-heading h1.elementor-heading-title {
    font-size: 42px;
    line-height: 46px;
    letter-spacing: -1.6px;
}

.elementor-widget-heading h2.elementor-heading-title {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0px;
}

.elementor-widget-heading h3.elementor-heading-title {
    font-size: 24px;
    line-height: 26px;
}

.elementor-widget-heading h4.elementor-heading-title {
    font-size: 21px;
    line-height: 22px;
    letter-spacing: -0.6px;
}

.elementor-widget-heading h5.elementor-heading-title {
    font-size: 20px;
    line-height: 21px;
}
.elementor-widget-heading h6.elementor-heading-title {
    font-size: 19px;
    line-height: 20px;
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
	.elementor-widget-heading h1.elementor-heading-title {
		font-size: 36px;
		line-height: 1.1;
		letter-spacing: 0;
	}

	.elementor-widget-heading h2.elementor-heading-title {
		font-size: 30px;
		line-height: 1.1;
		letter-spacing: 0px;
	}

	.elementor-widget-heading h3.elementor-heading-title {
		font-size: 22px;
		line-height: 1.1;
	}

	.elementor-widget-heading h4.elementor-heading-title {
		font-size: 20px;
		line-height: 1.1;
		letter-spacing: 0;
	}

	.elementor-widget-heading h5.elementor-heading-title {
		font-size: 19px;
		line-height: 1.1;
	}
	.elementor-widget-heading h6.elementor-heading-title {
		font-size: 18px;
		line-height: 1.1;
	}
}

@media only screen and (max-width: 768px) {
	#header-messages-dropdown-elem, #header-notifications-dropdown-elem{
		display: none !important;
	}
	.elementor-widget-heading h1.elementor-heading-title {
		font-size: 30px;
		line-height: 1.1;
		letter-spacing: 0;
	}

	.elementor-widget-heading h2.elementor-heading-title {
		font-size: 24px;
		line-height: 1.1;
		letter-spacing: 0px;
	}

	.elementor-widget-heading h3.elementor-heading-title {
		font-size: 20px;
		line-height: 1.1;
	}

	.elementor-widget-heading h4.elementor-heading-title {
		font-size: 19px;
		line-height: 1.1;
		letter-spacing: 0;
	}

	.elementor-widget-heading h5.elementor-heading-title {
		font-size: 18px;
		line-height: 1.1;
	}
	.elementor-widget-heading h6.elementor-heading-title {
		font-size: 17px;
		line-height: 1.1;
	}
}

.bb-custom-typo h1, .bb-custom-typo h2, .bb-custom-typo h3, .bb-custom-typo h4, .bb-custom-typo h5, .bb-custom-typo h6, .wpml-ls-native, .elementor-widget-header-bar a{
	font-family: "Lora";
}

.uael-menu-item.elementor-button{
	color: white !important;
}

.elementor-search-form__container{
	gap: 20px !important;
    background: transparent !important;
}

.elementor-search-form__input{
	background: white !important;
	border-radius: 12px !important;
}

.elementor-search-form__submit{
	border-radius: 32px !important;
}

.c-filter-row{
	display: none;
}

.elementor-897 .elementor-element.elementor-element-9529ca1 .jet-search-filter__input-wrapper{
	width: 1000px;
}

.prev-next .jet-filters-pagination__link{
	border: none !important;
	border-radius: 12px !important;
}

.facilitator .elementor-icon-box-icon{
    margin-top: 3px !important;
}

.facilitator .elementor-icon-box-title{
	margin-bottom: 0 !important;
}


.uael-gf-style .ginput_container select {
	background-image: none !important;
}

.ginput_container input{
	padding: 16px !important;
	height: auto !important;
}

.gform_button, .gform-button{
	padding: 20px !important;
	height: auto !important;
	border-radius: 32px !important;
}

.gform_button:hover, .gform-button:hover, .elementor-search-form__submit:hover{
	background: #0EACDD !important;
}

#gform_fields_1 .gfield_label, #gform_fields_5 .gfield_label{
	font-size: 18px !important;
	line-height: 27px !important;
}

.gchoice label{
	font-size: 16px !important;
	line-height: 16px !important;
}

.gfield_label, .gchoice label, .gfield_description, .gform-field-label--type-sub, .ginput_container label{
	font-family: "Red Hat Display", serif !important;
}

#course .elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon{
    margin-bottom: 3px !important;
    display: inline-flex !important;
    align-self: flex-end !important;
}

.search-form .elementor-search-form__input{
	border: 1px solid #A4ABB1 !important;
}

.search-form .elementor-search-form__input:focus{
	border: 1px solid #000A1F !important;
}

.woocommerce-breadcrumb, .mini_cart_item .wp-post-image{
	display: none !important;
}

.bbpress .container, .buddypress .container, .post-type-archive-product .container, .single-product .container, .woocommerce-cart .container, .woocommerce-checkout .container{
	max-width: 1300px;
	padding-top: 90px;
}

/* p, span, .replies-content a, th, td, .checkout-button, label, #place_order{
	font-family: "Red Hat Display";
}

.product, .bs-timestamp, .item-title{
	font-family: "Red Hat Display" !important;
}

.user-link .user-name{
	font-family: "Lora" !important;
} */

@media only screen and (max-width: 992px) {
	.bbpress .container, .buddypress .container, .post-type-archive-product .container, .single-product .container, .woocommerce-cart .container, .woocommerce-checkout .container{
		padding-top: 60px;
	}
}

@media only screen and (max-width: 768px) {
	.bbpress .container, .buddypress .container, .post-type-archive-product .container, .single-product .container, .woocommerce-cart .container, .woocommerce-checkout .container{
		padding-top: 20px;
	}
}

#groupbutton-4 .group-subscription{
	color: #3B6022 !important;
}

#groupbutton-4 .group-subscription:hover{
	color: white !important;
}

.single-topic-sidebar-links a:hover, .checkout:hover{
	color: white !important;
}

.woocommerce-privacy-policy-text p, .select2-selection__rendered{
	color: #000A1F;
}

.payment_box{
	background: #3B6022 !important;
	color: white !important;
}

.payment_box:before{
	border: 1em solid #3B6022 !important;
    border-right-color: transparent !important;
    border-left-color: transparent !important;
    border-top-color: transparent !important;
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
	padding: 0;
}

.c-courseSupport {
	margin-top: 32px;
}

.c-courseSupport__header {
	display:flex;
	justify-content: space-between;
	grid-gap: 24px;
}

.c-courseSupport__header a {
	color: white;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .05em;
	transition: .3s color;
	text-align: right;
}

.c-courseSupport__header a:hover {
	color: var(--clr-primary);
}

.c-courseSupport__header h3 {
	color: var(--clr-primary);
	flex-shrink: 0;
}

.c-courseSupport__box {
	background: white;
	border-radius: 20px;
	padding: 32px 24px;
}

.c-courseSupport__form{
	display: flex;
	align-items: center;
	grid-gap: 24px;
	margin: 0;
}

.c-courseSupport__form label {
	margin: 0;
	flex-shrink: 0;
	font-size: 18px;
}

.c-courseForm {
	margin-top: 32px;
}

.c-courseForm__header {
	display:flex;
	justify-content: space-between;
	grid-gap: 24px;
}


.c-courseForm__header h3 {
	color: var(--clr-primary);
	flex-shrink: 0;
}

.c-courseForm__box {
	background: white;
	border-radius: 20px;
	padding: 32px 24px;
}

.c-courseForm__form {
	display: flex;
	align-items: flex-end;
	grid-gap: 24px;
	margin: 0;
}

.c-courseForm__form .c-form__input {
	width: 100%;
}

.c-form button {
	flex-shrink: 0;
}

.c-form select {
	width: 100%;
}

.c-form__input label {
	display: block;
	margin-bottom: 8px;
}


.c-form input {
	font-size: 18px;
	font-family: 'Lora', serif;
	border-radius: 12px;
	border: 1px solid #A4ABB1;
	padding: 17px 20px;
	height: auto;
	display: block;
	width: 100%;
	background-color: #F5F6F8;
}

.c-form select {
	font-size: 18px;
	font-family: 'Lora', serif;
	border-radius: 12px;
	border: 1px solid #A4ABB1;
	padding: 17px 20px;
	height: auto;
	display: block;
	width: 100%;
	background-color: #F5F6F8;
	background-image: url('../../imgs/Icon_Chevron.svg');
	background-size: 15px 8px;
	background-repeat: no-repeat;
	background-position: calc(100% - 12px) center;
}


.c-form button[type="submit"] {
	font-size: 18px;
	font-weight: 700;
	font-family: "Red Hat Display", sans-serif;
	background: var(--clr-primary);
	color: white;
	border: none;
	border-radius: 50px;
	padding: 19px 26px;
	transition: .3s background, .3s color, .3s opacity;
}

.c-form button[type="submit"]:disabled{
	opacity: .6;
	cursor: not-allowed;
}

.c-form button[type="submit"]:hover:not(:disabled) {
	background: var(--clr-accent);
}

.c-form button[type="submit"]:focus {
	border: none;
	box-shadow: none;
}

@media screen and (max-width: 1000px) {
	.c-courseSupport__form, .c-courseForm__form {
		grid-gap: 16px;
		flex-direction: column;
		align-items: flex-start;
	}
}

@media screen and (max-width: 1000px) {
	.c-courseSupport__header a {
		font-size: 12px;
	}
}

/* mega menu styling  */

@media screen and (min-width: 1025px) {

	.uael-nav-menu > .menu-item:not(.c-megaMenu) .sub-menu {
		border-bottom-left-radius: 24px;
		border-bottom-right-radius: 24px;
		top: calc(100% + 22px) !important;
		padding: 32px !important;
	}

	.uael-nav-menu > .menu-item:not(.c-megaMenu) .sub-menu .sub-menu {
		top: -40px !important;
		left: calc(100% + 24px) !important;
		border-radius: 24px !important;
	  }

	.uael-nav-menu > .menu-item:not(.c-megaMenu) .sub-menu li:not(:first-child) {
		margin-top: 16px;
	}

	/*.uael-nav-menu > .menu-item:not(.c-megaMenu) .sub-menu li:first-child a {
		font-size: 18px;
		font-weight: 500 !important;
		line-height: 1.3;
		font-family: "Red Hat Display", sans-serif !important;
	}*/

	.uael-nav-menu > .menu-item:not(.c-megaMenu) .sub-menu a {
		padding: 0 !important;
		line-height: 1.3 !important;
		font-size: 14px;
	}

	.uael-nav-menu > .menu-item:not(.c-megaMenu) .sub-menu:before {
		content: '';
		position: absolute;
		top: -32px;
		left: 0;
		right: 0;
		height: 32px;
		background: transparent;
	}

	.uael-nav-menu > .menu-item:not(.c-megaMenu) .sub-menu li {
		background: transparent;
	}

	.elementor-location-header {
		position: sticky;
		z-index: 1460;
		top: 0;
	}

	.elementor-widget-uael-nav-menu {
		position: static !important;
	}

	.c-megaMenu {
		position: static !important;
	}

	.c-megaMenu > .sub-menu:before {
		content: '';
		position: absolute;
		top: -32px;
		left: 0;
		right: 0;
		height: 32px;
		background: transparent;
	}

	.c-megaMenu .sub-menu {
		position: absolute;
		left: 0;
		right: 0;
		top: 100% !important;
		width: 100% !important;
		box-shadow: none !important;
		background: transparent !important;
	}

	.c-megaMenu .sub-menu .uael-menu-toggle {
		display: none;
	}

	.c-megaMenu__wrapper {
		max-width: 1300px;
		margin: 0 auto;
		background: white; 
		padding: 0 32px 0;
		border-bottom-left-radius: 24px;
		border-bottom-right-radius: 24px;
		display: flex;
		grid-gap: 32px;
		flex-wrap: wrap;
	}

	.c-megaMenu__wrapper > li {
		width: calc((100% - 96px) / 4);
	}

	.c-megaMenu .sub-menu {
		padding: 0 !important;
	}

	.c-megaMenu .sub-menu .sub-menu {
		position: static !important;
		visibility: inherit;
		opacity: 1;
	}

	.c-megaMenu .sub-menu li a {
		padding: 0 !important;
		font-size: 18px;
		font-weight: 500 !important;
		line-height: 1.3;
		font-family: "Red Hat Display", sans-serif !important;
	}


	.c-megaMenu .sub-menu .sub-menu li a {
		padding: 0 !important;
		font-size: 14px;
		font-family: "Lora", serif !important;
	}

	.c-megaMenu .sub-menu .sub-menu li {
		margin-top: 16px;
	}

}

.c-megaMenu__top {
	display: flex;
	width: calc(100% + 64px);
	margin-left: -32px;
	margin-right: -32px;
}

.c-megaMenu__topLink {
	width: 100%;
	background: var(--clr-accent-2);
	color: white;
	padding: 32px 20px;
	text-align: center;
	font-size: 24px;
	font-family: 'Lora', serif;
	border-bottom: 1px solid transparent;
	transition: .3s color, .3s background, .3s border;
}

.c-megaMenu__topLink:hover {
	color: black;
	border-bottom: 1px solid #dddddd;
	background: #F8F9F9;
}

.c-megaMenu__footer {
	display: flex;
	width: 100%;
}

.c-megaMenu__footerLink {
	width: 100%;
	padding: 32px 20px;
	text-align: center;
	font-size: 21px;
	font-family: 'Lora', serif;
}

.c-megaMenu__footerLink a {
	color: var(--clr-accent-3);
	text-decoration: underline;
	transition: .3s color;
}

.c-megaMenu__footerLink:last-child {
	border-top: 1px solid #dddddd; 
}

.c-megaMenu__footerLink a:hover {
	color: var(--clr-accent-2);
}

.js-hidden {
	display: none;
}

@media screen and (max-width: 1024px) {

	.c-megaMenu__top { 
		flex-direction: column;
		width: calc(100% + 1.6875rem + 50px);
		margin-left: calc(-25px + -1.6875rem);
		margin-right: -25px;
		margin-bottom: 24px;
	}

	.c-megaMenu__topLink { 
		padding: 16px 25px !important;
		color: white !important;
		font-size: 17px;
		text-align: left;
	}

	.c-megaMenu__topLink:last-child {
		border-top: 1px solid white;
	}

	.c-megaMenu__topLink:hover {
		color: var(--clr-accent-2) !important;
		background: white !important;
	}

	.c-megaMenu__footer {
		flex-direction: column;
		width: calc(100% + 1.6875rem + 50px);
		margin-left: calc(-25px + -1.6875rem);
		margin-right: -25px;
		margin-top: 24px;
	}

	.c-megaMenu__footerLink {
		border-top: 1px solid #dddddd;
		padding: 16px 25px !important;
		color: var(--clr-accent-3) !important;
		font-size: 17px;
		text-align: left;
	}

	.c-megaMenu__footerLink a {
		padding: 0 !important;
	}
}

.elementor-kit-6 a.elementor-button:hover{
	background: var(--e-global-color-accent );
	color: white;
}

.ginput_address_state .uael-gf-select-custom select{
	padding: 16.5px 30px !important;
}

.ginput_address_state .uael-gf-select-custom:after{
	display: none !important;
}

#crs_field, #cat_field{
	display: none;
}

.c-slider--row .elementor-swiper-button-prev {
  left: 50%;
  bottom: 114px;
  transform: none;
  top: auto;
  font-size: 15px;
  margin-left: -648px;
}

.c-slider--row .elementor-swiper-button-next {
  left: 50%;
  bottom: 114px;
  transform: none;
  top: auto;
  font-size: 15px;
  margin-left: -560px;
}

.c-slider--row .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 40px;
  width: auto;
  left: 50%;
  margin-left: -630px;
  width: 60px;
  text-align: center;
}

.c-slider--row .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid white;
  opacity: 1;
  margin: 0 4px;
}

.c-slider--row .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active, .c-slider--row .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet:hover {
  background: white;
}

.c-slider--row .elementor-slides .swiper-slide-inner {
  padding-left: 0;
}

.c-slider--row .swiper-slide-contents {
  max-width: 100%;
  width: 1340px;
  padding: 0 60px 90px 60px;
}

.c-slider--row .swiper-slide-contents * {
  max-width: 1000px;
}

@media screen and (max-width: 1090px) {

  .c-slider--row .elementor-swiper-button-prev {
    margin-left: 0;
    left: 46px;
  }

  .c-slider--row .swiper-container-horizontal > .swiper-pagination-bullets {
    left: 66px;
    margin-left: 0;
  }

  .c-slider--row .elementor-swiper-button-next {
    left: 135px;
    margin-left: 0;
  }

}

@media screen and (max-width: 600px) {


  .c-slider--row .swiper-slide-contents {
    max-width: 100%;
    width: 1340px;
    padding: 0 20px 40px 20px;
  }

}

.main-banner {
  max-width: 2283px;
  margin-left: auto;
  margin-right: auto;
  left: auto !important;
  position: relative;
}

.main-banner:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url('imgs/hero-overlay.svg') no-repeat bottom center / 2283px 703px;
  pointer-events: none;
}

.main-banner .elementor-container {
  z-index: 2;
}


.c-slider--row .elementor-swiper-button-prev.elementor-swiper-button{
	left: 50%;
}

.c-slider--row .elementor-swiper-button-prev, .c-slider--row .elementor-swiper-button-next{
	top: auto !important;
	bottom: 27px !important;
}

@media screen and (max-width: 1090px) {

  .c-slider--row .elementor-swiper-button-prev.elementor-swiper-button {
    left: 46px !important;
  }
}

button a{
	color: white;
	font-weight: bold;
	font-family: "Red Hat Display", sans-serif;
}

button .c-btn:hover{
	color: white !important;
}

a{
	text-decoration: underline !important;
}

.c-resource--img .c-featured--img {
    border-radius: 20px !important;
    max-width: 350px !important;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
    max-height: 300px;
    object-fit: cover;
}

@media only screen and (min-width: 768px) { 
	.alignright{
		float: right;
	}
	
	.c-img .c-featured--img, .c-img .u-left-align{
		float: left;
		margin-right: 20px;
	}
	
	.c-img .u-middle-align{
		display: block;
		float: none;
		margin: 0 auto 20px auto;
	}
	
	.c-img .u-right-align{
		float: right;
		margin-left: 20px;
	}

	.alignleft{
		float: left;
	}
}

@media only screen and (max-width: 768px) { 
	.alignright, .alignleft, .c-img .c-featured--img{
		display: block;
		margin: 0 auto;
		max-width: 100% !important;
	}
	
	.c-img .c-featured--img{
		margin-bottom: 20px;
	}
}

.aligncenter{
	display: block;
	margin: 0 auto;
}

/* hero banner fix */

.swiper-slide {
	overflow: hidden;
}

.container{
	max-width: 1300px;
}

.bb-grid .bb-grid-cell{
	margin-top: 90px;
}

@media only screen and (max-width: 992px) {
	.bb-grid .bb-grid-cell{
		margin-top: 60px;
	}
}

@media only screen and (max-width: 768px) {
	.bb-grid .bb-grid-cell{
		margin-top: 20px;
	}
}


/* radio button styling fix */

.gfield_radio {
	display: flex !important;
	flex-wrap: wrap;
	grid-gap: 24px;
}

.gfield_radio input {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0,0,0,0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}
  
.gfield_radio label {
	padding-left: 32px !important;
	padding-bottom: 0 !important;
}
  
.gfield_radio input[type="radio"]:checked + label:after {
	content: '';
  	position: absolute;
  	z-index: 2;
  	left: 5px;
  	top: 50%;
  	transform: translateY(-50%);
  	background: var(--clr-primary);
  	width: 14px;
  	height: 14px;
}
  
.gfield_radio label:before {
	content: '';
	display: block !important;
	position: absolute;
	z-index: 1;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #FAFAFA;
	border: 1px solid #EAEAEA;
	width: 22px !important;
	height: 22px !important;
}
  

.gfield_radio .gchoice {
	margin: 0 !important;
	padding: 0 !important; 
}

.gform_button {
	font-weight: 700 !important;
	background: var(--clr-primary) !important;
	border: none !important;
	padding: 15px 30px 15px 30px !important;
}

.gform_button:hover {
	background: var(--clr-accent-2) !important;
}

.elementor-editor-active .c-filter-row{
	display: block;
}

/* continuum self check table  */

.c-selfCheckTable {
    overflow-y: auto;
}

.c-selfCheckTable th {
    vertical-align: middle;
}

.c-selfCheckTable td  {
	padding: 0;
}

.c-selfCheckTable td p {
    padding: 1rem;
    margin: 0;
	cursor: pointer;
	user-select: none;
	text-align: center;
}


/* 
	Hide placeholder Additional Form to show ACF form
 */
form.profile-edit.additional-information {
	margin-bottom: 0px !important;
}
form.profile-edit.additional-information * {
	display: none;
}
form.profile-edit.additional-information .button-nav {
	display: block;
	margin-bottom: 0px !important;
}
#acf-additional-info-form label{
	display: block;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: #000A1F;
    letter-spacing: -.27px;
    line-height: 1;
    margin-bottom: 12px;
}
#acf-additional-info-form > .acf-fields > .acf-field:not([data-width]){
	padding-left: 0px;
	padding-right: 0px;
}
#acf-additional-info-form .message{
	background: none;
}
#groups-personal-li{
	display: none !important;
}

.no-course-msg{
	display: block;
}

.header-search-wrap .container{
	min-width: 200px;
}

.c-orderTable {
	overflow-y: auto;
	margin: 24px 0;
	max-height: 90vh;
}

.c-orderTable table {
	font-size: 15px;
	position: relative;
	margin: 0;
}

.c-orderTable th, .c-orderTable td {
	padding: 12px;
	border: 1px solid #ececec;
}

.c-orderTable th {
	white-space: nowrap;
	background: white;
	border-bottom: 1px solid #ececec !important;
	position: sticky;
  	top: 0;
}