@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,600|Open+Sans:300,400');
@import url('https://fonts.googleapis.com/css?family=M+PLUS+1p:100,300,400,700');

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.4;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.4;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
   animation-delay: 0.3s;
}

@-webkit-keyframes fadeInFull {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInFull {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeInFull {
  -webkit-animation-name: fadeInFull;
  animation-name: fadeInFull;
  animation-delay: 0.1s;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/*
 * HTML5 Boilerplate
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
}

body {
    font-size: 1em;
    line-height: 1.4;
    margin:0;

    display: flex;
  	min-height: 100vh;
  	flex-direction: column;
  	justify-content: space-between
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

img {
    vertical-align: middle;
}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* TEXT STYLES ======================================================================================== */

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding:0;
	font-weight: 400;
	font-family: 'M PLUS 1p', sans-serif;
	color: #4b69a5;
}

h1 { 
	font-size: 2.3em;
	width: 70%;
	margin: 0 auto;
}

h2 { 
	font-size: 1.5em;
}

h3 { 
	font-size: 20px;
	text-align: left;
	margin: 10px 0;
}

.info-box h3, .grid-text h3 {
	margin-top: 10px;
}

p { 
	color: #484848;
	line-height: 170%;
	font-size: 13px;
 	font-family: 'M PLUS 1p', sans-serif;
	margin: 0;
}

span { 
	color: #484848;
	line-height: 160%;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 15px;
	display: block;
}

/* INGRESS */

.ingress{
	font-size: 18px;
	line-height: 155%;
	width: 95%;
	margin: 0 auto;
	font-weight: 300;
	color: #484848;
}

/* TABLES */

table {
  font-family: "Open Sans", sans-serif;
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  margin-bottom: 15px;
}

table td, table th {
  border: 1px solid #ddd;
  padding: 8px;
  font-weight: normal;
  width: 55%;
}

table tr:nth-child(even){background-color: #f2f2f2;}

table th {
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: left;
  background-color: #d5374f;
  color: white;
}


/* TESTIMONIAL */

.testimonial {
	font-family: 'Prata', serif;
 	text-transform: none;	
	font-style:italic;
	font-size: 17px;
	color: #484848;
	padding: 20px 0px 0px 0px;
	text-align: center;
	font-weight: 200;
	width: 70%;
	margin: 0 auto;
}

.testimonial-name {
	font-size: 12px;
	padding: 5px;
	font-style: italic;
	text-align: center;
	font-weight: 400;
	opacity: 0.8;
}

.two-column .testimonial{
	text-align: left;
	width: 80%;	
}

.two-column .testimonial-name {
	text-align: left;
	padding: 5px 0 0 0;
	width: 80%;
	margin: 0 auto;
	margin-bottom: 15px;
}

/* BILDTEXT / CAPTION */

.caption{
	font-size: 10px;
	text-align: center;
	display: block;
	margin-top: 10px;
}
.two-column .caption{
	text-align: left;
}

/* AVDELARE */

hr {
	width: 40px;
	border-top: 4px #4b69a5 solid;
	margin: 30px auto;
}

/* LÄNKAR ======================================================================================== */

a {
	text-decoration: none;
	color:#1360bf ;
	-webkit-transition: all 230ms ease-in-out;
 	 -moz-transition: all 230ms ease-in-out;
 	 -ms-transition: all 230ms ease-in-out;
 	 -o-transition: all 230ms ease-in-out;
 	 transition: all 230ms ease-in-out;
}

a:hover {
	text-decoration: none;
	color:#4b69a5;
	opacity: 1;
	-webkit-transition: all 230ms ease-in-out;
 	 -moz-transition: all 230ms ease-in-out;
 	 -ms-transition: all 230ms ease-in-out;
 	 -o-transition: all 230ms ease-in-out;
 	 transition: all 230ms ease-in-out;
}

/* MENY ===========================================================================================*/
/* header */

.header .logo {
  	display: inline-block;
  	color: #4b69a5;
  	font-family: 'Open Sans', sans-serif;
	margin: 0;
  	position: absolute;
  	top: 50%;
  	-ms-transform: translate(0%, -50%);
  	transform: translate(0%, -50%);
  	text-decoration: none;
  	border:none;
  	font-size: 19px;
  	padding: 15px;
  	border: 2px solid transparent;
  	line-height: 100%;

  	/*background-image: url(../IMG/scandNY5.gif);
  	color:transparent;
  	background-repeat: no-repeat;
  	height: 30px;*/
  }
.header .logo:hover {
	border: 2px solid;
}

.flag-link {
    width: 20px;
    margin: 0;
  	position: absolute;
  	top: 50%;
  	right:-40px;
  	-ms-transform: translate(0%, -50%);
  	transform: translate(0%, -50%);
}

.header {
	z-index: 3;
	overflow:hidden;
	width: 100%;
	background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,.11);
    position: relative;
    min-height: 80px;
}
.header-wrapper {
	width: 80%;
	margin: 0 auto;
    min-height: 80px;
    position: relative;
}
.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 300;
}

.header li a {
  display: block;
  padding: 15px 28px;
  text-decoration: none;
  border:none;
  color:#484848;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #4b69a5;
  color: #fff;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 37px 20px 17px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #484848;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 28px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #484848;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 8px;
}

.header .menu-icon .navicon:after {
  top: -8px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* HERO */

.hero-wrapper {
	text-align: center;
	background-color: #111;
	position: relative;
}
.hero {
    margin: 0;
    padding: 0;
    display: block;
    height: 40vw;
    position: relative;
    background-image: url(../IMG/blue-hour-4117497_1920.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position-y: 40%;
	opacity: 0.5;
}
.hero-text h1, .hero-text .ingress {
	color: #fff;
	font-size: 3.4em;
	font-weight: 200;
	width: 95%;
}
.hero .ingress {
	padding: 0;
	margin: 0 auto;
}
.hero-text {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* FRONTPAGE GRID */

.frontpage h2 {
	text-align: center;
	width: 60%;
	margin:80px auto 40px auto;
	font-size: 30px;
}

.frontpage-grid {
	overflow: hidden;
	width: 75%;
	margin: 0 auto;
}
.grid-box {
	width: 32%;
	float:left;
	background-color: #f7f7f7;
	box-sizing: border-box;
	margin-right: 2%;
	margin-top: 40px;
	cursor: pointer;
}
.grid-box:nth-child(3n) {
	margin-right: 0;
}
.grid-box:nth-child(3n+1) {
	clear: both;
}
.grid-image {
	overflow: hidden;
}
.grid-image img {	
	width:100%;
  	height:15vw;
  	object-fit:cover;
  	outline: 15px solid white;
  	transition: all 0.5s ease-in-out;
  	filter: grayscale(1) brightness(0.8);
}
.grid-text {
	padding: 30px 40px 40px 40px;
}
.grid-box:hover {
	background-color: rgba(75,105,165,0.1);
}
.grid-box:hover > a .grid-image img {
	filter: grayscale(0) brightness(1);
	transform: scale(1.04);
}

/* CONTENT */

.intro {
	background-color: #f7f7f7;
	width: 100%;
	padding: 90px 20%;
	box-sizing: border-box;
	text-align: center;
}

section {
	width: 55%;
	margin: 40px auto;
}
section img {
	margin: 15px auto;
	width: 50%;
	display:table;
}

.two-column {
	width: 100%;	
	margin: 30px auto 0 auto;
	overflow: hidden;
/*	border-top: 1px solid #d4d4d4;*/
	padding: 20px 0 0 0;
}
.col {
	width: 47%;	
	float: left;
	box-sizing: border-box;
	margin-right: 5%;
}
.col.thin {
	width: 35%;	
}
.col.broad {
	width: 60%;	
}
.col:nth-child(2) {
	margin-right: 0;
}

.two-column img {
	width: 100%;
	margin: 0;
	padding: 0;
	margin-bottom: 10px;
}

.col .info-box {
	margin: 0;
	width: 100%;
}

/* SITE SPECIFIC STYLES */

.col.about-info {
	width: 58%;	
}
.col.about-img {
	width: 37%;	
}
.col.about-img img {
	max-width: 300px;
}

/* INPAGE LINKS */

.inpage-links {
	overflow: hidden;
	border-top: 1px solid #d4d4d4;
	padding-top: 50px;
	margin-top: 50px;
}
.inpage-links .grid-box {
	width: 31%;
	margin-top: 0;
}
.inpage-links .grid-box:nth-child(3n+1) {
	clear: none;
}
.inpage-links .grid-image img {	
  	height:10vw;
  	margin: 0;
}
.inpage-links .grid-text {
	padding: 20px;
}

/* INNEHÅLL =============================================================================================================*/

.image-wrap {
	overflow: hidden;
	width: 80%;
	margin: 0 auto;
}
.image-wrap img {
	float:left;
	width: 49%;
}
.image-wrap img:first-child {
	margin-right: 1%;
}
.video {
	z-index: 100;
	position: relative;
	margin: 15px auto;
	width: 50%;
	display:table;
	border-radius: 1%;
}
.video::before {
	content: "";
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    z-index: 1;
    opacity: 0.25;
}
.video::after {
	content: "";
	position: absolute;
    top:0;
    left:0;
    bottom:0;
    right: 0;
    width:130px;
    height:130px;
    background-image: url(../IMG/play-button.svg);
    z-index: 1;
    opacity: 0.7;
    background-repeat: no-repeat;
    margin: auto;
    -webkit-transition: all 330ms ease-in-out;
 	 -moz-transition: all 330ms ease-in-out;
 	 -ms-transition: all 330ms ease-in-out;
 	 -o-transition: all 330ms ease-in-out;
 	 transition: all 330ms ease-in-out;
 	border-radius: 1%;
}
.video img{
	width: 100%;
	margin:0;
}

.video:hover::after {
	transform: scale(1.06);
}

/* LISTOR ===========================================================================================*/

section ul {
	font-family: "Open Sans", sans-serif;
	color: #484848;
	list-style: square;
	font-size: 14px;
}

section li {
	line-height: 160%;
	padding: 5px 0;
}

section li li {
	line-height: 1.5;
	list-style: none;
}

/* KUNDER =========================================================================*/

.clients {
	font-family: 'Prata', serif;
 	text-transform:none;	
	font-style:normal;
	font-size: 20px;
	color: #484848;
	padding: 20px 0px 0px 0px;
	text-align: center;
	font-weight: 200;
	width: 100%;
}

/* INFOBOX - Pris etc. ============================================================*/

.info-box {
	background-color: #f7f7f7; /* ljusgrå */
	width: 70%;
	margin: 4% auto;
	padding: 35px;
	box-sizing: border-box;
}

.info-box h6{
	margin-top: 0px;
}

.info-box li{
	list-style: square;
	color: #484848;;
	line-height: 25px;
	font-size: 14px;
}

/* LÄS MER KNAPP ================================================================*/

.read-more {
	margin: 0 auto;
	font-family: "Open Sans", sans-serif;
    font-size: 10px;
    color: #4b69a5; 
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid #4b69a5;
    padding: 10px;
    margin-top: 20px;
    display: inline-block;
    -webkit-transition: all 330ms ease-in-out;
 	 -moz-transition: all 330ms ease-in-out;
 	 -ms-transition: all 330ms ease-in-out;
 	 -o-transition: all 330ms ease-in-out;
 	 transition: all 330ms ease-in-out;
}
.read-more:after {
	content: ' »';
}

.grid-box:hover .read-more {
 	 color: #fff;
 	 background-color: #4b69a5;
}
/* STAFF  =========================================================================*/

.about-us {
	width: 100%;	
	margin: 0 auto;
	overflow: hidden;
}
.about-us p {
	text-align: justify;
}
.profile {
	width: 50%;
	overflow: hidden;
	float: left;
	padding: 30px 0 50px 0;
}
.profile:nth-child(odd){
    clear:both;
}
.profile-img img {
    width: 14vw;
    height: 14vw;
    border-radius: 50%;
}
.profile-text{
	width: 90%;
	display: table;
	margin: 0 auto;
}
.profile-text h3 { 
	padding: 0;
	text-align: center;
}

/* FOOTER  =========================================================================*/

footer {
	background-color: #4b69a5;
	margin: 60px 0 0 0;
	width: 100%;
	padding: 40px 0;
    box-sizing: border-box;
}

footer span {
	font-family: "Open Sans", sans-serif;	
	color: #fff;
	font-size: 13px;
	text-align: center;
	margin: 0;
}



/* 48em = 768px -- DESKTOP MENU */ 

@media (min-width: 48em) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 30px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}


/* MOBILDESIGN ====================================================================*/
/* MEDIUM SIZE - RESPONSIVE *******************/

@media all and (max-width: 1200px) {

	.hero-text h1, .hero-text .ingress {
	    color: #fff;
	    font-size: 3em;
	    font-weight: 200;
	    width: 100%;
	}
}

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

	.frontpage-grid {
	    width: 95%;
	}
	section {
		width: 70%;
	}
}

@media all and (max-width: 855px) {

	.header-wrapper {
	 	width: 100%;
	}
	.header .logo {
    	position: relative;
    	top: 0%;
    	-ms-transform: translate(0%, 0%);
    	transform: translate(0%, 0%);
    	margin-top: 18px;
    	left: 15px;
	}
	.flag-link {
		display: none;
	}

	.frontpage h2 {
	    width: 80%;
	}

	.info-box {
		width: 90%;
		margin: 25px 0px;
		padding: 40px;
	}

	.info-box li{
		font-size: 13px;
	}

	.profile {
		width: 100%;
		float:none;
		padding: 10px 0 30px 0;
	}
	.profile-img img {
	    width: 30vw;
	    height: 30vw;
	}
	.profile-text{
		width: 100%;
		float: none;
	}

}

/* EN KOLUMN *******************/

@media all and (max-width: 768px) {
	h1 {
	    font-size: 2em;
	    width: 90%;
	}
	.hero {
	    height: 80vw;
	}
	.hero-text {
	    width: 90%;
	}
	.hero-text h1 {
	    font-size: 8vw;
	}
	.frontpage h2 {
	    width: 80%;
	    margin: 50px auto 10px auto;
	    font-size: 5vw;
	}
	.grid-box {
	    width: 90%;
	    margin-right: 0;
	    margin: 40px auto 0 auto !important;
	    float:none;
	}
	.grid-image img {	
		width:100%;
	  	height:45vw;
	  	object-fit:cover;
	  	outline: 15px solid white;
	  	transition: all 0.5s ease-in-out;
	  	filter: grayscale(1) brightness(0.8);
	}
	.grid-text {
		padding: 30px 40px 40px 40px;
	}
	.inpage {
		
	}
	.inpage-links .grid-box {
		width: 90%;
	    margin: 10px auto 0 auto !important;
	    float:none;
	}
	.inpage-links .grid-image img {
		display: none;
	}
	.intro {
	    padding: 60px 0;
	}
	section {
	    width: 85%;
	}
	.ingress {
	    font-size: 15px;
	    width: 85%;
	}
	.col, .col.about-info, .col.about-img, .col.thin, .col.broad {
		width: 100%;
	}
	.col:nth-child(2) {
	    margin-top: 15px;
	}
	.col.about-img img {
	    max-width: 320px;
	    margin: 0 auto;
	}
	.info-box {
		width: 100%;
		padding: 20px;
	}
	.testimonial {
		width: 100%;
	}

}