@charset "UTF-8";
/* CSS Document */

@import url("https://use.typekit.net/xsl5tul.css");



:root {
	--silver: #EFF2F6;
	--blue: #5068F2;
	--dark-blue: #040F4E;
	--dark-blue-1: #263171;
	--light-blue: #AFBAFB;
	--light-blue-1: #BBC4FC;
	--light-blue-2: #C5CDFC;
	--light-blue-3: #CED4FC;
	
	--light-text: #fff;
	--dark-text: var(--dark-blue);
	
	--btn-default-bg:  var(--dark-blue);
	--btn-default-txt: #fff;

	--btn-primary-bg: var(--blue);
	--btn-primary-txt: #fff;
	
	--btn-secondary-bg: rgba(255, 255, 255, 0);
	--btn-secondary-txt: var(--light-blue);
	--btn-secondary-border: var(--light-blue);
	
	--main-font: "aptos", sans-serif;
	--h-font: "aptos", sans-serif; 
	--permission-text: 14px;

	--warning: #ff0500;

	--social: #fff;
	--social-bg: red;
	--radius: 10px;
	
	--topbar: 70px;
}

/* Colors */

.txt-white {
	color: #fff;
}

.bg-white {
	background-color: #fff;
}

.txt-black {
	color: #000;
}

.bg-black {
	background-color: #000;
}

.txt-blue {
	color: var(--blue);
}

.bg-blue {
	background-color: var(--blue);
}

.txt-dark-blue {
	color: var(--dark-blue);
}

.bg-dark-blue {
	background-color: var(--dark-blue);
}

.txt-dark-blue-1 {
	color: var(--dark-blue-1);
}

.bg-dark-blue-1 {
	background-color: var(--dark-blue-1);
}

.txt-light-blue {
	color: var(--light-blue);
}

.bg-light-blue {
	background-color: var(--light-blue);
}

.txt-light-blue-1 {
	color: var(--light-blue-1);
}

.bg-light-blue-1 {
	background-color: var(--light-blue-1);
}

.txt-light-blue-2 {
	color: var(--light-blue-2);
}

.bg-light-blue-2 {
	background-color: var(--light-blue-2);
}

.txt-light-blue-3 {
	color: var(--light-blue-3);
}

.bg-light-blue-3 {
	background-color: var(--light-blue-3);
}

.txt-silver{
	color: var(--silver);
}

.bg-silver {
	background-color: var(--silver);
}


html, body {
	width: 100%;
	height: 100%;
	font-size: 18px;
	margin: 0;
	padding: 0;
	position: relative;
}

body {
	background-color: var(--silver);
	font-family: var(--main-font);
	font-weight: 400;
	font-style: normal;	
	color: var(--dark-text);
	overflow-x: hidden;
}

.main-head {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	background-color: rgba(255, 255, 255, 0.8); /* gennemsigtig */
	backdrop-filter: saturate(120%) blur(5px);
	-webkit-backdrop-filter: saturate(120%) blur(5px);
	padding-top: env(safe-area-inset-top);
	z-index: 10;
	transform: translateZ(0);
}

.main-image {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding-bottom: 88%;
	border-top-left-radius: 50% 58%;
	border-top-right-radius: 50% 58%;
	transform: scale(var(--hero-scale, 1));
	transform-origin: center top;  /* eller center bottom, alt efter look */
	will-change: transform;
}

.main-image .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.main-image .slide.active {
  opacity: 1;
}

.main-image-overlay {
	position: absolute;
	height: 50%;
	width: 100%;
	left: 0;
	bottom: 0;
	background: #040F4E;
	background: -webkit-linear-gradient(0deg,rgba(4, 15, 78, 0.7) 0%, rgba(4, 15, 78, 0) 100%);
	background: -moz-linear-gradient(0deg,rgba(4, 15, 78, 0.7) 0%, rgba(4, 15, 78, 0) 100%);
	background: linear-gradient(0deg,rgba(4, 15, 78, 0.7) 0%, rgba(4, 15, 78, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
  		startColorstr="#040F4E",
  		endColorstr="#040F4E",
 		 GradientType=0
	);
}

.prize {
	/* Billedet sættes i html */
	width: 100%;
	position: relative;
	background-size: contain;      
	background-repeat: no-repeat;
	background-position: center;
	padding-bottom: 89.8%;
}

.stribes {
	background-image: url('../img/stribes.svg');
	background-repeat: no-repeat;
	background-position: left -100px top -100px;
	background-blend-mode: screen;
}

.svg-arrow {
    /* overflow: hidden; */
    vertical-align: middle;
    width: 30px;
    margin-left: 18px;
    fill: #fff;
    margin-right: -20px;
}




.indicator {
	height: 10px;
	background-color: #c4cdcc;
	margin-top: -10px;
	margin-bottom: 10px;
	position: relative;
}

.indicator-outher {
	width: 100%;
	background-color: #fff;
}

.other {
	display: none;
}

.carousel-item {
	min-height: 500px;
}

.full-height {
	min-height: 100vh;
}

/* Show modules */
.module-name {
	position: absolute;
	display: block;
	background-color: rgba(255, 0, 0, 0.4);
	font-size: 12px;
	padding: 4px 8px;
	z-index: 99;
	color: #fff;
	display: none;
	border: none !important;
}

.module-name-top {
	top: 0;
	left: 0;
}

.module-name-right {
	top: 0;
	right: 0;
}

.module-name-bottom {
	bottom: 0;
	right: 0;
}

.show-module-on, .show-module-off {
	position: fixed;
	top: 0;
	right: 0;
	width: 30px;
	height: 20px;
    cursor: pointer;
    cursor: hand;
    z-index: 9999;
    color: #fff;
    text-align: center;
    padding-top: 2px;
    background-color: #009eaa;
}

.show-module-on {
	display: none;
}

.show-module-off {
	display: none;
	border: none !important;
}

.show-module-border {
	border: 1px dashed #00ffff;
}

/* /Preloader */

.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url('../img/loading.gif') center no-repeat #fff;
}


.text-shadow {
	text-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
}

/*
.box_layout {
	-webkit-box-shadow: 0px 0px 35px 0px rgba(0,0,0,0.1); 
	box-shadow: 0px 0px 35px 0px rgba(0,0,0,0.1);
}
*/


section {
	position: relative;
}


.section-head {
}

.header {
	min-height: 110px;
	position: relative;
}

.section-content {
	position: relative;
}

.section-footer {
	color: #fff;
	font-size: 15px;
}

.top-border {
	border-top: 1px solid #dee4ea;
}

.topbar {
	height: var(--topbar);
}

.topbar-padding {
	padding-top: var(--topbar);
}


.logo {
	width: 200px;
}

.transition {
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}

.topbar-small {
	height: 50px;
}

.logo-small {
	width: 150px;
}


.full-width {
	margin-left: -15px;
	margin-right: -15px;
}

.border-radius {
	border-radius: var(--radius);
}

/* carousel-items */

.carousel-control-next {
    justify-content: flex-end;
    padding-right: 20px;
}

.carousel-control-prev {
    justify-content: flex-start;
    padding-left: 20px;
}

/*
.carousel-row {
	position: absolute;
	height: 100%;
	max-width: 100%;
}
*/

.carousel-row, .banner-row {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.topbanner-carousel .carousel-item, .banner-item {
	min-height: 45vh;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	text-shadow: 0 0 6px #000;
}

.background-item-left {
	background-position: top left;
}

.background-item-right {
	background-position: top right;
}

.carousel-item-0 {
	background-image: url("../img/topbanner_0.jpg");
}

.carousel-item-1 {
	background-image: url("../img/topbanner_1.jpg");
}

.carousel-item-2 {
	background-image: url("../img/topbanner_2.jpg");
}

.carousel-item-3 {
	background-image: url("../img/topbanner_3.jpg");
}

.carousel-item-4 {
	background-image: url("../img/topbanner_4.jpg");
}

.banner-item-1 {
	background-image: url("../img/topbanner_3.jpg");
}


/* Navigation */

nav.navbar {
	padding: 1.5rem 1rem;
	z-index: 1;
}


/* Elements */

.circle, .splash {
	width: 50px;
	height: 50px;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.circle {
	background-color: var(--blue);	
}

.splash {
	position: absolute;
	width: 10rem;
	height: 10rem;
	background-color: rgba(80, 104, 242, 0.6);
	backdrop-filter: saturate(120%) blur(10px);
	-webkit-backdrop-filter: saturate(120%) blur(10px);
	z-index: 1;
	bottom: 10%;
	right: -1%;
	color: #fff;
	padding: 20px;
	line-height: 1.3;
	font-weight: 700;
}

.svg-arrow-vertical {
    vertical-align: middle;
    width: 100%;
    padding: 30%;
    fill: #fff;
}

.pulse {
  display: inline-block;
  animation: pulseScale 1.2s ease-in-out infinite;
  transform-origin: center; /* vigtigt for SVG'er */
}

@keyframes pulseScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.scroll-top {
	width: 30px;
	height: 30px;
	background-color: rgba(255, 255, 255, 0.5);
	background-image: url("../img/arrow.svg");
	background-repeat: no-repeat;
	background-size: 40%;
	background-position: center;
	position: fixed;
	bottom: 10px;
	right: 10px;
	border-radius: 3px;
	border: 1px solid #dee4ea;
	z-index: 1;
	display: none;
}

.pointer {
    cursor: pointer;
    cursor: hand;
}

div#myTabContent {
    padding: 20px;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
    background-color: #fff;
}

.dropshadow {
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.5);
}

.innershadow {
	-webkit-box-shadow: inset 0px 8px 5px -5px rgba(0,0,0,0.5);
	-moz-box-shadow: inset 0px 8px 5px -5px rgba(0,0,0,0.5);
	box-shadow: inset 0px 8px 5px -5px rgba(0,0,0,0.5);
}

.linkedin {
	width: 40px;
	height: 40px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3333 3333' shape-rendering='geometricPrecision' text-rendering='geometricPrecision' image-rendering='optimizeQuality' fill-rule='evenodd' clip-rule='evenodd' fill ='%23ffffff'%3E%3Cpath d='M1465 1354h322v165h5c45-81 155-165 318-165 340 0 403 212 403 488v561h-336v-498c0-119-2-271-175-271-175 0-202 129-202 263v506h-336V1354zM1667 0c460 0 877 187 1179 488 302 302 488 718 488 1179 0 460-187 877-488 1179-302 302-718 488-1179 488-460 0-877-187-1179-488C186 2544 0 2128 0 1667c0-460 187-877 488-1179C790 186 1206 0 1667 0zm1093 573c-280-280-666-453-1093-453S853 293 574 573c-280 280-453 666-453 1093s173 814 453 1093c280 280 666 453 1093 453s814-173 1093-453c280-280 453-666 453-1093s-173-814-453-1093zm-1528 490c0 97-78 175-175 175s-175-78-175-175 78-175 175-175 175 78 175 175zm-350 291h350v1049H882V1354z'/%3E%3C/svg%3E");
}

.padding-left {
	padding-right: 50px;
}

.padding-right {
	padding-left: 30px;
}

.box {
	padding: 20px;
	border: 1px solid #dee4ea;
	position: relative;
}

.bg-fingers {
	background-image: url("../img/fingers.png");
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: left;
}

.bg-world {
	background-image: url("../img/world.png");
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: bottom center;
}


#thanks {
	display: none;
}

#formular {
	display: block;
}

.card {
    height: 100%;
    border-radius: 3px;
}

.card-img-top {
    width: 100%;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


/* Video */
.videoWrapper {
    overflow: hidden;
    position: relative;
    height: 450px;
    /* max-height: 320px; */
    z-index: -1;
    background-color: #000;
    margin-left: -2px;
    margin-right: -2px;
}

.video {
    text-align: center;
    width: 100%;
}

.videoWrapper video {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.video-caption {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 3% 5%;
	top: 0;
	left:0;
	font-weight: 700;
}

.border-bottom-amb {
	border-bottom: 1px solid #ccc;
}

.border-top-amb {
	border-top: 1px solid #ccc;
}


.modal-body {
    padding: 3rem;
}

.modal-dialog.modal-wide {
	max-width: 768px;
}

/* Social */

.social {
	float: right;
}

.follow-wrapper {
	display: flex;
	flex-direction: row;
	position: relative;
}

.follow-wrapper a.follow-icon {
    display: flex;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 2px solid var(--social);
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    color: inherit;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    margin-right: 8px;
	color: var(--social);
}



@media not all and (pointer: coarse) {
.follow-wrapper a.follow-icon:hover {
	background-color: var(--social);
	color: var(--dark-blue);
	text-decoration: none;
}
} 

.follow-wrapper .follow-icon:last-child {
  margin-right: 0;
}

.follow-wrapper .follow-icon .icon {
    font-size: 16px;
	align-self: center;
}


/* Typofrafi */

strong {
	font-weight: 700;
}

b {
	font-weight: 700;
}
	
h1, h2, h3, h4, h5, h6 {
	font-family: var(--h-font);
	font-weight: 700;
	font-style: normal;
}

.heading {
	font-size: min(calc(14px + 4vw), 70px);
	line-height: 1.1;
	background: linear-gradient(90deg, #fff, var(--light-blue));
	-webkit-background-clip: text;   /* Gør, at baggrunden kun vises i teksten */
	-webkit-text-fill-color: transparent; /* Gør selve teksten gennemsigtig */
}

.sub-heading {
	padding-right: 50px;
}

.video-caption h1 {
	word-spacing: -0.1rem;
	letter-spacing: -0.1rem;
	font-weight: 700;
	line-height: 90%;
	font-size: 4rem;
	padding: 0 25%;
}

.slider-text p {
    font-size: 16px;
}

@media not all and (pointer: coarse) {
a:link, a:visited, a:hover, a:active {
	color: inherit;
	text-decoration: underline;
}

.section-footer h5 {
	font-size: 16px;
}

}  

.section-footer a, .section-footer a:hover, .section-footer p {
	color: inherit;
	margin-top: 0;
	margin-bottom: 0;
	text-decoration: none;
}

dl, ol, ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

.permission {
	font-size: var(--permission-text);
}

.caps {
	text-transform: uppercase;
}

/* Forms */

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  text-transform: none;
  color: #7e8690 !important;
  opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  text-transform: none;
  color: #7e8690 !important;
  opacity: 1;
}

::-ms-input-placeholder { /* Microsoft Edge */
  text-transform: none;
  color: #7e8690 !important;
  opacity: 1;
}

select {
	color: #7e8690 !important;
}

select.form-control.dropdown {
	height: auto;
	min-height: 50px;
	padding: 10px 10px 10px 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;	
}

.dropdown-wrapper {
	position: relative;
}


.dropdown-wrapper::before {
	content: "\e900";
	position: absolute;
	z-index: 1;
	font-family: 'ambition-standard';
	right: 10px;
	top: 25%;
	pointer-events: none;
}

.dropdown-wrapper {
	position: relative;
}


.dropdown-wrapper::before {
	content: "\e900";
	position: absolute;
	z-index: 1;
	font-family: 'ambition-standard';
	right: 10px;
	top: 25%;
	pointer-events: none;
}

.form-control {
	height: 50px;
	border: 1px solid #dee4ea;
	border-radius: var(--radius);
	margin-top: 10px;
	color: var(--blue);
}

.form-control:focus {
    background-color: #fff;
    border-color: var(--blue);
    outline: 0;
    box-shadow: none;
    color: var(--blue);
}

.titleCase {
  text-transform: capitalize;
}

.error-text {
    color: #f00000;
    display: block;
    font-size: 13px;
}

.placeholder {
	position: absolute;
	left: 15px;
	top: 10px;
}

.form-check-label {
    margin-bottom: 0;
	margin-left: 4px;
	width: calc(100% - 30px);
    float: left;
	text-transform: none;
}

.form-radio {
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     display: inline-block;
     position: relative;
     background-color: #fff;
     color: #666;
     top: -5px;
     height: 30px;
     width: 30px;
     border: 1px solid #ced4da;
     border-radius: 50px;
     cursor: pointer;     
     margin-right: 7px;
     outline: none;
     float: left;
}

.form-radio.form-checkbox {
	border-radius: 0;
}

.form-radio:checked::before {
     position: absolute;
     font: 700 13px/1 Arial, sans-serif;
     left: 11px;
     top: 7px;
     content: '\02143';
     transform: rotate(40deg);
     color: #000;
}

@media not all and (pointer: coarse) {
.form-radio:hover {
     background-color: #f7f7f7;
}
}

.form-radio:checked {
     background-color: #fff;
}

.badge-secondary {
    color: #fff;
    background-color: #133632;
}

.badge {
    display: inline-block;
    padding: 0.1em 0.4em 0.25em 0.4em;
    font-size: 100%;
    font-weight: 400;
    min-width: 70px;
}

textarea.besked {
	resize: none;
}



/* Knapper */

.btn {
	border: none;
	cursor: pointer !important;
    cursor: hand !important;
    height: 50px;
	outline: none !important;
	white-space:normal !important;
    word-wrap: break-word;
    border-radius: var(--radius);
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	padding: 0.5rem 2rem;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
}

@media not all and (pointer: coarse) {

.btn:hover {
    color: #fff;
    opacity: 0.8;
}
}


.btn-center {
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.btn-card {
	width: 100%;
}

.btn-link {
    font-weight: inherit;
    color: inherit;
}

.btn-back, .btn-cancel {
	padding: 0;
}

.btn-link.focus, .btn-link:focus {
    text-decoration: none;
}

button:focus {
    outline: none;
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none;
}

.btn-primary,.btn-primary.disabled, .btn-primary:disabled, .btn-primary:active, .btn-primary.active, .btn-primary:focus, .btn-primary:hover, .open>.dropdown-toggle.btn-primary, .btn-primary:not([disabled]):not(.disabled):active {
    color: var(--btn-primary-txt);
    background-color:  var(--btn-primary-bg);
}

.btn-default,.btn-default.disabled, .btn-default:disabled, .btn-default:active, .btn-default.active, .btn-default:focus, .btn-default:hover, .open>.dropdown-toggle.btn-default, .btn-default:not([disabled]):not(.disabled):active {
    color: var(--btn-default-txt);
    background-color: var(--btn-default-bg);
}

.btn-secondary,.btn-secondary.disabled, .btn-secondary:disabled, .btn-secondary:active, .btn-secondary.active, .btn-secondary:focus, .btn-secondary:hover, .open>.dropdown-toggle.btn-secondary, .btn-secondary:not([disabled]):not(.disabled):active {
    color: var(--btn-secondary-txt);
    background-color: var(--btn-secondary-bg);
    border: 1px solid var(--btn-secondary-border);
}

@media (max-width: 1200px) {

.module-name, .show-module {
	display: none !important;
}

.carousel-item, .banner-item {
	padding-bottom: 28%;
	min-height: 0;
}

}

@media (max-width: 990px) {
.container {
	max-width: 880px;
	padding-left: 25px;
	padding-right: 25px;	
}
}

@media (max-width: 768px) {



.sub-heading {
	padding-right: 0;
}

.carousel-item, .banner-item {
	padding-bottom: 40%;
}

.full-width {
	margin-left: -45px;
	margin-right: -45px;
}
.carousel-row h1 {
	font-size: 5vw;
}

.carousel-row h4 {
	font-size: 2.6vw;
}
h1 {
	font-size: 2rem;
}

h2 {
	font-size: 1.6rem;
}

h3 {
	font-size: 1.4rem;
}

h4 {
	font-size: 1.2rem;
}

.padding-left, .padding-right {
	padding-right: 15px;
	padding-left: 15px;
}

.video-caption h1 {
	font-size: 2.3rem;
	padding-top: 0;
}

}

@media (max-width: 574px) {

html, body {
	font-size: 15px;
}


/* Video */
.videoWrapper {
    height: 270px;
    /* max-height: 260px; */
}

/* Omvendt på mobilen
.main-image {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-left-radius: 100%;
	border-bottom-right-radius: 100%;
}
*/

.stribes {
	background-image: none;
}

.carousel-item, .banner-item {
	padding-bottom: 60%;
}

.carousel-row h1 {
	font-size: 5vw;
}

h1 {
	font-size: 1.7rem;
}

.carousel-row h4 {
	font-size: 4vw;
}

.carousel-indicators {
    bottom: -5px;
}

.full-width {
	margin-left: -15px;
	margin-right: -15px;
}

.narrow-mobile-image {
	width: 40% !important;
	margin: 0 auto;
	display: block;
}

.btn-mobile {
	width: 100%;
}

.social {
	float: none;
}



.slider-text p {
    font-size: 13px;
}

}
