/*
2020 © Monoforom
http://www.monoform.no
*/

/* RESET */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* CLEARFIX */

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
 
.clearfix {
  display: inline-block;
}
 
html[xmlns] .clearfix {
  display: block;
}
 
* html .clearfix {
  height: 1%;
}


/* GENERELL STYLING og SKJERM
----------------------------------------------- */

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent; /* For some Androids */
}

body, html {
  height: 100%;
  display: block;
}

body { 
  background: #ffffff;
  color: #003C4E;
  font-family: 'aktiv-grotesk', sans-serif;  /* 400, 700 */
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3em;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  
  padding-left: 90px;
  
  font-variant-numeric: lining-nums;
  -moz-font-feature-settings: "lnum";
  -webkit-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
}

.centerthis {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* MARGER, PADDING OG STØRRELSER */

.fluidwrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.mainpadding {
  padding-left: 40px;
  padding-right: 130px;
}

.fullwidth, img {
  display: block;
  width: 100%;
}

hr {
  border: 0;
  height: 0;
  border-top: 1px solid black;
}

/* FARGEPALLETT */

.bg-lightgrey {
  background: #f1f1f1;
}

.bg-darkgrey {
  background: #a2a2a2;
}

.bg-darkblue {
  background: #003C4E;
}

.bg-lighterblue {
  background: #177996;
}

/* TEKSTSTYLING */

h1 {font-size: 40px; margin-bottom: 0.3em;}
h2 {font-size: 32px; margin-bottom: 0.2em;}
h3 {font-size: 24px; margin-bottom: 0.5em;}
h4 {font-size: 16px;}
h5 {font-size: 14px;}
h6 {font-size: 13px;}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2em;
  font-weight: 700;
}

.textstyle h2 {
  margin-bottom: 0;
}

.textstyle h3 {
  margin-bottom: 0.10em;
}

p {
  line-height: 1.3em;
}

a {
  color: #1d3153;
  text-decoration: underline;
}

a:hover {
  color: #365489;
}

a[href^="tel"] {
  color: inherit; /* Inherit text color of parent element. */
  text-decoration: none; /* Remove underline. */
  /* Additional css `propery: value;` pairs here */
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

.textstyle ol, .textstyle ul, .textstyle li {
	margin-left: 0;
	padding-left: 0;
}

.textstyle ul li {
  list-style-type: disc;
  margin-left: 1.25em;
}

.textstyle ol {
  list-style: decimal;
}

.textstyle ol li {
  list-style-position: inside;
}

.textstyle p+p, .textstyle ul+p, .textstyle ol+p, .textstyle ol+ul, .textstyle ul+ol, .textstyle p+h3, .textstyle h3+h3, .textstyle ul+h3, .textstyle ol+h3, .textstyle p+h2, .textstyle h2+h2, .textstyle ul+h2, .textstyle ol+h2 {
  margin-top: 1.3em;
}

/* RESET FORM */

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=submit],
input[type=password],
textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance:none;
  border: 0;
  border-radius: 0;
}

*:focus {
  outline: 0;
}

::-webkit-input-placeholder {
   color: #232327;
}

:-moz-placeholder { /* Firefox 18- */
   color: #232327;
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #232327;
}

:-ms-input-placeholder {  
   color: #232327;
}

/* BUTTON */

.button {
  display: inline-block;
  border: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  padding: 2rem 4rem 1.5rem 2rem;
  margin: 0;
  margin-bottom: 30px;
  cursor: pointer;
  width: 100%;
  position: relative;
}

.button-lightblue {
  background: #177996;
  color: #fff;
}

.button-lightblue:hover {
    background: #003C4E;
    color: #fff;
}

.button-darkblue {
  background: #003C4E;
  color: #fff;
}

.button-darkblue:hover {
    background: #177996;
    color: #fff;
}

.button:focus {
    border: 2px solid red;
}

.button:active {
    transform: scale(0.99);
}

.button img {
  width: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -19px;
}

/* GRID */

.grid {
  display: block;
  overflow: hidden;
  clear: both;
}

.grid .grid-item {
  float: left;
}

.grid-4-4-2-2-1 {
  width: 102.53623188%;
  margin-right: -2.53623188%;
}

.grid-4-4-2-2-1 .grid-item {
  width: 22.4637681%;
  margin-right: 2.53623188%;
  margin-bottom: 2.53623188%;
}

/* Innhold-slideshow */

.slideshow-area {
  overflow: hidden;
  padding-bottom: 20px;
}

@media only screen and (max-width: 1279px) { /* Tablet Horizontal */
  .slideshow-area {
    padding-bottom: 15px;
  }
}

.slideshow {
  width: 100%;
}

a.slideshow-item {
  display: block;
  width: 60vw;
  max-width: 910px;
  aspect-ratio: 815/500;
  margin: 0 1.2vw;
  position: relative;
  color: var(--color-text);
}

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

@media only screen and (max-width: 767px) { /* Mobile Horizontal */
  .slideshow-item {
    width: 80vw;
  }
}

.slideshow-caption {
  position: absolute;
  left: 20px;
  top: 100%;
  margin-top: 40px;
}

/* Slider */
.slick-loading .slick-list
{
    background: #fff url('/-/css/ajax-loader.gif') center center no-repeat;
}

/* Arrows */

.slick-prev,
.slick-next {
  font-family: "Font Awesome 6 Pro";
  font-size: 0;
  line-height: 0;
  position: absolute;
  
  display: block;
  
  padding: 0;
  
  cursor: pointer;
  
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 100;
  opacity: 0.7;
  
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.slick-prev:before,
.slick-next:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  line-height: 1;
  font-size: 20px;
  font-weight: 500;
  color: #003C4E;
  opacity: 1;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before,
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev
{
    left: 20px;
}
.slick-prev:before
{
    content: '\f053'; /* < */
}

.slick-next
{
    right: 20px;
}

.slick-next:before
{
    content: '\f054'; /* > */
}

/* Dots */

.slick-dots {
  position: absolute;
  bottom: -40px;
  
  display: block;
  
  width: 100%;
  padding: 0 60px;
  margin: 0;
  
  list-style: none;
  
  text-align: center;
}

.slick-dots > li:only-child {
  display: none !important;
}


.slick-dots li {
  position: relative;
  
  display: inline-block;
  
  width: 20px;
  height: 20px;
  margin: 0 2px;
  padding: 0;
  
  cursor: pointer;
}

.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}

.slick-dots li button:before {
  font-family: "Font Awesome 6 Pro";
  font-size: 10px;
  font-weight: 500;
  line-height: 20px;
  
  position: absolute;
  top: 0;
  left: 0;
  
  width: 20px;
  height: 20px;
  
  content: '\f111';
  text-align: center;
  
  color: #003C4E;
  opacity: 1;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 0.5;
}

.slick-dots li.slick-active button:before {
  content: '\f111';
  font-weight: bold;
  color: #003C4E;
  opacity: 1;
}

/* MAIN MENU */

.mobilemenu {
  display: none;
}

.mainmenu-trigger {
  width: 90px; /* Remember to change body padding and mainmenu-close */
  position: fixed; 
  top: 0; 
  left: 0; 
  height: 100%; 
  z-index: 100;
}

.blacknav {
  background: #000;
}

.mainmenu-trigger a {
  display: block;
  width: 100%; 
  text-align: center;
}

.mainmenu-trigger .c-button {
  padding: 30px 0;
}

.mainmenu-trigger a:hover {
  opacity: 0.7;
}

.mainmenu-trigger svg {
  width: 35px;
  margin: 0 auto;
}

.mainmenu-trigger.blacknav svg rect,
.mainmenu-trigger.blacknav svg path {
  fill: #fff;
}

.o-wrapper {
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.c-menu {
  position: fixed;
  z-index: 200;
  background-color: #177996;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-overflow-scrolling: touch;
  padding: 120px 40px 40px 140px;
}

.c-menu--slide-left,
.c-menu--slide-right,
.c-menu--push-left,
.c-menu--push-right {
  height: 100%;
  width: 670px;
  overflow-y: scroll;
}

.c-menu--slide-left {
  top: 0;
  left: 0;
    -webkit-transform: translateX(-670px);
        -ms-transform: translateX(-670px);
            transform: translateX(-670px);
}


.c-menu--slide-left.is-active,
.c-menu--push-left.is-active {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

body.has-active-menu {
  overflow: hidden;
}

.mainmenu-close {
  width: 100px; /* Remember to change body padding and mainmenu-trigger */
  position: absolute; 
  top: 0; 
  left: 0; 
  height: 100%; 
  z-index: 110;
}

.mainmenu-close a {
  display: block;
  width: 100%;
  text-align: center;
}

.mainmenu-close svg {
  width: 28px;
  margin: 0 auto;
}

.mainmenu-close a:hover {
  opacity: 0.8;
}

.mainmenu-trigger .mainmenu-some,
.mainmenu-close .mainmenu-some {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  margin-bottom: -5px;
  bottom: 40px; /* Same as C-menu bottom padding */
}

.mainmenu-trigger .mainmenu-some a {
  margin-top: 5px;
}

.mainmenu-close .mainmenu-some a {
  margin-top: 10px;
}

.mainmenu-trigger .mainmenu-some i,
.mainmenu-close .mainmenu-some i {
  font-size: 32px;
}

.mainmenu-trigger .mainmenu-some i {
  color: #000;
}

.blacknav .mainmenu-some i {
  color: #fff;
}

.mainmenu-close .mainmenu-some i {
  color: #fff;
}

.c-menu ul {
  margin-bottom: 100px;
}

.c-menu ul li a {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-bottom: 40px;
}

.c-menu ul.submeny li a {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 30px;
}

.c-menu ul li a:hover {
  opacity: 0.8;
}

.c-mask {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 0;
  height: 0;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
  transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
}

.c-mask.is-active {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

/* FRONT PAGE */

.frontpage-hero-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover; 
  object-fit: cover;
}

.frontpage-hero-1column,
.frontpage-hero-2column {
  float: left;
  width: 50%;
}

.frontpage-hero-1column {
  background: #177996;
  color: #fff;
  padding: 57px 6% 15% 6%;
}

.main-logo {
  width: 163px; 
}

.frontpage-hero-1column .logocontainer {
  margin-bottom: 25%;
}

.frontpage-hero-1column p {
  font-size: 26px;
  margin-bottom: 20px;
}

.frontpage-hero-1column .intro-url {
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.frontpage-hero-1column .intro-url:hover {
  opacity: 0.8;
}

.frontpage-intro {
  margin-bottom: 15%;
}

.frontpage-symbollinks {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
  margin-bottom: 30px;
}

.symbollink-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3em;
}

.symbollink-item:hover {
  color: #fff;
  opacity: 0.8;
}

.frontpage-stories {
  margin-top: 55px;
}

/* PAGE TEMPLATE */

.logohead {
  padding: 57px 0 65px 0px;
}

.heroimage iframe {
  width: 100%;
  display: block;
}

.heroimage,
.heroimage iframe {
  height: 600px;
}

.heroimage {
  margin-bottom: 50px;
}

.column-main {
  float: left;
  width: 64.7142857%;
}

.column-sidebar {
  float: right;
  width: 29.5%;
}

.excerpt-txt {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 1.35em;
}

.fluidpadding-bottom {
  margin-bottom: 40px;
}

.templatecolumns {
  margin-bottom: -35px;
}

.columns-column1 {
  float: left;
  width: 45.5849889%;
}

.columns-column2 {
  float: right;
  width: 45.5849889%;
}

.downloads {
  border-bottom: 1px solid black;
}

.download-item {
  border-top: 1px solid black;
  padding: 15px 0;
  color: #003C4E;
  text-decoration: none;
}

.download-item img {
  float: left;
  width: 30px;
  margin-right: 14px;
}

.download-item div {
  float: left;
}

.download-item .download-title {
  float: none;
}

.download-item .download-title,
.download-item .download-datagroup {
  margin-top: 10px;
}

.download-item .download-datagroup {
  float: right;
  margin-left: 30px;
}

.download-item .download-title,
.download-item .download-filetype {
  font-weight: 700;
}

.download-item .download-filetype {
  text-transform: uppercase;
  margin-left: 60px;
  width: 66px;
  text-align: right;
}

.download-title-smallscreen {
  display: none;
}

.caption {
  margin-top: 1em;
  font-size: 16px;
  color: #7BABCC;
}

.embedcode {
  margin-top: 35px;
}

.text-in-a-box {
  border: 4px solid #003C4E;
  padding: 30px;
  margin-bottom: 30px;
}

/* NEWS INDEX */

.frontpage-stories h2 {
  font-size: 40px;
  margin-bottom: 0.3em;
}

.stories .grid-item {
  text-decoration: none;
}

.employees .grid-item img,
.stories .grid-item img {
  margin-bottom: 24px;
}

.stories .grid-item:hover img {
  opacity: 0.8;
}

.stories .grid-item p {
  margin-bottom: 1em;
}

.readmore-link {
  font-weight: 700;
}

.morestories {
  text-align: right;
}

.morestories a {
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  background: #003C4E;
  display: inline-block;
  padding: 15px 15px 10px 15px;
  line-height: 18px;
  font-weight: 700;
}

.employees {
  padding-top: 0.6em;
}

.employees p {
  font-size: 18px;
}


/* FOOTER */

.footer {
  background: #177996;
  color: #fff;
  margin-top: 100px;
  padding-top: 45px;
  padding-bottom: 45px;
  font-size: 18px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  opacity: 0.8;
}

.footer-address1,
.footer-certifications {
  float: left;
  margin-bottom: 30px;
}

.footer-address1 {
  margin-right: 100px;
}


.footer-certifications {
  margin-right: 60px;
}

.footer-certified p {
  margin-bottom: 0.7em;
}

.footer-certified a {
  float: left;
  margin-right: 15px;
}

.footer-certificationlinks {
  float: left;
  margin-top: 15px;
}

.footer-certificationlinks a {
  text-decoration: underline;
}

.footer-proudmemberof {
  margin-top: 0;
  margin-right: 60px;
  float: left;
}

.footer-proudmemberof p {
  margin-bottom: 0.7em;
}

.footer-proudmemberof a {
  display: block;
  margin-bottom: 20px;
}

.footer-gaselle {
  float: left;
}

.footer-some {
  float: right;
  margin-bottom: 30px;
}

.footer-some a {
  float: left;
  margin-left: 15px;
}

.footer i {
  font-size: 41px;
  color: #fff;
}

.footer-copyright {
  margin-top: 40px;
  font-size: 16px;
  float: left;
  clear: both;
}

.footer-bottom-border {
  height: 25px;
}

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

/* FOOTER */

.footer-some,
.footer-certifications {
  clear: both;
}

.footer-some {
  float: left;
}

.footer-some a {
  margin-left: 0;
  margin-right: 15px;
}

}

@media only screen and (max-width: 1550px) {
.footer-gaselle {
  clear: both;
}
}

/* TABLET HORISONTAL
----------------------------------------------- */
@media only screen and (max-width: 1279px) {
  
.mainpadding {
  padding-left: 40px;
  padding-right: 60px;
}

/* MAIN MENU */

.c-menu--slide-left,
.c-menu--slide-right,
.c-menu--push-left,
.c-menu--push-right {
  width: 600px;
}

.c-menu--slide-left {
  -webkit-transform: translateX(-600px);
      -ms-transform: translateX(-600px);
          transform: translateX(-600px);
}

.c-menu {
  padding: 100px 40px 40px 120px;  /* Bottom padding same as mainmenu-close-some */
}

.c-menu ul {
  margin-bottom: 70px;
}

.c-menu ul li a {
  font-size: 40px;
}

.c-menu ul.submeny li a {
  font-size: 26px;
  margin-bottom: 20px;
}

.mainmenu-trigger .mainmenu-some i,
.mainmenu-close .mainmenu-some i {
  font-size: 28px;
}

.mainmenu-trigger .mainmenu-some a {
  margin-top: 0;
}

.mainmenu-close .mainmenu-some a {
  margin-top: 5px;
}

/* PAGE TEMPLATE */

.heroimage,
.heroimage iframe {
  height: 500px;
}

/* FOOTER */

.footer {
  margin-top: 70px;
}

}

/* TABLET VERTICAL
----------------------------------------------- */
@media only screen and (max-width: 1023px) {
  
body {
  padding-left: 0;
  font-size: 18px;
}

.mainpadding {
  padding-left: 60px;
  padding-right: 60px;
}

h1, .frontpage-stories h2 {font-size: 36px; margin-bottom: 0.3em;}
h2 {font-size: 30px; margin-bottom: 0.2em;}
h3 {font-size: 22px; margin-bottom: 0.5em;}
h4 {font-size: 16px;}
h5 {font-size: 14px;}
h6 {font-size: 13px;}

.button {
  font-size: 22px;
  padding: 1.5rem 2rem 0.7rem 1.5rem;
  margin-bottom: 25px;
}

.button img {
  width: 15px;
  top: 50%;
  right: 20px;
  margin-top: -15px;
}


/* GRID */  

.grid-4-4-2-2-1 {
  width: 104.25985091%;
  margin-right: -4.25985091%;
}

.grid-4-4-2-2-1 .grid-item {
  width: 45.5804046%;
  margin-right: 4.25985091%;
  margin-bottom: 4.25985091%;
}

/* MAIN MENU */

.mainmenu-close .centerthis {
  position: relative;
  top: 0;
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.c-menu--slide-left,
.c-menu--slide-right,
.c-menu--push-left,
.c-menu--push-right {
  width: 100%;
}

.c-menu--slide-left {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

.mainmenu-trigger {
  display: none;
}

.mobilemenu {
  display: block;
}

.mobilemenu-trigger {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 90px;
}

.mobilemenu-trigger svg {
  margin: 0;
  margin-left: 60px;
  margin-top: 50px;
}

.midnightHeader.default svg rect,
.midnightHeader.default svg path {
  fill: #177996;
}

.midnightHeader.white svg rect,
.midnightHeader.white svg path {
  fill: #fff;
}

.c-menu {
  padding: 140px 60px 60px 60px;
}

.mainmenu-close {
  width: auto;
  top: 50px; 
  left: 60px; 
  height: auto; 
}

.mainmenu-close a {
  width: auto;
  text-align: left;
}

.mainmenu-close svg {
  margin: 0;
}

.mainmenu-trigger .mainmenu-some,
.mainmenu-close .mainmenu-some {
  display: none;
}

/* FRONT PAGE */

.frontpage-hero-1column,
.frontpage-hero-2column {
  width: 100%;
}

.frontpage-hero-1column {
  padding: 50px 60px 60px 60px;
}

.main-logo {
  float: right;
  width: 120px; 
}

.frontpage-hero-1column .logocontainer {
  margin-bottom: 15%;
}

.frontpage-hero-1column p {
  font-size: 26px;
  margin-bottom: 20px;
}

.frontpage-hero-1column .intro-url {
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.frontpage-hero-2column {
  height: 400px;
}

/* PAGE TEMPLATE */

.logohead {
  padding: 40px 0 30px 0px;
}

.heroimage,
.heroimage iframe {
  height: 300px;
}

.column-main,
.column-sidebar {
  width: 100%;
}

.column-sidebar {
  margin-top: 1.4em;
}

.columns-column1 {
  width: 100%;
  margin-bottom: 1.4em;
}

.columns-column2 {
  width: 100%;
}

.excerpt-txt {
  font-size: 22px;
}

.download-item {
  padding: 15px 0 7px 0;
}

.download-item img {
  margin-bottom: 10px;
}

.download-title-bigscreen {
  display: none;
}

.download-title-smallscreen {
  display: block;
}

.download-item .download-title,
.download-item .download-datagroup {
  float: none;
  margin-top: 1px;
}

.download-item .download-datagroup {
  margin-left: 0;
}

.download-item .download-filetype {
  margin-left: 20px;
  text-align: left;
}

.text-in-a-box {
  border: 3px solid #003C4E;
  padding: 1.5rem;
  margin-bottom: 25px;
}

.employees .grid-item img,
.stories .grid-item img {
  margin-bottom: 18px;
}

.employees p {
  font-size: 16px;
}

.morestories a {
  font-size: 16px;
  padding: 12px 12px 7px 12px;
  line-height: 16px;
}

/* FOOTER */

.footer {
  font-size: 16px;
}

}

/* MOBILE HORISONTAL
----------------------------------------------- */
@media only screen and (max-width: 767px) {

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

/* MAIN MENU */

.mobilemenu-trigger svg {
  margin-left: 30px;
}

.c-menu {
  padding: 120px 30px 30px 30px;
}

.c-menu ul li a {
  font-size: 28px;
  margin-bottom: 20px;
}

.c-menu ul.submeny li a {
  font-size: 20px;
  margin-bottom: 12px;
}

.mainmenu-close {
  left: 30px; 
}

/* FRONT PAGE */

.frontpage-hero-1column {
  padding: 50px 30px 30px 30px;
}

/* PAGE TEMPLATE */

.heroimage,
.heroimage iframe {
  height: 250px;
}

/* FOOTER */

.footer {
  margin-top: 50px;
}

}

/* MOBILE VERTICAL
----------------------------------------------- */
@media only screen and (max-width: 567px) {
  
/* GRID */  

.grid-4-4-2-2-1 {
  width: 100%;
  margin-right: 0;
}

.grid-4-4-2-2-1 .grid-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 30px;
}

.download-item .download-title,
.download-item .download-datagroup {
  clear: both;
}

/* FRONT PAGE */

.frontpage-hero-1column p {
  font-size: 24px;
}

.frontpage-hero-1column .intro-url {
  font-size: 20px;
}


/* FOOTER */

.footer-address1,
.footer-address2 {
  margin-right: 0;
  width: 100%;
}


}