* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--primary: #000;
	--secondary: rgb(232, 74, 252);
	--tertiary: #2048bf;
	--highlight : #0693E380;
	--border-radius: 10px;

	--tertiary_light: rgba(88,105,112, 0.2);
	--secondary_light: rgba(176,138,93, 0.5);
	--secondary_lighter: rgba(176,138,93, 0.2);
}

html {
	scroll-behavior: smooth;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	overflow-x: hidden;
}

button {
	font-family: 'mundial', sans-serif;
}

body {
	color: var(--primary);
	overflow: hidden;
}

a {
	text-decoration: none;
	color: var(--secondary);
	transition: all 300ms;
}

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

img {
	border-radius: var(--border-radius);
	max-width: 100%;
}

.noindex {
	z-index: 0;
}

p {
	line-height: 1.5;
	margin-bottom: 15px;
}

body:not(.home) main article{
	margin-bottom: 80px;
}

main article ul {
	padding-left: 20px;
	margin-bottom: 20px;
}

main article ul li::marker {
	color: var(--secondary);
}

main article ul li {
	display: flex;
	align-items: top;
	list-style: none;
	margin-bottom: 8px;
	line-height: 1.2;
}

main article ul li:not(.uagb-tab):before {
	content: "\e912";
	margin-right: 10px;
	color: var(--secondary);
	font-family: 'icomoon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	margin-top: 3px;
}



/* ---------------------- SCROLLBALKEN ----------------------------*/


::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	height: 10px;
	width: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
	background-color: var(--tertiary);
}


/* ---------------------- HEADLINES ----------------------------*/

h1, h2, h2 span, h3, h3 span, h4, h5, h6, .wp-block-preformatted {
	line-height: 1.2;
	margin-bottom: 15px;
	margin-top: 0;
}

h1 {
	font-size: 3rem;
}


pre {
	font-size: 1.6rem;
	font-family: var(--font-family);
	color: var(--secondary);
	font-weight: bold;
	line-height: 1.2;
	white-space: pre-wrap;

	margin-bottom: -12px;
}

h2, h2 * {
	font-size: 2.3rem;
}

h3 {
	font-size: 1.6rem;
}

h4 {
	font-size: 2rem;
}

h5 {
	font-size: 1.3rem;
	letter-spacing: 1px;
}
h6 {
	font-size: 1rem;
	text-transform: uppercase;

}

@media screen and (max-width: 960px) {
	h1, h2, h3, h4, h5 ,h5 {
		word-break: break-word;
	}
}

@media screen and (max-width : 768px) {
	h1 {
		font-size: 2.3rem;
	}
	h2 {
		font-size: 2rem;
	}
}

ol {
	margin-left: 30px;
}

ol li strong, .textcontainer strong {
	display: inline-block;
	margin-bottom: 10px;
}

ol li::marker {
	font-weight: bold;
}

ol li {
	margin-bottom: 20px;
}

ul li p {
	margin-bottom: 0;
}


/* ---------------------- HEROSECTION ----------------------------*/




.lc-button  {
	background:linear-gradient(89deg, #000 0%, #000 100%);
	border-radius: var(--border-radius);
	color: #fff;
	font-weight: bold;
	padding: 14px 21px;
}

.lc-button:hover,
.lc-button:focus-visible{
	background: linear-gradient(89deg, rgb(232, 74, 252) 0%, rgb(68, 171, 215) 100%);
}

.lc-button:active {
	background: var(--tertiary);
	color: #fff;
}

.title_row {
	background-color: #424d5f2a;
	padding: 20px 0 10px;
	position: relative;
	margin-bottom: 50px;
	text-align: center;
}


.title_row h1 {
	color: var(--tertiary_dark);
	line-height: 1;
	margin: 30px 0;
}

.scroll-up {
	display: flex;
	justify-content: flex-end;
}

#scroll-up-anker {
	padding: 20px;
}

.wp-element-button {
	transition: background 300ms;
}
.wp-element-button:hover {
	background: linear-gradient(89deg,rgb(68,171,215) 0%,rgb(232,74,252) 100%) !important;
}
.wp-element-button.has-black-background-color:hover {
	background: linear-gradient(89deg,rgb(232,74,252) 0%,rgb(68,171,215) 100%) !important;
}

.innerrows .wp-block-column {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
}


/* ---------------------- FOOTER ----------------------------*/


footer {
	padding: 20px 20px 10px;
}

footer > div {
	border-radius: var(--border-radius);
	background-color: var(--tertiary);
}


#footerlogo {
	position: relative;
	height: 100%;
	align-items: center;
	display: flex;
}

#footerlogo img {
	max-width: 155px;
	position: absolute;
	width: 90%;
	left: -15px;
}

footer .contact-icons {
	align-items: center;
	display: flex;
	color: #fff;
	flex-direction: row;
	justify-content: left;
	margin-bottom: 10px;
}

footer .social-media {
	display: flex;
	justify-content: flex-end;
}

footer .social-media strong {
	color: #fff;
	margin-right: 10px;
}


footer .social-media  i {
	font-size: 1.2rem;
	flex-shrink: 0;
	margin-bottom: 0;
	margin-right: 10px;
}

.bottom-footer {
	background-color: var(--primary);
	color: #fff;
}


#footer-menu, #footer-menu ul {
	align-items: center;
	display: flex;
	justify-content: center;
}

#footer-menu a, #footer-menu-policy a {
	color: #fff;
	padding: 0 10px;
}


#li.current_page_item {
	opacity: 0.7;
}

#footer-menu a:hover:before {
	padding-right: 7px;
}

footer a {
	transition: all 300ms;
}

footer a:hover{
	opacity: 0.6;
}

.mobile-footer {
	display: none;
}

.bottom-footer .innerrow {
	padding: 5px 0;
}

.bottom-footer .menu  {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
}

.bottom-footer .menu li  {
	list-style: none;
	font-size: 0.9rem;
}

.bottom-footer .menu li a:hover  {
	opacity: 0.7;
}

.lc-social-media a{
	font-size: 1.2rem;
	padding-right: 10px;
}

.lc-social-media a:hover {
	color: var(--tertiary);
}
.uagb-block-d92b7242 .uagb-tabs__panel .uagb-tab.uagb-tabs__active {
	background: linear-gradient(89deg, rgb(232, 74, 252) 0%, rgb(68, 171, 215) 100%);
}


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

	footer .row {
		justify-content: space-between;
	}

	#footerlogo img {
		min-width: 155px;
	}

	footer .row > .col-2 {
		display: none;
	}

	.mobile-footer {
		display: block;
		background-color: var(--tertiary);
	}

	footer  #footer-menu2 {
		justify-content: center;
	}
	footer  #footer-menu2 ul{
		display: flex;
		justify-content: center;
		padding: 15px 0;
	}
	footer  #footer-menu2 ul a {
		color: #fff;
		padding: 10px;
	}

}

@media screen and (max-width: 700px) {
	footer .row {
		justify-content: space-between;
		flex-direction: column;
		align-items: flex-start;
	}
	footer .row > [class ^='col-'], footer .innerrow > [class ^='col-'] {
		margin: 20px 0;
	}
}

@media screen and (max-width: 560px) {
	header #logo a {
		font-size: 0.8rem;
	}
	#footerlogo img {
		position: relative;
	}
}

@media (max-width: 1023px) {

	.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet,
	.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet,
	.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet,
	.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet,
	.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet {
		flex-direction: column;
	}

	.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tabs__body-wrap,
	.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tabs__body-wrap,
	.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet .uagb-tabs__body-wrap,
	.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet .uagb-tabs__body-wrap{
		max-width: 100%;
	}

}