/* nurell */

/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&family=Titillium+Web:wght@300;400;600;700&display=swap');

/* animation*/
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* ==========================================================================
Generellt 
========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
    background-repeat: no-repeat;
}

body, body.isMobile .body-background {
    -webkit-font-smoothing: antialiased;
    background-position: center center;
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
}

html {
	font-size: 62.5%;
}

.container {
	max-width: 100%;
}

.LayoutPage .section-wrapper {
    background-color: #0C1B60;
}

.LayoutPage .section-block,
.SubPage .LayoutPage .section-block {
    padding: 19rem 6rem;
}

.LayoutPage .section-block-wrapper {
	max-width: 150rem;
}

/* Specifika paddings */
.p-2{
    padding: 2rem;
}
.p-6{
    padding: 6rem;
}
.LayoutPage .pt-0 .section-block {
    padding-top: 0;
}
.LayoutPage .pb-0 .section-block {
    padding-bottom: 0;
}


.LayoutPage .pl-0 .section-block {
    padding-left: 0;
} 

.LayoutPage .pr-0 .section-block {
    padding-right: 0;
} 
.LayoutPage .py-4 .section-block {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
/* Specifika bredder */
.LayoutPage .mw-none .section-block-wrapper {
    max-width: none;
}

.LayoutPage .max-120 .section-block-wrapper {
    max-width: 120rem;
}

@media only screen and (max-width: 1024px) {
	.LayoutPage .section-block,
    .SubPage .LayoutPage .section-block {
		padding: 11rem 6rem;
	}	
}

@media only screen and (max-width: 580px) {
	.LayoutPage .section-block,
    .SubPage .LayoutPage .section-block,
    .LayoutPage .pl-0 .section-block,
    .LayoutPage .pr-0 .section-block {
		padding: 6rem 4rem;
	}
}

/* ==========================================================================
Knappar & speciella länkar
========================================================================== */

.btn {
    max-width: 50rem;
    width: auto;
    box-sizing: border-box;
    padding: 1.8rem 4rem;
    border-radius: 0;
    text-align: center;
    text-transform: uppercase;
    font-weight:600;
    font-size: 1.3rem;
    letter-spacing: 3px;
    line-height: 1em;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    display: inline-block;
    color: #fff !important;
    background-color: transparent;
    border: 2px solid #fff;
}

.btn:hover {
    border: 2px solid #325bc2;
    color: #325bc2;
}

.btn-white,
.btn-white:hover {
    background-color: transparent;
    border-color: #FFF;
    color: #fff;
}
    
.btn-primary {
    background-color: #4E8AAE;
    border-color: #4E8AAE;
    color:#fff !important;
}

.btn-primary:hover {
    border-color: #fff;
    color: #fff !important;
}
    
    .btn-secondary,
    .btn-secondary:hover {
        background-color: transparent;
        border-color: #fff;
        color: #fff;
    }
    
    .btn-wrapper {
        margin-top: 5rem;
    }
    
    .btn-wrapper.center {
        display: flex;
        justify-content: center;
    }
    
    @media only screen and (max-width: 480px) {
        .btn {
            display: block;
            width: 100%;
        }
        
        .btn-wrapper .btn {
            margin: 1.5rem 0;
        }
    }

.arrow-link::after {
	content: ' \f178';
	opacity: 1;
	transition: all .3s ease;
	font-family: 'Font Awesome 5 Pro';
	margin-left: 3px; 
	font-weight: 400;
}

.arrow-link:hover::after {
	content: ' \f178';
	opacity: 1;
	margin-left: 10px;
}

/* knapp med cirkel */

.btn-wrapper {
	margin-top: 3rem;
}

.btn-wrapper a {
	color: #111;
}

.btn-wrapper a:hover {
	color: #fff;
}

.button {
	text-decoration: none;
	display: inline-block;
	font-weight: 400;
}

.button,
.button::before,
.button::after {
	transition: all .3s ease;
} 

.button:hover {
	text-decoration: none;
}

.button-circle {
  position: relative;
  margin: auto;
  padding: 18px 35px;
  transition: all 0.2s ease;
}

.button-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 28px;
  background: #2E323D;
  width: 56px;
  height: 56px;
  transition: all 0.3s ease;
}

.button-span {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all .3s ease;
}

.button-span::after {
	content: '\2192';
	margin-left: .5em;
	transition: all .3s ease;
}

.button:hover .button-span::after {
	margin-left: 1em;
	transition: all .3s ease;
}

.button-circle:hover::before {
  width: 100%;
  background: #2E323D;
}

.button-circle:active {
  transform: scale(0.96);
}

/**bouncing-arrow**/
svg {
    vertical-align: middle;
  }
  
  .scroll-down {
    margin-left: 50%;
    position: absolute;
    z-index: 1;
    cursor: pointer;
    bottom: 3rem;
    left: -40px;
    color: #fff;
    background-color: transparent;
    width: 80px;
    border-radius: 50%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .scroll-down a {
      padding: 15px;
  }
  
  .scroll-down.svg svg {
    opacity: 1;
    width: 2.5rem;
    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
    -ms-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s;
  }
  
  .scroll-down.svg .stroke {
    stroke: #fff;
  }
  
  .scroll-down.svg .scroller {
    fill: #fff;
    -webkit-animation: updown 2s infinite;
    -moz-animation: updown 2s infinite;
    -o-animation: updown 2s infinite;
    animation: updown 2s infinite;
  }
  @-webkit-keyframes updown {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
    50% {
        -webkit-transform: translate(0, 5px);
        transform: translate(0, 5px)
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
  }
  @-moz-keyframes updown {
    0% {
        -moz-transform: translate(0, 0);
        transform: translate(0, 0)
    }
    50% {
        -moz-transform: translate(0, 5px);
        transform: translate(0, 5px)
    }
    100% {
        -moz-transform: translate(0, 0);
        transform: translate(0, 0)
    }
  }
  @-o-keyframes updown {
    0% {
        -o-transform: translate(0, 0);
        transform: translate(0, 0)
    }
    50% {
        -o-transform: translate(0, 5px);
        transform: translate(0, 5px)
    }
    100% {
        -o-transform: translate(0, 0);
        transform: translate(0, 0)
    }
  }
  @keyframes updown {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
    50% {
        -webkit-transform: translate(0, 5px);
        transform: translate(0, 5px)
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
  }

/* Bouncing arrow */
.bouncing-arrow {
    position: absolute;
    left: 50%;
    bottom: 4rem;
    transform: translatex(-50%);
    animation: bounce 2s infinite;
}

.bouncing-arrow i {
    color: rgb(var(--primary-color));
    font-size: 4rem;
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

/* ==========================================================================
Text och typsnitt
========================================================================== */
p {
    color: #757373;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: normal;
    text-transform: none;
}

a {
	color: #111;
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    font-style: normal;
    text-decoration: none;
    font-size: 1.4rem;
    line-height: 1.7;
    letter-spacing: .5rem;
    text-transform: uppercase;
    cursor: pointer;
}

a:hover {
	text-decoration: none;
	color: #111;
}

li {
    color: #8e8b8b;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    font-size: 1.5rem;
    line-height: 1.8;
    list-style-type: circle;
    letter-spacing: normal;
    text-transform: none;
}

.bold-text {
	font-weight: 800;
}

.light-text {
	font-weight: 300;
}

.italic {
	font-style: italic;
}

.text-label {
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 1.2rem;
    font-size: 1.4rem;
    text-align: left;
    padding-bottom: 3rem;
    text-shadow: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    color: #5ea8e8;
    font-style: normal;
}

.ingress-title {
    text-align: left;
    font-weight: 800;
    text-align: left;
    max-width: 100rem;
    font-size: 6rem;
    font-weight: 600;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(180deg,rgba(255,255,255,0) 70%, #041046 70%);
    /* background-size: 100% 25%; */
    background-position: center 89%;
    background-repeat: no-repeat;
    padding-left: 5px;
    padding-right: 5px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Open Sans', sans-serif;
}

h1 {
	font-weight: 600;
    font-style: normal;
    color: #fd6b3b;
}

h3, h2, .section-title {
    font-size: 4rem;
    font-weight: 400;
    font-style: normal;
    padding-bottom: 3rem;
    color: #041b3a;
    letter-spacing: 0;
    text-align: left;
    line-height: 1.2;
    text-transform: none;
    font-family: 'Open Sans', sans-serif;
}

.small-title {
    font-size: 3rem;
    color: #041046;
}

.design-title {
    font-size: 2.8rem;
    padding-bottom: 1rem;
    padding-top: 0;
}

.design-small-title {
    font-size: 2rem;
    color: #111;
}

.padding-top {
    padding-top: 2rem;
}

h4 {
    font-style: normal;
    color: #111;
    text-transform: none;
    font-weight: 400;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.text-center {
    text-align: center !important;
}

.smalltext-type {
	max-width: none;
}
.normaltext-type {
	max-width: 100rem;
    margin: 0 auto;
    text-align: center;
}

.box-shadow{
     box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.03);
}
@media only screen and (max-width: 1080px) {
	h2 {
		font-size: 4rem;
	}
}

.playfair-display {
	font-family: 'Vidaloka', serif;
	font-weight: 500;
	font-style: italic;
	line-height: 1.6;
}

@media only screen and (max-width: 630px) {
    .heading-type h1, .heading-type h2, .heading-type h3, .LayoutPage p, .SubPage p {
        text-align: left ;
    }

    .text-label {
        padding-bottom: 2rem;
    }

    h3, h2, .section-title {
        font-size: 2.7rem;
    }
}

/* ==========================================================================
Färger
========================================================================== */

.bg-blue .section-block, .bg-grey { background-color: #0C1B60 !important; }
.bg-blue * { color: #fff;}

.bg-light-grey .section-block, .bg-light-grey { background-color: #f7f7f7;}

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

.bg-black { background-color: #111 !important; }
.bg-black * { color: #fff;}

.pastel-green { color: #b7e2b5;}
.white { color: #fff; }

/* ==========================================================================
Header / Navigation
========================================================================== */
/* Ta bort klick */
body:not(.EditMode) .TemplateMenu a[href=""] {
    pointer-events: none;
}
header {
    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    transition: all 500ms linear;
	background-color: transparent;
    box-shadow: none;
    margin-top: 0;
    background-color: #041046;
}

header .container {
	padding: 0 20px;
}

header .header-logo {
    width: 30rem;
    position: absolute;
    line-height: 0;
    padding-top: 1.7rem;
}

nav.mainmenu {
	text-align: center;	
    display: inline-block;
}

.EditMode nav.mainmenu {
	display: block;
}

nav.mainmenu ul.TemplateMenu > li:first-child {
	display: none;
}

nav.mainmenu ul {
	text-align: right;
}

nav.mainmenu ul.TemplateMenu > li {
    line-height: normal;
    height: auto;
}

nav.mainmenu a {
    line-height: 7.2rem;
}

nav.mainmenu a {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    text-transform: uppercase;
    padding: 0 1rem;
    letter-spacing: .2rem;
    display: block;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

header nav.mainmenu a {
	display: inline-block;
}

nav.mainmenu li:hover, 
nav.mainmenu li.active {
	background-color: transparent;
}

nav.mainmenu li:hover a, 
nav.mainmenu li.active a,
header.scrolled nav.mainmenu .fab  {
	color: #5ea8e8;
}  

nav.mainmenu .fab {
	color: #fff;
    font-size: 1.7rem;
    vertical-align: middle;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

nav.mainmenu .social {
	padding: 0 5px;
}

nav.mainmenu .facebook-item a:before {
	display: none;
}

nav.mainmenu .fab:hover {
	color: #FECD3F !important;
}

nav.mainmenu .facebook-item a {   
    margin-left: 0;
    padding-left: 10px;
    padding-right: 1em;
}

@media only screen and (max-width: 580px) {
	header .header-logo a {
    	margin-left: 0;
	}
}

@media only screen and (max-width: 1290px) {
	
	nav.mainmenu a {
		display: inline-block;
	}
	
	/* ny nav */
	
	header {
		height: 72px;
	}
	
	header .header-logo { 
		z-index: 101!important;
	}

	.openmenu {
		display:none!important;
    }
    
    nav.mainmenu {
		text-align: center;
		width: 100%;
		box-shadow: none;
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
		height: 100%;
		overflow-y: scroll;
		background-color:#041046;
	}

	.mainmenu {
		position:fixed;
		top:0;
		left:0;
		display:block!important;
		height: 72px!important;
		width:100%!important;
		background:transparent;
		-ms-overflow-style: none;
		overflow: -moz-scrollbars-none;
		scrollbar-width: none;
		box-shadow:none!important;
		transition: all .5s ease;
	}
	.mainmenu::-webkit-scrollbar { width: 0 !important }

	/* nav ej aktiv */
	#close {
		position: fixed;
		top: 25px;
		right: 5px;
		transform: translateY(-25px);
		width: 60px;
		height: 60px;
		display: flex;
		flex-direction: column;
		align-items: center;
		cursor: pointer;
	}

	#close .bar {
		position: absolute;
		width: 50%;
		height: 2px;
		background-color: #fff;
		transition: all .5s ease;
	}

	#close .bar:first-of-type { top:42% }
	#close .bar:last-of-type { top: 58% }

	.Padding {
		display:block!important;
		visibility:hidden;
		margin:0!important;
		padding: 120px 0 0 0!important;
		transition: all .5s ease;
	}
	
	.Padding ul li {
		height:auto!important;
		line-height:unset!important;
		opacity:0;
		text-align:center;
		-webkit-transition: opacity 0.75s ease;
		-moz-transition: opacity 0.75s ease;
		-o-transition: opacity 0.75s ease;
		transition: opacity 0.75s ease;
	}

	.Padding ul li a {
		color:#333!important;
		padding:15px 0!important;
		margin:5px 0!important;
		transition:color .25s ease;
		width:100%; 
	}

	/* nav aktiv */
	.mainmenu.active-menu {
		height:100%!important;
	}
	
	.mainmenu.active-menu #close .bar {
		position:absolute;
		top:50%;
		transform:translateY(-50%);
	}

	.mainmenu.active-menu #close .bar:first-of-type { transform:rotate(225deg); }
	.mainmenu.active-menu #close .bar:last-of-type { transform:rotate(-225deg); }

	.mainmenu.active-menu .Padding {
		visibility:visible;
	}
	
	.closemenu {
	    display: none;
	    background:  url('/assets/images/closemenu-icon-black.png') no-repeat center center;
	    width: 50px;
	    height: 50px;
	    cursor: pointer;
	    position: absolute;
		right: 20px;
		top: 10px;
	    background-size: 40px 40px;
	}
	
	nav.mainmenu .Padding {
		padding: 40px 0 0 0;
		margin-top: 72px;
	}

	nav.mainmenu ul.TemplateMenu > li {
		height: 60px;
		width: 100%;
	}

	nav.mainmenu a {
	    padding: 10px 36px;
	    font-size: 22px;
	}
	
	.SubPage nav.mainmenu .home {
		display: block;
	}
	
	nav.mainmenu li,
	nav.mainmenu li a {
        font-size: 1.9rem;
        border-bottom: none;
        margin: .5rem 0;
        color: #fff !important;
        padding-left: 0;
        font-weight: 400;
        opacity: 1;
        line-height: 2rem;
        text-transform: none;
        letter-spacing: normal;
	}
	
	nav.mainmenu .boka-item a { 
		letter-spacing: normal; 
		position: absolute;
		left: 0;
		border-bottom-left-radius: 0; 
		color: #fff !important;
	}
	
	nav.mainmenu .boka-item {
		position: absolute;
		top: 0;
		margin-top: 0;
		left: 0;
	}
	
	nav.mainmenu li.li-logo a {
		display: none;
	}
}

@media only screen and (max-width: 580px) {
	header .header-logo a {
    	margin-left: 0;
    }
    
    header .header-logo {
        width: 22rem;
        padding-top: 2.1rem;
    }
}

/* ==========================================================================
Top-section
========================================================================== */
.top-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: auto;
    background-color: rgba(4,27,58,0.75);
}

.page-title-wrap {
    position: static;
    max-width: 85rem;
    padding: 10rem 2rem;
    transform: none;
}

.page-title-wrap * {
    text-align: center;
}

.page-title-wrap h1 {
	font-size: 1.45rem;
	font-weight: 900;
	letter-spacing: .5rem;
	color: #fff;
	padding-bottom: 4rem;
	text-transform: uppercase;
    text-shadow: none;
}

.page-title-wrap h2 {
    line-height: 1.4;
    letter-spacing: normal;
    font-size: 4.5rem;
    font-weight: 600;
    color: #fff;
    text-transform: none;
    text-shadow: none;
    padding-bottom: 2rem;
}

.page-title-wrap h2 a {
    display: block;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    text-transform: inherit;
    text-decoration: underline;
}

.title-ingress {
    position: relative;
    margin-top: 30px;
    /* padding-left: 1rem; */
    color: #f9f9f9;
}
.title-ingress a{
    color: #f9f9f9;
      font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: normal;
    text-transform: none;
    text-decoration: underline;
}
.title-ingress a:hover{
    text-decoration: none;
}
/* .title-ingress::before {
    content:'';
    position: absolute;
    background-color: #85C1E9;
    width: 3px;
    height: 100%;
    bottom: 0;
    left:-10px; 
} */

@media only screen and (max-width: 980px) {
    .page-title-wrap {
        max-width: 60rem;
    }

    .page-title-wrap h1 {
        padding-bottom: 2rem;
    }

    .page-title-wrap h2 {
        padding-bottom: 2rem;
        font-size: 3rem;
    }

    .title-ingress {
        margin-top: 0;
    }
}

@media only screen and (max-width: 580px) {
    .page-title-wrap h2 {
        font-size: 2.5rem;
    }

    .page-title-wrap h2 a {
        display: inline;
    }
}

/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}

/* Bredder */
.cards-wrapper.w-25 .card-item {
    width: calc((100% / 4) - 2rem);
    margin: 1rem;
}
.cards-wrapper.w-50 .card-item {
    width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

/* Generellt */
a.card-item {
    transition: .3s ease;
}

/* Card grow */
.cards-grow .card-item {
    display: flex;
    flex-direction: column;
}

.cards-grow .card-body {
    flex-grow: 1;
}
@media only screen and (max-width: 1050px) {
    /* Bredder */
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 3) - 2rem);
        margin: 1rem;
    }
}
@media only screen and (max-width: 750px) {
    /* Bredder */
       .cards-wrapper.w-25 .card-item {
        width: calc((100% / 2) - 2rem);
        margin: 1rem;
    }
    .cards-wrapper.w-50 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}
@media only screen and (max-width: 580px) {
    /* Bredder */
    .cards-wrapper.w-25 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Card 3-1 */
.card-3-1 .card-body {
    background-color: white !important;
    padding: 2rem;
}
.card-3-1 .small-title,
.card-3-1 p {
    padding-bottom: 0;
}
.cards-3-6 .card-item {
  position: relative;
  overflow: hidden;
}

.cards-3-6 .card-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0, 0, 0, 0.4);
  transition: background 0.3s ease;
  pointer-events: none;
}

.cards-3-6 .card-item:hover::after {
  background: rgba(12, 27, 96, 0.8 );
}

/* Titel-styling */
.cards-3-6 .card-title {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  color: #ffffff !important;
  padding: 2rem;
}
.cards-3-6 .small-title {
  color: #ffffff !important;
}
.cards-3-6 .hidden-text p,
.cards-3-6 .hidden-text li{
    color: #ffffff !important;
}
.cards-3-6 .hidden-text{
    display: none;
}
.cards-3-6 .card-item:hover .hidden-text {
    display: block;
       -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

@media only screen and (max-width: 1050px) {
    .cards-3-6 .card-item{
        min-height: 40rem;
    }
      .cards-3-6 .card-item img{
       object-fit: cover;
        min-height: 40rem;
    }
}

@media only screen and (max-width: 600px) {
    .cards-3-6 .card-item{
        min-height: 45rem;
    }
      .cards-3-6 .card-item img{
        min-height: 45rem;
    }
}


/* ==========================================================================
Split wrapper
========================================================================== */

/* Split wrapper */

.split-section .normaltext-type {
	max-width: none;
}

.split-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

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

.split-content {
    width: 50%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-items: center;
}

.LayoutPage .split-nopad-left .section-block {
    padding-left: 0;
}

.LayoutPage .split-nopad-left .section-block-wrapper {
    max-width: none;
}

.split-text {
	padding: 8rem 5rem;
}

.split-image {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.split-image img {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: unset !important;
}

@supports (object-fit: cover) {
    .split-image img {
        position: relative;
        transform: none;
        top: unset;
        left: unset;
        object-fit: cover;
        object-position: center;
        height: 100% !important;
        width: 100% !important;
    }

    .split-image img.contain {
        object-fit: contain;
    }
}

/* Speciella höjder */
.mh-80 {
    max-height: 80rem;
}

@media only screen and (max-width: 1100px) {
    .split-text {
        padding: 9rem 4rem;
    }
}

@media screen and (max-width: 980px) {
	.split-wrapper.reverse {
		flex-direction: row;
	}
	
	.split-content {
		width: 100%;
	}
	
	.split-image {
		width: 100%;
		padding: 0;
    }
    
    .split-text {
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 630px) {
    .split-text {
        padding: 5rem 0 0 3rem;
    }
}

/* ==========================================================================
Startsida
========================================================================== */
/* Video */
.fullscreen-bg-video {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.parallax {
    max-width: 100% !important;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed !important;
    height: 60rem;
    background-image: url(/assets/images/basstech-oil-drilling-rig-platform.jpg);
}

.parallax-engineering {
  /*  background-image: url(/assets/images/basstech-engineering-services-cover.jpg);*/
    background-image: url(/assets/images/skrov-2000px.jpg);
    background-attachment: scroll;
    background-position: center bottom;
}

/* Funktion: Scroll down
========================================================================== */
@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
	  -moz-transform: translateY(0);
	  transform: translateY(0);
	}
	40% {
	  -moz-transform: translateY(-30px);
	  transform: translateY(-30px);
	}
	60% {
	  -moz-transform: translateY(-15px);
	  transform: translateY(-15px);
	}
  }
  @-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	}
	40% {
	  -webkit-transform: translateY(-30px);
	  transform: translateY(-30px);
	}
	60% {
	  -webkit-transform: translateY(-15px);
	  transform: translateY(-15px);
	}
  }
  @keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
	  -moz-transform: translateY(0);
	  -ms-transform: translateY(0);
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	}
	40% {
	  -moz-transform: translateY(-30px);
	  -ms-transform: translateY(-30px);
	  -webkit-transform: translateY(-30px);
	  transform: translateY(-30px);
	}
	60% {
	  -moz-transform: translateY(-15px);
	  -ms-transform: translateY(-15px);
	  -webkit-transform: translateY(-15px);
	  transform: translateY(-15px);
	}
  }  
  .arrow {
	position: absolute;
    bottom: 4.5%;
	margin-left: 50%;
	left: -2rem;
    width: 2.5rem;
    height: 2.5rem;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0yOTMuNzUxLDQ1NS44NjhjLTIwLjE4MSwyMC4xNzktNTMuMTY1LDE5LjkxMy03My42NzMtMC41OTVsMCwwYy0yMC41MDgtMjAuNTA4LTIwLjc3My01My40OTMtMC41OTQtNzMuNjcyICBsMTg5Ljk5OS0xOTBjMjAuMTc4LTIwLjE3OCw1My4xNjQtMTkuOTEzLDczLjY3MiwwLjU5NWwwLDBjMjAuNTA4LDIwLjUwOSwyMC43NzIsNTMuNDkyLDAuNTk1LDczLjY3MUwyOTMuNzUxLDQ1NS44Njh6Ii8+DQo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjIwLjI0OSw0NTUuODY4YzIwLjE4LDIwLjE3OSw1My4xNjQsMTkuOTEzLDczLjY3Mi0wLjU5NWwwLDBjMjAuNTA5LTIwLjUwOCwyMC43NzQtNTMuNDkzLDAuNTk2LTczLjY3MiAgbC0xOTAtMTkwYy0yMC4xNzgtMjAuMTc4LTUzLjE2NC0xOS45MTMtNzMuNjcxLDAuNTk1bDAsMGMtMjAuNTA4LDIwLjUwOS0yMC43NzIsNTMuNDkyLTAuNTk1LDczLjY3MUwyMjAuMjQ5LDQ1NS44Njh6Ii8+DQo8L3N2Zz4=);
    background-size: contain;
  }

  .SubPage .arrow {
	  display: none;
  }
  
  .bounce {
	-moz-animation: bounce 3.5s infinite;
	-webkit-animation: bounce 3.5s infinite;
	animation: bounce 3.5s infinite;
  }

  @media only screen and (max-width: 630px) {
	  .arrow {
		  display: none;
	  }
  }
  
/**/

/* Om oss
========================================================================== */

.about .section-block {
    background-color: #fff;
    padding: 10rem 5rem;
}

.about .split-content:nth-child(1) {
    width: 55%;
}

.about .split-content:nth-child(2) {
    width: 45%;
}

.about *:not(.btn) {
    text-align: left;
}

.about h3 {
    max-width: 85rem;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.4;
}

.about a {
    color: #b0eef9;
}

@media only screen and (max-width: 980px) {
    .about .split-content:nth-child(1),  .about .split-content:nth-child(2){
        width: 100%;   
    }

    .about .split-text {
        padding-bottom: 0;
        padding-top: 0;
    }
}

@media only screen and (max-width: 630px) {
    .about .split-text {
        padding: 0;
    }

    .about h3 {
        font-size: 2.4rem;
    }
}

/* What we do
========================================================================== */
.what-we-do .section-block-wrapper {
    max-width: none;
}

.what-we-do .section-block {
    padding-left: 0;
}

.what-we-do h3, .what-we-do p, .what-we-do h2 {
    color: #fff;
}

.what-we-do .what-ingress {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2.5rem;
}

.what-we-do .what-ingress:before {
    content:'';
    position: absolute;
    background-color: #85C1E9;
    width: 3px;
    height: 100%;
    bottom: 0;
    top: 3px;
    left: -7px;
}

/* Services
========================================================================== */

.services .btn-wrapper {
	text-align: center;
}

.services .ingress {
	padding-bottom: 11rem;
}

.services-wrapper {
	display: flex;
	justify-content: center;
}

.services-wrapper .service-box {
    width: 29%;
    margin: 1%;
    border-radius: 0;
    text-align: center;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.03);
    padding: 10rem 5rem;
	-moz-transform: scale(0.93);
	-webkit-transform: scale(0.93);
	transform: scale(0.93);
    -moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    text-decoration: none;
    padding-top: 0;
    background-color: #fff;
}

.services-wrapper .service-box:hover {
	box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.03);
	-moz-transform: scale(0.95);
	-webkit-transform: scale(0.95);
	transform: scale(0.95);
	
}

.services-wrapper .service-text {
	padding-top: 10rem;
}

.services-wrapper .service-text p {
	padding: 0;
}

.overflow-wrapper {
    overflow: hidden;
}

.overflow-text p {
	text-align: left;
	font-size: 1.7rem;
}

.services-wrapper .service-box .fal,
.services-wrapper .service-box .fas {
    font-size: 13rem;
    padding-bottom: 0;
    padding-right: 0rem;
    color: #5ea8e8;
}

.services-wrapper .service-icon {
	width: auto;
    height: 4rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 1em;
    margin: 0 auto;
    background-color: transparent;
}

.services-wrapper .service-info * {
	text-align: left;
}

.services-wrapper h4 {
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 1.2rem;
    font-size: 2rem;
    text-align: left;
    text-shadow: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    color: #041046;
    padding-bottom: 2rem;
    font-style: normal;
}

.services-wrapper h4::before {
    border-bottom: 3px solid  #041046;
    content: "";
    display: block;
    height: .3rem;
    position: relative;
    width: 5rem;
    margin-bottom: 2rem;
    right: 1.3rem;
    margin-left: 1.3rem;
}

.services-wrapper .service-info h3:after {
	border-bottom: 1px solid #041046;
    content: "";
    display: inline-block;
    height: .1em;
    position: relative;
    vertical-align: middle;
    width: 7rem;
    margin-bottom: .15em;
    left: 1.2rem;
    margin-left: 1.3rem;
}

.services-wrapper .service-link {
    position: absolute;
    bottom: 0;
    left: 5rem;
    text-align: left;
    width: 100%;
    background-color: transparent;
    height: 7rem;
    line-height: 7rem;
    font-weight: 800;
    text-transform: uppercase;
	font-size: 1.4rem;
	color: #5ea8e8;
	letter-spacing: 5px;
}

@media only screen and (max-width: 1280px) {
    .services-wrapper .service-box img {
        height: 15rem;
    }

    .services .section-block {
        padding: 12rem 2rem;
    }
}

@media only screen and (max-width: 1180px) {
	.services-wrapper .service-box .fal {
    	font-size: 9rem;
    }
    
    .services-wrapper .service-text {
    	padding-top: 7rem;
	}
	
	.services-wrapper .service-icon {
    	height: 2rem;
    }
}

@media only screen and (max-width:980px) {
	.services-wrapper .service-box {
		width: 46%;
    }
}

@media only screen and (max-width:580px) {
	.services-wrapper .service-text {
    	padding: 0;
    	padding-top: 2rem;
    }	
    
    .services-wrapper .service-box {
	    width: 100%;
	    margin-bottom: 2rem;
	}
}

/* ==========================================================================
Undersidor
========================================================================== */
.SubPage .top-section {
    display: none;
}

/* intro section */

.SubPage .intro-section .section-block {
    padding-top: 18rem;
    padding-bottom: 15rem;
    background-color: #041046;
}

.SubPage .intro-section * {
    color: #fff;
}

.SubPage .intro-section h2 {
    padding-bottom: 4rem;
    max-width: 95rem;
    margin: 0 auto;
}

.SubPage .intro-section-wide h2 {
    padding-bottom: 4rem;
    max-width: 105rem;
    margin: 0 auto;
}

.SubPage .intro-section a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: normal;
    text-transform: none;
    color: #fff;
}

.SubPage .intro-section a:hover {
    text-decoration: underline;
}

.intro-section .section-title {
    font-size: 4.5rem;
}

.SubPage .intro-section .small-title {
    font-size: 3.5rem;
    line-height: 1.4;
    max-width: 105rem;
    margin: 0 auto;
}

@media only screen and (max-width: 980px) {
    .SubPage .intro-section .section-block {
        padding-top: 14rem;
        padding-bottom: 10rem;
    }

    .intro-section .section-title {
        font-size: 4rem;
    }

    .SubPage .intro-section .small-title {
        font-size: 2.5rem;
    }
}



/* Undersida Company
========================================================================== */

.sub-company .brevik-iso .section-block {
    padding: 8rem 4rem;
}

.brevik-iso .split-content {
    align-items: start;
}

.brevik-iso .split-text {
    padding-top: 0;
    padding-bottom: 0;
}

.sub-company .background-info .split-content {
    width: 55%;
}

.sub-company .background-info .split-image {
    width: 45%;
}

/* logos partners */
.references h2 {
    padding-bottom: 2rem;
}

.references h3 {
    padding-bottom: 6rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.logo-wrap {
    width: 12%;
}

.referens-cards {
	display: flex;
    align-items: center;
    height: 13rem;
    justify-content: center;
}

.references img {
    filter: grayscale(100%);
    opacity: .5;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
	width: 9rem;
}

.references img:hover {
    filter: grayscale(0);
    opacity: 1;
}

@media only screen and (max-width: 980px) {
    .sub-company .background-info .split-image, .sub-company .background-info .split-content {
        width: 100%;
    }

    .references .logo-wrap {
        width: 25%;
    }

    .brevik-iso .split-text {
        padding: 1rem 0;
    }
}

@media only screen and (max-width: 630px) {
    .references .logo-wrap {
        width: 44%;
        margin: 2%;
    }
}

/* Undersida Designs & Projects
========================================================================== */

#news-1-more,
#news-2-more,
#news-3-more,
#news-4-more,
#news-5-more,
#news-6-more,
#news-7-more,
#news-8-more,
#news-9-more,
#news-10-more,
#news-11-more,
#news-12-more,
#news-13-more,
#news-14-more { 
    display: none; 
    padding-bottom: 4rem;
}

.sub-designs .intro-section p {
    text-align: center;
    max-width: 92rem;
    margin: 0 auto;
}

.sub-designs .intro-section h2 {
    padding-bottom: 1rem;
}

.sub-designs .design-tabs h5 {
    padding-top: 2rem;
} 

.SubPage .design-tabs .section-block {
    padding: 10rem 4rem;
}

#design-tabs .col-0, #project-tabs .col-0 {
	position: relative;
	padding: 0 5rem 7rem;
}

.design-tabs a {
    color: #041046;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: normal;
    text-transform: none;
   
    margin-bottom: 2.5rem;
}

.designs-links a {
    margin-bottom: 0;
}

.tabs-list {
	margin: 0;
	padding: 5rem 0 3rem;
	list-style: none;
	text-align: left;
	width: 100%;
}

.tab {
    margin: 0 1rem 0 0;
    cursor: pointer;
    padding: 1rem 1.5rem 1rem 0;
    overflow: hidden;
    position: relative;
    font-weight: 400;
    display: inline-block;
    text-transform: none;
    font-size: 1.7rem;
    letter-spacing: .3rem;
    font-family: 'Titillium Web', sans-serif;
    letter-spacing: normal;
}

.tab.active,.tab:hover  {
    color: #5ea8e8;
}

.tab_container {
	border-top: none;
	width: 100%;
	background: transparent;
}

.tab_content {
	display: none;
}

.tab_drawer_heading { display: none; }

.menu h2 {
    padding-bottom: 2rem;
}

.menu-wrapper {
	display: flex;
	padding: 3rem 0 0;
}

.project-tabs .menu-wrapper img {
    padding-bottom: 3rem;
    max-width: 30rem !important;
    padding-top: 3rem;
}

.menu-col {
	width: 50%;
}

.wrapper-one .menu-col {
    width: 80%;
}

.menu-col:nth-child(1) {
	padding-right: 3rem;
}

.menu-col:nth-child(2) {
	padding-left: 3rem;
}

.menu-item {
	display: flex;
	flex-direction: column;
	padding-bottom: 4rem;
}

.item-title {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 400;
    border-bottom: 2px solid #e6e6e6;
    margin-bottom: 5px;
	text-align: left;
	letter-spacing: .2rem;
    text-transform: uppercase;
    line-height: 1.1;
    color: #fff;
    font-size: 2rem;
    padding-bottom: .5rem;
}

.grill-title {
	border-bottom: none;
    border: 1px solid #C54207;
    padding: 2rem;
    max-width: 30rem;
    text-align: center;
}

.menu-item .price {
	float: right;
}

.menu-item .description {
	font-size: 1.3rem;
	color: #fff;
}

.menu-wrapper.menu-pasta .menu-col,
.menu-wrapper.menu-alacarte .menu-col,
.menu-wrapper.menu-sallad .menu-col {
	width: 50%;
}

.menu-wrapper.menu-salad .menu-col,
.menu-wrapper.menu-dessert .menu-col,
.menu-wrapper.menu-grill .menu-col {
	width: 60%;
}

@media only screen and (max-width:980px) {
	
	.menu-col, .menu-wrapper.menu-pasta .menu-col, 
	.menu-wrapper.menu-alacarte .menu-col, 
	.menu-wrapper.menu-sallad .menu-col {
		width:100%!important;
		padding:0!important;
    }
    
    .menu-wrapper {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 768px) {
	#design-tabs .section-block {
		padding: 0 1.5rem 5rem;
	} 
	
	#design-tabs .col-0 {
		padding: 0 2rem 2rem;
	}
	
	.tabs-list {
		position: sticky;
		top: 6rem;
		background-color: #FFF;
		padding: 2rem 0 1rem;
	    /* overflow-x: scroll;
	    white-space: nowrap; */
	}
	
	.tab {
		font-size: 1.7rem;
		white-space: normal;
		padding: .5rem 1rem;
		margin: 0;
	}
	
	.tab.active {
		padding: .5rem 1rem;
	}
}



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

	#design-tabs .col-0 {
		padding: 0 2rem 2rem !important;
	}
	
	.item-title {
		font-size: 1.5rem;
	}
	
	.menu-item .description {
	    font-size: 1.3rem;
	}
}
/* ==========================================================================
Undersida: Ship design
========================================================================== */
.section-steps .split-content {
  padding-top: 0;
  padding-bottom: 0;
}

.section-steps .split-image {
  position: sticky;
  top: 4rem;
  align-self: flex-start;
}

@media only screen and (max-width:980px) {
.section-steps .split-image {
  position: relative;
}
}
/* Undersida Engineering services
========================================================================== */



/* Undersida Renewables (T-floater)
========================================================================== */
.sub-tfloater .intro-section {
    position: relative;
    background-color: transparent;
    background-image: url(/assets/images/d-floater-2000px.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position:center 80%;
}

.sub-tfloater .intro-section .section-block {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-bottom: 10rem !important;
    background-color: rgba(4, 16, 70, .8);
}

.renewables-mindset * {
    color: #fff;
    max-width: 100rem;
    margin: 0 auto;
}

.times-text {
    font-family: "Times New Roman", Times, serif;
    font-style: italic;
    color: white;
    font-size: 2rem;
}

@media only screen and (max-width: 580px) {
    .sub-tfloater .split-text {
        padding: 5rem 0;
    }
}

/* Undersida Renewables - gammal/dold sida
========================================================================== */
/* .sub-renewables .renewables-mindset {
    background-image: linear-gradient(rgba(13,34,62, .9), rgba(13,34,62,.9)), url(/assets/images/basstech-cover-renewables.jpg);
    max-width: 100% !important;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: auto;
}

.sub-renewables .intro-section h2 {
    padding-bottom: 0;
}

.sub-renewables .renewables-mindset .section-block {
    padding: 14rem 5rem;
}

.sub-renewables .renewables .section-block {
    padding: 10rem 6rem 10rem 0;
}

.sub-renewables .renewables .split-image {
    width: 45%;
    max-height: 80rem;
}

.renewables-mindset * {
    color: #fff;
    max-width: 100rem;
    margin: 0 auto;
}

.times-text {
    font-family: "Times New Roman", Times, serif;
    font-style: italic;
    color: white;
    font-size: 2rem;
}

@media only screen and (max-width: 980px) {
    .sub-renewables .renewables .split-image {
        width: 100%;
    }
}

@media only screen and (max-width: 630px) {
   .renewables .small-title {
        font-size: 2rem;
        line-height: 1.3;
    }
} */

/* Undersida Media
========================================================================== */

.sub-media .pdf-section h2 {
    text-align: left;
}

.sub-media .pdf-section .section-block-wrapper {
    max-width: 120rem;
}

.sub-media .pdf-section .section-block {
    padding: 10rem 5rem;
}

.media-items-wrapper {
	display: flex;
	flex-wrap: wrap;
	position: relative;
}

.logotypes .media-item {
	width: 16%;
	margin: 5% 3%;
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	-moz-transition: 0.2s ease-in-out;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.pdf .media-item {
	width: 12%;
	margin: 3% 1%;
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	-moz-transition: 0.2s ease-in-out;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.media-item:hover {
		-moz-transform: scale(1.02);
	-webkit-transform: scale(1.02);
	transform: scale(1.02);
}

@media only screen and (max-width:1200px) {
	.media-item {
		width: 48%;
	}
}

@media only screen and (max-width: 1024px) {
    .logotypes .media-item {
        width: 25%;
        margin: 6% 3%;
    }

    .pdf .media-item {
        width: 17%;
    }
}

@media only screen and (max-width: 980px) {
    .pdf .media-item {
        width: 22%;
    }

    .logotypes .media-item {
        width: 27%;
    }
}

@media only screen and (max-width:768px) {
	.media-item {
		width: 100%;
		margin: 0;
		margin-bottom: 4rem;
    }

    .pdf .media-item {
        width: 29%;
        margin: 2%;
    }

    .logotypes .media-item {
        width: 41%;
        margin: 6% 4%;
    }
}

@media only screen and (max-width:580px) {
	.media-item {
		width: 100%;
		margin: 0;
		margin-bottom: 4rem;
    }

    .pdf .media-item {
        width: 48%;
        margin: 1%;
    }

    .logotypes .media-item {
        width: 100%;
    }
}

/* Undersida kontakt
========================================================================== */

.sub-contact .contact-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 5rem;
    flex-wrap: wrap;
}

.sub-contact .contact-wrap {
    width: 29%;
    margin: 2%;
    text-align: center;
    transition: 0.2s ease-in-out;
}

.sub-contact .contact-wrap p {
	padding-top: 0;
}

.sub-contact .contact-wrap a {
    font-style: normal;
    text-transform: none;
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: 1px;
}

.sub-contact .contact-wrap a:hover {
    font-weight: 600;
}

.sub-contact .contact-text {
	padding: 0 3rem;
}

.sub-contact .contact-icon {
    display: flex;
    margin-bottom: 2rem;
    justify-content: center;
}

.sub-contact .contact-wrapper .far, .sub-contact .contact-wrapper .fal {
	color: #5ea8e8;
    font-size: 7rem;
    padding-bottom: 1rem;
}

.sub-contact .contact-text * {
    text-align: center;
}

.sub-contact .contact-text h4 {
	font-size: 2rem;
}

/* teams */

.sub-contact .team .section-block {
    padding: 8rem 6rem;
}

.sub-contact .team .section-block-wrapper {
    max-width: 120rem;
}

.teams-items-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.teams-item {
    width: 29%;
    margin: 2%;
    text-align: left;
}

.teams-item .teams-text {
	padding: 3rem 0;
}

.teams-item h3 {
	font-size: 2.2rem;
	padding-bottom: .8rem;
}

.teams-item h4 {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #5ea8e8;
    font-weight: 800;
}

.teams-item .teams-options {
	margin: 1rem 0;
	font-style: normal;
}

.teams-item .teams-option {
	display: flex;
    margin: 1rem 0;
    align-items: center;
    color: #fff;
    letter-spacing: normal;
    font-weight: 400;
    text-transform: none;
    font-size: 1.5rem;
}

.teams-item .teams-option:hover {
	color: #A0CA68;
}

.teams-item .contact-option::before {
    display: inline-block;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    font-size: 2.2rem;
    vertical-align: middle;
    color: #5ea8e8;
    text-align: center;
    margin-left: 1%;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.teams-item .contact-option:hover::before {
    text-decoration: none !important;
    color: #041046;
}

.contact-option.address::before { content: '\f3c5'; }
.contact-option.phone::before { content: '\f879'; }
.contact-option.mail::before { content: '\f0e0'; }

@media only screen and (max-width: 1240px) {
    .teams-item {
        width: 29%;
    }
}

@media only screen and (max-width: 940px) {
    .teams-item {
        width: 45%;
    }
}

@media only screen and (max-width: 940px) {
    .teams-item {
        width: 45%;
    }
}

@media only screen and (max-width: 800px) {
	.sub-contact .contact-wrap {
		width: 100%;
		padding-bottom: 3rem;
	}
}

@media only screen and (max-width: 700px) {
    .teams-item {
        width: 100%;
    }
}

/* Enskilda undersidor: Career
========================================================================== */
.section-career .section-block-wrapper{
    max-width: 920px;
}

.section-career .small-title{
    padding: 2rem 0rem 1rem 0rem; 
    font-size: 2.2rem;
}

.section-career .bold{
    font-weight: bolder;
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: #041b3a;
    box-sizing: border-box;
    padding: 7rem 0 0 0;
}

.footer .container {
	max-width: none;
	box-sizing: border-box;
	margin: 0 auto;
	padding:0;
}

.footer .container .fab {
	margin: 0;
}

.footer p, 
.footer a,
.footer li {
    font-size: 1.5rem;
    padding: 0;
    font-weight: 400; 
    line-height: 1.6em;
    padding-bottom: 4px;
    color: #fff;
    text-decoration: none !important;
    letter-spacing: 0.012em;
}

.footer h3 {
    font-size: 2.2rem;
    padding-bottom: 1.5rem;
    color:#5ea8e8;
    font-weight: 600;
    padding-top: 0;
    letter-spacing: 0.012em;
    text-transform: none;
}

.footer a {
	display: inline-block;
}

.footer a:hover {
    text-decoration: underline !important;
    cursor: pointer;
}

.footer .footer-top {
    max-width: 150rem;
    padding: 0 5rem 7rem 5rem;
   	box-sizing: border-box;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

.footer .social-media {
	padding-top: 3rem;
	color: #5ea8e8;
	text-align: center !important;
}

.footer .social-media .fab:hover { color: #fff !important; cursor: pointer; }

.footer .social-media .fab {
	vertical-align: sub;
	color: #5ea8e8;
	display: inline-block;
	font-size: 2.5rem;
}

.footer-col-top * {
    text-align: left !important;
}

.footer-col-top {
    width: 30%;
}

.footer-col-top:first-child {
	width: 35%;
	align-self: center;
}

.footer img {
	width: 33rem;
	height: auto;
}

.footer ul {
	margin: 0;
	list-style: none;
	padding-left: 0;
}

.footer .container .footer-wrapper {
	width: 100%;
	text-align: center;
	margin: 0 auto;
}

.footer .footer-bottom {
	background-color:  #fff;
	text-align: center;
	width: 100%;
	padding: 2.5rem 0 2rem 0;
}

.footer-col-bottom * {
    text-align: center !important;
    color: #444;
}

.footer-col-bottom p {
    color: #444;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: .1rem;
}
/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
}
a.webbess-stamp {
   color: black;
   text-decoration: none;
}

.webbess-stamp img {
    width: 3rem !important;
    margin-left: 1rem;
}

@media only screen and (max-width:1100px) {
	
	.footer-col-top {
    	width: 25%;
    }
}

@media only screen and (max-width: 870px) {
	
	.footer .footer-bottom {
		min-height: auto;
	}
	
	.footer-col-top {
		width: 100% !important;
		max-width: 50rem;
		margin: 0 auto 3rem;
		
	}
	
	.footer-col-bottom {
		width: 100%;
		margin: 10px 0; 
	}
    
    .footer img {
        width: 22rem;
    }

	.footer *,
	.footer-col-bottom:last-child p, .footer p {
		text-align: center !important;
	}
	
	.footer h3 {
		padding-bottom: 10px;
	}
	
}