/*
 Theme Name:   ReQruiting theme
 Theme URI:    https://lighthousemedia.dk/
 Description:  ReQruiting GeneratePress child theme
 Author:       lighthousemedia
 Author URI:   https://lighthousemedia.dk/
 Template:     generatepress
 Version:      0.1
*/
:root {
	--primary-bg-color: #275AE8;
	--dark-blue: #373F9E;
	--text-color: #2B2756;
	--light: #F8F7FF;
	--white: #fff;
}

body {
	font-family: "Outfit", sans-serif;
	font-size: 18px;
	line-height: 1.4;
	overflow: auto;
}

.site {
	background-color: transparent !important;
}

h1,
h2,
h3,
h4 {
	color: #2B2756;
}

h1 {
	font-size: 45px;
	font-weight: 700;
}

h2 {
	font-size: 38px;
	font-weight: 400;
}

h3 {
	font-size: 32px;
	font-weight: 400;
}

h4 {
	font-size: 24px;
	font-weight: 400;
}

h5 {
	color: var(--dark-blue);
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 1.5px;
}

p {
	margin-bottom: 16px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
}
.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);
}
.admin-bar .site-header {
	top: 32px;
}

.sticky-navigation-logo,
.site-logo {
	width: 160px;
}

.wp-block-buttons {
	column-gap: 40px;
}

.wp-block-button:not([class*="is-style-"]) a,
.wp-block-button.is-style-default a, .wpcf7-submit {
	background: var(--primary-bg-color);
	border-radius: 8px;
	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:not([class*="is-style-"]) a:hover,
.wp-block-button.is-style-default a:hover {
	background: var(--dark-blue);
}

.wp-block-button.is-style-text-link a {
	padding: 0;
	font-weight: 600;
	color: var(--dark-blue);
	-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(--primary-bg-color);
}

.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(--primary-bg-color);
	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(--primary-bg-color);
	border-color: var(--primary-bg-color);
}

/**
	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: 1232px !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;
}

.wp-block-list.is-style-no-bullets {
	margin-left: 0;
	list-style: none;
}

.wp-block-list.is-style-no-bullets li {
	margin-bottom: 8px;
}

.wp-block-list.is-style-checklist {
	margin-left: 0;
	list-style: none;
}

.wp-block-list.is-style-checklist li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
	font-size: 16px;
}

.wp-block-list.is-style-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 18px;
	height: 18px;
	background: url(img/check.svg);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
}

.price-table .price-year,
.price-table .year-save {
	display: none;
}

.price-table .price-month:not(.active) {
	display: none;
}

.price-table .price-month.active,
.price-table .price-year.active,
.price-table .year-save.active {
	display: block;
}

.price-table h2 {
	position: relative;
}

.price-table h2 sup {
	position: absolute;
	font-size: 15px;
	top: -5px;
}

.price-table h2 sub {
	font-size: 18px;
}

.table-top {
	min-height: 38px;
}

.main-navigation .main-nav ul li a {
	font-size: 17px;
}

@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%;
	}

}


.circle-right {
	position: relative;
}

.circle-right>* {
	position: relative;
	z-index: 1;
}

.circle-right-element{
	width: 350px;
	height:350px;
	position: absolute;
	background: url(img/circle.svg);
	background-size: contain;
	top: 0;
	right: -20%;
	background-repeat: no-repeat;
	z-index: 0;
}
.circle-right.left .circle-right-element{
	left: -30%!important;
	top: 5%!important;
	right: auto!important;
	width: 450px;
	height:450px;
}

/* .circle-right::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	background: url(img/circle.svg);
	background-size: contain;
	right: -20%;
	background-repeat: no-repeat;
} */

.circle-left {
	position: relative;
}

.circle-left>* {
	position: relative;
	z-index: 1;
}

.circle-left::before {
	content: "";
	opacity: 0.5;
	width: 100%;
	height: 100%;
	position: absolute;
	background: url(img/circle.svg);
	background-size: contain;
	left: -50%;
	background-repeat: no-repeat;
}

.navigation-branding img,
.site-logo.mobile-header-logo img {
	height: 60px !important;
}

#primary-menu,
.inside-navigation .additional-menu .menu {
	margin-top: 10px;
}

.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(--primary-bg-color);
}

.inside-navigation .additional-menu .menu a:hover {
	color: var(--dark-blue);
}

.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(--dark-blue);
}

.nav-float-right .navigation-stick .inside-navigation {
	padding-top: 30px;
}

.nav-float-right .navigation-stick .inside-navigation .top-menu {
	top: 20px;
	right: 24px;
}

.client-logos-6 .wp-block-image {
	position: relative;
	padding: 20px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.client-logos-6 .wp-block-image:hover img {
	transform: scale(1.1);
}

.client-logos-6 .wp-block-image img {
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	transform: scale(1);
}



.client-logos-4 .wp-block-image {
	position: relative;
	padding: 20px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.client-logos-4 .wp-block-image:hover img {
	transform: scale(1.1);
}

.client-logos-4 .wp-block-image img {
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	transform: scale(1);
}


.wp-block-social-link {
	border-radius: 8px;
}

.site-footer a {
	text-decoration: none;
}

.site-footer .wp-block-navigation a:hover {
	color: var(--primary-bg-color);
}

.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;
}

/* visual order */
.toggle-label {
	order: 0;
}

.toggle-input {
	order: 1;
}

.toggle-switch {
	order: 2;
}

/* label text */
.toggle-label {
	color: #2d3487;
	min-width: 90px;
}

.toggle-label::before {
	content: attr(data-off);
	/* default: Månedlig */
}

/* when checked → Årligt */
.toggle-input:checked~.toggle-label::before {
	content: attr(data-on);
}

/* hide native checkbox */
.toggle-input {
	display: none;
}

/* switch background */
.toggle-switch {
	width: 55px;
	height: 30px;
	background: #bfc3d9;
	/* OFF */
	border-radius: 50px;
	position: relative;
	transition: 0.3s ease;
}

/* white circle */
.toggle-switch::after {
	content: "";
	width: 22px;
	height: 22px;
	background: #ffffff;
	border-radius: 50%;
	position: absolute;
	top: 4px;
	left: 4px;
	transition: 0.3s ease;
}

/* ON state */
.toggle-input:checked+.toggle-switch {
	background: #2d3487;
}

.toggle-input:checked+.toggle-switch::after {
	transform: translateX(25px);
}

.price-table>div {
	-webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.14);
	-moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.14);
	box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.14);
}

.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;
}

.post-header{
	padding: 100px 0 260px;
	position: relative;
}
.post-header h1{
	margin-bottom: 0px;
}
.post-header::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: url(img/bg-gradient.jpg) no-repeat center center;
  background-color: inherit;
  background-size: cover;
  background-repeat: no-repeat;
}
.post-header .eyebrow, .eyebrow{
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 300;
	color: var(--dark-blue);
	letter-spacing: 1.5px;
	margin-bottom: 10px;
}
.single-post .inside-article{
	margin-top: -200px;
	display: flex;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 120px;
}

.single-post .post-content{
	max-width: 61%;
}
.single-post .post-side{
	max-width: 39%;
	text-align: left;
	flex: 1;
	display: flex;
	flex-direction: column;
	padding-top: 230px;
}
.single-post .post-side .editor{
	font-weight: 300;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--dark-blue);
	max-width: 360px;
}
.post-featured-img{
	margin-bottom: 32px;
}
.single-post .post-content h2, .single-post .post-content h3{
	margin-top: 40px;
	margin-bottom: 18px;
}

.single-post .post-content h2 b, .single-post .post-content h3 b{
	font-weight: 400;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], textarea, select{
width: 100%;
border: 1px solid #BCB8D0;
border-radius:3px;
}
.wpcf7 label{
	color:#2B2756;
	margin-bottom: 10px;
}
.wpcf7-submit{
	background-color: var(--primary-bg-color)!important;
	padding: 10px 30px!important;
}
.wpcf7-submit:hover{
	background-color: #2B2756 !important;
}
@media only screen and (min-width: 1024px) {
	.page .accordions-wrapper {
		max-width: 1100px !important;
	}
}

@media only screen and (max-width: 1024px) {

	.site-header .top-menu,
	.site-header .additional-menu {
		display: none;
	}

	.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: 36px;
		font-weight: 700;
	}

	h2 {
		font-size: 30px;
		font-weight: 600;
	}

	h3 {
		font-size: 26px;
		font-weight: 400;
	}

	h4 {
		font-size: 20px;
		font-weight: 400;
	}

	.mobile-logo {
		display: flex;
		justify-content: center;
		padding: 10px 24px;
		width: 100%;
		background-color: var(--white);
		border-bottom: 2px solid var(--primary-bg-color);
		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;
	}
}
@media only screen and (max-width: 960px) {
	.single-post .site{
		padding-left: 24px;
		padding-right: 24px;
	}
	.single-post .inside-article{
		margin-bottom: 140px;
	}
	.post-header {
    padding: 60px 0 180px;
    position: relative;
}
	.single-post .inside-article{
		margin-top: -140px;
		flex-direction: column;
	}
	.single-post .post-content, .single-post .post-side{
		max-width: 100%;
	}
	.single-post .post-side{
		padding-top: 40px;
	}
	}
@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;
	}

	.client-logos-6 .wp-block-image:not(:nth-child(6n))::before {
		position: absolute;
		content: "";
		width: 1px;
		height: 90%;
		top: 0;
		right: -12px;
		display: block !important;
		background: #E0E2EA;
	}

	.client-logos-6 .wp-block-image:not(:nth-last-child(-n+6))::after {
		position: absolute;
		content: "";
		width: 80%;
		height: 1px;
		bottom: -12px;
		left: 10% !important;
		display: block !important;
		background: #E0E2EA;
	}
	.client-logos-4 .wp-block-image:not(:nth-child(4n))::before {
		position: absolute;
		content: "";
		width: 1px;
		height: 90%;
		top: 0;
		right: -12px;
		display: block !important;
		background: #E0E2EA;
	}

	.client-logos-4 .wp-block-image:not(:nth-last-child(-n+4))::after {
		position: absolute;
		content: "";
		width: 80%;
		height: 1px;
		bottom: -12px;
		left: 10% !important;
		display: block !important;
		background: #E0E2EA;
	}
}

@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;
	}

	.client-logos-6 {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}

	.client-logos-6 .wp-block-image:not(:nth-child(3n))::before {
		position: absolute;
		content: "";
		width: 1px;
		height: 90%;
		top: 0;
		right: -12px;
		display: block !important;
		background: #E0E2EA;
	}

	.client-logos-6 .wp-block-image:not(:nth-last-child(-n+3))::after {
		position: absolute;
		content: "";
		width: 80%;
		height: 1px;
		bottom: -12px;
		left: 10% !important;
		display: block !important;
		background: #E0E2EA;
	}

	.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;
	}
}