/*
 Theme Name:   Robinhood theme
 Theme URI:    https://lighthousemedia.dk/
 Description:  Robinhood GeneratePress child theme
 Author:       Lighthouse Media
 Author URI:   https://lighthousemedia.dk/
 Template:     generatepress
 Version:      0.1
*/
:root {
	--orange: #FF9302;
	--green: #2B9C19;
	--dark-green: #034117;
	--text-color: #000000;
	--light: #F7F7F7;
	--white: #fff;
	--scrollbar-width: 16px;
}

body {
	font-family: "Outfit", sans-serif;
	font-size: 18px;
	line-height: 1.4;
	overflow: auto;
	font-weight: 400;
	color: var(--text-color);
}

.site {
	background-color: transparent !important;
}

h1,
h2,
h3 {
	color: var(--text-color);
	font-weight: 600;
}

h1 {
	font-size: 45px;
}

h2 {
	font-size: 38px;
}

h3 {
	font-size: 32px;
}

h4 {
	font-size: 15px;
	font-weight: 300;
	color: var(--green);
}

h5 {
	color: var(--green);
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 1.5px;
}

p {
	margin-bottom: 16px;
}

.home-hero .wp-block-columns {
	position: relative;
	z-index: 1;
}

.relative {
	position: relative;
}

.hero-overlay {
	position: absolute;
	top: 0;
	right: -260px;
	margin: 0;
	height: 110%;
	width: auto;
}

.hero-overlay img {
	height: 100%;
	width: auto;
	object-fit: cover;
	object-position: center;
}

.site-header {
	position: sticky;
	width: 100%;
	top: 0;
	z-index: 100;
	background-color: #fff;
}

.main-navigation {
	background-color: transparent;
}

.site-header.scroll {
	-webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}

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

.sticky-navigation-logo,
.site-logo {
	width: 240px;
}

.wp-block-buttons {
	column-gap: 40px;
}

.wp-block-button:not([class*="is-style-"]) a,
.wp-block-button.is-style-default a,
.wpcf7-submit, .gform-button,
.has-btn a {
	background: var(--orange);
	border-radius: 40px;
	color: var(--white);
	font-weight: 600;
	border: 2px solid #fff;
	padding: 12px 36px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.has-btn {
	margin-left: 48px;
}

.has-btn a {
	line-height: 1.4 !important;
	color: #fff !important
}

.wp-block-button:not([class*="is-style-"]) a:hover,
.wp-block-button.is-style-default a:hover {
	background: var(--green);
}

.wp-block-button.is-style-text-link a {
	padding: 0;
	font-weight: 600;
	color: #000000;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	background: transparent !important;
}

.wp-block-button.is-style-text-link a:hover {
	color: var(--orange);
}

.wp-block-button.is-style-white a {
	background: var(--white) !important;
	border-radius: 12px;
	color: var(--text-color);
	border: 2px solid #F3F6FF;
	font-weight: 600;
	padding: 12px 28px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	-webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.12);
}

.wp-block-button.is-style-white a:hover {
	color: var(--orange);
	box-shadow: none;
}

.wp-block-button.is-style-white-outline a {
	background: transparent;
	border-radius: 8px;
	border: 1px solid var(--white);
	color: var(--white);
	font-weight: 600;
	padding: 12px 28px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.wp-block-button.is-style-white-outline a:hover {
	color: var(--white);
	background: var(--orange);
	border-color: var(--orange);
}

/**
	Utilities
*/
[data-animation] {
	opacity: 0;
	visibility: hidden;
	/* Ensure elements are not visible initially */
	transform: translateY(20px);
	/* Default starting point */
	transition: opacity 0.3s ease, transform 0.3s ease;
}

[data-animation].animated {
	opacity: 1;
	visibility: visible;
	/* Make the element visible when animated */
	transform: translateY(0);
	/* Reset the transform */
}

/* Fade-in animations */
@keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fade-in {
	animation-name: fade-in;
}

/* Fade-up animation */
@keyframes fade-up {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-up {
	animation-name: fade-up;
}

/* Fade-down animation */
@keyframes fade-down {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


.fade-down {
	animation-name: fade-down;
}

.is-style-box-animation {
	position: relative;
	z-index: auto;
}

.is-style-box-animation img {
	display: block;
	position: relative;
	z-index: 1;
}

.is-style-box-animation::before {
	background-color: var(--light);
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	display: block !important;
	z-index: -1;
	top: 50%;
	left: 50%;
	opacity: 0.2;
	transform: translate(-50%, -50%);
	-webkit-transition: all 600ms ease;
	-moz-transition: all 600ms ease;
	-ms-transition: all 600ms ease;
	-o-transition: all 600ms ease;
	transition: all 600ms ease;
}

.is-style-box-animation.active::before {
	transform: translate(-90%, -50%);
	opacity: 1;
}

.is-style-box-animation-right {
	position: relative;
	z-index: auto;
}

.is-style-box-animation-right img {
	display: block;
	position: relative;
	z-index: 1;
}

.is-style-box-animation-right::before {
	background-color: var(--light);
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	display: block !important;
	z-index: -1;
	top: 50%;
	left: 50%;
	opacity: 0.2;
	transform: translate(-50%, -50%);
	-webkit-transition: all 600ms ease;
	-moz-transition: all 600ms ease;
	-ms-transition: all 600ms ease;
	-o-transition: all 600ms ease;
	transition: all 600ms ease;
}

.is-style-box-animation-right.active::before {
	transform: translate(10%, -50%);
	opacity: 1;
}

/* Fade-left animation */
@keyframes fade-left {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.fade-left {
	animation-name: fade-left;
}

/* Fade-right animation */
@keyframes fade-right {
	from {
		opacity: 0;
		transform: translateX(20px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.fade-right {
	animation-name: fade-right;
}

/* Rotation animation */
@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.rotate-animation {
	animation: rotate 44s linear infinite;
}

.rotate-animation.rotate-speed-2 {
	animation: rotate 80s linear infinite;
}

/* Hide on Mobile */
@media (max-width: 767px) {
	.hide-on-mobile {
		display: none !important;
	}
}

/* Hide on Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
	.hide-on-tablet {
		display: none !important;
	}
}

/* Hide on Desktop */
@media (min-width: 1024px) {
	.hide-on-desktop {
		display: none !important;
	}
}

@media (max-width: 768px) {
	.page .left-on-mobile {
		text-align: left;
		display: flex;
		justify-content: flex-start;
		float: none !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}

.animate-list>* {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.animate-list>*.visible {
	opacity: 1;
	transform: translateY(0);
}

.link-stretched {
	position: static;
}

.link-stretched::after {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	pointer-events: auto;
	background-color: rgba(0, 0, 0, 0);
}

.lc-reset *:last-child {
	margin-bottom: 0;
}

.overflow-hidden {
	overflow: hidden;
}

.breakout-bg {
	position: relative;
}

.breakout-bg::before {
	position: absolute;
	z-index: -1;
	top: 0;
	right: 50%;
	left: 50%;
	display: block;
	width: 100vw;
	height: 100%;
	margin-right: -50vw;
	margin-left: -50vw;
	content: "";
	background-color: inherit;
	background-size: cover;
	background-repeat: no-repeat;
}


:where(.wp-block-group.has-background),
.wp-block-cover,
.wp-block-cover-image,
.wp-block-group.alignfull {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.alignfull {
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	max-width: 100vw !important;
	width: 100vw;
}

.has-scrollbar .alignfull {
	margin-left: calc(-50vw + 50% + (var(--scrollbar-width) / 2)) !important;
	margin-right: calc(-50vw + 50% + (var(--scrollbar-width) / 2)) !important;
	max-width: calc(100vw - var(--scrollbar-width)) !important;
}

.alignwide {
	max-width: 1280px !important;
}

.entry-content> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	max-width: var(--wp--style--global--content-size);
	margin-left: auto !important;
	margin-right: auto !important;
}

.main-navigation .main-nav ul li a {
	font-size: 17px;
}

.wp-block-list {
	margin-left: 0;
}

.is-style-iconlist {
	list-style: none;
}

.is-style-iconlist li {
	position: relative;
	padding-left: 40px;
	margin-bottom: 20px;
}

.is-style-iconlist li::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 2px;
	width: 24px;
	height: 24px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30.5' height='30.5' viewBox='0 0 30.5 30.5'%3E%3Cg id='Group_1343' data-name='Group 1343' transform='translate(-2.211 -2.213)'%3E%3Cg id='g816' transform='translate(3.211 3.213)'%3E%3Cg id='g818'%3E%3Cg id='Group_1341' data-name='Group 1341'%3E%3Cg id='g826' transform='translate(0 6.031)'%3E%3Cpath id='path828' d='M0-242.1a11.234,11.234,0,0,1,11.234-11.234A11.234,11.234,0,0,1,22.469-242.1a11.234,11.234,0,0,1-11.234,11.234A11.234,11.234,0,0,1,0-242.1Z' transform='translate(0 253.333)' fill='none' stroke='%23fd9326' stroke-miterlimit='10' stroke-width='2'/%3E%3C/g%3E%3Cg id='g830' transform='translate(4.977 11.008)'%3E%3Cpath id='path832' d='M0-134.84A6.257,6.257,0,0,1,6.257-141.1a6.257,6.257,0,0,1,6.257,6.257,6.257,6.257,0,0,1-6.257,6.257A6.257,6.257,0,0,1,0-134.84Z' transform='translate(0 141.097)' fill='none' stroke='%23fd9326' stroke-miterlimit='10' stroke-width='2'/%3E%3C/g%3E%3Cg id='g834' transform='translate(9.727 15.758)'%3E%3Cpath id='path836' d='M-64.984-32.492a1.508,1.508,0,0,1-1.508,1.508A1.508,1.508,0,0,1-68-32.492,1.508,1.508,0,0,1-66.492-34,1.508,1.508,0,0,1-64.984-32.492Z' transform='translate(68 34)' fill='none' stroke='%23fd9326' stroke-miterlimit='10' stroke-width='2'/%3E%3C/g%3E%3Cg id='g838' transform='translate(22.04)'%3E%3Cpath id='path840' d='M-64.984-139.219H-68v-3.016l3.445-3.445h.059v2.956l2.956-.059v.118Z' transform='translate(68 145.68)' fill='none' stroke='%23fd9326' stroke-miterlimit='10' stroke-width='2'/%3E%3C/g%3E%3Cg id='g842' transform='translate(10.168 6.46)'%3E%3Cpath id='path844' d='M0-255.823l11.871-11.871' transform='translate(0 267.694)' fill='none' stroke='%23fd9326' stroke-miterlimit='10' stroke-width='2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
	background-size: 24px 24px;
	background-repeat: no-repeat;
	background-position: center;
}

.is-style-checklist {
	list-style: none;
}

.is-style-checklist li {
	position: relative;
	padding-left: 32px;
	margin-bottom: 20px;
}

.is-style-checklist li::before {
	content: "";
	background-image: url("data:image/svg+xml,%3Csvg id='Component_20_1' data-name='Component 20 – 1' xmlns='http://www.w3.org/2000/svg' width='18.148' height='17.955' viewBox='0 0 18.148 17.955'%3E%3Crect id='Rectangle' width='18.148' height='17.955' rx='3' fill='%23f3f6ff'/%3E%3Cpath id='check' d='M11.931,5a.855.855,0,1,1,1.221,1.2L8.6,11.885a.855.855,0,0,1-1.231.023L4.357,8.892A.855.855,0,1,1,5.565,7.684l2.386,2.385,3.958-5.043A.269.269,0,0,1,11.932,5Z' transform='translate(0.334 0.525)' fill='%23fd9326' fill-rule='evenodd'/%3E%3C/svg%3E%0A");
	display: block;
	position: absolute;
	width: 18px;
	height: 18px;
	background-size: 18px 18px;
	background-repeat: no-repeat;
	background-position: center;
	left: 0;
	top: 4px;
}
#field_1_5{
	margin-top: 10px;
}
#field_1_6{
	margin-bottom: 0!important;
}
#field_1_7{
	margin-bottom: 0!important;
}
#field_1_8{
	margin-bottom: 0!important;
}
#field_submit{
	justify-content: flex-end;
	display: flex!important;
}
.gform-button{
	font-size: 18px!important;
	border-radius: 100px!important;
	padding: 12px 24px!important;
}

@media only screen and (min-width: 960px) {
	.container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

}

@media only screen and (max-width: 960px) {
	.entry-content>.alignwide {
		margin-left: 24px !important;
		margin-right: 24px !important;
		max-width: calc(100% - 48px) !important;
	}
}

@media only screen and (max-width: 768px) {
	.center-on-mobile {
		text-align: center;
		justify-content: center !important;
		align-items: center !important
	}

	.center-on-mobile.wp-block-image {
		display: flex !important;
		float: none !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	.is-style-reverse-mobile {
		flex-direction: column-reverse
	}

	.entry-content .alignwide,
	body:not(.no-sidebar) .entry-content .alignfull {
		margin-left: 0px;
		width: 100%;
		max-width: 100%;
	}

}

.navigation-branding img,
.site-logo.mobile-header-logo img {
	height: 60px !important;
}

.lh-fix {
	line-height: 1.8;
}

.inside-navigation .additional-menu {
	order: 5;
	margin-left: 94px;
}

.inside-navigation .top-menu {
	position: absolute;
	top: -14px;
	right: 0;
}

.inside-navigation .additional-menu .menu {
	display: flex;
	column-gap: 24px;
}

.inside-navigation .additional-menu .menu a {
	color: var(--text-color);
	font-size: 17px !important;
}

.inside-navigation .additional-menu .menu .highlight a {
	color: var(--orange);
}

.inside-navigation .additional-menu .menu a:hover {
	color: var(--green);
}

.inside-navigation .top-menu .menu {
	display: flex;
	column-gap: 32px;
}

.inside-navigation .top-menu .menu a {
	color: var(--text-color);
	text-transform: uppercase;
	font-size: 14px !important;
}

.inside-navigation .top-menu .menu a:hover {
	color: var(--green);
}

.nav-float-right .navigation-stick .inside-navigation {
	padding-top: 30px;
}

.nav-float-right .navigation-stick .inside-navigation .top-menu {
	top: 20px;
	right: 24px;
}

.site-footer a {
	text-decoration: none;
}

.site-footer .wp-block-navigation a:hover {
	color: var(--orange);
}

.menu-toggle {
	padding-right: 0 !important;
	background-color: var(--white) !important;
}

.toggle-wrapper {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	font-size: 20px;
	gap: 12px;
}

.video-breakout {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
}

.video-breakout .nk-awb-wrap {
	padding: 0 !important;
	margin: 0 !important;
	max-width: 100% !important;
	width: 100% !important;
}

.overflow-hidden {
	overflow: hidden;
}

.wp-block-details {
	padding-bottom: 12px;
	margin-bottom: 12px;
}

.wp-block-details summary::marker {
	display: none;
}

/* Hide the native details/summary marker in WebKit (Safari) and remove default appearance */
.wp-block-details summary::-webkit-details-marker {
	display: none;
}

.wp-block-details summary {
	list-style: none;
	-webkit-appearance: none;
	appearance: none;
}

.wp-block-details summary {
	position: relative;
	padding-right: 20px;
	font-size: 20px;
	color: #000;
	font-weight: 600;
}
.wp-block-details  p{
	padding-left: 20px;
	border-left: 3px solid var(--orange);
}

.wp-block-details[open] summary::before {
	transform: rotate(180deg);
}

.wp-block-details summary::before {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 4px;
	width: 14px;
	height: 14px;
	background-size: 14px 14px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.683' height='6.284' viewBox='0 0 11.683 6.284'%3E%3Cpath id='Path_8827' data-name='Path 8827' d='M256,42.509l4.782-4.473,4.782,4.473' transform='translate(266.623 43.57) rotate(180)' fill='none' stroke='%23b6cad3' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1.5'/%3E%3C/svg%3E%0A");
	transform: rotate(0deg);
	transform-origin: center;
	transition: transform 200ms ease;
}

button.menu-toggle {
	background: transparent !important;
}

.icon--ln a {
	text-indent: -9999px;
	background-image: url("data:image/svg+xml,%3Csvg id='Layer_2' data-name='Layer 2' xmlns='http://www.w3.org/2000/svg' width='28.315' height='28.315' viewBox='0 0 28.315 28.315'%3E%3Cg id='_10.linkedin' data-name='10.linkedin' transform='translate(0)'%3E%3Cpath id='Path_8868' data-name='Path 8868' d='M25.688,0H2.627A2.627,2.627,0,0,0,0,2.627V25.688a2.627,2.627,0,0,0,2.627,2.627H25.688a2.627,2.627,0,0,0,2.627-2.627V2.627A2.627,2.627,0,0,0,25.688,0ZM9.653,22.407a.6.6,0,0,1-.6.6H6.512a.6.6,0,0,1-.6-.6V11.744a.6.6,0,0,1,.6-.6H9.056a.6.6,0,0,1,.6.6ZM7.783,10.135A2.413,2.413,0,1,1,10.2,7.722a2.413,2.413,0,0,1-2.413,2.413ZM22.948,22.449a.549.549,0,0,1-.55.55H19.663a.549.549,0,0,1-.55-.55v-5c0-.746.219-3.269-1.951-3.269-1.681,0-2.024,1.726-2.091,2.5v5.769a.55.55,0,0,1-.542.55H11.886a.549.549,0,0,1-.549-.55V11.7a.549.549,0,0,1,.549-.55h2.642a.55.55,0,0,1,.55.55v.93A3.742,3.742,0,0,1,18.6,10.969c4.373,0,4.344,4.083,4.344,6.326Z' transform='translate(0)' fill='%23085171'/%3E%3C/g%3E%3C/svg%3E%0A");
	background-size: 28px 28px;
	background-repeat: no-repeat;
	background-position: center;
}

.wp-block-cb-carousel-v2 .cb-button-next,
.wp-block-cb-carousel-v2 .cb-button-prev {
	color: var(--orange);

}

.wp-block-cb-carousel-v2 .cb-button-next:after,
.wp-block-cb-carousel-v2 .cb-button-prev:after {
	font-size: 30px;
}



.price-box {
	-webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2);
	border-radius: 24px;
	padding: 48px 32px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.price-box h3 {
	font-size: 24px;
}

.price-box h2 {
	font-size: 32px;
}

.price-box .is-style-white-outline {
	display: flex;
	width: 100%;
	text-align: center;
	justify-content: center;
}

.price-box .is-style-white-outline a {
	-webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.price-box .is-style-white-outline a:hover {
	box-shadow: none !important;
	background: var(--orange) !important;
	color: #fff !important;
}

.is-style-white-outline a {
	background: #fff !important;
	border-radius: 100px !important;
	color: var(--orange) !important;
	font-weight: 700 !important;

}
.is-style-shadow img {
	border-radius: 24px;
	margin-left: 32px;
	margin-top: 12px;
	-webkit-box-shadow: 0px 5px 12px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 5px 12px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 5px 12px 0px rgba(0,0,0,0.1);
}

.wp-block-cb-carousel-v2 .cb-button-prev{
	left: -48px!important;
}
.wp-block-cb-carousel-v2 .cb-button-next{
	right: -48px!important;
}
.circle-bg > *{
	position: relative;
	z-index: 1;
}
.circle-bg::before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	position: absolute;
	top: 0; 
	left: 50%; 
	transform: translate(-50%, -10%);
	aspect-ratio: 1/1;
	background-color: var(--light);
	border-radius: 100%;
	z-index: 0;
}
.gform-theme--foundation .gform_fields{
	row-gap: 20px;
}
.entry-content a{
	text-decoration: none;
}
.wp-block-separator{
	border-top-width: 1px !important;
}
.is-style-green-link a{
	color: var(--green) !important;
	text-decoration: none !important;
}
.is-style-green-link a:hover{
	color: var(--orange) !important;
}
.wp-block-table.is-style-stripes table{
	margin-bottom: 0!important;
}
.wp-block-table.is-style-stripes thead{
border:none !important;
background-color: #D4E3D2;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background-color: #fff;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(even) {
	background-color: #EAF0E9;
}

/* Smooth open/close for Core Accordion */
.wp-block-accordion .wp-block-accordion-panel{
	overflow: hidden;
	height: 0;
	transition: height 250ms ease;
}

/* Optional: avoid margin-collapsing weirdness */
.wp-block-accordion .wp-block-accordion-panel > :first-child { margin-top: 0; }
.wp-block-accordion .wp-block-accordion-panel > :last-child  { margin-bottom: 0; }

.wp-block-accordion-heading__toggle{
	position: relative;
	font-size: 20px;
	color: #000;
	font-weight: 600;
	text-decoration: none;
	padding: 0 !important;
}
.wp-block-accordion-heading__toggle:hover,
.wp-block-accordion-heading__toggle:focus{
background-color: transparent !important;
color: #000;
text-decoration: none!important;
padding: 0 !important;
}
.wp-block-accordion-panel {
	padding-left: 24px;
	border-left:2px solid var(--orange);
	font-weight: 400;
}
.wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title{
	text-decoration: none !important;
}
@media only screen and (max-width: 1440px) {
	.hero-overlay {
		height: 100%;
		right: -20%;
	}
}
@media only screen and (max-width: 1328px) {
	.alignwide {
			max-width: 100% !important;
	}
}
@media only screen and (max-width: 1240px) {
	.hero-overlay {
		right: -30%;
	}
}
@media only screen and (max-width: 1024px) {

	.inside-header {
		padding: 10px 24px;
	}

	.nav-float-right .navigation-stick .inside-navigation {
		padding-top: 0;
	}

	.navigation-branding {
		margin-left: 0 !important;
	}

	.stuckElement:not(.is_stuck) {
		display: none;
	}

	.has-sticky-branding {
		display: none;
	}

	.main-navigation.navigation-stick.has-sticky-branding .inside-navigation.grid-container {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}

	h1 {
		font-size: 32px;
	}

	h2 {
		font-size: 28px;
	}

	h3 {
		font-size: 24px;
		font-weight: 400;
	}
	.wp-block-cb-carousel-v2 .cb-button-prev{
		left: 0px;
	}
	.wp-block-cb-carousel-v2 .cb-button-next{
		right: 0px;
	}

	.mobile-logo {
		display: flex;
		justify-content: center;
		padding: 10px 24px;
		width: 100%;
		background-color: var(--white);
		border-bottom: 2px solid var(--orange);
		order: 1;
	}

	.slideout-navigation {
		background-color: var(--light);
	}

	.slideout-navigation .inside-navigation {
		flex-direction: column;
		align-items: flex-start;
	}

	.slideout-navigation .main-nav {
		order: 2;
		margin: 24px 0 !important;
	}

	.slideout-navigation .mobile-top-menu {
		order: 4;
	}

	.slideout-navigation .mobile-additional-menu {
		order: 3;
		margin-bottom: 24px;
	}

	.slideout-navigation .mobile-additional-menu .menu,
	.slideout-navigation .mobile-top-menu .menu {
		display: flex;
		flex-direction: column;
		row-gap: 10px;
		padding: 0 16px;
	}
	.hero-overlay {
		right: -50%;
	}
}

@media only screen and (min-width: 768px) {
	.is-style-breakout-right {
		position: static;
	}

	.is-style-breakout-right .wp-block-image {
		position: absolute;
		right: 0;
		top: 0;
		width: 50%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.is-style-breakout-right .wp-block-image img {
		display: block;
		margin: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
	
}

@media only screen and (max-width: 768px) {
	.is-style-breakout-right {
		position: relative;
		width: calc(100% + 48px);
		margin-left: -24px !important;
		margin-right: -24px !important;
	}

	.video-breakout {
		position: relative;
		width: 100%;
		min-height: 360px !important;
		top: 0;
	}

	.video-breakout .nk-awb-wrap {
		min-height: 300px !important;
	}

	.video-breakout .nk-awb-wrap-content {
		margin: 0 !important;
	}

	.mobile-overflow-visible {
		overflow: visible;
	}

	.sub-menu-right {
		display: none;
	}

	.separate-containers .inside-article {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.hero-overlay {
		height: auto !important;
		width: 70% !important;
		opacity: .6;
	}
	.wp-block-cb-carousel-v2{
		padding: 0 24px;
	}
	.is-style-shadow {
		padding:8px 8px 0;
	}
	.is-style-shadow img {
		border-radius: 24px;
		margin-left: 0px;
		margin-right: 0px;
		box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
	}
	.has-btn {
    margin-left: 0px !important;
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	.has-btn  a{
		text-align: center;
	}
	.circle-bg::before{
		max-width: 60%;
		
	}
	.circle-bg{
		max-width: 300px;
		justify-self: center;
		margin-left: auto;
		margin-right: auto;
	}
	.hero-overlay {
		display: none;
	}
}