@charset "UTF-8";

:root {
	--color-black: 0,0,0;
	--color-blue: 0,139,210;
	--color-cyan: 92,200,255;
	--color-marine-blue: 0,4,56;
	--color-orange: 239,79,38;
	--color-red: 255,39,0;
	--color-white: 255,255,255;
	--color-yellow: 255,196,0;
	
	--bckg-blue: 2,80,147;

    
    --transition-duration-bt: 0.4s;
	--transition-timing-linear: linear;
	--transition-timing-ease-out: cubic-bezier(0,0.6,0.4,1);
	--transition-timing-ease-in-out: cubic-bezier(0.6,0,0.4,1);
}

html {
	height: 100%;
	font-family: 'Poppins', sans-serif;
}

body {
	width: 100%;
	height: 100%;
	background: rgb(var(--color-white));
	overflow-y: scroll;
}

body.noscroll {
	overflow: hidden;
}

* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
}

img, iframe, video {
	display: block;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, hr, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figure, figcaption, hgroup, menu, footer, header, nav, button, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: none;
}

ul, li {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
}

h1, h2, h3, h4, h5 {
	font-weight: normal;
}

button {
	background: none;
	border-radius: 0;
	cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

*:focus {
    outline: 0;
}


/*************************************
	Header
 *************************************/


header .ticker {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 35px;
	background-color: rgb(var(--color-black));
    background-image: linear-gradient(rgba(var(--color-white), 0), rgba(var(--color-white), 0.1));
    color: rgb(var(--color-white));
	font-weight: 400;
	font-size: 16px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    padding: 6px 12px;
}

header {
    display: block;
    position: absolute;
    top: 0;
	margin: 0;
    padding: 0;
    z-index: 200;
}

header .logo {
	display: block;
	padding: min(40px, (40 / 1600) * 100vw);
}

header .logo img,
footer .logo img {
	width: auto;
	height: min(68px, (68 / 1600) * 100vw);
}

header nav ul {
    display: flex;
    flex-flow: column nowrap;
    row-gap: 0.75em;
	width: min(295px, (295 / 1600) * 100vw);
	background: rgb(var(--color-marine-blue));
	padding: min(35px, (35 / 1600) * 100vw) min(20px, (20 / 1600) * 100vw) min(35px, (35 / 1600) * 100vw) min(50px, (50 / 1600) * 100vw);
}

header nav ul li {
    position: relative;
	min-height: 0vh;
    color: rgb(var(--color-white));
    font-weight: 400;
	font-size: clamp(14px, (18 / 1600) * 100vw, 18px);
	letter-spacing: 0.1em;
    line-height: 1.2em;
	text-transform: uppercase;
}

header nav ul li.active {
    color: rgb(var(--color-blue));
}

header nav ul li a {
    transition: color 0.2s linear;
}

header nav ul li a:hover {
    color: rgb(var(--color-cyan));
}

header .logos {
	display: flex;
	column-gap: min(16px, ((16) / 1600) * 100vw);
	position: absolute;
	left: calc(min(295px, ((295) / 1600) * 100vw) + min(40px, (40 / 1600) * 100vw));
	top: min(68px + 80px, ((68 + 80) / 1600) * 100vw);
	
}

header .logo-ulc,
header .logo-xra {
	background: rgb(var(--color-white));
	padding: min(8px, (8 / 1600) * 100vw);
}

header .logo-ulc {
	width: min(104px, (104 / 1600) * 100vw);
}

header .logo-ulc img {
	width: 100%;
	height: auto;
}

header .logo-xra {
	height: min(100px, (100 / 1600) * 100vw);
}

header .logo-xra img {
	width: auto;
	height: 100%;
}

.logos-can-ulc {
	display: none;
}


/*************************************
	Sections
 *************************************/


.container {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100%;
}

main {
	flex: 1 0 auto;
	display: block;
	position: relative;
    /*overflow: hidden;*/
}

.bckg {
	display: block;
	position: sticky;
	bottom: 0;
	z-index: 10;
}

.bckg > div {
	display: block;
	position: absolute;
	width: 100vw;
	height: 100vh;
	left: 0;
	bottom: 0;
}

.bckg:before,
.bckg:after {
	content: "";
	display: block;
	position: absolute;
	width: 100vw;
	height: 100vh;
	left: 0;
	bottom: 0;
	z-index: 20;
}

.bckg:before {
	mix-blend-mode: multiply;
}

.bckg.blue:before,
.bckg.blue:after {
	background: rgb(2,80,147);	
}

.bckg.cyan:before,
.bckg.cyan:after {
	background: rgb(0,139,210);	
}

.bckg.green:before,
.bckg.green:after {
	background: rgb(0,110,80);	
}

.bckg.light-green:before,
.bckg.light-green:after {
	background: rgb(90,183,108);	
}

.bckg.red:before,
.bckg.red:after {
	background: rgb(var(--color-red));	
}

body.loaded .bckg:before,
body.loaded .bckg:after {
	opacity: 0;
	transition: opacity 0.4s linear;
}

.bckg img {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	object-position: center top;
}

section {
	display: block;
	position: relative;
	width: 100%;
	z-index: 30;
}

sup {
	display: inline-block;
	position: relative;
	font-size: 0.6em;
	vertical-align: top;
	margin-top: -0.3em;
}

.text-decoration-underline {
	text-decoration: underline !important;
}

.text-transform-none {
	text-transform: none !important;
}

.text-transform-uppercase {
	text-transform: uppercase !important;
}

.white-space-nowrap {
	white-space: nowrap;
}

.bt {
	display: inline-block;
	position: relative;
    border: solid 1px rgb(var(--color-white));
	border-radius: 9999px;
	color: rgb(var(--color-white));
    text-align: center;
	text-transform: uppercase;
	margin-top: 1.5em;
	padding: 0.6667em 2em;
    opacity: 0;
    transition: background-color 0.4s linear, border-color 0.4s linear;
}

section.color-blue .bt {
    border-color: rgb(var(--color-blue));
	color: rgb(var(--color-blue));
}

.bt.show {
    opacity: 1;
    transition: opacity 0.4s linear;
}

.bt:hover {
    background: rgb(var(--color-marine-blue));
    border-color: rgb(var(--color-marine-blue));
}


/*************************************
	Header
 *************************************/


section.header {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	padding: min(150px, (150 / 1600) * 100vw) min(250px, (250 / 1600) * 100vw);
	padding-top: min((80px + 68px + 35px), ((80 + 68 + 35) / 1600) * 100vw);
}

section.header h1 {
	min-height: 0vh;
	color: rgb(var(--color-white));
	font-weight: 500;
	font-size: min(50px, (50 / 1600) * 100vw);
	letter-spacing: 0.01em;
	line-height: 1.1818em;
	text-align: right;
	opacity: 0;
}

section.header.color-blue h1 {
	color: rgb(var(--color-blue));
}

section.header h1 > span {
	display: inline-block;
	white-space: nowrap;
}

section.header h1 > span > span {
	display: inline-block;
	opacity: 0;
	transform: scale(1.2);
}

section.header h1.show {
	opacity: 1;
}

section.header h1.show > span > span {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.2s linear, transform 0.8s cubic-bezier(0,0.6,0.4,1);
    transition-delay: calc(var(--transition-delay) * 0.02s);
}

section.grid {
	position: relative;
	color: rgb(var(--color-white));
	padding: 0 min(250px, (250 / 1600) * 100vw) min(225px, (225 / 1600) * 100vw) min(375px, (375 / 1600) * 100vw);
}

section.grid.color-blue {
	color: rgb(var(--color-blue));
}

section.grid > div,
section.grid > div > div {
	position: relative;
}

section.grid h2 {
	display: block;
	min-height: 0vh;
	color: rgb(var(--color-cyan));
	font-weight: 500;	
	font-size: clamp(18px, (30 / 1600) * 100vw, 30px);
	line-height: 1.1818em;
	opacity: 0;
}

section.grid h2:first-child:before,
section.grid p:first-child:before {
	content: "";
	display: block;
	position: absolute;
	width: 2px;
	height: 100%;
	left: max(-40px, (-40 / 1600) * 100vw);
	top: 0;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: left top;
}

section.grid.gradient-cyan h2:first-child:before,
section.grid.gradient-cyan p:first-child:before {
	background-image: linear-gradient(rgba(var(--color-cyan),1), rgba(var(--color-cyan),0));
}

section.grid.gradient-yellow h2:first-child:before,
section.grid.gradient-yellow p:first-child:before {
	background-image: linear-gradient(rgba(var(--color-yellow),1), rgba(var(--color-yellow),0));
}

section.grid p {
	min-height: 0vh;
	font-weight: 300;
	font-size: clamp(16px, (20 / 1600) * 100vw, 20px);
	line-height: 1.5em;
    opacity: 0;
}

section.grid * + p,
section.grid * + ul {
	margin-top: 1.5em;
}

ol.ordered-list {
    counter-reset: count-ordered-list;
}

ol.ordered-list li,
ul.unordered-list li {
	position: relative;
	margin-top: 0.75em;
	padding-left: 1rem;
}

ol.ordered-list li:before {
    content: counter(count-ordered-list)".";
	counter-increment: count-ordered-list;
    display: inline-block;
    position: absolute;
    left: 0;
}

ul.unordered-list li:before {
    content: "•";
    display: inline-block;
    position: absolute;
    left: 0;
}

section.grid li {
	position: relative;
	min-height: 0vh;
	font-weight: 300;
	font-size: clamp(16px, (20 / 1600) * 100vw, 20px);
	line-height: 1.1818em;
	opacity: 0;
}

section.grid h2.show,
section.grid p.show,
section.grid li.show {
	opacity: 1;
	transition: opacity 0.4s linear;
    transition-delay: calc(var(--transition-delay) * 0.02s);
}

section.grid h2:first-child.show:before,
section.grid p:first-child.show:before {
    opacity: 1;
    transform: scaleY(1);
    transition: opacity 0.8s linear, transform 1.2s cubic-bezier(0.7,0,0.3,1);
    transition-delay: inherit;
}

section.grid ul:not(.unordered-list) li + li {
	margin-top: 1.75em;
}

section.grid ul:not(.unordered-list) li + li:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	left: 0;
	top: -0.875em;
    transform: scaleX(0);
    transform-origin: left top;
}

section.grid.gradient-cyan ul:not(.unordered-list) li + li:before {
	background-image: linear-gradient(90deg, rgba(var(--color-cyan),1), rgba(var(--color-cyan),0));
}

section.grid.gradient-yellow ul:not(.unordered-list) li + li:before {
	background-image: linear-gradient(90deg, rgba(var(--color-yellow),1), rgba(var(--color-yellow),0));
}

section.grid ul:not(.unordered-list) li + li.show:before {
    transform: scaleX(1);
    transition: opacity 0.8s linear, transform 1.2s cubic-bezier(0.7,0,0.3,1);
    transition-delay: inherit;
}

section.grid.grid-1col:not(.full) > div {
	padding-right: min(250px, (250 / 1600) * 100vw);
}

section.grid.grid-2cols > div {
	display: grid;
	grid-template-columns: 43% 57%;
	grid-column-gap: min(80px, (80 / 1600) * 100vw);
	grid-row-gap: min(160px, (160 / 1600) * 100vw);
}

section.grid.grid-2cols h2 {
	color: rgb(var(--color-white));
}

section.grid.color-blue.grid-2cols h2 {
	color: rgb(var(--color-blue));
}

section.grid.grid-2cols h2 + h2 {
	margin-top: 1.1818em;
}

section.grid.grid-3cols > div {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: min(80px, (80 / 1600) * 100vw);
	grid-row-gap: min(160px, (160 / 1600) * 100vw);
}

section.grid.grid-2cols > div > div:first-of-type {
	align-self: start;	
}

section.grid.grid-3cols p {
	font-weight: 300;
}

img.logo {
    display: inline-block;
    width: auto;
    height: min(80px, (80 / 1600) * 100vw);
}

img.logo + img.logo {
    margin-left: 2em;
}


/*************************************
	Form
 *************************************/


form {
	position: relative;
	font-size: 0px;
	counter-reset: inp_radio;
}

form.hide {
	height: 0 !important;
	overflow: hidden;
	transition: height 0.8s var(--transition-timing-ease-in-out);
}

form input, 
form textarea,
form select,
form label,
form button[type="submit"] {
    display: block;
    position: relative;
    color: rgb(var(--color-marine-blue));
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2em;
    margin: 0;
	padding: 0;
}

form select option {
    color: rgb(var(--color-marine-blue));
}

form label {
	text-transform: uppercase;
}

form label.select {
	overflow: hidden;
}

form input, 
form textarea,
form select,
form label:not(.checkbox) span {
    padding: 0.5em 0.75em;
}

form input, 
form textarea,
form select {
    width: 100%;
    min-height: 0;
    background: rgba(var(--color-white),1);
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
	appearance: none;
    transition: min-height 0.4s var(--transition-timing-ease-in-out);
}

form select {
	padding-right: 2.5em;
}

form textarea {
	height: 2.2em;
	transition: height 0.4s;
}

form textarea.focus-in {
	height: 5.8em;
}

form input:-webkit-autofill,
form input:-webkit-autofill:hover, 
form input:-webkit-autofill:focus, 
form input:-webkit-autofill:active {
    -webkit-text-fill-color: rgb(var(--color-marine-blue));
	-webkit-box-shadow: 0 0 0 30px rgb(var(--color-white)) inset !important;
	box-shadow: 0 0 0 30px rgb(var(--color-white)) inset !important;
}

form input[type="radio"] {
	display: block;
	width: 0;
	background: transparent;
	border: none;
	margin: 0;
	padding: 0;
}

form input[type="radio"]:before {
	content: counter(inp_radio, upper-alpha);
	counter-increment: inp_radio;
	transition: color 0.2s linear;
}

form label.radio,
form input[type="radio"],
form label.checkbox,
form input[type="checkbox"], {
	cursor: pointer;
}

form input[type="radio"]:hover:before,
form input[type="radio"]:checked:before,
form label.radio:hover,
form label.radio.focus-in {
	color: rgb(var(--color-marine-blue));
}

form label.select:after,
section.plans div.plans-selectors > form label.select:after {
	content: "";
	display: block;
	position: absolute;
	width: 14px;
	height: 14px;
	right: 0.75em;
	top: 50%;
	border-right: solid 1px rgb(var(--color-marine-blue));
	border-bottom: solid 1px rgb(var(--color-marine-blue));
	transform: rotate(45deg) translate(-50%, -50%);
	transform-origin: center center;
}

form label {
	transition: padding 0.4s var(--transition-timing-ease-in-out);
}

form label + label {
	margin-top: 1.3333em;
}
form label:not(.select):not(.radio):not(.textarea).focus-in {
    padding-top: 2.2em;
}

form label:not(.checkbox) span {
	position: absolute;
	transform-origin: left bottom;
	transition: color 0.4s linear, transform 0.4s var(--transition-timing-ease-in-out);
	z-index: 10;
}

form label:not(.select):not(.radio).focus-in span {
	color: rgb(var(--color-white));
    transform: scale(0.8) translateY(-120%);
    transition: color 0.4s 0.2s linear, transform 0.4s 0.2s var(--transition-timing-ease-in-out);
}

form label.radio {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 2em;
	transition: color 0.2s linear;
}

form label.checkbox {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 1em;
    margin:  2em 0;
    padding: 0;
    transform: none;
}

form label.checkbox.small {
    align-items: center;
    margin: 0 0 16px 0;
    margin: 0.8889em 0;
}

form label.checkbox.consent span {
	font-size: 16px;
	opacity: 0.3;
}

form input[type="checkbox"] {
    align-self: start;
	width: auto;
	height: auto;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	font-size: 0;
	margin: 0;
	padding: 0;	
}

form input[type="checkbox"]:before {
	content: "\f00c";
	display: block;
	width: 38px;
	height: 38px;
	min-height: 0vh;
	background: transparent;
	border: solid 1px rgb(var(--color-marine-blue));
	color: rgba(var(--color-marine-blue), 0);
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 16px;
	line-height: 38px;
	text-align: center;
	transition: color 0.2s linear;
}

form label.checkbox.small input[type="checkbox"]:before {
    content: "\2715";
	width: 28px;
    height: 28px;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
}

form input[type="checkbox"]:checked:before {
    color: rgba(var(--color-marine-blue), 1);
}

form button[type="submit"] {
	background: rgb(var(--color-orange));
	border-radius: 9999px;
	color: rgb(var(--color-white));
	text-transform: uppercase;
	margin-top: 3rem;
	padding: 0.6667em 2em;
}

form button[type="submit"]:disabled {
	opacity: 0.25;
}

.error {
	color: #FF0000 !important;
}

.takk {
	display: block;
	position: relative;
	animation: kf-fade-in 0.4s 0.8s linear both;
}

.takk p {
	opacity: 1 !important;
	transition: none !important;
}


/*************************************
	Footer
 *************************************/


footer {
	background: rgb(var(--color-marine-blue));
	color: rgba(var(--color-white),0.75);
	z-index: 30;
}

footer > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: min(40px, (40 / 1600) * 100vw);
}

footer .logo {
	width: min(335px, (335 / 1600) * 100vw);
}

footer .contact {
	flex-grow: 1;
	font-size: 16px;
	line-height: 1.6em;
	opacity: 0.75;
}

footer .copyright {
	font-size: 12px;
	line-height: 1.6em;
	text-transform: uppercase;
	opacity: 0.75;
}


/*************************************
	Lightbox
 *************************************/


#lightbox, #lightbox .lightbox_bckg {
	position: fixed;
	display: none;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

#lightbox {
	z-index: 2000;
}

#lightbox.show {
	display: block;
	animation: kf-fade-in 0.2s linear 0s forwards;
}

#lightbox .lightbox_bckg {
	display: block;
	background: rgba(var(--color-black),0.75);
}

#lightbox button.bt-close {
	width: 60px;
	height: 60px;
	color: rgb(var(--color-white));
	font-size: 32px;
	line-height: 60px;
	text-align: center;
}

#lightbox button.bt-close:after {
	content: "\2715";
}

#lightbox div.lightbox-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
    pointer-events: none;
}

#lightbox div.lightbox-content {
	display: block;
	position: relative;
	box-shadow: 0 0 30px rgba(var(--color-black), 0.5);
    pointer-events: auto;
}

@keyframes kf-fade-in {
    0%   {opacity: 0;}
    100%  {opacity: 1;}
}

.bp-768 {
    display: none;
}

@media screen and (min-width: 1601px) {
    .bp-1024 {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .bp-1024 {
        display: none;
    }
    
    .bp-768 {
        display: block;
    }
    
    header {
        width: 100%;
        height: calc(((40 + 68 + 40) / 375) * 100vw);
    }
    
    header .logo {
        display: flex;
        justify-content: center;
        padding: calc((40 / 375) * 100vw) 0;
    }

    header .logo img,
    footer .logo img {
		height: calc((68 / 375) * 100vw);
    }
    
    header nav {
        position: relative;
        height: calc(((40 + 68 + 40) / 375) * 100vw);
        background-image: linear-gradient(rgba(var(--color-white), 0) calc(((40 + 68 + 40) / 375) * 100vw), rgb(var(--color-marine-blue)) calc(((40 + 68 + 40) / 375) * 100vw));
        overflow: hidden;
        transition: height 0.4s cubic-bezier(0.4,0.4,0.4,1);
    }
    
    header nav ul {
        position: absolute;
        width: 100%;
        top: 0;
        background: transparent;
        padding: calc(((40 + 68 + 40 + 40) / 375) * 100vw) calc((50 / 375) * 100vw) calc((40 / 375) * 100vw) calc((50 / 375) * 100vw);
        pointer-events: none;
    }
    
    header nav ul li {
        font-size: 18px;
        pointer-events: auto;
    }
	
	header .logos {
		display: none;
	}
	
	.logos-can-ulc {
		display: flex;
		column-gap: calc((20 / 375) * 100vw);
		padding: calc((20 / 375) * 100vw) 0;
	}
	
	.logos-can-ulc img {
		width: auto;
		height: calc((50 / 375) * 100vw);
	}

    
    /*--  nav-open  --*/

    body.nav-open {
        overflow: hidden;
    }
    
    body.nav-open header,
    body.nav-open header nav {
        height: 100vh;
    }
    

    /*--  nav ico  --*/


    header div.ico {
        display: block;
        position: absolute;
        left: calc((35 / 375) * 100vw);
        top: calc(((40 + 68 + 40) / 375) * 100vw);
        cursor: pointer;
        transform: translateY(-50%);
        z-index: 20;
    }

    header div.ico > div {
        display: block;
        position: relative;
        width: calc((30 / 375) * 100vw);
        height: calc((15 / 375) * 100vw)
    }

    header div.ico span {
        display: block;
        position: absolute;
        width: 100%;
        height: 3px;
        background: rgb(var(--color-white));
        transition: width 0s 0.3s, background 0.3s 0.3s, opacity 0.3s 0.3s, top 0.3s 0.3s, transform 0.3s;
    }

	body.revert header div.ico span {
        background: rgb(var(--color-marine-blue));
    }

    body.nav-open header div.ico span {
        transition: width 0s 0.3s, background 0.3s, opacity 0.3s, top 0.3s, transform 0.3s 0.3s;
    }

    header div.ico span:nth-child(1) {
        top: 0px;
    }

    header div.ico span:nth-child(2) {
        top: calc(50% - 1.5px);
    }

    header div.ico span:nth-child(3) {
        top: calc(100% - 3px);
    }

    body.nav-open header div.ico span:nth-child(1) {
        top: calc(50% - 1.5px);
        transform: rotate(45deg);
    }

    body.nav-open header div.ico span:nth-child(2) {
        opacity: 0;
    }

    body.nav-open header div.ico span:nth-child(3) {
        top: calc(50% - 1.5px);
        width: 100%;
        transform: rotate(-45deg);
    }

	
    /*************************************
		Header
	 *************************************/
    
    
    section.header {
        justify-content: flex-start;
        height: calc((420 / 375) * 100vw);
        padding: calc((70 / 375) * 100vw) calc((35 / 375) * 100vw);
    }
    
    section.header h1 {
        font-size: calc((42 / 375) * 100vw);
        text-align: left;
    }

    section.header h1 br {
        display: none;
    }
	
	.text-align-center-mobile {
		text-align: center
	}
    
    section.grid {
        padding: calc((100 / 375) * 100vw) calc((35 / 375) * 100vw);
        padding-top: 0;
    }
    
    section.grid p {
        line-height: 1.625em;
    }
    
    section.grid * + p {
        margin-top: 0.625em;
    }
	
	section.grid h2 + p {
        margin-top: 1.625em;
    }
    
    section.grid h2 {
        font-size: calc((26 / 375) * 100vw);
    }
    
    section.grid.grid-1col:not(.full) > div {
        padding-right: 0;
    }

	section.grid.grid-2cols h2 + h2 {
        margin-top: 1.1818em;
    }

    section.grid.grid-2cols > div,
    section.grid.grid-3cols > div {
		grid-template-columns: auto;
		grid-row-gap: calc((80 / 375) * 100vw);
    }
    
    section.grid h2:first-child:before,
    section.grid p:first-child:before {
		content: none;
    }
	
    section.grid.grid-3cols > div > div:before {
        width: 100%;
        height: 3px;
        left: 0;
        top: calc((-22 / 375) * 100vw);
        transform: scaleX(0);
    }
    
    section.grid.gradient-cyan > div > div:before {
        background-image: linear-gradient(90deg, rgba(var(--color-cyan),1), rgba(var(--color-cyan),0));
    }

    section.grid.gradient-yellow > div > div:before {
        background-image: linear-gradient(90deg, rgba(var(--color-yellow),1), rgba(var(--color-yellow),0));
    }
    
    img.logo {
        display: block;
        width: auto;
        height: calc((60 / 375) * 100vw);
    }

    img.logo + img.logo {
        margin-top: 0.875em;
        margin-left: 0;
    }

	 
    /*************************************
        Footer
     *************************************/

	
    footer > div {
        flex-direction: column;
        align-items: flex-start;
        row-gap: calc((35 / 375) * 100vw);
        padding: calc((35 / 375) * 100vw);
    }

    footer .logo {
        width: auto;
    }

    /*footer .contact {
        line-height: 1.4em;
    }

    footer .copyright {
        line-height: 1.6667em;
    }*/
	
    footer .contact,
	footer .copyright {
        line-height: 2em;
    }
}

.body-preload,
.preload {
	display: none !important;
}