/* google font */
/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');*/

/*
@font-face {
	font-family: fontname;
	font-weight: normal;
	src: url('../fonts/file-regular.woff') format('woff');
	font-display: auto;
	}

@font-face {
	font-family: fontname;
	font-weight: bold;
	src: url('../fonts/file-bold.woff') format('woff');
	font-display: auto;
	}
*/




/*

TEMPLATE

xs <=600
s <=900
m >900 <=1280
l >1280

*/



/* RESET */

* {
	margin: 0;
	padding: 0;
	outline: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

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

audio,
iframe,
video {
	display: block;
}



/* TYPOGRAPHY */

/* font */
html,
body,
button,
select,
input,
textarea {
	font: 400 16px/24px roboto, arial, sans-serif;
	color: #0B2659;
	-webkit-font-smoothing: antialiased;
}

/* headings */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
h6 {
	font-family: 'gyst-variable';
	font-variation-settings: "wght"500;
	font-weight: 700;
}

.gyst {
	font-family: 'gyst-variable';
}

h1,
.h1 {
	font-size: 3.4rem;
	line-height: 4rem
}

h2,
.h2 {
	font-size: 2.25rem;
	line-height: 3rem
}

h3,
.h3 {
	font-size: 1.5rem;
	line-height: 2rem
}

h4,
.h4 {
	font-size: 1rem;
	line-height: 1.5rem
}

/* paragraphs */
h1+p,
h2+p,
h3+p,
h4+p,
p+p {
	margin-top: 1.25rem
}

p+h1,
p+h2,
p+h3,
p+h4 {
	margin-top: 2rem
}

/* lists */
ul,
ol {
	margin: 2rem 0;
	padding-left: 3rem;
}

ul:first-child {
	margin-top: 0
}

ul:last-child {
	margin-bottom: 0
}

/* sub-lists */
ul ul,
ol ol,
ul ol,
ol ul {
	margin: 0;
}


/* text */
.fs--1 {
	font-size: 1rem;
	line-height: 1.5rem
}

.fs--2 {
	font-size: 2rem;
	line-height: 2.5rem
}

.fs--3 {
	font-size: 3rem;
	line-height: 3.5rem
}

.text--xs {
	font-size: .75rem;
	line-height: 1rem
}

.text--s {
	font-size: .875rem;
	line-height: 1.25rem
}

.text--m {
	font-size: 1.25rem;
	line-height: 1.75rem
}

.text--l {
	font-size: 2rem;
	line-height: 2.5rem
}

.text--upper {
	text-transform: uppercase
}

.text--lower {
	text-transform: lowercase
}

.td--none {
	text-decoration: none
}

.td--underline {
	text-decoration: underline
}

/* weight, style */
b,
strong,
.bold {
	font-weight: 700
}

.medium {
	font-weight: 500
}

.normal {
	font-weight: 400
}

.italic {
	font-style: italic
}

/* text align */
.ta--c {
	text-align: center
}

.ta--l {
	text-align: left
}

.ta--r {
	text-align: right
}

.ta--j {
	text-align: justify
}

.nowrap {
	white-space: nowrap
}

/* links */
a,
.link {
	color: #0B2659;
	text-decoration: underline;
	font-weight: bold;
	cursor: pointer;
}

h1 a,
h2 a,
h3 a,
h4 a {
	color: inherit;
	font-weight: inherit;
	text-decoration: none;
}



/* LAYOUT */

.inner {
	max-width: 1300px;
	margin: auto;
	padding: 0 2rem;
}

.inner--s {
	max-width: 600px
}

.inner--m {
	max-width: 800px
}

.inner--l {
	max-width: 1100px
}

.inner--f {
	max-width: none
}

/* full */

.inner--vxs {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.inner--vs {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.inner--vm {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.inner--vl {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.inner--npt {
	padding-top: 0;
}

.block {
	display: block
}

.inline-block {
	display: inline-block
}

.inline-flex {
	display: inline-flex
}

.inline {
	display: inline
}

.none {
	display: none
}

.static {
	position: static
}

.relative {
	position: relative
}

.absolute {
	position: absolute
}

.fixed {
	position: fixed
}

.sticky {
	position: sticky
}

.center--x,
.center--y,
.center--xy {
	position: absolute;
}

.center--x {
	left: 50%;
	transform: translateX(-50%)
}

.center--y {
	top: 50%;
	transform: translateY(-50%)
}

.center--xy {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%)
}

.scroll {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.overflow--hidden {
	overflow: hidden
}

.overflow--auto {
	overflow: auto
}


/* FLEX */

.flx {
	display: flex
}

.aic {
	align-items: center
}

.ais {
	align-items: flex-start
}

.aie {
	align-items: flex-end
}

.jcc {
	justify-content: center
}

.jcb {
	justify-content: space-between
}

.jca {
	justify-content: space-around
}

.jcs {
	justify-content: flex-start
}

.jce {
	justify-content: flex-end
}

.fcc {
	display: flex;
	align-items: center;
	justify-content: center;
}

.fcb {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.fdr {
	flex-direction: row
}

.fdc {
	flex-direction: column
}

.fdrr {
	flex-direction: row-reverse
}

.fdcr {
	flex-direction: column-reverse
}

.flx--wrap {
	flex-wrap: wrap
}

/* flex children */
.fg--0 {
	flex-grow: 0
}

.fg--1 {
	flex-grow: 1
}

.f2--0 {
	flex-shrink: 0
}

.fs--1 {
	flex-shrink: 1
}



/* GRID */

.grd {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
}

.gg--1 {
	grid-gap: 1rem
}

.gg--2 {
	grid-gap: 2rem
}

.gg--3 {
	grid-gap: 3rem
}

.grd--2 {
	grid-template-columns: repeat(2, 1fr)
}

.grd--3 {
	grid-template-columns: repeat(3, 1fr)
}

.grd--4 {
	grid-template-columns: repeat(4, 1fr)
}

.grd--5 {
	grid-template-columns: repeat(5, 1fr)
}

.grd--6 {
	grid-template-columns: repeat(6, 1fr)
}

.gc--1 {
	grid-column: span 1
}

.gc--2 {
	grid-column: span 2
}

.gc--3 {
	grid-column: span 3
}

.gc--4 {
	grid-column: span 4
}

.gc--5 {
	grid-column: span 5
}

.gc--6 {
	grid-column: span 6
}

.gc--7 {
	grid-column: span 7
}

.gc--8 {
	grid-column: span 8
}

.gc--9 {
	grid-column: span 9
}

.gc--10 {
	grid-column: span 10
}

.gc--11 {
	grid-column: span 11
}

.gc--12 {
	grid-column: span 12
}




/* MARGINS */

.m--0 {
	margin: 0
}

/* reset */
.mt--0 {
	margin-top: 0rem
}

.mt--1 {
	margin-top: 1rem
}

.mt--2 {
	margin-top: 2rem
}

.mt--3 {
	margin-top: 3rem
}

.mt--4 {
	margin-top: 4rem
}

.mr--1 {
	margin-right: 1rem
}

.mr--2 {
	margin-right: 2rem
}

.mb--0 {
	margin-bottom: 0rem
}

.mb--1 {
	margin-bottom: 1rem
}

.mb--2 {
	margin-bottom: 2rem
}

.mb--3 {
	margin-bottom: 3rem
}

.mb--4 {
	margin-bottom: 4rem
}

.ml--1 {
	margin-left: 1rem
}

.ml--2 {
	margin-left: 2rem
}

.p--0 {
	padding: 0
}

/* reset */
.p--1 {
	padding: 1rem
}

.p--2 {
	padding: 2rem
}

.p--3 {
	padding: 3rem
}



/* OTHER */

/* video/iframe */
.iframe,
.video {
	position: relative;
	padding-bottom: 56.25%;
	background: #00000020;
}

.iframe>iframe,
.video>video {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	border: none;
}

/* cursor */
.cursor--default {
	cursor: default
}

.cursor--move {
	cursor: move
}

.cursor--not-allowed {
	cursor: not-allowed
}

.cursor--pointer {
	cursor: pointer
}

/* background cover */
.cover {
	background: center center / cover no-repeat;
}



/* INPUTS */
button,
input,
textarea {
	-webkit-appearance: none;
	appearance: none;
}

input[type="checkbox"] {
	-webkit-appearance: checkbox;
	appearance: checkbox;
}

input[type="radio"] {
	-webkit-appearance: radio;
	appearance: radio;
}



/* MEDIA */

/* large */
/*@media only screen and (min-width: 1281px) {

.l--hide {display: none !important}
.l--show {display: block !important}

}*/

/* medium */
/*@media only screen and (min-width: 901px) and (max-width: 1280px) {

.m--hide {display: none !important}
.m--show {display: block !important}

}*/

/* small */
@media only screen and (max-width: 900px) {

	/*.s--hide {display: none !important}
.s--show {display: block !important}*/

	html,
	body,
	button,
	input,
	textarea {
		font-size: 14px;
		line-height: 22px;
	}

	.inner {
		padding: 0 1.5rem
	}

	.inner--vs {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.inner--vm {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.inner--vl {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

}

/* x-small */
/*@media only screen and (max-width: 600px) {

.xs--hide {display: none !important}
.xs--show {display: block !important}

}*/



/* COLORS */

sup {
	line-height: 0;
	font-size: .75em;
}

.text--black {
	color: #000
}

.text--white {
	color: #fff
}

.text--gold {
	color: #896514
}

.text--yellow {
	color: #FFF26B
}

.text--blue {
	color: #006D8B
}

.text--teal {
	color: #00A6AA
}

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

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

.bg--green {
	background-color: #d7e9da
}

.title {
	color: #896514;
	margin-bottom: 1rem;
}

.title--blue {
	color: #006D8B
}

.title--teal {
	color: #00A6AA
}

.title--light {
	color: #00A6AA
}

.title--yellow {
	color: #fff26b
}

.title+.h3 {
	margin-top: 1rem;
}

.btn {
	display: inline-block;
	min-width: 150px;
	padding: .75rem 3rem;
	border: none;
	border-radius: 2rem;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}

.btn--light {
	background-color: #00A6AA;
	color: #F4F1DF;
	color: #fff
}

.btn--white {
	background-color: #fff;
	color: #000
}

.btn--thin {
	font-size: 0.875rem;
	padding: .5rem 2rem;
	min-width: 100px;
}

.btns {
	display: flex;
	align-items: center;
	justify-content: center;
}

.btns .btn+.btn {
	margin-left: 1rem;
}

.link-chevron {
	display: flex;
	align-items: center;
}

.link-chevron::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: url('/assets/img/chevron-right--blue.svg');
	background-size: cover;
	transform: rotate(180deg);
}


.list li::marker {
	color: #006D8B;
}


.gradient {
	background:
		linear-gradient(to bottom right, #006D8B, transparent 40% 60%, #006D8B),
		radial-gradient(#006D8B, #0B2659);
}

.border {
	position: relative
}

.border::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 100%;
	height: 8px;
	background-image: linear-gradient(to right, #FFF26B, #00A6AA);
}

.border--1::after {
	background-image: linear-gradient(to right, #A69717, #7C721E)
}

.border--2::after {
	background-image: linear-gradient(to right, #896514, #AB5A2A)
}

.border--3::after {
	background-image: linear-gradient(to right, #D80F5A, #8E1C46)
}

.border--4::after {
	background-image: linear-gradient(to right, #C94D4A, #E34660)
}

.border--5::after {
	background-image: linear-gradient(to right, #721C5A, #3B1B46)
}

.bordergreen {
	border-bottom: 8px solid #00a6aa;
}


.box {
	padding: 2rem;
	color: #F4F1DF;
}

.box.border {
	padding-bottom: calc(2rem + 4px);
}

.grid {
	display: grid;
	grid-gap: 3rem;
}

.grid--2 {
	grid-template-columns: repeat(2, 1fr)
}

.grid--3 {
	grid-template-columns: repeat(3, 1fr)
}

.grid--4 {
	grid-template-columns: repeat(4, 1fr)
}

.grid--center {
	margin-top: 3rem
}

@media only screen and (max-width: 900px) {
	.grid--3 {
		grid-template-columns: 1fr
	}
}

@media only screen and (min-width: 900px) {
	.grid--center {
		max-width: calc((100% - 6rem) / 3 * 2 + 3rem);
		margin: auto;
		margin-top: 3rem;
	}
}

.grid>* {
	min-height: 200px;
}

.row {
	display: flex;
	align-items: center;
}

.row__text {
	flex: 0 0 50%;
	margin-right: 8rem;
}

.row__img {
	flex-grow: 1;
}

.row__img img {
	width: 100%;
}

.shape {
	position: relative;
}

.shape img+img {
	position: absolute;
	width: 60%;
	height: 60%;
	object-fit: cover;
	left: 20%;
	top: 20%;
	border-radius: 50%;
}

.row--reverse {
	flex-direction: row-reverse;
}

.row--reverse .row__text {
	margin-right: 0;
	margin-left: 8rem;
}


body {
	background: #F4F1DF;
}


.hidden {
	display: none;
}



.header {
	position: absolute;
	z-index: 1000;
	width: 100%;
	left: 0;
	top: 0;
}

.header--sticky {
	position: fixed;
	background-image: linear-gradient(to bottom right, #006D8B, #0B2659);
	box-shadow: 0 .125rem .25rem #00000020;
}

.header--beige {
	background: #F4F1DF;
}

.header a {
	color: #fff
}

.header--beige a {
	color: #0B2659
}

.header__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;

	padding: 1.5rem 0;
}


.logo {
	width: 200px;
	display: none;
}

.header--beige .logo--default {
	display: block
}

.header--default .logo--white {
	display: block
}

.nav {
	padding: 0;
	list-style: none;
}

.nav a {
	text-decoration: none;
}


.header__nav {
	position: relative;
	top: 10px;
	margin-left: auto;
}

.header__nav a {
	font-weight: normal;
}

.nav--1 {
	display: flex;
	align-items: flex-start;
}

.nav--1>li+li {
	margin-left: 2rem;
}

.nav--2 {
	padding-top: 1rem;
	display: none;
}

.nav--2>li {
	border-top: 1px solid #00000020;
	padding: 1rem 0;
}

.header:not(.header--beige) .nav--2>li {
	border-color: #ffffff20;
}

.nav--1 .has-children>a {
	display: inline-flex;
	align-items: center;
}

@media screen and (min-width: 1101px) {
	.nav--1 .has-children>a::after {
		content: '';
		width: 20px;
		height: 20px;
		background: url(../img/chevron-down.svg) center center / 100% no-repeat;
		margin-left: .5rem;
	}
}

@media screen and (max-width: 1100px) {
	.has-children {
		position: relative;
	}

	.expand-nav {
		display: inline-block;
		width: 20px;
		height: 20px;
		background: url(../img/chevron-down--white.svg) center center / 100% no-repeat;
		margin-left: .5rem;
		position: absolute;
		width: 50px;
		height: 30px;
		right: 0;
		flex-shrink: 0;
		background-size: 20px;
		border-left: 1px solid #ffffff20;
	}
}

.header:not(.header--beige) .nav--1 .has-children>a::after {
	background-image: url(../img/chevron-down--white.svg);
}

@media (hover: hover) and (pointer: fine) {
	.nav--1 .has-children:hover .nav {
		display: block;
	}
}

/* site message */

.site-message+.header:not(.header--sticky) {
	top: 56px;
}

.site-message {
	position: absolute;
	z-index: 10;
	width: 100%;
	top: 0;

	background: #0b2659;
	color: #fff;
	padding: .75rem;
	text-align: center;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;

	padding-bottom: calc(.75rem + 8px);
}

.site-message+.header+.hero,
.site-message+.header+.top,
.site-message+.header+.push-page {
	padding-top: 152px;
}

@media screen and (max-width:900px) {
	.site-message+.header:not(.header--sticky) {
		top: 51px;
	}

	.site-message+.header+.hero,
	.site-message+.header+.top,
	.site-message+.header+.push-page {
		padding-top: 128px;
	}
}

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

	.site-message {
		flex-direction: column;
		gap: 0rem;
	}

	.site-message+.header:not(.header--sticky) {
		top: 73px;
	}

	.site-message+.header+.hero,
	.site-message+.header+.top,
	.site-message+.header+.push-page {
		padding-top: 150px;
	}
}

@media screen and (max-width: 340px) {
	.site-message+.header:not(.header--sticky) {
		top: 95px;
	}

	.site-message+.header+.hero,
	.site-message+.header+.top,
	.site-message+.header+.push-page {
		padding-top: 172px;
	}
}


.hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	color: #F4F1DF;
	align-items: center;

	padding-top: 95px;
}

.hero--front {
	grid-gap: 3rem;
}

.hero__left {
	max-width: 600px;
	width: 100%;
	margin-left: auto;
	padding: 0 2rem;
}

.hero__left img {
	margin: auto;
}

.hero h1 {
	font-size: 5rem;
	line-height: 6rem;
}

.hero p {
	font-size: 1.5rem;
	line-height: 2.25rem;
}


.top {
	padding-top: 95px;
	color: #F4F1DF;
	text-align: center;
}

.top__inner {
	display: flex;
	align-items: center;
	justify-content: center;
}




.boxlink {
	display: block;
	padding: 1rem;
	color: #fff;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.boxlink--yellow {
	background: linear-gradient(90deg, #A69717 7.71%, #7C721E 86.61%)
}

.boxlink--brown {
	background: linear-gradient(90deg, #896514 7.71%, #AB5A2A 86.61%)
}

.boxlink--red {
	background: linear-gradient(90deg, #D80F5A 7.71%, #8E1C46 86.61%)
}

.boxlink--pink {
	background: linear-gradient(90deg, #C94D4A 7.71%, #E34660 86.61%)
}

.boxlink--purple {
	background: linear-gradient(90deg, #721C5A 7.71%, #3B1B46 86.61%)
}

.boxlink+.boxlink {
	margin-top: 1rem;
}

.boxlink::after {
	content: '';
	width: 20px;
	height: 20px;
	background: url(../img/chevron-down--white.svg) center center / 100% no-repeat;
	transform: rotate(-90deg);
	margin-left: auto;
}

.boxlink.open::after {
	transform: rotate(90deg);
}

.boxlink-target:not(.open) {
	display: none;
}


.link--arrow {
	display: inline-flex;
	align-items: center;
	color: #00a6aa;
	text-decoration: none;
}

.link--arrow::after {
	content: '';
	width: 24px;
	height: 24px;
	background: url(../img/chevron-right--blue.svg) center center / 100% no-repeat;
	margin-left: .5rem;
}



.expand {
	position: relative;
}

.expand .expand__inner {
	max-height: 20em;
	overflow: hidden;
	padding-bottom: calc(1.75em + 32px);
}

.expand::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to bottom, transparent, #F4F1DF);
}

.expand::after {
	content: 'LÄS MER';
	position: absolute;
	height: calc(1.75em + 32px);

	display: flex;
	align-items: flex-end;

	left: 50%;
	bottom: calc(.75em + 32px);
	transform: translate(-50%, 100%);

	text-decoration: underline;
	text-underline-offset: 4px;
	background: url(../img/expand.svg) center top / 32px no-repeat;
}

.faq {
	border-top: 1px solid #aaa;
	padding-top: 1.5rem;
}

.faq+.faq {
	margin-top: 1.5rem;
}

.faq__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.faq__title::after {
	content: '';
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	background: url(../img/chevron-down.svg) center center / cover no-repeat;
	margin-left: 1rem;
}

.faq__title.open::after {
	transform: rotate(180deg);
}

.faq__title:not(.open)+.faq__text {
	display: none;
}

.faq__text {
	margin-top: 1rem;
}



.references {
	list-style: decimal;
	margin: 0;
	margin-top: 1rem;
	padding: 0;
	padding-left: 1em;
}

.references li+li {
	margin-top: 1rem;
}

.references span {
	word-break: break-word;
}

.section--references+.section--spc .inner {
	padding-top: 0;
}


.diamonds {
	list-style: none;
	padding: 0;
}

.diamonds>li {
	padding-left: 30px;
	background: url(../img/diamond.svg) left top / 20px no-repeat;
}

.diamonds>li+li {
	margin-top: 1rem;
}



/* disclaimer */
.disclaimer {
	position: fixed;
	z-index: 10000;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;

	color: #fff;
}

.disclaimer .logo {
	display: block;
}

.disclaimer__text {
	position: absolute;
	width: 800px;
	max-width: 100%;
	padding: 2rem;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}


/* cookies */
.ck {
	position: fixed;
	z-index: 5000;
	width: 100%;
	left: 0;
	bottom: 0;
}

.ck::before {
	content: '';
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 10px;
	left: 0;
	bottom: 0;
	background-image: linear-gradient(to right, #FFF26B, #00A6AA);
}

.ck__content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: auto;
	background: #FFF26B;
	padding: 2rem;

	display: flex;
	align-items: flex-end;
}

.ck__btns {
	margin-left: 2rem;
}




.info {
	background: #D7E9DA;
	border-bottom: 10px solid #00A6AA;
	padding: 4rem;
}

.info__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.big {
	font-size: 6rem;
	line-height: 7rem;
}


/* footer */
.footer,
.footer a {
	color: #fff;
}

.footer__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.footer__right {
	flex: 0 1 720px;
	margin-left: 4rem;
}

.footer .logo {
	display: block;
}

.footer__address {
	font-style: normal;
	line-height: 1.75rem;
	margin-top: 3rem;
}

.footer__nav {
	margin-bottom: 3rem;
}

.footer__nav a+a {
	margin-left: 3rem;
}


.preamble {
	font-size: 1.25rem;
	line-height: 1.4em;
	font-weight: 700;
}


/* front page split  */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.split>* {
	padding: 6rem 4rem;
}

.split>:last-child {
	background-color: #d7e9da;
	padding-right: calc((100vw - 1300px) / 2 + 2rem);
}

.split>:first-child {
	padding-left: calc((100vw - 1300px) / 2 + 2rem);
}

.split> :first-child .split__inner {
	padding-left: 2rem;
}

.split> :last-child .split__inner {
	padding-right: 2rem;
}

@media screen and (max-width: 900px) {
	.split {
		grid-template-columns: 1fr;
	}

	.split>* {
		padding: 4rem 2rem;
	}
}

/* hero with columns  */
.top__cols {
	display: flex;
	align-items: center;
	gap: 4rem;

	text-align: left;
}

.top__cols__img {
	flex: 0 0 500px;
}


.cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 4rem;
	align-items: center;
}


.teaser {
	padding: 4rem;
	margin: 4rem -4rem;
}

@media screen and (max-width:900px) {
	.teaser {
		margin: 2rem 0;
	}
}

@media screen and (max-width:600px) {
	.teaser {
		padding: 2rem;
	}
}

/* resources  */
.pod__btm {
	display: flex;
	align-items: flex-start;
	gap: 4rem;

	margin-top: 1rem;
}

.pod__img {
	flex: 0 0 25%;
	order: 2;
}

.podcast__img {
	max-width: 400px;
	margin-left: auto;
}

@media screen and (max-width:600px) {
	.podcast__img {
		margin-right: auto;
	}
}

.featured {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.featured__item {
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 20px -20px rgba(0, 0, 0, .5);
	flex: 1 0 calc(33.3333% - 4rem);
	background: #00000020 center center / cover no-repeat;
	color: #fff;
	padding: 2rem;
}

.featured__item__title {
	flex: 1;
	font-weight: bold;
	margin: 2rem 0;
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.featured__item .title {
	margin-bottom: 0;
}

.resource-single__top {
	display: flex;
	gap: 4rem;
}

.resource-single__title {
	order: 1;
	flex: 1;
}

.resource-single__nav {
	order: 2;
	flex: 0 0 25%;
	text-align: right;
}

.additional {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.additional>div {
	flex: 1 0 calc(33.3333% - 4rem);
}

@media screen and (max-width:1100px) {
	.featured .btn {
		font-size: .875rem;
	}
}


.tabs {
	display: flex;
	justify-content: center;
	margin-top: 4rem;
	scroll-margin: 6rem;
}

.tab {
	padding: 2rem;
	display: inline-flex;
	align-items: center;
	color: #00000040;
	font-size: 1.25rem;
	line-height: 1em;
	font-weight: bold;
	border-bottom: 4px solid transparent;
	cursor: pointer;
}

.tab.active {
	color: #00a6aa;
	border-color: #0b2659;
}

.podcast+.podcast,
.videocast--x+.videocast--x {
	margin-top: 4rem;
}

.videocast--y {
	grid-template-columns: 1fr;
	grid-gap: 1rem;
}



@media only screen and (max-width: 1100px) {
	.header__nav {
		display: none;
	}

	.header__nav.open {
		position: fixed;
		width: 100%;
		height: calc(100%);
		left: 0;
		top: 0;
		display: block;
		background-image: linear-gradient(to top, #006D8B, #0B2659);
		padding: 2rem;
		padding-top: 77px;
	}

	.header .nav {
		flex-direction: column;
	}

	.header .nav li+li {
		margin-left: 0;
		margin-top: 1rem;
		padding-top: 1rem;
		border-top: 1px solid #ffffff20;
	}

	.header .nav li {
		display: block;
		width: 100%;
		font-size: 1.25rem;
		line-height: 1.75rem;
	}

	.header .nav a {
		color: #D7E9DA;
	}

	.header .nav--1 .has-children>a {
		position: relative;
		width: 100%;
	}

	.header .nav--1 .has-children>a::after {
		position: absolute;
		width: 50px;
		height: 30px;
		right: 0;
		flex-shrink: 0;
		background-size: 20px;
		border-left: 1px solid #ffffff20;
	}

	.header .nav--1>li:first-child {
		display: inline-flex;
		align-items: center;
	}

	.header .nav--1>li:first-child::before {
		content: '';
		width: 16px;
		height: 16px;
		flex-shrink: 0;
		background: url(../img/home.svg) center center / cover no-repeat;
		margin-right: .75rem;
	}


	.header+section {
		padding-top: 95px;
	}


	.has-children.open>.nav {
		display: block;
		padding-left: 1.5rem;
	}

	.nav--2 li {
		padding: 0;
	}

	.nav--2 li:first-child {
		padding-top: 1rem;
	}


	.logo {
		width: 150px;
	}

	.toggle {
		position: relative;
		width: 32px;
		height: 20px;
		align-self: center;
	}

	.toggle span {
		position: absolute;
		height: 2px;
		border-radius: 4px;
		background: #D7E9DA;
		right: 0;
	}

	.toggle span:nth-child(1) {
		width: 32px;
		top: 0;
	}

	.toggle span:nth-child(2) {
		width: 26px;
		top: 9px;
	}

	.toggle span:nth-child(3) {
		width: 20px;
		top: 18px;
	}

	.toggle.open span:nth-child(1) {
		top: 9px;
		width: 32px;
		transform: rotate(-45deg);
	}

	.toggle.open span:nth-child(2) {
		display: none;
	}

	.toggle.open span:nth-child(3) {
		top: 9px;
		width: 32px;
		transform: rotate(45deg);
	}


	.header--beige .toggle:not(.open) span {
		background: #0B2659;
	}

	.nav--1 .has-children>a::after {
		background-image: url(../img/chevron-down--white.svg);
	}
}

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

	.footer__inner {
		flex-direction: column;
	}

	.footer__left,
	.footer__right {
		flex: auto;
		margin: 0;
	}

	.footer__left {
		margin-bottom: 2rem;
	}

	.footer__nav {
		margin-top: 3rem;
		margin-bottom: 0;
		display: flex;
		flex-direction: column;
	}

	.footer__nav a+a {
		margin-left: 0;
		margin-top: 2rem;
	}

}

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

	h1 {
		font-size: 2.4rem;
		line-height: 3rem;
	}

	h2 {
		font-size: 1.8rem;
		line-height: 2.2rem;
	}

	h3 {
		font-size: 1.3rem;
		line-height: 1.8rem;
	}

	.big {
		font-size: 4rem;
		line-height: 5rem;
	}

	.top__inner {
		min-height: auto;
	}


	.hide-s {
		display: none;
	}

	.pod__btm {
		display: block;
	}

	.pod__img {
		max-width: 200px;
		margin: 2rem 0;
	}

	.podcast__img {
		max-width: 200px;
	}

	.resource-single__top {
		display: block;
	}

	.resource-single__nav {
		text-align: left;
		margin-bottom: 1rem;
	}

	.related-heading {
		flex-direction: column;
		gap: 1rem;
	}

	.swiper {
		overflow: auto;
		scroll-snap-type: x mandatory;
		flex-wrap: nowrap;
		margin-left: -1.5rem;
		margin-right: -1.5rem;
		padding: 0 1.5rem;
	}

	.swiper::-webkit-scrollbar {
		display: none;
	}

	.swiper>div {
		flex: 1 0 90%;
		width: 90%;
		scroll-snap-align: center;
	}



	.hero {
		display: flex;
		flex-direction: column-reverse;
		padding-top: 77px;
	}

	.hero__left {
		padding: 0 4rem;
	}

	.hero__right {
		padding: 2rem;
	}

	.hero br {
		display: none;
	}

	.hero h1 {
		font-size: 4rem;
		line-height: 5rem;
	}

	.hero:not(.hero--front) .hero__left {
		padding: 4rem 2rem;
	}

	.hero:not(.hero--front) .hero__right {
		padding: 0;
	}


	.hero,
	.grid {
		grid-template-columns: 1fr;
	}

	.grid>* {
		min-height: auto;
	}

	.row {
		flex-direction: column;
	}

	.row .row__text {
		margin: 0;
		margin-bottom: 4rem;
	}

	.expand .expand__inner {
		max-height: 30em;
	}

}