HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/somerenslust.komma.pro/wwwroot/css/style.css
@charset "UTF-8";

/* ==========================================================================
   Config settings
   @mixin ========================================================================= */

/**
 * Define grid columns
 *
 * The inner grid is the section where the content is
 * The outer grid is the inner grid with extra margin columns on each side
 */

/**
 * Define breakpoint for given formats
 */

/* Bourbon 4.0.2
 * http://bourbon.io
 * Copyright 2011-2014 thoughtbot, inc.
 * MIT License */

/* ==========================================================================
   Font related functions
   @mixin ========================================================================= */

/**
 * Add some functions for readability
 * Return font-weight based on name
 */

/* ==========================================================================
  Functions used in grid calculation
  @mixin ========================================================================= */

/**
  * This is where the magic happens
  * Return percentage based on amount of columns
  * Use parent column size to adjust the origin
  */

/**
  * Default function for columns
  * Return as percentage
  */

/**
  * Return as viewport width
  */

/* ==========================================================================
   Basic style settings
   @mixin ========================================================================= */

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
 * Set up the body
 *
 * 1. This is the base for al rem units
 */

html {
  font-size: 18px;
  line-height: 1.6;
}

/**
 * 1.Default display for images is block to lose the extra margin below the image
 * 2. Remove border / especially on older browsers
 */

img {
  display: block;
  border: none;
}

/**
  * Add translation to prevent recoloring from autocomplete
  */

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  -webkit-transition: all 9999s linear 9999s;
  transition: all 9999s linear 9999s;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  -webkit-transition: all 9999s linear 9999s;
  transition: all 9999s linear 9999s;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  -webkit-transition: all 9999s linear 9999s;
  transition: all 9999s linear 9999s;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  -webkit-transition: all 9999s linear 9999s;
  transition: all 9999s linear 9999s;
}

/*
 * Remove default margin around figure
 */

figure {
  margin: 0;
}

/*==========================================================================
  Grid
  @mixin ========================================================================= */

/**
  * Grid row
  *
  * 1. The outer two columns are just margin
  * 2. Prevent inline-block cells wrapping
  * 3. Prevent vertical spacing between inline-blocks
  */

.grid-row {
  width: 85.71428571%;
  max-width: 1440px;
  margin: 0 auto;
  font-size: 0;
  line-height: 0;
  /**
   * The full row doesn't have the two outer margin rows
   * They stretch till both ends of the window
   */
}

.grid-row.full-row {
  width: 100%;
  max-width: none;
}

/**
 * Grid column
 *
 * 1. Reset white-space inherited from `.grid`
 * 2. Reset font-size inherited from `.grid`
 * 3. Reset line-height inherited from `.grid`
 */

.grid-col {
  position: relative;
  display: inline-block;
  overflow: hidden;
  white-space: normal;
  font-size: 1rem;
  line-height: 1.6;
  /**
   * Center column
   *
   * 1. 'inline-block' doesn't center with margin '0 auto'
   */
}

.grid-col.center {
  display: block;
  margin: 0 auto;
}

/* Column dimensions
   @mixin ========================================================================= */

/*
   * Calculate width by dividing a full width into 12 columns
   * Create a class for each column
   */

.col-1,
.col-lg-1 {
  width: 8.33333333%;
}

.full-row .col-1,
.full-row .col-lg-1 {
  width: 7.14285714%;
}

/* Column shifts
   @mixin ========================================================================= */

.offset-1,
.offset-lg-1 {
  margin-left: 8.33333333%;
}

/* Column dimensions
   @mixin ========================================================================= */

/*
   * Calculate width by dividing a full width into 12 columns
   * Create a class for each column
   */

.col-2,
.col-lg-2 {
  width: 16.66666667%;
}

.full-row .col-2,
.full-row .col-lg-2 {
  width: 14.28571429%;
}

/* Column shifts
   @mixin ========================================================================= */

.offset-2,
.offset-lg-2 {
  margin-left: 16.66666667%;
}

/* Column dimensions
   @mixin ========================================================================= */

/*
   * Calculate width by dividing a full width into 12 columns
   * Create a class for each column
   */

.col-3,
.col-lg-3 {
  width: 25%;
}

.full-row .col-3,
.full-row .col-lg-3 {
  width: 21.42857143%;
}

/* Column shifts
   @mixin ========================================================================= */

.offset-3,
.offset-lg-3 {
  margin-left: 25%;
}

/* Column dimensions
   @mixin ========================================================================= */

/*
   * Calculate width by dividing a full width into 12 columns
   * Create a class for each column
   */

.col-4,
.col-lg-4 {
  width: 33.33333333%;
}

.full-row .col-4,
.full-row .col-lg-4 {
  width: 28.57142857%;
}

/* Column shifts
   @mixin ========================================================================= */

.offset-4,
.offset-lg-4 {
  margin-left: 33.33333333%;
}

/* Column dimensions
   @mixin ========================================================================= */

/*
   * Calculate width by dividing a full width into 12 columns
   * Create a class for each column
   */

.col-5,
.col-lg-5 {
  width: 41.66666667%;
}

.full-row .col-5,
.full-row .col-lg-5 {
  width: 35.71428571%;
}

/* Column shifts
   @mixin ========================================================================= */

.offset-5,
.offset-lg-5 {
  margin-left: 41.66666667%;
}

/* Column dimensions
   @mixin ========================================================================= */

/*
   * Calculate width by dividing a full width into 12 columns
   * Create a class for each column
   */

.col-6,
.col-lg-6 {
  width: 50%;
}

.full-row .col-6,
.full-row .col-lg-6 {
  width: 42.85714286%;
}

/* Column shifts
   @mixin ========================================================================= */

.offset-6,
.offset-lg-6 {
  margin-left: 50%;
}

/* Column dimensions
   @mixin ========================================================================= */

/*
   * Calculate width by dividing a full width into 12 columns
   * Create a class for each column
   */

.col-7,
.col-lg-7 {
  width: 58.33333333%;
}

.full-row .col-7,
.full-row .col-lg-7 {
  width: 50%;
}

/* Column shifts
   @mixin ========================================================================= */

.offset-7,
.offset-lg-7 {
  margin-left: 58.33333333%;
}

/* Column dimensions
   @mixin ========================================================================= */

/*
   * Calculate width by dividing a full width into 12 columns
   * Create a class for each column
   */

.col-8,
.col-lg-8 {
  width: 66.66666667%;
}

.full-row .col-8,
.full-row .col-lg-8 {
  width: 57.14285714%;
}

/* Column shifts
   @mixin ========================================================================= */

.offset-8,
.offset-lg-8 {
  margin-left: 66.66666667%;
}

/* Column dimensions
   @mixin ========================================================================= */

/*
   * Calculate width by dividing a full width into 12 columns
   * Create a class for each column
   */

.col-9,
.col-lg-9 {
  width: 75%;
}

.full-row .col-9,
.full-row .col-lg-9 {
  width: 64.28571429%;
}

/* Column shifts
   @mixin ========================================================================= */

.offset-9,
.offset-lg-9 {
  margin-left: 75%;
}

/* Column dimensions
   @mixin ========================================================================= */

/*
   * Calculate width by dividing a full width into 12 columns
   * Create a class for each column
   */

.col-10,
.col-lg-10 {
  width: 83.33333333%;
}

.full-row .col-10,
.full-row .col-lg-10 {
  width: 71.42857143%;
}

/* Column shifts
   @mixin ========================================================================= */

.offset-10,
.offset-lg-10 {
  margin-left: 83.33333333%;
}

/* Column dimensions
   @mixin ========================================================================= */

/*
   * Calculate width by dividing a full width into 12 columns
   * Create a class for each column
   */

.col-11,
.col-lg-11 {
  width: 91.66666667%;
}

.full-row .col-11,
.full-row .col-lg-11 {
  width: 78.57142857%;
}

/* Column shifts
   @mixin ========================================================================= */

.offset-11,
.offset-lg-11 {
  margin-left: 91.66666667%;
}

/* Column dimensions
   @mixin ========================================================================= */

/*
   * Calculate width by dividing a full width into 12 columns
   * Create a class for each column
   */

.col-12,
.col-lg-12 {
  width: 100%;
}

.full-row .col-12,
.full-row .col-lg-12 {
  width: 85.71428571%;
}

/* Column shifts
   @mixin ========================================================================= */

.offset-12,
.offset-lg-12 {
  margin-left: 100%;
}

/* Column dimensions
   @mixin ========================================================================= */

/*
   * Calculate width by dividing a full width into 12 columns
   * Create a class for each column
   */

.col-13,
.col-lg-13 {
  width: 108.33333333%;
}

.full-row .col-13,
.full-row .col-lg-13 {
  width: 92.85714286%;
}

/* Column shifts
   @mixin ========================================================================= */

.offset-13,
.offset-lg-13 {
  margin-left: 108.33333333%;
}

/* Column dimensions
   @mixin ========================================================================= */

/*
   * Calculate width by dividing a full width into 12 columns
   * Create a class for each column
   */

.col-14,
.col-lg-14 {
  width: 116.66666667%;
}

.full-row .col-14,
.full-row .col-lg-14 {
  width: 100%;
}

/* Column shifts
   @mixin ========================================================================= */

.offset-14,
.offset-lg-14 {
  margin-left: 116.66666667%;
}

/* Media queries
 @mixin ========================================================================= */

/*
  * Create a separate loop because of order for css rendering
  * because else it would overrule a previous media query
  */

@media screen and (min-width: 1601px) {
  .col-xl-1 {
    width: 8.33333333%;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
}

@media screen and (max-width: 1080px) {
  .col-md-1 {
    width: 8.33333333%;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-1 {
    width: 8.33333333%;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
}

@media screen and (max-width: 400px) {
  .col-xs-1 {
    width: 8.33333333%;
  }

  .offset-xs-1 {
    margin-left: 8.33333333%;
  }
}

@media screen and (min-width: 1601px) {
  .col-xl-2 {
    width: 16.66666667%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
}

@media screen and (max-width: 1080px) {
  .col-md-2 {
    width: 16.66666667%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-2 {
    width: 16.66666667%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
}

@media screen and (max-width: 400px) {
  .col-xs-2 {
    width: 16.66666667%;
  }

  .offset-xs-2 {
    margin-left: 16.66666667%;
  }
}

@media screen and (min-width: 1601px) {
  .col-xl-3 {
    width: 25%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }
}

@media screen and (max-width: 1080px) {
  .col-md-3 {
    width: 25%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-3 {
    width: 25%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }
}

@media screen and (max-width: 400px) {
  .col-xs-3 {
    width: 25%;
  }

  .offset-xs-3 {
    margin-left: 25%;
  }
}

@media screen and (min-width: 1601px) {
  .col-xl-4 {
    width: 33.33333333%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
}

@media screen and (max-width: 1080px) {
  .col-md-4 {
    width: 33.33333333%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-4 {
    width: 33.33333333%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
}

@media screen and (max-width: 400px) {
  .col-xs-4 {
    width: 33.33333333%;
  }

  .offset-xs-4 {
    margin-left: 33.33333333%;
  }
}

@media screen and (min-width: 1601px) {
  .col-xl-5 {
    width: 41.66666667%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
}

@media screen and (max-width: 1080px) {
  .col-md-5 {
    width: 41.66666667%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-5 {
    width: 41.66666667%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
}

@media screen and (max-width: 400px) {
  .col-xs-5 {
    width: 41.66666667%;
  }

  .offset-xs-5 {
    margin-left: 41.66666667%;
  }
}

@media screen and (min-width: 1601px) {
  .col-xl-6 {
    width: 50%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }
}

@media screen and (max-width: 1080px) {
  .col-md-6 {
    width: 50%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-6 {
    width: 50%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }
}

@media screen and (max-width: 400px) {
  .col-xs-6 {
    width: 50%;
  }

  .offset-xs-6 {
    margin-left: 50%;
  }
}

@media screen and (min-width: 1601px) {
  .col-xl-7 {
    width: 58.33333333%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
}

@media screen and (max-width: 1080px) {
  .col-md-7 {
    width: 58.33333333%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-7 {
    width: 58.33333333%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
}

@media screen and (max-width: 400px) {
  .col-xs-7 {
    width: 58.33333333%;
  }

  .offset-xs-7 {
    margin-left: 58.33333333%;
  }
}

@media screen and (min-width: 1601px) {
  .col-xl-8 {
    width: 66.66666667%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
}

@media screen and (max-width: 1080px) {
  .col-md-8 {
    width: 66.66666667%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-8 {
    width: 66.66666667%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
}

@media screen and (max-width: 400px) {
  .col-xs-8 {
    width: 66.66666667%;
  }

  .offset-xs-8 {
    margin-left: 66.66666667%;
  }
}

@media screen and (min-width: 1601px) {
  .col-xl-9 {
    width: 75%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }
}

@media screen and (max-width: 1080px) {
  .col-md-9 {
    width: 75%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-9 {
    width: 75%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }
}

@media screen and (max-width: 400px) {
  .col-xs-9 {
    width: 75%;
  }

  .offset-xs-9 {
    margin-left: 75%;
  }
}

@media screen and (min-width: 1601px) {
  .col-xl-10 {
    width: 83.33333333%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
}

@media screen and (max-width: 1080px) {
  .col-md-10 {
    width: 83.33333333%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-10 {
    width: 83.33333333%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
}

@media screen and (max-width: 400px) {
  .col-xs-10 {
    width: 83.33333333%;
  }

  .offset-xs-10 {
    margin-left: 83.33333333%;
  }
}

@media screen and (min-width: 1601px) {
  .col-xl-11 {
    width: 91.66666667%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}

@media screen and (max-width: 1080px) {
  .col-md-11 {
    width: 91.66666667%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-11 {
    width: 91.66666667%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}

@media screen and (max-width: 400px) {
  .col-xs-11 {
    width: 91.66666667%;
  }

  .offset-xs-11 {
    margin-left: 91.66666667%;
  }
}

@media screen and (min-width: 1601px) {
  .col-xl-12 {
    width: 100%;
  }

  .offset-xl-12 {
    margin-left: 100%;
  }
}

@media screen and (max-width: 1080px) {
  .col-md-12 {
    width: 100%;
  }

  .offset-md-12 {
    margin-left: 100%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-12 {
    width: 100%;
  }

  .offset-sm-12 {
    margin-left: 100%;
  }
}

@media screen and (max-width: 400px) {
  .col-xs-12 {
    width: 100%;
  }

  .offset-xs-12 {
    margin-left: 100%;
  }
}

@media screen and (min-width: 1601px) {
  .col-xl-13 {
    width: 108.33333333%;
  }

  .offset-xl-13 {
    margin-left: 108.33333333%;
  }
}

@media screen and (max-width: 1080px) {
  .col-md-13 {
    width: 108.33333333%;
  }

  .offset-md-13 {
    margin-left: 108.33333333%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-13 {
    width: 108.33333333%;
  }

  .offset-sm-13 {
    margin-left: 108.33333333%;
  }
}

@media screen and (max-width: 400px) {
  .col-xs-13 {
    width: 108.33333333%;
  }

  .offset-xs-13 {
    margin-left: 108.33333333%;
  }
}

@media screen and (min-width: 1601px) {
  .col-xl-14 {
    width: 116.66666667%;
  }

  .offset-xl-14 {
    margin-left: 116.66666667%;
  }
}

@media screen and (max-width: 1080px) {
  .col-md-14 {
    width: 116.66666667%;
  }

  .offset-md-14 {
    margin-left: 116.66666667%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-14 {
    width: 116.66666667%;
  }

  .offset-sm-14 {
    margin-left: 116.66666667%;
  }
}

@media screen and (max-width: 400px) {
  .col-xs-14 {
    width: 116.66666667%;
  }

  .offset-xs-14 {
    margin-left: 116.66666667%;
  }
}

/* ==========================================================================
   This grid can be turned on and off when you want to check
   if everything is nice in place.
   @mixin ========================================================================= */

.visible-grid-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/**
 * 1. Makes it able to control the website while grid is shown
 */

.visible-grid {
  display: block;
  position: fixed;
  z-index: 10000;
  pointer-events: none;
}

.visible-grid .grid-col {
  background: rgba(0, 255, 255, 0.6);
  height: 100vh;
}

.visible-grid .grid-col:nth-child(2n) {
  background: rgba(0, 255, 255, 0.3);
}

.visible-grid:before,
.visible-grid:after {
  content: '';
  position: absolute;
  top: 0;
  width: calc(100% / 12);
  height: 100%;
  background: rgba(0, 255, 0, 0.5);
}

.visible-grid:before {
  left: calc(-100% / 12);
}

.visible-grid:after {
  right: calc(-100% / 12);
}

.breakpoint {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  z-index: 10000;
  background: #0ABEFF;
}

@media screen and (min-width: 1601px) {
  .breakpoint {
    background: red;
  }
}

@media screen and (max-width: 1366px) {
  .breakpoint {
    background: blue;
  }
}

@media screen and (max-width: 1080px) {
  .breakpoint {
    background: green;
  }
}

@media screen and (max-width: 768px) {
  .breakpoint {
    background: yellow;
  }
}

@media screen and (max-width: 400px) {
  .breakpoint {
    background: pink;
  }
}

/* ==========================================================================
   Expend Config settings
   @mixin ========================================================================= */

/* ==========================================================================
   Helper classes
   @mixin ========================================================================= */

/**
 * Use on elements from where the children should not wrap
 */

.nowrap {
  white-space: nowrap;
}

/**
 * Hide elements on different screen sizes
 */

@media screen and (max-width: 1600px) {
  .hide-on-xl-or-smaller {
    display: none;
  }
}

@media screen and (min-width: 1601px) {
  .hide-on-xl-or-larger {
    display: none;
  }
}

@media screen and (max-width: 1366px) {
  .hide-on-lg-or-smaller {
    display: none;
  }
}

@media screen and (min-width: 1367px) {
  .hide-on-lg-or-larger {
    display: none;
  }
}

@media screen and (max-width: 1080px) {
  .hide-on-md-or-smaller {
    display: none;
  }
}

@media screen and (min-width: 1081px) {
  .hide-on-md-or-larger {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hide-on-sm-or-smaller {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .hide-on-sm-or-larger {
    display: none;
  }
}

@media screen and (max-width: 400px) {
  .hide-on-xs-or-smaller {
    display: none;
  }
}

@media screen and (min-width: 401px) {
  .hide-on-xs-or-larger {
    display: none;
  }
}

/* ==========================================================================
   Expend Basic style settings
   @mixin ========================================================================= */

/*
 * Set up the html
 *
 * 1. Makes sue that some fonts are better rendered
 */

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/*
 * Set up the body
 *
 * 1. Set font to lining figures
 */

body {
  margin: 0;
  font-family: "Dubai", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-feature-settings: "lnum";
          font-feature-settings: "lnum";
}

@media screen and (max-width: 760px) {
  body {
    padding-top: 75px;
  }
}

@media screen and (max-width: 380px) {
  body {
    padding-top: 60px;
  }
}

/*
 * Set default settings for all elements
 *
 * 1. Default selection styling
 *
 */

* ::-moz-selection {
  background: #2DA9E0;
  color: white;
}

* ::selection {
  background: #2DA9E0;
  color: white;
}

/*
 * Set default styling for input and textarea
 *
 * 1. Set font because else the agent will overrule them with an ugly font
 */

input,
textarea {
  font-family: "Dubai", Arial, sans-serif;
}

/*
 * Set default styling for list
 *
 * 1. Use before for the list styling so we can control them with sass
 * 2. This will make an custom ordered list counter
 */

ul.list,
ol.list {
  list-style: none;
  padding-left: 20px;
}

ul.list li,
ol.list li {
  position: relative;
  padding-left: 20px;
}

ul.list li:before,
ol.list li:before {
  position: absolute;
  left: -20px;
}

ul.list li:before {
  content: "\2022";
}

.button {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid white;
  border-radius: 10px;
  text-decoration: none;
}

.button .arrow {
  display: inline-block;
  margin-left: 25px;
  background: url("/img/somerenslust-sprite.svg") -35px -1px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 10px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.button:hover .arrow {
  -webkit-transform: translate3d(5px, 0, 0);
          transform: translate3d(5px, 0, 0);
}

/* ==========================================================================
   Partial CSS
   @mixin ========================================================================= */

/* HTML and navigation
 @mixin ========================================================================= */

html.has-cookie-dialog {
  padding-top: 60px;
}

html.has-cookie-dialog nav.main,
html.has-cookie-dialog .navigation-drip {
  top: 60px;
}

@media screen and (max-width: 1080px) {
  html.has-cookie-dialog {
    padding-top: 120px;
  }

  html.has-cookie-dialog nav.main,
  html.has-cookie-dialog .navigation-drip {
    top: 120px;
  }
}

/* Dialog
 @mixin ========================================================================= */

.cookie-consent {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  background: #fff;
  color: #1D2433;
  font-size: 16px;
}

.cookie-consent .message {
  display: block;
  padding: 0 20px;
  max-width: 75%;
}

.cookie-consent .message a {
  display: inline-block;
  color: #1F345F;
  text-decoration: none;
}

.cookie-consent .message a:hover {
  text-decoration: underline;
}

.cookie-consent .button {
  margin-left: 40px;
  width: auto;
  min-width: 0;
  height: 40px;
  line-height: 36px;
  font-size: 16px;
}

@media screen and (max-width: 1080px) {
  .cookie-consent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    height: 120px;
  }

  .cookie-consent .message {
    max-width: none;
  }

  .cookie-consent .button {
    margin-left: 0;
    margin-top: 10px;
    position: relative;
    top: 0;
    right: 0;
  }
}

/* ==========================================================================
   Main footer
   @mixin ========================================================================= */

footer {
  background: -webkit-gradient(linear, left top, right top, from(#0E2B51), to(#204272));
  background: linear-gradient(90deg, #0E2B51, #204272);
  color: white;
}

footer:before {
  content: '';
  display: block;
  width: 100%;
  height: 20px;
  background-color: #F5AE06;
}

footer .grid-row {
  padding: 60px 0 40px;
}

footer .grid-col {
  width: 20.83333333%;
  margin-right: 4.16666667%;
  vertical-align: top;
}

footer .grid-col p {
  color: white;
  opacity: 0.4;
  font-size: 0.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 5.4px;
  font-family: "DubaiBold", Arial, sans-serif;
}

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

footer .grid-col ul li {
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
  opacity: 0.5;
}

footer .grid-col ul li a {
  text-decoration: none;
  color: white;
  display: block;
}

footer .grid-col ul li:hover {
  opacity: 0.75;
}

footer .grid-col ul li.active {
  opacity: 1;
}

footer .news-footer {
  width: 25%;
}

footer .social {
  margin-right: 0;
}

footer .social a {
  display: inline-block;
  margin-left: 10px;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

footer .social a.facebook {
  background: url("/img/somerenslust-sprite.svg") -62px -22px no-repeat;
  background-size: 200px 202px;
  width: 25px;
  height: 25px;
  margin-left: 0;
}

footer .social a.youtube {
  background: url("/img/somerenslust-sprite.svg") -62px -49px no-repeat;
  background-size: 200px 202px;
  width: 36px;
  height: 25px;
}

footer .social a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 800px) {
  footer .grid-col {
    width: 41.66666667%;
    margin-right: 8.33333333%;
  }

  footer .grid-col:nth-child(2n + 2) {
    margin-right: 0;
  }

  footer .grid-col:nth-child(1),
  footer .grid-col:nth-child(2) {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 550px) {
  footer .grid-col {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 40px;
    text-align: center;
  }
}

footer .page-ending {
  display: block;
  margin-top: 60px;
  background: url("/img/somerenslust-sprite.svg") -116px -1px no-repeat;
  background-size: 200px 202px;
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 550px) {
  footer .page-ending {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

footer .sub-footer {
  background-color: #1A2C4C;
}

footer .sub-footer .grid-row {
  padding: 28px 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  align-items: center;
}

footer .sub-footer .grid-row .nil {
  font-size: 1rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

footer .sub-footer .grid-row .nil a {
  padding: 0 10px;
  font-size: 0.8em;
  text-decoration: none;
  color: white;
  opacity: 0.5;
}

footer .sub-footer .grid-row .nil a:first-of-type {
  padding-left: 0;
}

footer .sub-footer .grid-row .nil a:hover {
  opacity: 0.75;
}

footer .sub-footer .grid-row .nil span {
  display: block;
  opacity: 0.5;
  font-size: 0.7em;
  text-transform: uppercase;
  color: white;
  font-family: "DubaiBold", Arial, sans-serif;
}

footer .sub-footer .grid-row .komma {
  display: block;
  background: url("/img/somerenslust-sprite.svg") -1px -135px no-repeat;
  background-size: 200px 202px;
  width: 151px;
  height: 51px;
  opacity: 0.12;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

footer .sub-footer .grid-row .komma:hover {
  opacity: 0.4;
}

@media screen and (max-width: 550px) {
  footer .sub-footer .grid-row {
    display: block;
    text-align: center;
  }

  footer .sub-footer .grid-row .nil .placeholder {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    align-items: center;
  }

  footer .sub-footer .grid-row .nil .placeholder a {
    width: 85px;
  }

  footer .sub-footer .grid-row .nil .placeholder a:first-of-type {
    text-align: right;
  }

  footer .sub-footer .grid-row .komma {
    position: relative;
    right: -12px;
    margin: 30px auto 0;
  }
}

/* ==========================================================================
   Main header
   @mixin ========================================================================= */

header {
  position: relative;
  background-color: #1F345F;
}

header .primary .grid-row {
  position: relative;
  height: 100px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  align-items: center;
}

header .primary .logo {
  margin-left: 12.5%;
  margin-right: 20px;
  display: inline-block;
  width: 18.5%;
}

header .primary .logo img {
  width: 100%;
  max-width: 245px;
}

header .primary nav {
  font-size: 0.9rem;
  line-height: 1.2;
  margin-right: 160px;
  width: calc(100% - 12.5% - 18.5% - 20px - 160px);
}

header .primary nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-end;
  align-items: center;
}

header .primary nav ul li {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  align-items: center;
}

header .primary nav ul li:before {
  content: '\2022';
  font-size: 1.2rem;
  color: white;
}

header .primary nav ul li:first-of-type:before {
  display: none;
}

header .primary nav ul li a {
  display: block;
  padding: 40px 18px;
  position: relative;
  z-index: 2;
  color: white;
  text-decoration: none;
}

@media screen and (max-width: 1050px) {
  header .primary nav ul li a {
    padding-left: 15px;
    padding-right: 15px;
  }
}

header .primary nav ul li a:after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 28px;
  left: 18px;
  width: calc(100% - 36px);
  height: 2px;
  background-color: transparent;
  -webkit-transition: background 0.3s, height 0.3s, left 0.2s, width 0.2s;
  transition: background 0.3s, height 0.3s, left 0.2s, width 0.2s;
}

header .primary nav ul li:hover a:after {
  width: calc(100% - 18px);
  height: 40px;
  left: 9px;
  background-color: #1A2C4C;
}

header .primary nav ul li.active a {
  font-family: "DubaiBold", Arial, sans-serif;
}

header .primary nav ul li.active a:after {
  background-color: #F5AE06 !important;
  left: 18px;
  width: calc(100% - 36px);
  height: 2px;
}

header .primary .login,
header .primary .logout {
  position: absolute;
  right: 0;
  top: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100px;
  background-color: #263F6B;
  text-decoration: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

header .primary .login .placeholder,
header .primary .logout .placeholder {
  display: block;
  width: 100%;
  max-height: 50px;
  opacity: 0.6;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

header .primary .login span,
header .primary .logout span {
  display: inline-block;
  background: url("/img/somerenslust-sprite.svg") -1px -1px no-repeat;
  background-size: 200px 202px;
  width: 28px;
  height: 13px;
}

header .primary .login p,
header .primary .logout p {
  color: white;
  font-size: 0.9rem;
  line-height: 1;
  margin: 10px 0 0;
}

header .primary .login:hover,
header .primary .logout:hover {
  background-color: #2d4a7e;
}

header .primary .login:hover .placeholder,
header .primary .logout:hover .placeholder {
  opacity: 1;
}

header .primary .logout span {
  background: url("/img/somerenslust-sprite.svg") -35px -88px no-repeat;
  background-size: 200px 202px;
  width: 20px;
  height: 21px;
}

@media screen and (max-width: 1180px) {
  header .primary .grid-row {
    height: 100px;
  }

  header .primary .logo {
    margin-left: calc(8.33333333% + 20px);
    margin-right: 5px;
  }

  header .primary nav {
    margin-right: 130px;
    width: calc(100% - 8.33333333% - 18.5% - 5px - 130px);
  }

  header .primary .login,
  header .primary .logout {
    height: 100px;
    width: 100px;
  }
}

header.white {
  background-color: white;
}

header.white .login,
header.white .logout {
  background-color: #E6E6E6;
}

header.white .login:hover,
header.white .logout:hover {
  background-color: #d9d9d9;
}

header.white .login span,
header.white .logout span {
  background: url("/img/somerenslust-sprite.svg") -1px -15px no-repeat;
  background-size: 200px 202px;
  width: 28px;
  height: 13px;
}

header.white .login p,
header.white .logout p {
  color: #1F345F;
}

header.white .logout span {
  background: url("/img/somerenslust-sprite.svg") -35px -65px no-repeat;
  background-size: 200px 202px;
  width: 20px;
  height: 21px;
}

header.white nav ul li a {
  color: #1F345F;
}

header.white nav ul li:hover a:after {
  background-color: #E6E6E6;
}

header .secondary {
  background-color: #1A2C4C;
}

header .secondary .grid-row .flex-placeholder {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-end;
  align-items: center;
}

header .secondary nav {
  font-size: 0.7rem;
  line-height: 1.2;
  margin-right: 153px;
}

@media screen and (max-width: 1180px) {
  header .secondary nav {
    margin-right: 123px;
  }
}

header .secondary nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-end;
  align-items: center;
}

header .secondary nav ul li a {
  position: relative;
  z-index: 2;
  display: block;
  padding: 22px 25px;
  color: white;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
}

header .secondary nav ul li a:after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 15px;
  left: 25px;
  width: calc(100% - 50px);
  height: 2px;
  background-color: transparent;
  -webkit-transition: background 0.3s, height 0.3s, left 0.2s, width 0.2s;
  transition: background 0.3s, height 0.3s, left 0.2s, width 0.2s;
}

header .secondary nav ul li:hover a:after {
  width: calc(100% - 25px);
  height: 30px;
  left: 12px;
  background-color: #263F6B;
}

header .secondary nav ul li.active a:after {
  left: 25px;
  width: calc(100% - 50px);
  height: 2px;
  background-color: #F5AE06;
}

@media screen and (max-width: 1000px) {
  header .primary .grid-row {
    height: 85px;
  }

  header .primary .logo {
    margin-left: 0;
  }

  header .primary nav {
    font-size: 0.8rem;
    margin-right: 100px;
    width: calc(100% - 8.33333333% - 18.5% - 100px);
  }

  header .primary nav ul li a {
    padding-left: 13px;
    padding-right: 13px;
  }

  header .primary .login,
  header .primary .logout {
    height: 85px;
    width: 85px;
  }

  header .primary .login p,
  header .primary .logout p {
    font-size: 0.8rem;
  }

  header .secondary nav {
    font-size: 0.6rem;
    margin-right: 89px;
  }
}

@media screen and (max-width: 1000px) and (max-width: 900px) {
  header .secondary nav {
    margin-right: -25px;
  }
}

@media screen and (max-width: 760px) {
  header {
    display: none;
  }
}

/* ==========================================================================
   Default styling for KMS content
   @mixin ========================================================================= */

.kms-content h1,
.kms-content h2,
.kms-content h3 {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #193863;
}

.kms-content h1 strong,
.kms-content h2 strong,
.kms-content h3 strong {
  color: #F5AE06;
  font-weight: 400;
}

.kms-content h2,
.kms-content h3 {
  font-size: 1.4rem;
}

.kms-content h3 {
  color: #F5AE06;
}

.kms-content h3 strong {
  color: #193863;
}

.kms-content h4 {
  font-size: 0.8rem;
  line-height: 1.3;
  color: #1F345F;
  text-transform: uppercase;
}

.kms-content p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #4D4D4D;
}

.kms-content ul {
  position: relative;
  padding-left: 0;
  list-style: none;
}

.kms-content ul > li {
  position: relative;
  padding-left: 30px;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #4D4D4D;
}

.kms-content ul > li:before {
  position: absolute;
  left: 0;
  content: '\2022';
  color: #193863;
  font-size: 1.3em;
  line-height: 1;
  font-family: "DubaiBold", Arial, sans-serif;
}

.kms-content ul > li + li {
  margin-top: 5px;
}

.kms-content ol {
  position: relative;
  counter-reset: ol-counter;
  padding-left: 0;
  list-style: none;
}

.kms-content ol > li {
  position: relative;
  padding-left: 30px;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #4D4D4D;
}

.kms-content ol > li:before {
  counter-increment: ol-counter;
  content: counter(ol-counter) ".";
  position: absolute;
  left: 0;
  color: #193863;
  font-family: "DubaiBold", Arial, sans-serif;
}

.kms-content ol > li + li {
  margin-top: 5px;
}

.kms-content a {
  color: #1F345F;
}

.kms-content a:hover {
  color: #121f39;
}

/* ==========================================================================
   Sidebar styling
   @mixin ========================================================================= */

.sidebar {
  position: relative;
}

.sidebar:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #F5AE06;
}

.sidebar.white:before {
  background-color: white;
}

.sidebar.white header:before {
  background-color: white;
}

.sidebar.white header .grid-row:before {
  background-color: white;
}

.sidebar.light-grey:before {
  background-color: #F4F4F4;
}

.sidebar.light-grey header:before {
  background-color: #F4F4F4;
}

.sidebar.light-grey header .grid-row:before {
  background-color: #F4F4F4;
}

.sidebar.blue:before {
  background-color: #1F345F;
}

.sidebar.blue header:before {
  background-color: #1F345F;
}

.sidebar.blue header .grid-row:before {
  background-color: #1F345F;
}

.sidebar.dark-blue:before {
  background-color: #1A2C4C;
}

.sidebar.dark-blue header:before {
  background-color: #1A2C4C;
}

.sidebar.dark-blue header .grid-row:before {
  background-color: #1A2C4C;
}

.sidebar header:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0;
  width: calc( (100% - 1680px) / 2);
  height: calc(100% + 5px);
  background-color: #F5AE06;
}

.sidebar header .grid-row:before {
  content: '';
  position: absolute;
  left: -8.33333333%;
  top: 0;
  width: 16.66666667%;
  height: 200px;
  background-color: #F5AE06;
}

@media screen and (max-width: 1000px) {
  .sidebar header:before,
  .sidebar header .grid-row:before {
    display: none;
  }
}

.sidebar .fill-out {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: white;
}

.sidebar .fill-out.light-grey {
  background-color: #F4F4F4;
}

.sidebar .fill-out.yellow {
  background-color: #F5AE06;
}

.sidebar .fill-out.blue {
  background-color: #1F345F;
}

.sidebar .fill-out.dark-blue {
  background-color: #1A2C4C;
}

.sidebar .sidebar-content {
  position: relative;
  z-index: 2;
  min-height: 100px;
}

.become-member-row {
  background: -webkit-gradient(linear, left top, right top, from(#0E2B51), to(#204272));
  background: linear-gradient(90deg, #0E2B51, #204272);
  padding: 80px 0;
}

.become-member-row .grid-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  align-items: center;
}

.become-member-row .placeholder {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  align-items: center;
}

.become-member-row .icon {
  width: 140px;
  margin-right: 60px;
}

@media screen and (max-width: 840px) {
  .become-member-row .icon {
    width: 115px;
  }
}

.become-member-row .icon img {
  width: 100%;
}

.become-member-row .trigger p {
  font-size: 1.4rem;
  line-height: 1.2;
  color: white;
}

.become-member-row .trigger .button {
  font-size: 1.2rem;
  line-height: 1.2;
  color: white;
}

@media screen and (max-width: 600px) {
  .become-member-row {
    padding: 60px 0;
  }

  .become-member-row .grid-row {
    display: block;
  }

  .become-member-row .placeholder {
    display: block;
  }

  .become-member-row .icon {
    width: 75px;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .become-member-row .trigger p {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 425px) {
  .become-member-row .icon {
    margin-right: auto;
    margin-left: auto;
  }

  .become-member-row .trigger {
    text-align: center;
  }

  .become-member-row .trigger p {
    text-align: center;
    font-size: 1rem;
  }

  .become-member-row .trigger .button {
    font-size: 0.9rem;
  }
}

.discover-msl {
  padding: 60px 60px;
}

.discover-msl h3 {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.1rem;
  text-transform: uppercase;
  color: #0E2B51;
  font-family: "DubaiLight", Arial, sans-serif;
}

.discover-msl h3 strong {
  display: block;
  font-size: 1.05rem;
  font-family: "DubaiBold", Arial, sans-serif;
}

.discover-msl ul {
  list-style: none;
  padding: 0;
  margin: 33px 0 0;
}

.discover-msl ul li {
  margin-bottom: 22px;
}

.discover-msl ul li:last-of-type {
  margin-bottom: 0;
}

.discover-msl ul li a {
  text-decoration: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
}

.discover-msl ul li a .lines {
  display: inline-block;
  margin-right: 15px;
  width: 36px;
  font-size: 0;
  line-height: 0;
}

.discover-msl ul li a .lines span {
  display: inline-block;
  height: 15px;
  width: 2px;
  background-color: #F5AE06;
  margin-right: 6px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.discover-msl ul li a .lines span:nth-child(1) {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

.discover-msl ul li a .lines span:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.discover-msl ul li a .lines span:nth-child(3) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.discover-msl ul li a .lines span:nth-child(4) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.discover-msl ul li a .lines span:nth-child(5) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.discover-msl ul li a .lines span:last-of-type {
  margin-right: 0 !important;
}

.discover-msl ul li a p {
  position: relative;
  font-size: 0.9rem;
  line-height: 1.2;
  color: #4D4D4D;
  width: calc(100% - 51px);
  max-width: 180px;
  margin: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  align-items: center;
}

.discover-msl ul li a p:after {
  content: '';
  display: inline-block;
  background: url("/img/somerenslust-sprite.svg") -35px -14px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 11px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.discover-msl ul li a:hover .lines span {
  background-color: #0E2B51;
}

.discover-msl ul li a:hover p:after {
  -webkit-transform: translate3d(7px, 0, 0);
          transform: translate3d(7px, 0, 0);
}

.our-youth {
  background: #F2F2F2;
  padding: 120px 0;
}

.our-youth .grid-col {
  vertical-align: top;
}

.our-youth .icon-buttons {
  width: 37.5%;
  margin-left: 8.33333333%;
}

.our-youth .icon-buttons .icon {
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.our-youth .icon-buttons .icon img {
  width: 100%;
}

.our-youth .icon-buttons .buttons {
  margin-top: 65px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  justify-content: space-between;
  align-items: flex-start;
}

.our-youth .icon-buttons .buttons a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  align-items: center;
  width: 44.44444444%;
  padding: 10px 20px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  line-height: 1.2;
  color: white;
  font-family: "DubaiBold", Arial, sans-serif;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

@media screen and (max-width: 1480px) {
  .our-youth .icon-buttons .buttons a {
    font-size: 0.8rem;
    width: calc((100% - 30px) / 2);
  }
}

.our-youth .icon-buttons .buttons a:after {
  content: '';
  position: relative;
  top: 2px;
  background: url("/img/somerenslust-sprite.svg") -35px -1px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 11px;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.our-youth .icon-buttons .buttons a:hover:after {
  -webkit-transform: translate3d(5px, 0, 0);
          transform: translate3d(5px, 0, 0);
}

.our-youth .icon-buttons .buttons a.orchestra {
  background-color: #F5AE06;
}

.our-youth .icon-buttons .buttons a.orchestra:hover {
  background-color: #F69628;
}

.our-youth .icon-buttons .buttons a.percussion {
  background-color: #2DA9E0;
}

.our-youth .icon-buttons .buttons a.percussion:hover {
  background-color: #1c8cbe;
}

.our-youth .content {
  width: 33.33333333%;
  margin-left: 4.16666667%;
}

.our-youth .content h2 {
  font-size: 1.05rem;
  color: #0E2B51;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-family: "DubaiBold", Arial, sans-serif;
}

.our-youth .content p {
  color: #0E2B51;
  font-size: 0.9rem;
  line-height: 1.4;
}

@media screen and (max-width: 1300px) {
  .our-youth .grid-row {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -ms-flex-direction: row;
  }

  .our-youth .grid-row .content,
  .our-youth .grid-row .icon-buttons {
    width: 100%;
    max-width: 700px;
    text-align: center;
  }

  .our-youth .grid-row .content {
    -webkit-order: 1;
    -ms-order: 1;
  }

  .our-youth .grid-row .icon-buttons {
    -webkit-order: 2;
    -ms-order: 2;
    margin-top: 40px;
  }

  .our-youth .grid-row .icon-buttons .icon {
    margin: auto;
  }

  .our-youth .grid-row .icon-buttons .buttons {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

@media screen and (max-width: 1300px) and (max-width: 550px) {
  .our-youth .grid-row .icon-buttons .buttons {
    display: block;
  }

  .our-youth .grid-row .icon-buttons .buttons a {
    width: 100%;
    max-width: 250px;
    margin: auto;
  }

  .our-youth .grid-row .icon-buttons .buttons a.percussion {
    margin-top: 20px;
  }
}

.sponsors-home.sponsors-row .information {
  margin-left: 16.66666667%;
  width: 66.66666667%;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .sponsors-home.sponsors-row .information {
    margin-left: 8.33333333%;
    width: 83.33333333%;
  }
}

@media screen and (max-width: 425px) {
  .sponsors-home.sponsors-row .information {
    margin-left: 0;
    width: 100%;
  }
}

.sponsors-home.sponsors-row .sponsors {
  margin-top: 50px;
  margin-left: 0;
  width: 100%;
}

.sponsors-home.sponsors-row .sponsors .sponsor {
  width: calc( 100%  / 4);
  min-width: 150px;
  max-width: none;
  margin-bottom: 30px;
  padding: 0 20px;
}

.sponsors-home.sponsors-row .sponsors .sponsor .logo-placeholder {
  max-width: 200px;
  margin: auto;
}

@media screen and (max-width: 875px) {
  .sponsors-home.sponsors-row .sponsors .sponsor {
    width: calc( (100% - 100px) / 3);
  }
}

@media screen and (max-width: 465px) {
  .sponsors-home.sponsors-row .sponsors .sponsor {
    width: calc( (100% - 50px) / 2);
  }
}

.sponsors-home.sponsors-row .button {
  margin: 40px auto 0;
}

.other-pages .grid-row {
  position: relative;
}

.other-pages .image {
  position: absolute;
  left: -8.33333333%;
  width: 50%;
  height: 100%;
  margin: 0;
}

.other-pages .image span {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.other-pages .image span.medium {
  display: block;
}

.other-pages .content {
  vertical-align: top;
  width: 50%;
  margin-left: 50%;
}

.other-pages .content .placeholder {
  padding-bottom: 15%;
}

.other-pages .content h3 {
  margin: 12% 0 25px 16.66666667%;
  font-size: 0.9rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: "DubaiBold", Arial, sans-serif;
  color: #193863;
}

.other-pages .content .dot-line {
  display: block;
  width: 100%;
  height: 3px;
  background-image: url("/img/blue-dots.svg");
  background-repeat: repeat-x;
  background-size: contain;
}

.ie .other-pages .content .dot-line {
  background-image: url("/img/svgImg/blue-dots.png");
}

.other-pages .content ul {
  list-style: none;
  padding: 0;
  margin: 35px 0 0 16.66666667%;
}

.other-pages .content ul li + li {
  margin-top: 10px;
}

.other-pages .content ul li a {
  display: inline-block;
  text-decoration: none;
  color: #193863;
  font-size: 0.9rem;
  line-height: 1.4;
  border-bottom: 1px dotted #193863;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.other-pages .content ul li a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 750px) {
  .other-pages .grid-row {
    width: 100%;
  }

  .other-pages .image {
    position: relative;
    left: 0;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
  }

  .other-pages .content {
    width: 92.85714286%;
    margin-left: 7.14285714%;
  }

  .other-pages .content ul,
  .other-pages .content h3 {
    margin-left: 7.14285714%;
  }

  .other-pages .content .placeholder {
    padding-bottom: 10%;
  }
}

.more-pages {
  border-top: 20px solid #F5AE06;
}

.more-pages .discover-msl {
  vertical-align: top;
  display: inline-block;
  width: 41.66666667%;
  margin-left: 8.33333333%;
  padding-top: 67px;
}

.more-pages .discover-msl h3 {
  margin-bottom: 65px;
}

.more-pages .content {
  vertical-align: top;
  margin-left: 0;
}

.more-pages .content h3 {
  margin-top: 85px;
}

@media screen and (max-width: 1000px) {
  .more-pages .discover-msl {
    margin-left: 0;
    padding-left: 0;
  }

  .more-pages .content {
    width: 58.33333333%;
  }

  .more-pages .content h3 {
    margin-left: 14.28571429%;
  }
}

@media screen and (max-width: 750px) {
  .more-pages .discover-msl {
    display: none;
  }

  .more-pages .content {
    margin-left: 7.14285714%;
    width: 85.71428571%;
  }

  .more-pages .content h3 {
    margin-top: 10%;
  }

  .more-pages .content h3,
  .more-pages .content ul {
    margin-left: 60px;
  }
}

@media screen and (max-width: 750px) and (max-width: 600px) {
  .more-pages .content h3,
  .more-pages .content ul {
    margin-left: 45px;
  }
}

/*==========================================================================
  Dynamic Blocks
  @mixin ========================================================================= */

.dynamic-block {
  margin-top: 60px;
}

.dynamic-block .grid-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  align-items: center;
}

.dynamic-block.two-text-columns {
  position: relative;
  z-index: 10;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  justify-content: space-between;
  align-items: flex-start;
}

.dynamic-block.two-text-columns .content {
  width: 47.72727273%;
  padding: 0;
}

@media screen and (max-width: 900px) {
  .dynamic-block.two-text-columns {
    display: block;
  }

  .dynamic-block.two-text-columns .content {
    width: 100% !important;
    margin: 0;
  }

  .dynamic-block.two-text-columns .content p:last-of-type {
    margin-bottom: 1rem;
  }
}

.dynamic-block.full-image-column img {
  width: 100%;
  display: none;
}

.dynamic-block.full-image-column img.large {
  display: block;
}

@media screen and (max-width: 1050px) {
  .dynamic-block.full-image-column img.large {
    display: none;
  }

  .dynamic-block.full-image-column img.medium {
    display: block;
  }
}

@media screen and (max-width: 525px) {
  .dynamic-block.full-image-column img.medium {
    display: none;
  }

  .dynamic-block.full-image-column img.small {
    display: block;
  }
}

.dynamic-block.content-block {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  justify-content: space-between;
  align-items: flex-start;
}

.dynamic-block.content-block .image {
  width: 50%;
}

.dynamic-block.content-block .image img {
  width: 100%;
}

.dynamic-block.content-block .image img.small {
  display: none;
}

@media screen and (max-width: 450px) {
  .dynamic-block.content-block .image img.medium {
    display: none;
  }

  .dynamic-block.content-block .image img.small {
    display: block;
  }
}

.dynamic-block.content-block .image .content {
  width: 41.66666667%;
}

.dynamic-block.content-block .content {
  -webkit-order: 1;
  -ms-order: 1;
  width: 41.66666667%;
}

.dynamic-block.content-block[data-image-location='right'] .image {
  -webkit-order: 2;
  -ms-order: 2;
}

.dynamic-block.content-block[data-image-location='right'] .content {
  -webkit-order: 1;
  -ms-order: 1;
}

@media screen and (max-width: 900px) {
  .dynamic-block.content-block {
    display: block;
  }

  .dynamic-block.content-block .image {
    width: 100%;
    margin: 40px 0;
    -webkit-order: 2;
    -ms-order: 2;
  }

  .dynamic-block.content-block .content {
    width: 100%;
  }
}

.dynamic-block.multiple-images {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  justify-content: space-between;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-direction: row;
}

.dynamic-block.multiple-images figure {
  width: 47.72727273%;
}

.dynamic-block.multiple-images figure img {
  width: 100%;
  display: none;
}

.dynamic-block.multiple-images figure img.medium {
  display: none;
}

@media screen and (max-width: 1100px) {
  .dynamic-block.multiple-images figure img.large {
    display: none;
  }

  .dynamic-block.multiple-images figure img.medium {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .dynamic-block.multiple-images figure img.large {
    display: none;
  }

  .dynamic-block.multiple-images figure img.medium {
    display: block;
  }
}

.dynamic-block.multiple-images[data-size-type='50'] figure img.medium {
  display: block;
}

@media screen and (max-width: 1125px) {
  .dynamic-block.multiple-images[data-size-type='50'] figure img.medium {
    display: none;
  }

  .dynamic-block.multiple-images[data-size-type='50'] figure img.small {
    display: block;
  }
}

@media screen and (max-width: 900px) {
  .dynamic-block.multiple-images {
    display: block;
  }

  .dynamic-block.multiple-images figure {
    width: 100%;
  }

  .dynamic-block.multiple-images figure:first-of-type {
    margin-bottom: 40px;
  }

  .dynamic-block.multiple-images figure img.medium {
    display: block !important;
  }

  .dynamic-block.multiple-images figure img.small {
    display: none !important;
  }
}

@media screen and (max-width: 900px) and (max-width: 525px) {
  .dynamic-block.multiple-images figure img.medium {
    display: none;
  }

  .dynamic-block.multiple-images figure img.small {
    display: block;
  }
}

.dynamic-block.video-block {
  width: 100%;
  max-width: 960px;
  margin: 60px auto 0 !important;
}

.dynamic-block.video-block .video-wrapper {
  position: relative;
  padding-bottom: 53.6%;
  padding-top: 25px;
  height: 0;
}

.dynamic-block.video-block .video-wrapper iframe,
.dynamic-block.video-block .video-wrapper .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.dynamic-block.video-block .video-wrapper .video-overlay {
  z-index: 2;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  align-items: center;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.dynamic-block.video-block .video-wrapper .video-overlay .button {
  width: 25%;
  max-width: 85px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.dynamic-block.video-block .video-wrapper .video-overlay .button img {
  width: 100%;
}

.dynamic-block.video-block .video-wrapper .video-overlay:hover .button {
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
}

.dynamic-block.video-block .video-wrapper .video-overlay.hide {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.dynamic-block.video-block .video-wrapper .video-overlay.hide .button {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transform: scale(0.3);
          transform: scale(0.3);
}

@media screen and (max-width: 760px) {
  .preventScroll {
    overflow: hidden;
    overflow-y: scroll;
    position: fixed;
    width: 100%;
  }
}

#mobile-navigation {
  position: fixed;
  z-index: 1000;
  height: 100vh;
  display: none;
  overflow: hidden;
  width: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
}

#mobile-navigation .bar {
  height: 75px;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.11);
          box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.11);
  pointer-events: all;
  position: relative;
  z-index: 5;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#0E2B51), to(#204272));
  background: linear-gradient(90deg, #0E2B51, #204272);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#mobile-navigation .bar .toggle-menu {
  width: 75px;
  height: 100%;
  z-index: 3;
  border: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  align-items: center;
}

#mobile-navigation .bar .toggle-menu .icon span {
  position: relative;
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 9999px;
  display: block;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

#mobile-navigation .bar .toggle-menu .icon span + span {
  margin-top: 3px;
}

#mobile-navigation .bar .toggle-menu .icon span:nth-child(2) {
  -webkit-transform: scale3d(0.8, 1, 1);
          transform: scale3d(0.8, 1, 1);
}

#mobile-navigation .bar .toggle-menu .icon span:last-of-type {
  -webkit-transform: scale3d(0.45, 1, 1);
          transform: scale3d(0.45, 1, 1);
}

#mobile-navigation .bar .toggle-menu:hover .icon span {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

#mobile-navigation .bar .toggle-menu:hover .icon span:nth-child(2),
#mobile-navigation .bar .toggle-menu:hover .icon span:last-of-type {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

#mobile-navigation .bar .logo {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  align-items: center;
}

#mobile-navigation .bar .logo a {
  position: relative;
  left: -10px;
  display: inline-block;
}

#mobile-navigation .bar .logo a img {
  width: 200px;
  max-height: 50px;
}

@media screen and (max-width: 440px) {
  #mobile-navigation .bar .logo a img {
    width: 160px;
    max-height: 40px;
  }
}

#mobile-navigation .bar .login,
#mobile-navigation .bar .logout {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 75px;
  z-index: 5;
}

#mobile-navigation .bar .login a,
#mobile-navigation .bar .logout a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-direction: row;
  height: 100%;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
}

#mobile-navigation .bar .login a span,
#mobile-navigation .bar .logout a span {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  justify-content: center;
  align-items: flex-end;
  opacity: 0.5;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

#mobile-navigation .bar .login a span:before,
#mobile-navigation .bar .logout a span:before {
  content: '';
  background: url("/img/somerenslust-sprite.svg") -1px -1px no-repeat;
  background-size: 200px 202px;
  width: 28px;
  height: 13px;
  display: inline-block;
}

#mobile-navigation .bar .login a p,
#mobile-navigation .bar .logout a p {
  display: inline-block;
  width: 100%;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1;
  color: white;
  text-align: center;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

#mobile-navigation .bar .login a:hover p,
#mobile-navigation .bar .login a:hover span,
#mobile-navigation .bar .logout a:hover p,
#mobile-navigation .bar .logout a:hover span {
  opacity: 0.75;
}

#mobile-navigation .bar .logout a span:before {
  background: url("/img/somerenslust-sprite.svg") -35px -88px no-repeat;
  background-size: 200px 202px;
  width: 20px;
  height: 21px;
}

#mobile-navigation .shader {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #1A2C4C;
  opacity: 0;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#mobile-navigation .menu {
  height: calc(100% - 75px);
  width: 100%;
  left: 0;
  top: 75px;
  background-color: #F4F4F4;
  position: absolute;
  overflow-x: auto;
  pointer-events: all;
  z-index: 4;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

#mobile-navigation nav {
  margin-top: 30px;
  padding: 0;
}

#mobile-navigation nav ul {
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}

#mobile-navigation nav ul + ul {
  margin-top: 30px;
}

#mobile-navigation nav ul li {
  position: relative;
}

#mobile-navigation nav ul li + li {
  border-top: 1px solid #E6E6E6;
}

#mobile-navigation nav ul li .lines {
  display: block;
  position: absolute;
  left: -50px;
  top: 10px;
  width: 36px;
  font-size: 0;
  line-height: 0;
}

#mobile-navigation nav ul li .lines span {
  display: inline-block;
  height: 15px;
  width: 2px;
  background-color: #F5AE06;
}

#mobile-navigation nav ul li .lines span + span {
  margin-left: 6px;
}

#mobile-navigation nav ul li a,
#mobile-navigation nav ul li span {
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 2.56px;
  color: #4D4D4D;
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  cursor: pointer;
}

#mobile-navigation nav ul li.active a,
#mobile-navigation nav ul li.active span {
  color: #193863;
  font-family: "DubaiBold", Arial, sans-serif;
}

#mobile-navigation.active .bar .toggle-menu {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

#mobile-navigation.active .bar .toggle-menu .icon span {
  opacity: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform-origin: center;
          transform-origin: center;
}

#mobile-navigation.active .bar .toggle-menu .icon span:first-of-type {
  -webkit-transform: rotate(45deg) scale3d(1, 1, 1);
  transform: rotate(45deg) scale3d(1, 1, 1);
  opacity: 1;
  top: 6px;
}

#mobile-navigation.active .bar .toggle-menu .icon span:last-of-type {
  width: 25px;
  opacity: 1;
  bottom: 6px;
  -webkit-transform: rotate(-45deg) scale3d(1, 1, 1);
  transform: rotate(-45deg) scale3d(1, 1, 1);
}

#mobile-navigation.active .bar .toggle-menu:hover .icon span:first-of-type {
  -webkit-transform: rotate(45deg) scale3d(0.7, 1, 1);
  transform: rotate(45deg) scale3d(0.7, 1, 1);
}

#mobile-navigation.active .bar .toggle-menu:hover .icon span:last-of-type {
  -webkit-transform: rotate(-45deg) scale3d(0.7, 1, 1);
  transform: rotate(-45deg) scale3d(0.7, 1, 1);
}

#mobile-navigation.active .menu {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

#mobile-navigation.shader-active .shader {
  opacity: 0.4;
  pointer-events: all;
}

#mobile-navigation.allow-animation .shader {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#mobile-navigation.allow-animation .menu {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

@media screen and (max-width: 760px) {
  #mobile-navigation {
    display: block;
  }

  #mobile-navigation .sticky-header,
  #mobile-navigation .sticky-header.show {
    display: none;
  }

  #mobile-navigation .mobile-navigation {
    display: block;
  }
}

@media screen and (max-width: 380px) {
  #mobile-navigation .bar {
    height: 60px;
  }

  #mobile-navigation .bar .toggle-menu {
    height: 60px;
    width: 60px;
  }

  #mobile-navigation .bar .login {
    height: 60px;
    width: 60px;
  }

  #mobile-navigation .bar .login a p {
    font-size: 0.7rem;
  }

  #mobile-navigation .menu {
    height: calc(100% - 60px);
    top: 60px;
  }
}

.mobile-contact {
  display: none;
  opacity: 0;
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
  padding: 50px 7.14285714%;
  background-color: white;
  color: #1D2433;
  font-size: 0.9rem;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, transform 0.4s;
  transition: opacity 0.4s, transform 0.4s, -webkit-transform 0.4s;
}

.mobile-contact.active {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: all;
}

.mobile-contact h1,
.mobile-contact h2 {
  font-size: 2rem;
  line-height: 1.2;
  max-width: 580px;
  color: #1A2C4C;
  margin: 0 0 40px;
}

.mobile-contact p {
  margin: 1rem 0;
}

.mobile-contact strong {
  color: #1D2433;
}

.mobile-contact a:not(.button) {
  color: #1F345F;
  text-decoration: none;
  -webkit-transition: color 0.3s, border 0.3s, opacity 0.3s;
  transition: color 0.3s, border 0.3s, opacity 0.3s;
}

.mobile-contact a:not(.button):hover {
  color: #0c1425;
}

.mobile-contact a.button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 25px;
  background-color: #1F345F;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 700;
  color: white;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.mobile-contact a.button:after {
  content: '';
  margin-left: 20px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.mobile-contact a.button:hover {
  background-color: #1A2C4C;
}

.mobile-contact a.button:hover:after {
  -webkit-transform: translate3d(5px, 0, 0);
          transform: translate3d(5px, 0, 0);
}

@media screen and (max-width: 840px) {
  .mobile-contact {
    display: block;
  }
}

#sticky-navigation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: #1F345F;
  width: 100%;
  height: 60px;
  -webkit-transform: translate3d(0, -60px, 0);
          transform: translate3d(0, -60px, 0);
  -webkit-box-shadow: 0 6px 10px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 10px -5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}

#sticky-navigation.active {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

#sticky-navigation .grid-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  align-items: center;
}

#sticky-navigation .menu {
  display: inline-block;
  width: 60px;
}

#sticky-navigation .menu .placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}

#sticky-navigation .menu .placeholder .icon-placeholder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#sticky-navigation .menu .placeholder .icon-placeholder .icon {
  width: 20px;
}

#sticky-navigation .menu .placeholder .icon-placeholder .icon span + span {
  margin-top: 4px;
}

#sticky-navigation .menu .placeholder .icon-placeholder .icon span {
  width: 100%;
  height: 2px;
  display: block;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  background-color: white;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

#sticky-navigation .menu .placeholder .icon-placeholder .icon span:nth-of-type(2) {
  -webkit-transform: scale3d(0.8, 1, 1);
          transform: scale3d(0.8, 1, 1);
}

#sticky-navigation .menu .placeholder .icon-placeholder .icon span:nth-of-type(3) {
  -webkit-transform: scale3d(0.45, 1, 1);
          transform: scale3d(0.45, 1, 1);
}

#sticky-navigation .menu .placeholder .icon-placeholder:hover .icon span {
  -webkit-transform: scale3d(1, 1, 1) !important;
          transform: scale3d(1, 1, 1) !important;
}

#sticky-navigation .logo-wrapper a {
  font-size: 1rem;
  line-height: 1;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.agenda h3 {
  display: block;
  padding: 11px 11px 11px 22px;
  width: 75%;
  margin: 0 0 0 25%;
  background-color: #F69628;
  font-family: "DubaiBold", Arial, sans-serif;
  text-transform: uppercase;
  color: white;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 1.6px;
}

.agenda .read-more {
  display: block;
  padding: 11px 22px;
  width: 75%;
  margin: 0 0 0 25%;
  background-color: #0E2B51;
  color: white;
  font-size: 0.9rem;
  line-height: 1;
  text-decoration: none;
  text-align: right;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.agenda .read-more:after {
  content: '';
  position: relative;
  top: 2px;
  display: inline-block;
  margin-left: 12px;
  background: url("/img/somerenslust-sprite.svg") -35px -1px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 11px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.agenda .read-more:hover {
  background-color: #0a1f3b;
}

.agenda .read-more:hover:after {
  -webkit-transform: translate3d(3px, 0, 0);
          transform: translate3d(3px, 0, 0);
}

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

.agenda ul li {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-end;
  align-items: center;
}

.agenda ul li a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-end;
  align-items: center;
  text-decoration: none;
  width: 100%;
}

.agenda ul li .date {
  position: absolute;
  left: 0;
  top: 0;
  width: 25%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  align-items: center;
  background-color: #F69628;
  font-size: 2rem;
  line-height: 1;
  color: white;
  font-family: "DubaiBold", Arial, sans-serif;
}

.agenda ul li .date span {
  display: block;
}

.agenda ul li .date span.month {
  opacity: 0.5;
}

.agenda ul li .content {
  background-color: #F4F4F4;
  width: 75%;
  padding: 20px 30px;
  min-height: 110px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-end;
  align-items: center;
}

.agenda ul li .content .placeholder {
  width: 100%;
}

.agenda ul li .content p {
  margin: 0;
  text-align: right;
  width: 100%;
}

.agenda ul li .content p.title {
  color: #1D2433;
  font-size: 1.05rem;
  line-height: 1.2rem;
  font-family: "DubaiBold", Arial, sans-serif;
}

.agenda ul li .content p.location {
  color: #3B485B;
  font-size: 0.9rem;
  line-height: 1.2rem;
}

.agenda ul li:nth-child(odd) .date {
  background-color: #0E2B51;
}

.agenda ul li:nth-child(odd) .content {
  background-color: white;
}

.how-it-started {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.how-it-started .placeholder {
  display: block;
  width: 66.66666667%;
  margin: auto;
  padding: 40px 0;
  background-color: #F5AE06;
  font-size: 1.1rem;
  line-height: 1.4;
}

@media screen and (max-width: 950px) {
  .how-it-started .placeholder {
    width: 83.33333333%;
  }
}

@media screen and (max-width: 650px) {
  .how-it-started .placeholder {
    width: 100%;
  }
}

.how-it-started .placeholder h2 {
  margin: 0;
  padding: 0 50px;
  font-size: 1.1rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: white;
  font-family: "DubaiBold", Arial, sans-serif;
}

.how-it-started .placeholder .divider {
  display: block;
  width: 100%;
  height: 3px;
  margin: 30px 0 50px -12.5%;
  -webkit-transition: width 2s;
  transition: width 2s;
  background-image: url("/img/blue-dots.svg");
  background-repeat: repeat-x;
  background-size: contain;
}

.how-it-started .placeholder .divider.element-in-viewport {
  width: 0;
}

.ie .how-it-started .placeholder .divider {
  background-image: url("/img/svgImg/blue-dots.png");
}

.how-it-started .placeholder .content {
  padding: 0 50px;
}

.how-it-started .placeholder .content p {
  color: #1F345F;
}

.how-it-started .placeholder .button {
  background-color: #193863;
  border: none;
  border-radius: 0;
  margin: 30px 50px 0;
  padding: 15px 30px;
  text-transform: uppercase;
  color: white;
  font-family: "DubaiBold", Arial, sans-serif;
  font-size: 0.9rem;
}

.how-it-started .placeholder .button .arrow {
  margin-left: 75px;
}

.how-it-started .placeholder .button:hover {
  background-color: #142c4f;
}

@media screen and (max-width: 450px) {
  .how-it-started .grid-row {
    width: 100%;
  }

  .how-it-started .grid-row .placeholder h2,
  .how-it-started .grid-row .placeholder .content {
    padding-left: 8.33333333%;
    padding-right: 8.33333333%;
  }

  .how-it-started .grid-row .placeholder .button {
    margin-left: 8.33333333%;
    margin-right: 8.33333333%;
  }
}

.sponsors-home {
  margin: 80px 0 80px;
}

.sponsors-home .information {
  margin-left: 8.33333333%;
  width: 33.33333333%;
}

.sponsors-home .information h2 {
  margin: 0 0 30px;
  font-size: 1.05rem;
  line-height: 1.2;
  color: #0E2B51;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-family: "DubaiBold", Arial, sans-serif;
}

.sponsors-home .information p {
  color: #0E2B51;
  font-size: 0.9rem;
  line-height: 1.4;
}

.sponsors-home .information .button {
  margin-top: 55px;
  width: 75%;
}

.sponsors-home .button {
  background-color: #193863;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  align-items: center;
  border-radius: 0;
  padding: 25px 25px 18px;
  min-width: 230px;
  max-width: 300px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.sponsors-home .button.mobile {
  display: none;
}

.sponsors-home .button p {
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: 1.6px;
  color: white;
  text-transform: uppercase;
}

.sponsors-home .button p strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
}

.sponsors-home .button:hover {
  background-color: #142c4f;
}

.sponsors-home .sponsors {
  margin-left: 8.33333333%;
  width: 41.66666667%;
  vertical-align: top;
}

.sponsors-home .sponsors .placeholder {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-direction: row;
}

.sponsors-home .sponsors .sponsor {
  width: calc( (100% - 80px) / 2);
  max-width: 220px;
}

.sponsors-home .sponsors .sponsor:nth-child(1),
.sponsors-home .sponsors .sponsor:nth-child(2) {
  margin-bottom: 40px;
}

.sponsors-home .sponsors .sponsor .logo-placeholder {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
}

.sponsors-home .sponsors .sponsor .logo-placeholder .logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.sponsors-home .sponsors .sponsor .logo-placeholder .logo.small {
  display: none;
}

@media screen and (max-width: 1050px) {
  .sponsors-home .information {
    margin-left: 0;
    width: 41.66666667%;
  }

  .sponsors-home .sponsors {
    width: 50%;
  }
}

@media screen and (max-width: 800px) {
  .sponsors-home .information {
    width: 100%;
  }

  .sponsors-home .information .button {
    display: none;
  }

  .sponsors-home .sponsors {
    margin-top: 40px;
    width: 83.33333333%;
  }
}

@media screen and (max-width: 800px) and (max-width: 575px) {
  .sponsors-home .sponsors {
    margin-left: 0;
    width: 100%;
  }

  .sponsors-home .sponsors .sponsor {
    width: calc( (100% - 50px) / 2);
  }

  .sponsors-home .sponsors .sponsor:nth-child(1),
  .sponsors-home .sponsors .sponsor:nth-child(2) {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 800px) {
  .sponsors-home .button.mobile {
    margin: 50px auto 0;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: space-between;
    align-items: center;
  }
}

.news-block .news-placeholder {
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 45px;
          column-gap: 45px;
}

@media screen and (max-width: 1100px) {
  .news-block .news-placeholder {
    -webkit-column-gap: 0;
            column-gap: 0;
    -webkit-column-count: 1;
            column-count: 1;
  }
}

@media screen and (max-width: 840px) {
  .news-block .news-placeholder {
    -webkit-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 30px;
            column-gap: 30px;
  }
}

@media screen and (max-width: 600px) {
  .news-block .news-placeholder {
    -webkit-column-gap: 0;
            column-gap: 0;
    -webkit-column-count: 1;
            column-count: 1;
    max-width: 425px;
    margin: auto;
  }
}

.news-block h3 {
  display: inline-block;
  width: 100%;
  background-color: #F5AE06;
  margin: 0 0 45px;
  padding: 25px 25px 18px;
  max-width: 425px;
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: 1.6px;
  color: white;
  text-transform: uppercase;
  font-weight: 300;
}

.news-block h3 strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
  font-family: "DubaiBold", Arial, sans-serif;
}

.news-block .to-overview {
  display: inline-block;
  width: 100%;
  background-color: #193863;
  margin: 0 0 45px;
  padding: 25px 25px 18px;
  max-width: 425px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.news-block .to-overview .placeholder {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  align-items: center;
}

.news-block .to-overview p {
  width: calc(100% - 35px);
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: white;
  font-weight: 300;
}

.news-block .to-overview p strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
  font-family: "DubaiBold", Arial, sans-serif;
}

.news-block .to-overview span {
  display: block;
  background: url("/img/somerenslust-sprite.svg") -35px -25px no-repeat;
  background-size: 200px 202px;
  width: 25px;
  height: 18px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.news-block .to-overview:hover {
  background-color: #142c4f;
}

.news-block .to-overview:hover span {
  -webkit-transform: translate3d(5px, 0, 0);
          transform: translate3d(5px, 0, 0);
}

.news-block article {
  margin-bottom: 45px;
  background-color: white;
  max-width: 425px;
  display: inline-block;
}

.news-block article a {
  text-decoration: none;
}

.news-block article figure {
  margin: 0;
  display: block;
}

.news-block article figure img {
  width: 100%;
}

.news-block article .content {
  padding: 8% 8% 6.5%;
}

.news-block article .content h5 {
  font-family: "DubaiBold", Arial, sans-serif;
  color: #193863;
  font-size: 1rem;
  line-height: 1.2;
  margin: 0;
}

.news-block article .content p {
  margin: 0.8rem 0;
  font-size: 0.9rem;
  line-height: 1.2;
  color: #3B485B;
}

.news-block article .content .read-more {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
  max-width: 200px;
  color: #193863;
  text-transform: uppercase;
  font-family: "DubaiBold", Arial, sans-serif;
  font-size: 0.7rem;
  line-height: 1.2;
}

.news-block article .content .read-more .icon {
  position: relative;
  top: -1px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  width: 25px;
  height: 20px;
}

.news-block article .content .read-more .icon:after {
  content: '';
  background: url("/img/somerenslust-sprite.svg") -35px -14px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 10px;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.news-block article .content:hover .read-more .icon:after {
  -webkit-transform: translate3d(5px, 0, 0);
          transform: translate3d(5px, 0, 0);
}

.news-block article .photo-album {
  display: block;
  padding: 10px 8% 10px;
  background-color: rgba(25, 56, 99, 0.2);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.news-block article .photo-album:hover {
  background-color: rgba(25, 56, 99, 0.3);
}

.news-block article .photo-album p {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  color: #193863;
  text-transform: uppercase;
  font-family: "DubaiBold", Arial, sans-serif;
  font-size: 0.7rem;
  line-height: 1.2;
}

.news-block article .photo-album .icon {
  position: relative;
  top: -1px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  width: 25px;
  height: 20px;
}

.news-block article .photo-album .icon:after {
  content: '';
  background: url("/img/somerenslust-sprite.svg") -52px -1px no-repeat;
  background-size: 200px 202px;
  width: 25px;
  height: 20px;
  display: inline-block;
}

@media screen and (max-width: 1100px) {
  .news-block h3 {
    margin-bottom: 25px;
  }

  .news-block article {
    margin-bottom: 25px;
  }

  .news-block article:last-of-type {
    display: none;
  }
}

.photo-albums-block {
  position: relative;
  z-index: 2;
}

.photo-albums-block h2 {
  margin: 0 0 0 21.42857143%;
  padding: 0;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 300;
  color: #193863;
  text-transform: uppercase;
}

@media screen and (max-width: 550px) {
  .photo-albums-block h2 {
    margin-left: 28.57142857%;
  }
}

.photo-albums-block h2 strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: 1.6px;
}

.photo-albums-block .photo-albums {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  justify-content: space-between;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-direction: row;
}

.photo-albums-block .photo-albums .photo-album {
  position: relative;
  width: 46.15384615%;
  margin-top: 45px;
  background-color: #F4F4F4;
}

@media screen and (max-width: 550px) {
  .photo-albums-block .photo-albums .photo-album {
    margin-top: 25px;
  }
}

.photo-albums-block .photo-albums .photo-album a {
  text-decoration: none;
}

.photo-albums-block .photo-albums .photo-album figure {
  position: relative;
  margin: 0;
  width: 100%;
  height: 0;
  padding-bottom: 66.67%;
  background-color: #E6E6E6;
}

.photo-albums-block .photo-albums .photo-album figure span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.photo-albums-block .photo-albums .photo-album p {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
  min-height: 60px;
  margin: 0;
  padding: 10px 8% 10px;
  font-size: 0.9rem;
  line-height: 1.2;
  color: #193863;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.photo-albums-block .photo-albums .photo-album:hover p {
  background-color: #E6E6E6;
}

@media screen and (max-width: 1100px) {
  .photo-albums-block .photo-albums {
    display: block;
  }

  .photo-albums-block .photo-albums .photo-album {
    width: 100%;
    max-width: 400px;
  }

  .photo-albums-block .photo-albums .photo-album:last-of-type {
    display: none;
  }
}

@media screen and (max-width: 840px) {
  .photo-albums-block .photo-albums {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    justify-content: space-between;
    align-items: flex-start;
  }

  .photo-albums-block .photo-albums .photo-album {
    width: 46.15384615%;
  }

  .photo-albums-block .photo-albums .photo-album:last-of-type {
    display: block;
  }
}

@media screen and (max-width: 550px) {
  .photo-albums-block .photo-albums {
    display: block;
  }

  .photo-albums-block .photo-albums .photo-album {
    width: 100%;
    max-width: 400px;
  }
}

.photo-albums-block .see-more {
  display: block;
  max-width: 200px;
  padding: 20px 0;
  margin: 30px 0 0 21.42857143%;
  text-decoration: none;
}

@media screen and (max-width: 550px) {
  .photo-albums-block .see-more {
    margin-left: 28.57142857%;
  }
}

.photo-albums-block .see-more p {
  display: block;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 300;
  color: #193863;
  text-transform: uppercase;
}

.photo-albums-block .see-more .click-me-wrapper {
  margin-top: 4px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
}

.photo-albums-block .see-more .click-me {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-family: "DubaiBold", Arial, sans-serif;
  color: #193863;
}

.photo-albums-block .see-more .click-me:after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  background: url("/img/somerenslust-sprite.svg") -35px -14px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 11px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.photo-albums-block .see-more .lines {
  display: inline-block;
  margin-right: 15px;
  width: 36px;
  font-size: 0;
  line-height: 0;
}

.photo-albums-block .see-more .lines span {
  display: inline-block;
  height: 15px;
  width: 2px;
  background-color: #F5AE06;
  margin-right: 6px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.photo-albums-block .see-more .lines span:nth-child(1) {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

.photo-albums-block .see-more .lines span:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.photo-albums-block .see-more .lines span:nth-child(3) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.photo-albums-block .see-more .lines span:nth-child(4) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.photo-albums-block .see-more .lines span:nth-child(5) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.photo-albums-block .see-more .lines span:last-of-type {
  margin-right: 0 !important;
}

.photo-albums-block .see-more:hover .click-me:after {
  -webkit-transform: translate3d(5px, 0, 0);
          transform: translate3d(5px, 0, 0);
}

.photo-albums-block .see-more:hover .lines span {
  background-color: #0E2B51;
}

.akkoords-block {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 840px) {
  .akkoords-block {
    border-bottom: 40px solid #193863;
  }
}

.akkoords-block h2 {
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 300;
  color: #193863;
  text-transform: uppercase;
}

.akkoords-block h2 strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: 1.6px;
}

.akkoords-block .akkoords {
  margin-top: 45px;
}

.akkoords-block .akkoords ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.akkoords-block .akkoords ul li + li {
  margin-top: 5px;
}

.akkoords-block .akkoords ul li a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 8%;
  text-decoration: none;
  background-color: white;
  -webkit-transition: background-color 0.3s, border 0.3s;
  transition: background-color 0.3s, border 0.3s;
  border: 1px solid transparent;
}

.akkoords-block .akkoords ul li a .icon {
  display: block;
  background: url("/img/somerenslust-sprite.svg") -1px -30px no-repeat;
  background-size: 200px 202px;
  width: 32px;
  height: 44px;
  margin-right: 8%;
}

.akkoords-block .akkoords ul li a .text h5 {
  margin: 0;
  font-family: "DubaiBold", Arial, sans-serif;
  font-size: 0.85rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #193863;
}

.akkoords-block .akkoords ul li a .text span {
  margin-top: 5px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.7rem;
  line-height: 1.2;
  color: #193863;
  text-transform: uppercase;
}

.akkoords-block .akkoords ul li a .text span:after {
  content: '';
  display: inline-block;
  margin-left: 20px;
  background: url("/img/somerenslust-sprite.svg") -35px -14px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 11px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.akkoords-block .akkoords ul li a:hover {
  background-color: #F4F4F4;
  border-color: #193863;
}

.akkoords-block .akkoords ul li a:hover .text span:after {
  -webkit-transform: translate3d(5px, 0, 0);
          transform: translate3d(5px, 0, 0);
}

@media screen and (max-width: 840px) {
  .akkoords-block .akkoords ul {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: space-between;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -ms-flex-direction: row;
  }

  .akkoords-block .akkoords ul li {
    width: calc(50% - 3px);
  }
}

@media screen and (max-width: 600px) {
  .akkoords-block .akkoords ul {
    display: block;
  }

  .akkoords-block .akkoords ul li {
    width: 100%;
  }
}

.akkoords-block .akkoords .to-archive {
  display: block;
  margin-top: 45px;
  text-decoration: none;
  text-align: center;
}

.akkoords-block .akkoords .to-archive p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.2;
  color: #193863;
}

.akkoords-block .akkoords .to-archive span {
  margin-top: 5px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  line-height: 1.2;
  color: #193863;
  text-transform: uppercase;
  font-family: "DubaiBold", Arial, sans-serif;
}

.akkoords-block .akkoords .to-archive span:after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  background: url("/img/somerenslust-sprite.svg") -35px -14px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 11px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.akkoords-block .akkoords .to-archive:hover span:after {
  -webkit-transform: translate3d(5px, 0, 0);
          transform: translate3d(5px, 0, 0);
}

.corporation-part-header {
  position: relative;
  padding-top: 100px;
}

@media screen and (max-width: 1080px) {
  .corporation-part-header {
    padding-top: 60px;
  }
}

.corporation-part-header:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #F5AE06;
}

.percussion .corporation-part-header:after,
.junior_percussion .corporation-part-header:after {
  background-color: #193863;
}

.jazzAcademy .corporation-part-header:after {
  background-color: #3B485B;
}

.corporation-part-header .grid-row {
  position: relative;
}

.corporation-part-header .slider-title {
  z-index: 3;
}

.corporation-part-header .main-title {
  display: block;
  min-height: 40px;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: translate3d(100%, 0, 0) rotate(90deg);
          transform: translate3d(100%, 0, 0) rotate(90deg);
  position: absolute;
  top: 0;
  right: 90px;
  z-index: 3;
}

@media screen and (max-width: 1350px) {
  .corporation-part-header .main-title {
    right: 95px;
  }
}

@media screen and (max-width: 1180px) {
  .corporation-part-header .main-title {
    right: 75px;
  }
}

@media screen and (max-width: 1000px) {
  .corporation-part-header .main-title {
    right: 55px;
  }
}

@media screen and (max-width: 780px) {
  .corporation-part-header .main-title {
    right: 0;
  }
}

.corporation-part-header .main-title h1 {
  display: inline-block;
  margin: 0;
  font-size: 2.2rem;
  line-height: 1;
  color: #193863;
  font-family: "DubaiBold", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 4.3px;
}

.percussion .corporation-part-header .main-title h1,
.jazzAcademy .corporation-part-header .main-title h1,
.junior_percussion .corporation-part-header .main-title h1 {
  color: white;
}

@media screen and (max-width: 1350px) {
  .corporation-part-header .main-title h1 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 500px) {
  .corporation-part-header .main-title h1 {
    font-size: 1.2rem;
  }
}

.corporation-part-header .main-title .lines {
  position: relative;
  top: 1px;
  display: inline-block;
  margin-left: 30px;
  width: 45px;
  font-size: 0;
  line-height: 0;
}

.corporation-part-header .main-title .lines span {
  display: inline-block;
  height: 26px;
  width: 4px;
  background-color: white;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.percussion .corporation-part-header .main-title .lines span,
.jazzAcademy .corporation-part-header .main-title .lines span,
.junior_percussion .corporation-part-header .main-title .lines span {
  background-color: #F5AE06;
}

.corporation-part-header .main-title .lines span + span {
  margin-left: 6px;
}

@media screen and (max-width: 1350px) {
  .corporation-part-header .main-title .lines {
    top: 0;
  }

  .corporation-part-header .main-title .lines span {
    height: 19px;
  }
}

@media screen and (max-width: 500px) {
  .corporation-part-header .main-title .lines {
    margin-left: 20px;
  }

  .corporation-part-header .main-title .lines span {
    height: 13px;
    width: 3px;
  }
}

.corporation-part-header .image-slider {
  position: relative;
  z-index: 2;
  width: 75%;
  overflow: visible;
  background-color: #F4F4F4;
}

@media screen and (max-width: 1000px) {
  .corporation-part-header .image-slider {
    width: 83.33333333%;
  }
}

.corporation-part-header .image-slider .placeholder {
  width: 100%;
  cursor: move;
}

.corporation-part-header .image-slider .placeholder .controllers {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
}

@media screen and (max-width: 1080px) {
  .corporation-part-header .image-slider .placeholder .controllers {
    padding-bottom: 66.67%;
  }
}

.ie.v10 .corporation-part-header .image-slider .placeholder .controllers {
  visibility: hidden;
}

.corporation-part-header .image-slider .placeholder .controllers .nav-item {
  position: absolute;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  align-items: center;
  bottom: -20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.corporation-part-header .image-slider .placeholder .controllers .nav-item:after {
  content: '';
  background: url("/img/somerenslust-sprite.svg") -35px -1px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 10px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.corporation-part-header .image-slider .placeholder .controllers .nav-item.previous {
  background-color: #F69628;
  right: 100px;
}

.corporation-part-header .image-slider .placeholder .controllers .nav-item.previous:after {
  -webkit-transform: translate3d(0, 0, 0) rotate(180deg);
          transform: translate3d(0, 0, 0) rotate(180deg);
}

.corporation-part-header .image-slider .placeholder .controllers .nav-item.previous:hover {
  background-color: #f58a10;
}

.corporation-part-header .image-slider .placeholder .controllers .nav-item.previous:hover:after {
  -webkit-transform: translate3d(-3px, 0, 0) rotate(180deg);
          transform: translate3d(-3px, 0, 0) rotate(180deg);
}

.corporation-part-header .image-slider .placeholder .controllers .nav-item.next {
  background-color: #193863;
  right: 60px;
}

.percussion .corporation-part-header .image-slider .placeholder .controllers .nav-item.next,
.junior_percussion .corporation-part-header .image-slider .placeholder .controllers .nav-item.next {
  background-color: #142c4f;
}

.corporation-part-header .image-slider .placeholder .controllers .nav-item.next:after {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.corporation-part-header .image-slider .placeholder .controllers .nav-item.next:hover {
  background-color: #142c4f;
}

.percussion .corporation-part-header .image-slider .placeholder .controllers .nav-item.next:hover,
.junior_percussion .corporation-part-header .image-slider .placeholder .controllers .nav-item.next:hover {
  background-color: #0f213a;
}

.corporation-part-header .image-slider .placeholder .controllers .nav-item.next:hover:after {
  -webkit-transform: translate3d(3px, 0, 0);
          transform: translate3d(3px, 0, 0);
}

.corporation-part-header .image-slider .placeholder figure {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.corporation-part-header .image-slider .placeholder figure span {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.corporation-part-header .image-slider .placeholder figure span.large {
  display: block;
}

@media screen and (max-width: 1170px) {
  .corporation-part-header .image-slider .placeholder figure span.large {
    display: none;
  }

  .corporation-part-header .image-slider .placeholder figure span.medium {
    display: block;
  }
}

@media screen and (max-width: 500px) {
  .corporation-part-header .image-slider .placeholder figure span.medium {
    display: none;
  }

  .corporation-part-header .image-slider .placeholder figure span.small {
    display: block;
  }
}

.corporation-part-header .image-slider .placeholder figure.active {
  z-index: 2;
  opacity: 1;
}

.corporation-part-header .intro {
  z-index: 2;
  vertical-align: top;
  width: 41.66666667%;
  padding: 5% 0;
  overflow: visible;
}

.corporation-part-header .intro p {
  max-width: 475px;
  font-size: 1rem;
  line-height: 1.4;
  color: #193863;
}

@media screen and (max-width: 400px) {
  .corporation-part-header .intro p {
    font-size: 0.9rem;
  }
}

.corporation-part-header .legend {
  z-index: 2;
  vertical-align: top;
  padding: 5% 0;
  margin-left: 16.66666667%;
  width: 41.66666667%;
}

.corporation-part-header .legend > p {
  margin: 20px 0 0;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #193863;
  font-family: "DubaiBold", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2.56px;
}

.percussion .corporation-part-header .legend > p,
.jazzAcademy .corporation-part-header .legend > p,
.junior_percussion .corporation-part-header .legend > p {
  color: white;
}

.corporation-part-header .legend ol {
  margin-top: 25px;
  counter-reset: ol-counter;
  padding: 0;
}

.corporation-part-header .legend ol li {
  padding-left: 0;
}

.corporation-part-header .legend ol li + li {
  margin-top: 10px;
}

.corporation-part-header .legend ol li a {
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.2;
  color: #193863;
  font-family: "DubaiBold", Arial, sans-serif;
  opacity: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.corporation-part-header .legend ol li a:before {
  counter-increment: ol-counter;
  content: "0" counter(ol-counter);
  font-size: 1rem;
  line-height: 1.2;
  color: white;
  font-family: "DubaiBold", Arial, sans-serif;
  margin-right: 20px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.percussion .corporation-part-header .legend ol li a,
.jazzAcademy .corporation-part-header .legend ol li a,
.junior_percussion .corporation-part-header .legend ol li a {
  color: white;
}

.percussion .corporation-part-header .legend ol li a:before,
.jazzAcademy .corporation-part-header .legend ol li a:before,
.junior_percussion .corporation-part-header .legend ol li a:before {
  color: #F5AE06;
}

.percussion .corporation-part-header .legend ol li a:hover,
.jazzAcademy .corporation-part-header .legend ol li a:hover,
.junior_percussion .corporation-part-header .legend ol li a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.percussion .corporation-part-header .legend ol li a:hover:before,
.jazzAcademy .corporation-part-header .legend ol li a:hover:before,
.junior_percussion .corporation-part-header .legend ol li a:hover:before {
  color: #F69628;
}

.corporation-part-header .legend ol li a:hover {
  color: white;
}

.corporation-part-header .legend ol li a:hover:before {
  color: #193863;
}

.corporation-part-header .legend .kms-content {
  max-width: 400px;
}

.corporation-part-header .legend .kms-content p,
.corporation-part-header .legend .kms-content ul li,
.corporation-part-header .legend .kms-content a {
  color: white;
  font-size: 1.1rem;
  line-height: 1.6;
}

@media screen and (max-width: 780px) {
  .corporation-part-header {
    padding-top: 0;
  }

  .corporation-part-header:after {
    display: none;
  }

  .corporation-part-header .slider-title {
    width: 100%;
    padding-top: 60px;
    position: relative;
  }

  .corporation-part-header .slider-title:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #F5AE06;
  }

  .percussion .corporation-part-header .slider-title:after,
  .junior_percussion .corporation-part-header .slider-title:after {
    background-color: #193863;
  }

  .jazzAcademy .corporation-part-header .slider-title:after {
    background-color: #3B485B;
  }

  .corporation-part-header .slider-title .main-title {
    top: 60px;
    right: 7.14285714%;
  }

  .corporation-part-header .header-content {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -ms-flex-direction: row;
    width: 100%;
  }

  .corporation-part-header .header-content .intro {
    -webkit-order: 2;
    -ms-order: 2;
    width: 100%;
    padding: 40px 7.14285714%;
  }

  .corporation-part-header .header-content .legend {
    -webkit-order: 1;
    -ms-order: 1;
    width: 100%;
    margin-left: 0;
    background-color: #F5AE06;
    padding: 40px 7.14285714%;
  }

  .percussion .corporation-part-header .header-content .legend,
  .junior_percussion .corporation-part-header .header-content .legend {
    background-color: #193863;
  }

  .jazzAcademy .corporation-part-header .header-content .legend {
    background-color: #3B485B;
  }
}

.block-title {
  position: relative;
  height: 75px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}

.block-title .number {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  font-size: 90px;
  line-height: 0.8;
  color: #F2F2F2;
  font-family: "DubaiBold", Arial, sans-serif;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease 1.4s;
  transition: opacity 0.4s ease 1.4s;
}

.block-title .number.element-in-viewport {
  opacity: 0;
}

.block-title .title {
  position: relative;
  top: 2px;
  z-index: 1;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
}

.block-title .title svg {
  display: block;
  width: 58px;
  max-height: 11px;
  margin-right: 11px;
  margin-left: -11px;
}

.block-title .title h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  font-family: "DubaiBold", Arial, sans-serif;
  color: #193863;
}

.corporation-history {
  padding: 80px 0 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#0E2B51), to(#204272));
  background: linear-gradient(#0E2B51, #204272);
}

.corporation-history .grid-row {
  position: relative;
}

.corporation-history .grid-row:before {
  content: '';
  position: absolute;
  left: 49px;
  bottom: 0;
  display: block;
  width: 3px;
  height: calc(100% - 90px);
  will-change: height;
  -webkit-transition: height 1s;
  transition: height 1s;
  background-image: url("/img/white-vertical-dots.svg");
  background-repeat: repeat-y;
  background-size: contain;
}

.ie .corporation-history .grid-row:before {
  background-image: url("/img/svgImg/white-vertical-dots.png");
}

.corporation-history .grid-row.element-in-viewport:before {
  height: 0;
}

.corporation-history .left-side {
  width: 25%;
  vertical-align: top;
  overflow: visible;
}

.corporation-history .left-side .block-title .number {
  color: #4e607c;
}

.corporation-history .left-side .block-title .title h2 {
  color: white;
}

.corporation-history .content {
  width: 66.66666667%;
  vertical-align: top;
  padding-bottom: 80px;
  max-width: 750px;
}

.corporation-history .content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.4;
}

@media screen and (max-width: 400px) {
  .corporation-history .content p {
    font-size: 0.9rem;
  }
}

.corporation-history .content p:first-of-type {
  margin-top: 0;
}

.corporation-history .content p strong {
  font-family: "DubaiBold", Arial, sans-serif;
  color: white;
}

@media screen and (max-width: 950px) {
  .corporation-history {
    padding-top: 60px;
  }

  .corporation-history .left-side {
    width: 200px;
  }

  .corporation-history .content {
    width: calc(100% - 200px);
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 625px) {
  .corporation-history {
    padding-top: 40px;
  }

  .corporation-history .grid-row:before {
    left: 21px;
  }

  .corporation-history .left-side {
    display: block;
    width: 100%;
  }

  .corporation-history .content {
    width: 100%;
    padding-left: 55px;
  }
}

.conductor {
  position: relative;
  margin-top: 100px;
}

.conductor .grid-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  justify-content: flex-end;
  align-items: flex-start;
}

.conductor .lines {
  position: absolute;
  z-index: -1;
  top: calc(50% - 85px);
  right: 0;
  display: block;
  width: 100%;
  font-size: 0;
  line-height: 0;
  opacity: 0.2;
}

.conductor .lines span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #193863;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  -webkit-transition: -webkit-transform 3s;
  transition: -webkit-transform 3s;
  transition: transform 3s;
  transition: transform 3s, -webkit-transform 3s;
}

.conductor .lines span + span {
  margin-top: 30px;
}

.conductor .lines span:nth-child(1) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.conductor .lines span:nth-child(2) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.conductor .lines span:nth-child(3) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

.conductor .lines span:nth-child(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.conductor .lines span:nth-child(5) {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}

.conductor .lines.element-in-viewport span {
  -webkit-transform: scale3d(0, 1, 1);
          transform: scale3d(0, 1, 1);
}

.conductor .right-side {
  width: 41.66666667%;
  -webkit-order: 2;
  -ms-order: 2;
}

.conductor .right-side .block-title {
  margin-bottom: 50px;
  margin-left: 33.33333333%;
}

.conductor .right-side figure {
  margin: 0;
  width: 100%;
  max-width: 450px;
}

.conductor .right-side figure img {
  width: 100%;
}

.conductor .left-side {
  position: relative;
  width: 50%;
  min-height: 460px;
  padding: 60px 4.16666667% 60px 8.33333333%;
  -webkit-order: 1;
  -ms-order: 1;
  background-color: #F4F4F4;
  overflow: visible;
}

@media screen and (max-width: 900px) {
  .conductor .left-side {
    width: 58.33333333%;
  }
}

.conductor .left-side:after {
  content: '';
  position: absolute;
  z-index: -1;
  right: -16.66666667%;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #F4F4F4;
}

.conductor .left-side h2 {
  margin-top: 0;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #193863;
  text-transform: uppercase;
  font-family: "DubaiBold", Arial, sans-serif;
  letter-spacing: 2.72px;
}

.conductor .left-side p {
  font-size: 1rem;
  line-height: 1.4;
  color: #193863;
}

@media screen and (max-width: 400px) {
  .conductor .left-side p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 700px) {
  .conductor {
    margin-top: 80px;
  }

  .conductor .grid-row {
    display: block;
  }

  .conductor .right-side {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 4;
  }

  .conductor .right-side .block-title {
    margin-left: 0;
    margin-bottom: 0;
  }

  .conductor .right-side figure {
    width: calc(100% - 165px);
    max-width: 240px;
    min-width: 125px;
  }

  .conductor .right-side figure picture {
    display: block;
    border-radius: 100%;
    overflow: hidden;
  }

  .conductor .left-side {
    width: 100%;
    padding-right: 8.33333333%;
    margin-top: -30px;
  }

  .conductor .left-side:after {
    display: none;
  }
}

@media screen and (max-width: 700px) and (max-width: 380px) {
  .conductor .left-side {
    margin-top: -20px;
  }
}

.corporation-location {
  margin-top: 100px;
  background-color: #3B485B;
}

.corporation-location .grid-row {
  position: relative;
}

.corporation-location figure {
  position: absolute;
  height: 100%;
  margin: 0;
  width: 50%;
  vertical-align: top;
}

.corporation-location figure span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.corporation-location figure span.small {
  display: none;
}

.corporation-location .content {
  width: 41.66666667%;
  margin-left: 58.33333333%;
  vertical-align: top;
  padding: 80px 0;
}

@media screen and (max-width: 1200px) {
  .corporation-location .content {
    padding: 60px 0;
  }
}

.corporation-location .content .block-title .number {
  color: #6a727f;
}

.corporation-location .content .block-title .title h2 {
  color: white;
}

.corporation-location .content p {
  color: rgba(255, 255, 255, 0.8);
}

.corporation-location .content p a {
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.corporation-location .content p a:hover {
  color: white;
}

@media screen and (max-width: 400px) {
  .corporation-location .content p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 1000px) {
  .corporation-location .grid-row {
    width: 100%;
  }

  .corporation-location .content {
    margin-left: 57.14285714%;
    padding-right: 7.14285714%;
  }
}

@media screen and (max-width: 750px) {
  .corporation-location figure {
    position: relative;
    width: 100%;
    height: auto;
  }

  .corporation-location figure .image-placeholder {
    width: 100%;
    padding-bottom: 60%;
    height: 0;
    position: relative;
  }

  .corporation-location .content {
    width: 100%;
    margin-left: 0;
    padding-left: 7.14285714%;
  }
}

.memberShow .sidebar-content .grid-row .global h2 {
  margin: 0;
  padding: 60px 0;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: 1.6px;
  color: #193863;
  text-transform: uppercase;
  font-family: "DubaiBold", Arial, sans-serif;
}

.memberShow .sidebar-content .grid-row .global .documents {
  list-style: none;
  padding: 0 0 40px;
  margin: 0;
}

.memberShow .sidebar-content .grid-row .global .documents li + li {
  margin-top: 5px;
}

.memberShow .sidebar-content .grid-row .global .documents li a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 8%;
  text-decoration: none;
  background-color: #193863;
  -webkit-transition: background-color 0.3s, border 0.3s;
  transition: background-color 0.3s, border 0.3s;
  border: 1px solid transparent;
}

.memberShow .sidebar-content .grid-row .global .documents li a .icon {
  display: block;
  background: url("/img/somerenslust-sprite.svg") -1px -75px no-repeat;
  background-size: 200px 202px;
  width: 32px;
  height: 44px;
  margin-right: 8%;
}

.memberShow .sidebar-content .grid-row .global .documents li a .content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 35px);
}

.memberShow .sidebar-content .grid-row .global .documents li a .content:after {
  content: '';
  display: inline-block;
  background: url("/img/somerenslust-sprite.svg") -35px -1px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 11px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.memberShow .sidebar-content .grid-row .global .documents li a .text {
  display: inline-block;
  width: calc(100% - 25px);
}

.memberShow .sidebar-content .grid-row .global .documents li a .text h5 {
  margin: 0;
  font-family: "DubaiBold", Arial, sans-serif;
  font-size: 0.85rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: white;
}

.memberShow .sidebar-content .grid-row .global .documents li a .text span {
  margin-top: 5px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.7rem;
  line-height: 1.2;
  color: white;
  text-transform: uppercase;
}

.memberShow .sidebar-content .grid-row .global .documents li a:hover {
  background-color: #1A2C4C;
}

.memberShow .sidebar-content .grid-row .global .documents li a:hover .content:after {
  -webkit-transform: translate3d(5px, 0, 0);
          transform: translate3d(5px, 0, 0);
}

.memberShow .photo-albums-row {
  background-color: #3B485B;
  padding: 70px 0 50px;
}

.memberShow .photo-albums-row .photo-album-wrapper {
  position: relative;
}

.memberShow .photo-albums-row .photo-album-wrapper > .lines {
  position: absolute;
  z-index: 1;
  top: calc(50% - 65px);
  right: 0;
  display: block;
  width: 100%;
  font-size: 0;
  line-height: 0;
  opacity: 0.2;
}

@media screen and (max-width: 900px) {
  .memberShow .photo-albums-row .photo-album-wrapper > .lines {
    display: none;
  }
}

@media screen and (max-width: 650px) {
  .memberShow .photo-albums-row .photo-album-wrapper > .lines {
    display: block;
  }
}

.memberShow .photo-albums-row .photo-album-wrapper > .lines span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: white;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  -webkit-transition: -webkit-transform 3s;
  transition: -webkit-transform 3s;
  transition: transform 3s;
  transition: transform 3s, -webkit-transform 3s;
}

.memberShow .photo-albums-row .photo-album-wrapper > .lines span + span {
  margin-top: 30px;
}

.memberShow .photo-albums-row .photo-album-wrapper > .lines span:nth-child(1) {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

.memberShow .photo-albums-row .photo-album-wrapper > .lines span:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.memberShow .photo-albums-row .photo-album-wrapper > .lines span:nth-child(3) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.memberShow .photo-albums-row .photo-album-wrapper > .lines span:nth-child(4) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.memberShow .photo-albums-row .photo-album-wrapper > .lines span:nth-child(5) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.memberShow .photo-albums-row .photo-album-wrapper > .lines.element-in-viewport span {
  -webkit-transform: scale3d(0, 1, 1);
          transform: scale3d(0, 1, 1);
}

.memberShow .photo-albums-row h3 {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.2;
  color: white;
  text-transform: uppercase;
  font-family: "Dubai", Arial, sans-serif;
  font-weight: 300;
  text-align: center;
}

.memberShow .photo-albums-row h3 strong {
  display: block;
  font-family: "DubaiBold", Arial, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 1.6px;
}

.memberShow .photo-albums-row .photo-albums {
  position: relative;
  z-index: 2;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  justify-content: space-between;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-direction: row;
  width: 83.33333333%;
  margin-left: 8.33333333%;
}

@media screen and (max-width: 1200px) {
  .memberShow .photo-albums-row .photo-albums {
    margin-left: 0;
    width: 100%;
  }
}

@media screen and (max-width: 650px) {
  .memberShow .photo-albums-row .photo-albums {
    display: block;
  }
}

.memberShow .photo-albums-row .photo-albums .photo-album {
  position: relative;
  margin-top: 45px;
  width: calc((100% - 80px) / 3);
  background-color: #F4F4F4;
}

@media screen and (max-width: 900px) {
  .memberShow .photo-albums-row .photo-albums .photo-album {
    width: calc((100% - 40px) / 2);
  }
}

@media screen and (max-width: 650px) {
  .memberShow .photo-albums-row .photo-albums .photo-album {
    width: 100%;
    max-width: 400px;
    margin: 30px auto 0;
  }
}

@media screen and (max-width: 550px) {
  .memberShow .photo-albums-row .photo-albums .photo-album {
    margin-top: 25px;
  }
}

.memberShow .photo-albums-row .photo-albums .photo-album a {
  text-decoration: none;
}

.memberShow .photo-albums-row .photo-albums .photo-album figure {
  position: relative;
  margin: 0;
  width: 100%;
  height: 0;
  padding-bottom: 66.67%;
  background-color: #E6E6E6;
}

.memberShow .photo-albums-row .photo-albums .photo-album figure span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.memberShow .photo-albums-row .photo-albums .photo-album p {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
  min-height: 60px;
  margin: 0;
  padding: 10px 8% 10px;
  font-size: 0.9rem;
  line-height: 1.2;
  color: #193863;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.memberShow .photo-albums-row .photo-albums .photo-album:hover p {
  background-color: #E6E6E6;
}

.memberShow .photo-albums-row .see-more {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  padding: 20px 0;
  margin: 50px auto 0;
  text-decoration: none;
}

.memberShow .photo-albums-row .see-more p {
  display: block;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 300;
  color: white;
  text-transform: uppercase;
}

.memberShow .photo-albums-row .see-more .click-me-wrapper {
  margin-top: 4px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
}

.memberShow .photo-albums-row .see-more .click-me {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-family: "DubaiBold", Arial, sans-serif;
  color: white;
}

.memberShow .photo-albums-row .see-more .click-me:after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  background: url("/img/somerenslust-sprite.svg") -35px -1px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 11px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.memberShow .photo-albums-row .see-more .lines {
  display: inline-block;
  margin-right: 15px;
  width: 36px;
  font-size: 0;
  line-height: 0;
}

.memberShow .photo-albums-row .see-more .lines span {
  display: inline-block;
  height: 15px;
  width: 2px;
  background-color: #F5AE06;
  margin-right: 6px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.memberShow .photo-albums-row .see-more .lines span:nth-child(1) {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

.memberShow .photo-albums-row .see-more .lines span:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.memberShow .photo-albums-row .see-more .lines span:nth-child(3) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.memberShow .photo-albums-row .see-more .lines span:nth-child(4) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.memberShow .photo-albums-row .see-more .lines span:nth-child(5) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.memberShow .photo-albums-row .see-more .lines span:last-of-type {
  margin-right: 0 !important;
}

.memberShow .photo-albums-row .see-more:hover .click-me:after {
  -webkit-transform: translate3d(5px, 0, 0);
          transform: translate3d(5px, 0, 0);
}

.memberShow .photo-albums-row .see-more:hover .lines span {
  background-color: white;
}

.repetition-scheme {
  padding-bottom: 60px;
  padding-right: 4.16666667%;
}

@media screen and (max-width: 760px) {
  .repetition-scheme {
    padding-right: 0;
  }
}

.repetition-scheme h1 {
  margin: 0 0 0 12.5%;
  padding: 60px 0 60px 60px;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: 1.6px;
  color: #193863;
  text-transform: uppercase;
  font-family: "DubaiBold", Arial, sans-serif;
}

@media screen and (max-width: 760px) {
  .repetition-scheme h1 {
    margin-left: 16.66666667%;
    padding-left: 0;
  }
}

@media screen and (max-width: 450px) {
  .repetition-scheme h1 {
    margin-left: 7.14285714%;
    width: 85.71428571%;
    padding: 60px 0 30px;
  }
}

.repetition-scheme h1 .lines {
  position: relative;
  top: 2px;
  display: inline-block;
  margin-left: 5px;
  width: 50px;
  font-size: 0;
  line-height: 0;
}

.repetition-scheme h1 .lines span {
  display: inline-block;
  height: 15px;
  width: 2px;
  background-color: #F5AE06;
  margin-right: 6px;
}

@media print {
  .repetition-scheme h1 {
    padding: 20px 0 30px;
  }
}

.repetition-scheme .schemes .scheme + .scheme {
  margin-top: 40px;
}

.repetition-scheme .schemes .scheme .bar {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  align-items: center;
  background-color: #1A2C4C;
  padding: 10px 50px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
}

@media screen and (max-width: 1250px) {
  .repetition-scheme .schemes .scheme .bar {
    padding: 5px 50px;
  }
}

@media screen and (max-width: 600px) {
  .repetition-scheme .schemes .scheme .bar {
    padding: 5px 30px;
  }
}

.repetition-scheme .schemes .scheme .bar p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  line-height: 1.2;
}

.repetition-scheme .schemes .scheme .bar p strong {
  display: block;
  color: white;
  font-family: "DubaiBold", Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.repetition-scheme .schemes .scheme .bar .icon {
  width: 25px;
  height: 100%;
  z-index: 3;
  border: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
}

.repetition-scheme .schemes .scheme .bar .icon span {
  position: relative;
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 9999px;
  display: block;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.3s;
  transition: opacity 0.2s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.2s;
  transition: transform 0.3s, opacity 0.2s, -webkit-transform 0.3s;
}

.repetition-scheme .schemes .scheme .bar .icon span + span {
  margin-top: 3px;
}

.repetition-scheme .schemes .scheme .bar .icon span:nth-child(2) {
  -webkit-transform: scale3d(0.8, 1, 1);
          transform: scale3d(0.8, 1, 1);
}

.repetition-scheme .schemes .scheme .bar .icon span:last-of-type {
  -webkit-transform: scale3d(0.45, 1, 1);
          transform: scale3d(0.45, 1, 1);
}

.repetition-scheme .schemes .scheme .bar:hover .icon span:nth-child(2),
.repetition-scheme .schemes .scheme .bar:hover .icon span:last-of-type {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

.repetition-scheme .schemes .scheme .content {
  height: 0;
  overflow: hidden;
}

.repetition-scheme .schemes .scheme .notification {
  padding: 25px 50px;
  background-color: #F2F2F2;
  margin-bottom: 5px;
}

@media screen and (max-width: 700px) {
  .repetition-scheme .schemes .scheme .notification {
    padding: 15px 30px;
  }
}

@media print {
  .repetition-scheme .schemes .scheme .notification {
    padding: 25px 30px;
  }
}

.repetition-scheme .schemes .scheme .main-scheme .item {
  padding: 0;
  background-color: #F2F2F2;
}

.repetition-scheme .schemes .scheme .main-scheme .item + .item {
  margin-top: 5px;
}

.repetition-scheme .schemes .scheme .main-scheme .item:nth-child(odd) {
  background-color: #dde2e8;
}

.repetition-scheme .schemes .scheme .main-scheme .item:nth-child(odd) .date-scheme .description {
  background-color: #dde2e8;
}

.repetition-scheme .schemes .scheme .main-scheme .item .date-scheme {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  justify-content: space-between;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-direction: row;
}

.repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .date,
.repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .location,
.repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .description {
  padding: 15px 20px;
}

.repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .date,
.repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .location {
  width: 150px;
}

.repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .date p,
.repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .location p {
  font-family: "DubaiBold", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  color: #193863;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .date {
  text-align: right;
}

.repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .date span {
  font-family: "Dubai", Arial, sans-serif;
  font-size: 0.8rem;
  text-transform: capitalize;
}

.repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .description {
  min-height: 120px;
  border-left: 2px solid white;
  border-right: 2px solid white;
  width: calc(100% - 300px);
  background-color: #F2F2F2;
}

.repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .description > *:first-child {
  margin-top: 1rem;
}

.repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .description > *:last-child {
  margin-bottom: 1rem;
}

.repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .description p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .description p,
.repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .description ul li,
.repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .description ol li {
  color: #193863;
}

@media screen and (max-width: 700px) {
  .repetition-scheme .schemes .scheme .main-scheme .item .date-scheme {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: flex-start;
    align-items: center;
  }

  .repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .date,
  .repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .location,
  .repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .description {
    padding: 15px 30px;
  }

  .repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .date,
  .repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .location {
    width: 50%;
    max-width: 200px;
  }

  .repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .date {
    -webkit-order: 1;
    -ms-order: 1;
    text-align: left;
  }

  .repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .location {
    -webkit-order: 2;
    -ms-order: 2;
  }

  .repetition-scheme .schemes .scheme .main-scheme .item .date-scheme .description {
    width: 100%;
    min-height: 0;
    -webkit-order: 3;
    -ms-order: 3;
    border-top: 2px solid white;
    border-left: none;
    border-right: none;
  }
}

.repetition-scheme .schemes .scheme .main-scheme .item .text-row {
  padding: 30px 50px;
  text-align: center;
}

@media print {
  .repetition-scheme .schemes .scheme .main-scheme .item .text-row {
    padding: 30px 20px;
  }
}

.repetition-scheme .schemes .scheme.active .bar {
  background-color: #193863;
}

.repetition-scheme .schemes .scheme.active .bar .icon span:first-of-type {
  -webkit-transform: rotate(45deg) scale3d(0.7, 1, 1);
  transform: rotate(45deg) scale3d(0.7, 1, 1);
}

.repetition-scheme .schemes .scheme.active .bar .icon span:last-of-type {
  -webkit-transform: rotate(-45deg) scale3d(0.7, 1, 1);
  transform: rotate(-45deg) scale3d(0.7, 1, 1);
}

.repetition-scheme .schemes .scheme.active .bar .icon span:nth-child(2) {
  -webkit-transform: scale3d(0, 1, 1);
          transform: scale3d(0, 1, 1);
  opacity: 0;
}

.repetition-scheme .schemes .scheme.active .content {
  height: auto;
}

@media print {
  .repetition-scheme .schemes .scheme {
    display: none;
  }

  .repetition-scheme .schemes .scheme.active {
    display: block;
  }
}

@media screen and (max-width: 450px) {
  .repetition-scheme .schemes .scheme + .scheme {
    margin-top: 20px;
  }

  .repetition-scheme .schemes .scheme .bar p {
    font-size: 0.8rem;
  }

  .repetition-scheme .schemes .scheme .bar p strong {
    font-size: 1rem;
  }
}

#wave path {
  stroke-dasharray: 90px;
  stroke-dashoffset: 180px;
  -webkit-transition: stroke-dashoffset 1.5s linear 0.5s;
  transition: stroke-dashoffset 1.5s linear 0.5s;
}

.ie #wave path {
  stroke-dashoffset: 0 !important;
}

#wave.element-in-viewport path {
  stroke-dashoffset: 90px;
}

.default .sidebar-content {
  padding: 40px 0;
}

.default .sidebar-content .default-page {
  padding: 60px 60px 40px;
  background-color: #F4F4F4;
  width: 83.33333333%;
  margin-left: 8.33333333%;
}

.default .sidebar-content .default-page h1 {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 2.56px;
  color: #193863;
  font-family: "DubaiBold", Arial, sans-serif;
  text-transform: uppercase;
}

@media screen and (max-width: 1000px) {
  .default .sidebar-content .default-page {
    margin-left: 0;
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .default .sidebar-content .default-page {
    padding: 60px 45px 40px;
  }
}

.default .sidebar-content .default-page .extra-content-blocks.no-margin-top .dynamic-block {
  margin-top: 0;
}

@media screen and (max-width: 450px) {
  .default .sidebar .sidebar-content {
    padding: 0;
  }

  .default .grid-row {
    width: 100%;
  }
}

/* ==========================================================================
   Home page
   @mixin ========================================================================= */

@media screen and (max-width: 840px) {
  .home .sidebar:before {
    display: none;
  }
}

.home .sidebar .sidebar-content .grid-row {
  position: relative;
}

.home .sidebar .sidebar-content .grid-row:before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 8.33333333%;
  top: 0;
  display: block;
  width: 29.16666667%;
  height: 100%;
  background-color: #E6E6E6;
}

.home .sidebar .sidebar-content .grid-row:after {
  content: '';
  position: absolute;
  left: 16.66666667%;
  top: 0;
  width: 83.33333333%;
  height: 100%;
  background-color: #F4F4F4;
}

.home .sidebar .sidebar-content .agenda-block {
  z-index: 2;
  vertical-align: top;
  width: 37.5%;
  min-height: 200px;
  padding: 60px 4.16666667% 60px 0;
}

.home .sidebar .sidebar-content .agenda-block .agenda {
  padding-bottom: 20px;
}

.home .sidebar .sidebar-content .agenda-block .discover-msl {
  margin-left: 25%;
  width: 87.5%;
}

.home .sidebar .sidebar-content .news-block {
  position: relative;
  z-index: 2;
  vertical-align: top;
  width: 62.5%;
  min-height: 200px;
  padding: 60px 0 20px 4.16666667%;
  background-color: #F4F4F4;
}

@media screen and (max-width: 1100px) {
  .home .sidebar .sidebar-content .grid-row:before {
    width: 54.16666667%;
  }

  .home .sidebar .sidebar-content .agenda-block {
    padding-top: 40px;
    width: 54.16666667%;
  }

  .home .sidebar .sidebar-content .news-block {
    padding-top: 40px;
    width: 45.83333333%;
  }
}

@media screen and (max-width: 840px) {
  .home .sidebar .sidebar-content .grid-row {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -ms-flex-direction: row;
  }

  .home .sidebar .sidebar-content .grid-row:before,
  .home .sidebar .sidebar-content .grid-row:after {
    display: none;
  }

  .home .sidebar .sidebar-content .grid-row .agenda-block {
    background-color: #E6E6E6;
    padding: 40px 7.14285714% 30px;
    width: 100%;
    -webkit-order: 2;
    -ms-order: 2;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    justify-content: space-between;
    align-items: flex-start;
  }

  .home .sidebar .sidebar-content .grid-row .agenda-block .agenda {
    width: 55%;
  }

  .home .sidebar .sidebar-content .grid-row .agenda-block .discover-msl {
    width: 40%;
    margin-left: 0;
    padding: 60px 0 60px 20px;
  }
}

@media screen and (max-width: 840px) and (max-width: 600px) {
  .home .sidebar .sidebar-content .grid-row .agenda-block {
    display: block;
  }

  .home .sidebar .sidebar-content .grid-row .agenda-block .agenda {
    width: 100%;
  }

  .home .sidebar .sidebar-content .grid-row .agenda-block .discover-msl {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
  }
}

@media screen and (max-width: 840px) and (max-width: 420px) {
  .home .sidebar .sidebar-content .grid-row .agenda-block {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 840px) {
  .home .sidebar .sidebar-content .grid-row .news-block {
    width: 100%;
    padding: 30px 7.14285714%;
    -webkit-order: 1;
    -ms-order: 1;
  }
}

.home .our-youth {
  margin-top: -160px;
  padding-top: 280px;
}

@media screen and (max-width: 1300px) {
  .home .our-youth {
    padding-top: 240px;
  }

  .home .our-youth .icon-buttons {
    margin-left: 0;
  }
}

/* ==========================================================================
   Home page
   @mixin ========================================================================= */

.actual .sidebar .sidebar-content:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: calc( 100% - 145px);
  background-color: #F4F4F4;
}

@media screen and (max-width: 840px) {
  .actual .sidebar .sidebar-content:after {
    display: none;
  }
}

.actual .sidebar .sidebar-content .grid-row {
  position: relative;
}

@media screen and (max-width: 840px) {
  .actual .sidebar .sidebar-content .grid-row {
    width: 100%;
  }
}

.actual .sidebar .sidebar-content .grid-row:before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 8.33333333%;
  top: 0;
  display: block;
  width: 50%;
  height: 100%;
  background-color: white;
}

@media screen and (max-width: 840px) {
  .actual .sidebar .sidebar-content .grid-row:before {
    left: 16.66666667%;
  }
}

.actual .sidebar .sidebar-content .grid-row .photo-albums-block {
  vertical-align: top;
  width: 58.33333333%;
  padding: 60px 4.16666667% 30px 0;
}

.actual .sidebar .sidebar-content .grid-row .akkoords-block {
  vertical-align: top;
  width: 41.66666667%;
  padding: 60px 0 175px 4.16666667%;
}

@media screen and (max-width: 840px) {
  .actual .sidebar .sidebar-content .grid-row .photo-albums-block {
    width: 100%;
    padding: 40px 7.14285714% 30px;
  }

  .actual .sidebar .sidebar-content .grid-row .akkoords-block {
    width: 100%;
    padding: 40px 7.14285714% 40px;
    background-color: #F4F4F4;
  }
}

.actual .news-calender {
  position: relative;
  background-color: #F4F4F4;
}

.actual .news-calender:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #F5AE06;
}

.actual .news-calender .grid-row {
  position: relative;
}

.actual .news-calender .grid-row:after {
  content: '';
  position: absolute;
  z-index: 1;
  right: 8.33333333%;
  top: 0;
  width: 29.16666667%;
  height: 100%;
  background-color: #E6E6E6;
}

.actual .news-calender .agenda {
  position: relative;
  z-index: 2;
  vertical-align: top;
  width: 37.5%;
  min-height: 200px;
  padding: 60px 0 60px 4.16666667%;
  overflow: visible;
}

.actual .news-calender .agenda h3,
.actual .news-calender .agenda .read-more {
  margin-left: 0;
  text-align: left;
  padding-left: 30px;
}

.actual .news-calender .agenda ul li {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
}

.actual .news-calender .agenda ul li a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
}

.actual .news-calender .agenda ul li .content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
}

.actual .news-calender .agenda ul li .content p {
  text-align: left;
}

.actual .news-calender .agenda ul li .date {
  left: auto;
  right: 0;
}

.actual .news-calender .news-block {
  position: relative;
  z-index: 2;
  vertical-align: top;
  width: 62.5%;
  min-height: 200px;
  padding: 60px 4.16666667% 20px 0;
  background-color: #F4F4F4;
}

@media screen and (max-width: 1100px) {
  .actual .news-calender .grid-row:after {
    width: 54.16666667%;
  }

  .actual .news-calender .agenda {
    padding-top: 40px;
    width: 54.16666667%;
  }

  .actual .news-calender .news-block {
    padding-top: 40px;
    width: 45.83333333%;
  }
}

@media screen and (max-width: 840px) {
  .actual .news-calender .grid-row {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -ms-flex-direction: row;
  }

  .actual .news-calender .grid-row:before,
  .actual .news-calender .grid-row:after {
    display: none;
  }

  .actual .news-calender .grid-row .agenda {
    background-color: #E6E6E6;
    padding: 40px 14.28571429% 40px;
    width: 100%;
    -webkit-order: 2;
    -ms-order: 2;
  }
}

@media screen and (max-width: 840px) and (max-width: 550px) {
  .actual .news-calender .grid-row .agenda {
    padding: 40px 7.14285714% 40px;
  }
}

@media screen and (max-width: 840px) and (max-width: 420px) {
  .actual .news-calender .grid-row .agenda {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 840px) {
  .actual .news-calender .grid-row .news-block {
    width: 100%;
    padding: 50px 7.14285714% 30px;
    -webkit-order: 1;
    -ms-order: 1;
  }
}

/*==========================================================================
  News overview page
  @mixin ========================================================================= */

@media screen and (max-width: 950px) {
  .news .sidebar {
    background-color: #F4F4F4;
  }

  .news .sidebar:before {
    width: 100%;
    height: 550px;
  }
}

@media screen and (max-width: 950px) and (max-width: 650px) {
  .news .sidebar:before {
    height: 380px;
  }
}

@media screen and (max-width: 950px) {
  .news .sidebar .fill-out {
    display: none;
  }
}

.news .news-block {
  padding: 40px 0;
  width: 100%;
}

.news .news-block h1 {
  margin: 0 0 40px 8.33333333%;
  padding: 0;
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 300;
  color: white;
  text-transform: uppercase;
}

.news .news-block h1 strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 2.56px;
}

.news .news-block .post-overview {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px 30px;
}

@media screen and (max-width: 950px) {
  .news .news-block .post-overview {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 650px) {
  .news .news-block .post-overview {
    display: block;
  }
}

.news .news-block .post-overview article {
  background-color: white;
  width: 100%;
  max-width: 425px;
  display: block;
  margin-bottom: 30px;
}

@supports (display: grid) {
  .news .news-block .post-overview article {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 650px) {
  .news .news-block .post-overview article {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
}

.news .news-block .post-overview article a {
  text-decoration: none;
}

.news .news-block .post-overview article figure {
  margin: 0;
  display: block;
}

.news .news-block .post-overview article figure img {
  width: 100%;
}

.news .news-block .post-overview article .content {
  padding: 8% 8% 6.5%;
}

.news .news-block .post-overview article .content h5 {
  font-family: "DubaiBold", Arial, sans-serif;
  color: #193863;
  font-size: 1rem;
  line-height: 1.2;
  margin: 0;
}

.news .news-block .post-overview article .content p {
  margin: 0.8rem 0;
  font-size: 0.9rem;
  line-height: 1.2;
  color: #3B485B;
}

.news .news-block .post-overview article .content .read-more {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
  max-width: 200px;
  color: #193863;
  text-transform: uppercase;
  font-family: "DubaiBold", Arial, sans-serif;
  font-size: 0.7rem;
  line-height: 1.2;
}

.news .news-block .post-overview article .content .read-more .icon {
  position: relative;
  top: -1px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  width: 25px;
  height: 20px;
}

.news .news-block .post-overview article .content .read-more .icon:after {
  content: '';
  background: url("/img/somerenslust-sprite.svg") -35px -14px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 10px;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.news .news-block .post-overview article .content:hover .read-more .icon:after {
  -webkit-transform: translate3d(5px, 0, 0);
          transform: translate3d(5px, 0, 0);
}

.news .pagination-row {
  padding: 30px 0;
  background-color: #F5AE06;
}

.news .pagination-row ul {
  list-style: none;
  padding: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  align-items: center;
}

.news .pagination-row ul li {
  font-size: 1rem;
  line-height: 1.1;
}

.news .pagination-row ul li + li {
  margin-left: 15px;
}

.news .pagination-row ul li span,
.news .pagination-row ul li a {
  color: white;
  text-decoration: none;
}

.news .pagination-row ul li.disabled span {
  opacity: 0.5;
}

.news .pagination-row ul li.active span {
  color: #193863;
}

.news .pagination-row ul li:first-of-type span,
.news .pagination-row ul li:first-of-type a {
  display: block;
  color: rgba(255, 255, 255, 0);
  background: url("/img/somerenslust-sprite.svg") -35px -1px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 10px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.news .pagination-row ul li:last-of-type span,
.news .pagination-row ul li:last-of-type a {
  display: block;
  color: rgba(255, 255, 255, 0);
  background: url("/img/somerenslust-sprite.svg") -35px -1px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 10px;
}

/*==========================================================================
  Post detail page
  @mixin ========================================================================= */

.post-detail.default .sidebar-content .default-page .post-meta {
  padding-bottom: 20px;
  position: relative;
}

.post-detail.default .sidebar-content .default-page .post-meta:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80%;
  height: 1px;
  max-width: 240px;
  background-color: #193863;
  opacity: 0.4;
}

.post-detail.default .sidebar-content .default-page .post-meta h1 {
  font-size: 1.2rem;
}

.post-detail.default .sidebar-content .default-page .post-meta .date {
  margin: 5px 0 0;
  color: rgba(100, 100, 100, 0.4);
  font-size: 0.8rem;
  line-height: 1.2;
  font-family: "DubaiBold", Arial, sans-serif;
}

.post-detail.default .sidebar-content .default-page .post-meta .date span {
  display: inline-block;
  margin-left: 5px;
  color: rgba(59, 72, 91, 0.8);
  font-size: 0.9rem;
}

.post-detail.default .sidebar-content .default-page .post-meta .photo-album {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  margin-top: 10px;
}

.post-detail.default .sidebar-content .default-page .post-meta .photo-album .icon {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  width: 25px;
  height: 20px;
  opacity: 0.4;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.post-detail.default .sidebar-content .default-page .post-meta .photo-album .icon:after {
  content: '';
  background: url("/img/somerenslust-sprite.svg") -52px -1px no-repeat;
  background-size: 200px 202px;
  width: 25px;
  height: 20px;
  display: inline-block;
}

.post-detail.default .sidebar-content .default-page .post-meta .photo-album p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.2;
  color: rgba(100, 100, 100, 0.6);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.post-detail.default .sidebar-content .default-page .post-meta .photo-album:hover .icon {
  opacity: 1;
}

.post-detail.default .sidebar-content .default-page .post-meta .photo-album:hover p {
  color: #3B485B;
}

.member .sidebar-content {
  padding: 80px 0;
}

.member .login-form {
  width: 91.66666667%;
  max-width: 600px;
  margin: auto;
  border-radius: 4px;
  background-color: #193863;
  padding: 40px;
}

.member .login-form figure {
  margin: 0 auto 40px;
  width: 90%;
  max-width: 60px;
}

.member .login-form figure img {
  width: 100%;
}

.member .login-form > p {
  font-size: 1rem;
  line-height: 1.2;
  color: white;
  text-align: center;
}

.member .login-form form {
  width: 100%;
  max-width: 300px;
  margin: 30px auto;
}

.member .login-form form .alert {
  padding: 5px 10px;
  border-radius: 4px;
  background-color: white;
  color: #ff323c;
  font-size: 0.8rem;
  line-height: 1.2;
}

.member .login-form label {
  display: block;
  position: relative;
  top: 5px;
  font-size: 0.8rem;
  line-height: 1.2;
  color: white;
  padding-left: 20px;
  opacity: 0.6;
}

.member .login-form label.username-label {
  margin-top: 50px;
}

.member .login-form input {
  display: block;
  margin-bottom: 30px;
  width: 100%;
  background-color: transparent;
  padding: 8px 20px;
  border: 1px transparent solid;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.2;
  color: white;
}

.member .login-form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.member .login-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.member .login-form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.member .login-form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.member .login-form input.alert {
  border-color: #ff323c;
}

.member .login-form input:-webkit-autofill,
.member .login-form input:-webkit-autofill:hover,
.member .login-form input:-webkit-autofill:focus,
.member .login-form input:-webkit-autofill:active {
  -webkit-transition: 9999s background-color;
  transition: 9999s background-color;
  -webkit-text-fill-color: white;
  -webkit-transition-delay: 9999s;
          transition-delay: 9999s;
}

.member .login-form input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.member .login-form input.email {
  display: none;
}

.member .login-form input.submit {
  background-color: white;
  color: #193863;
  font-size: 0.8rem;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.member .login-form input.submit:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 480px) {
  .member .sidebar-content {
    padding: 60px 0;
  }

  .member .sidebar-content .grid-row {
    width: 100%;
  }
}

@media screen and (max-width: 440px) {
  .member .sidebar-content {
    padding: 50px 0;
  }

  .member .login-form {
    padding: 30px;
  }

  .member .login-form > p {
    font-size: 0.9rem;
  }

  .member .login-form form {
    width: 100%;
    max-width: 300px;
    margin: 50px auto 0;
  }

  .member .login-form label {
    font-size: 0.7rem;
    padding-left: 20px;
    opacity: 0.6;
  }

  .member .login-form input {
    margin-bottom: 20px;
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

.memberShow .sidebar-content .grid-row {
  position: relative;
}

.memberShow .sidebar-content .grid-row:before {
  content: '';
  position: absolute;
  z-index: -2;
  top: 0;
  left: 8.33333333%;
  width: 58.33333333%;
  height: 100%;
  background-color: white;
}

.memberShow .sidebar-content .grid-row .repetition-scheme {
  display: inline-block;
  vertical-align: top;
  width: 66.66666667%;
}

.memberShow .sidebar-content .grid-row .repetition-scheme .global-message {
  margin-left: 12.5%;
  width: 75%;
  padding-left: 60px;
  padding-bottom: 20px;
}

.memberShow .sidebar-content .grid-row .repetition-scheme .global-message > h2 {
  margin-top: 0;
}

@media screen and (max-width: 760px) {
  .memberShow .sidebar-content .grid-row .repetition-scheme .global-message {
    margin-left: 16.66666667%;
    padding-left: 0;
  }
}

@media screen and (max-width: 450px) {
  .memberShow .sidebar-content .grid-row .repetition-scheme .global-message {
    margin-left: 7.14285714%;
    width: 85.71428571%;
  }
}

.memberShow .sidebar-content .grid-row .global {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  margin-left: 8.33333333%;
}

@media screen and (max-width: 1250px) {
  .memberShow .sidebar-content .grid-row .repetition-scheme {
    width: 100%;
  }

  .memberShow .sidebar-content .grid-row .global {
    margin-left: 25%;
    width: 70.83333333%;
  }
}

@media screen and (max-width: 1250px) and (max-width: 760px) {
  .memberShow .sidebar-content .grid-row .global {
    margin-left: 16.66666667%;
    width: 83.33333333%;
  }
}

@media screen and (max-width: 1250px) {
  .memberShow .sidebar-content .grid-row .global h2 {
    padding-top: 0;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 1250px) {
  .memberShow .sidebar .fill-out {
    display: none;
  }
}

@media screen and (max-width: 450px) {
  .memberShow .sidebar:before {
    display: none;
  }

  .memberShow .sidebar-content .grid-row {
    width: 100%;
  }

  .memberShow .sidebar-content .grid-row:before {
    display: none;
  }

  .memberShow .sidebar-content .grid-row .global {
    width: 85.71428571%;
    margin-left: 7.14285714%;
  }
}

@media print {
  .memberShow {
    font-size: 16px;
  }

  .memberShow .sidebar header {
    display: none;
  }

  .memberShow .sidebar:before {
    display: none;
  }

  .memberShow .sidebar .fill-out {
    display: none;
  }

  .memberShow .sidebar-content .grid-row .global {
    display: none;
  }

  .memberShow .sidebar-content .grid-row .repetition-scheme {
    width: 100%;
  }

  .memberShow .photo-albums-row {
    display: none;
  }

  .memberShow footer {
    display: none;
  }
}

/*==========================================================================
  Contact page
  @mixin ========================================================================= */

.corporation-part header .primary .logo {
  margin-left: 0 !important;
}

.corporation-part header .primary nav {
  width: calc(100% - 18.5% - 20px - 160px);
}

.corporation-part .kms-content p {
  font-size: 1rem;
}

.corporation-part .full-image-row {
  width: 100%;
  margin: 0;
  background-color: #3B485B;
}

.corporation-part .full-image-row picture {
  display: block;
  width: 100%;
  max-width: 2200px;
  margin: auto;
}

.corporation-part .full-image-row picture img {
  width: 100%;
}

.corporation-part .extra-content-blocks {
  max-width: 1000px;
}

.sponsors header .primary .logo {
  margin-left: 0 !important;
}

.sponsors header .primary nav {
  width: calc(100% - 18.5% - 20px - 160px);
}

.sponsors .sponsors-home .information h2 {
  font-size: 1.4rem;
}

.sponsors .sponsors-home .information p a {
  font-family: "DubaiBold", Arial, sans-serif;
  color: #3B485B;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.sponsors .sponsors-home .information p a:hover {
  color: #27303c;
}

.akkoords .sidebar {
  padding-bottom: 60px;
}

.akkoords .akkoords-archive {
  display: block;
  width: 100%;
  max-width: 800px;
  padding: 40px 60px;
  margin: 60px auto 0;
  background-color: #F4F4F4;
  border-bottom: none !important;
}

.akkoords .akkoords-archive h1 {
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  line-height: 1.2;
  font-weight: 300;
  color: #193863;
  text-transform: uppercase;
}

.akkoords .akkoords-archive h1 strong {
  margin-top: 3px;
  display: block;
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: 1.6px;
}

.akkoords .akkoords-archive .akkoords {
  margin-top: 30px;
}

.akkoords .akkoords-archive .akkoords ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  justify-content: space-between;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-direction: row;
}

.akkoords .akkoords-archive .akkoords ul li {
  width: calc(50% - 3px);
  margin-top: 5px;
}

@media screen and (max-width: 760px) {
  .akkoords .akkoords-archive .akkoords ul {
    display: block;
  }

  .akkoords .akkoords-archive .akkoords ul li {
    width: 100%;
  }
}

.akkoords .other-pages {
  background-color: #F4F4F4;
}

@media screen and (max-width: 760px) {
  .akkoords .sidebar {
    padding-top: 60px;
  }

  .akkoords .akkoords-archive {
    margin-top: 0;
  }
}

@media screen and (max-width: 600px) {
  .akkoords .akkoords-archive {
    padding: 30px 20px 20px;
  }

  .akkoords .akkoords-archive h1 {
    margin: 0 30px;
  }

  .akkoords .akkoords-archive h1 strong {
    font-size: 1.4rem;
  }
}

.calender .sidebar {
  padding-bottom: 60px;
}

@media screen and (max-width: 650px) {
  .calender .sidebar {
    background-color: #E6E6E6;
  }

  .calender .sidebar:before {
    height: 350px;
    width: 100%;
  }

  .calender .sidebar .fill-out {
    display: none;
  }
}

.calender .sidebar .sidebar-content {
  padding-top: 40px;
}

.calender .sidebar .sidebar-content h1 {
  margin: 0 0 40px 8.33333333%;
  padding: 0;
  font-size: 0.85rem;
  line-height: 1.2;
  font-weight: 300;
  color: white;
  text-transform: uppercase;
}

@media screen and (max-width: 650px) {
  .calender .sidebar .sidebar-content h1 {
    margin-left: 0;
  }
}

@media screen and (max-width: 450px) {
  .calender .sidebar .sidebar-content h1 {
    margin-left: 7.14285714%;
  }
}

.calender .sidebar .sidebar-content h1 strong {
  margin-top: 3px;
  display: block;
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: 1.6px;
}

.calender .activities-block {
  width: 58.33333333%;
  background-color: white;
  margin-left: 8.33333333%;
}

@media screen and (max-width: 1250px) {
  .calender .activities-block {
    width: 66.66666667%;
  }
}

@media screen and (max-width: 850px) {
  .calender .activities-block {
    width: 83.33333333%;
  }
}

@media screen and (max-width: 650px) {
  .calender .activities-block {
    width: 100%;
    margin-left: 0;
  }
}

.calender .activities-block .activities {
  padding: 0;
}

.calender .activities-block .activities h4,
.calender .activities-block .activities h3 {
  background-color: #F5AE06;
  padding: 15px 60px;
  margin: 0;
  color: white;
  font-family: "DubaiBold", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2.56px;
  text-transform: uppercase;
}

@media screen and (max-width: 525px) {
  .calender .activities-block .activities h4,
  .calender .activities-block .activities h3 {
    padding: 15px 30px;
  }
}

.calender .activities-block .activities h3 {
  background-color: #F69628;
}

.calender .activities-block .activities article {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  align-items: center;
  margin: 0 40px 0 60px;
}

@media screen and (max-width: 525px) {
  .calender .activities-block .activities article {
    margin: 0 0 0 30px;
    padding-right: 10px;
  }
}

.calender .activities-block .activities article a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  width: 100%;
  padding: 20px 0;
}

.calender .activities-block .activities article + article {
  border-top: 1px solid rgba(25, 56, 99, 0.2);
}

.calender .activities-block .activities article .date {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 3rem;
  line-height: 1;
  font-family: "DubaiBold", Arial, sans-serif;
  color: #3B485B;
}

.calender .activities-block .activities article .date sup {
  font-family: "Dubai", Arial, sans-serif;
  color: #F5AE06;
  font-size: 0.5em;
  margin-left: 5px;
}

@media screen and (max-width: 525px) {
  .calender .activities-block .activities article .date {
    font-size: 2.4rem;
  }
}

.calender .activities-block .activities article p {
  margin: 0;
  width: calc(100% - 100px);
  padding-left: 50px;
  font-size: 0.9rem;
  line-height: 1.1;
  color: #3B485B;
}

@media screen and (max-width: 650px) {
  .calender .activities-block .activities article p {
    padding-left: 20px;
  }
}

@media screen and (max-width: 525px) {
  .calender .activities-block .activities article p {
    width: calc(100% - 50px);
  }
}

.calender .activities-block .activities article p strong {
  display: block;
  font-size: 1.05rem;
  font-family: "DubaiBold", Arial, sans-serif;
}

.calender .activities-block .activities article p span {
  display: block;
  margin-top: 10px;
}

.calender .activities-block .activities article p span:after {
  position: relative;
  top: 1px;
  content: '';
  display: inline-block;
  margin-left: 10px;
  background: url("/img/somerenslust-sprite.svg") -35px -14px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 10px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.calender .activities-block .activities article:hover p span:after {
  -webkit-transform: translate3d(5px, 0, 0);
          transform: translate3d(5px, 0, 0);
}

@media screen and (max-width: 450px) {
  .calender .sidebar {
    background-color: #193863;
  }

  .calender .sidebar:before {
    display: none;
  }

  .calender .sidebar .fill-out {
    display: none;
  }

  .calender .sidebar .sidebar-content .grid-row {
    width: 100%;
  }
}

.sponsorComite header .primary .logo {
  margin-left: 0 !important;
}

.sponsorComite header .primary nav {
  width: calc(100% - 18.5% - 20px - 160px);
}

@media screen and (max-width: 1100px) {
  .sponsorComite .dynamic-block .content {
    font-size: 0.9rem;
  }
}

.sponsorComite .extra-sponsor-row {
  background-color: #F4F4F4;
  padding: 60px 0;
  margin-top: 40px;
}

.sponsorComite .extra-sponsor-row .sponsor-comity {
  width: 41.66666667%;
  vertical-align: top;
}

@media screen and (max-width: 1100px) {
  .sponsorComite .extra-sponsor-row .sponsor-comity {
    font-size: 0.9rem;
  }
}

.sponsorComite .extra-sponsor-row .sponsor-comity p {
  color: #193863;
}

.sponsorComite .extra-sponsor-row .sponsor-comity p:first-of-type {
  margin-top: 0;
}

.sponsorComite .extra-sponsor-row .sponsor-comity p:last-of-type {
  margin-bottom: 0;
}

.sponsorComite .extra-sponsor-row .sponsor-comity ul li {
  color: #193863;
}

.sponsorComite .extra-sponsor-row .sponsor-highlight {
  width: 50%;
  max-width: 540px;
  vertical-align: top;
  margin-left: 8.33333333%;
}

@media screen and (max-width: 1100px) {
  .sponsorComite .extra-sponsor-row .sponsor-highlight {
    font-size: 0.9rem;
  }
}

.sponsorComite .extra-sponsor-row .sponsor-highlight p {
  color: #193863;
}

.sponsorComite .extra-sponsor-row .sponsor-highlight p:first-of-type {
  margin-top: 0;
}

.sponsorComite .extra-sponsor-row .sponsor-highlight p:last-of-type {
  margin-bottom: 0;
}

.sponsorComite .extra-sponsor-row .sponsor-highlight .read-akkoord {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
  max-width: 285px;
  margin-top: 30px;
  padding: 15px 25px;
  text-decoration: none;
  background-color: #193863;
  -webkit-transition: background-color 0.3s, border 0.3s;
  transition: background-color 0.3s, border 0.3s;
}

.sponsorComite .extra-sponsor-row .sponsor-highlight .read-akkoord .icon {
  display: block;
  background: url("/img/somerenslust-sprite.svg") -1px -75px no-repeat;
  background-size: 200px 202px;
  width: 32px;
  height: 44px;
  margin-right: 25px;
}

.sponsorComite .extra-sponsor-row .sponsor-highlight .read-akkoord .text h5 {
  margin: 0;
  font-family: "DubaiBold", Arial, sans-serif;
  font-size: 0.85rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: white;
}

.sponsorComite .extra-sponsor-row .sponsor-highlight .read-akkoord .text span {
  margin-top: 5px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.7rem;
  line-height: 1.2;
  color: white;
  text-transform: uppercase;
}

.sponsorComite .extra-sponsor-row .sponsor-highlight .read-akkoord .text span:after {
  content: '';
  display: inline-block;
  margin-left: 20px;
  background: url("/img/somerenslust-sprite.svg") -35px -1px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 11px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.sponsorComite .extra-sponsor-row .sponsor-highlight .read-akkoord:hover {
  background-color: #142c4f;
}

.sponsorComite .extra-sponsor-row .sponsor-highlight .read-akkoord:hover .text span:after {
  -webkit-transform: translate3d(5px, 0, 0);
          transform: translate3d(5px, 0, 0);
}

@media screen and (max-width: 700px) {
  .sponsorComite .extra-sponsor-row .sponsor-comity {
    display: block;
    width: 100%;
  }

  .sponsorComite .extra-sponsor-row .sponsor-highlight {
    display: block;
    width: 100%;
    max-width: 500px;
    margin-left: 0;
    margin-top: 40px;
  }
}

.relation .sidebar .sidebar-content,
.band .sidebar .sidebar-content {
  padding: 50px 0 50px;
}

.relation .sidebar .sidebar-content h1,
.band .sidebar .sidebar-content h1 {
  margin: 0 0 0 8.33333333%;
  padding: 0;
  font-size: 0.85rem;
  line-height: 1.2;
  font-weight: 300;
  color: white;
  text-transform: uppercase;
}

.relation .sidebar .sidebar-content h1 strong,
.band .sidebar .sidebar-content h1 strong {
  margin-top: 3px;
  display: block;
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: 1.6px;
}

@media screen and (max-width: 1000px) {
  .relation .sidebar .sidebar-content h1,
  .band .sidebar .sidebar-content h1 {
    margin-left: 0;
  }
}

.relation .relation-part,
.band .relation-part {
  padding-top: 50px;
  display: block;
  text-decoration: none;
}

.relation .relation-part figure,
.band .relation-part figure {
  vertical-align: top;
  display: inline-block;
  width: 37.5%;
  margin: 0 0 0 8.33333333%;
}

@media screen and (max-width: 1050px) {
  .relation .relation-part figure,
  .band .relation-part figure {
    width: 45.83333333%;
    margin-left: 0;
  }
}

.relation .relation-part figure img,
.band .relation-part figure img {
  width: 100%;
}

.relation .relation-part figure img.small,
.band .relation-part figure img.small {
  display: none;
}

.relation .relation-part .content,
.band .relation-part .content {
  vertical-align: top;
  margin-left: 8.33333333%;
  width: 45.83333333%;
}

.relation .relation-part .content h2,
.band .relation-part .content h2 {
  font-size: 1rem;
  color: #193863;
  text-transform: uppercase;
  letter-spacing: 2.56px;
  margin: 0 0 35px;
}

@media screen and (max-width: 1200px) {
  .relation .relation-part .content h2,
  .band .relation-part .content h2 {
    margin-bottom: 20px;
  }
}

.relation .relation-part .content p,
.band .relation-part .content p {
  color: #193863;
  font-size: 0.9rem;
  line-height: 1.4;
}

.relation .relation-part .content p:first-of-type,
.band .relation-part .content p:first-of-type {
  margin-top: 0;
}

.relation .relation-part .content p:last-of-type,
.band .relation-part .content p:last-of-type {
  margin-bottom: 0;
}

.relation .relation-part .content p strong,
.band .relation-part .content p strong {
  font-family: "DubaiBold", Arial, sans-serif;
}

.relation .relation-part .content p a,
.band .relation-part .content p a {
  font-family: "DubaiBold", Arial, sans-serif;
  color: #3B485B;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.relation .relation-part .content p a:hover,
.band .relation-part .content p a:hover {
  color: #27303c;
}

.relation .relation-part .content .see-more,
.band .relation-part .content .see-more {
  display: block;
  padding: 20px 0;
  margin: 15px 0 0;
  text-decoration: none;
}

.relation .relation-part .content .see-more p,
.band .relation-part .content .see-more p {
  display: block;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 300;
  color: #193863;
  text-transform: uppercase;
}

.relation .relation-part .content .see-more .click-me-wrapper,
.band .relation-part .content .see-more .click-me-wrapper {
  margin-top: 4px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
}

.relation .relation-part .content .see-more .click-me,
.band .relation-part .content .see-more .click-me {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-family: "DubaiBold", Arial, sans-serif;
  color: #193863;
}

.relation .relation-part .content .see-more .click-me:after,
.band .relation-part .content .see-more .click-me:after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  background: url("/img/somerenslust-sprite.svg") -35px -14px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 11px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.relation .relation-part .content .see-more .lines,
.band .relation-part .content .see-more .lines {
  display: inline-block;
  margin-right: 15px;
  width: 36px;
  font-size: 0;
  line-height: 0;
}

.relation .relation-part .content .see-more .lines span,
.band .relation-part .content .see-more .lines span {
  display: inline-block;
  height: 15px;
  width: 2px;
  background-color: #0E2B51;
  margin-right: 6px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.relation .relation-part .content .see-more .lines span:nth-child(1),
.band .relation-part .content .see-more .lines span:nth-child(1) {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

.relation .relation-part .content .see-more .lines span:nth-child(2),
.band .relation-part .content .see-more .lines span:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.relation .relation-part .content .see-more .lines span:nth-child(3),
.band .relation-part .content .see-more .lines span:nth-child(3) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.relation .relation-part .content .see-more .lines span:nth-child(4),
.band .relation-part .content .see-more .lines span:nth-child(4) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.relation .relation-part .content .see-more .lines span:nth-child(5),
.band .relation-part .content .see-more .lines span:nth-child(5) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.relation .relation-part .content .see-more .lines span:last-of-type,
.band .relation-part .content .see-more .lines span:last-of-type {
  margin-right: 0 !important;
}

.relation .relation-part .content .see-more:hover .click-me:after,
.band .relation-part .content .see-more:hover .click-me:after {
  -webkit-transform: translate3d(5px, 0, 0);
          transform: translate3d(5px, 0, 0);
}

.relation .relation-part .content .see-more:hover .lines span,
.band .relation-part .content .see-more:hover .lines span {
  background-color: #F5AE06;
}

@media screen and (max-width: 760px) {
  .relation .sidebar:before,
  .band .sidebar:before {
    display: none;
  }

  .relation .sidebar .fill-out,
  .band .sidebar .fill-out {
    display: none;
  }

  .relation .sidebar .sidebar-content .grid-row,
  .band .sidebar .sidebar-content .grid-row {
    width: 100%;
  }

  .relation .sidebar .sidebar-content h1,
  .band .sidebar .sidebar-content h1 {
    color: #193863;
    margin-left: 14.28571429%;
  }
}

@media screen and (max-width: 760px) and (max-width: 480px) {
  .relation .sidebar .sidebar-content h1,
  .band .sidebar .sidebar-content h1 {
    margin-left: 7.14285714%;
  }
}

@media screen and (max-width: 760px) {
  .relation .relation-part,
  .band .relation-part {
    padding-bottom: 20px;
  }

  .relation .relation-part figure,
  .band .relation-part figure {
    margin-bottom: 40px;
  }

  .relation .relation-part figure,
  .band .relation-part figure,
  .relation .relation-part .content,
  .band .relation-part .content {
    width: 71.42857143%;
    margin-left: 14.28571429%;
  }
}

@media screen and (max-width: 760px) and (max-width: 480px) {
  .relation .relation-part figure,
  .band .relation-part figure,
  .relation .relation-part .content,
  .band .relation-part .content {
    width: 85.71428571%;
    margin-left: 7.14285714%;
  }
}

@media screen and (max-width: 760px) {
  .relation .relation-part .content .see-more .lines span,
  .band .relation-part .content .see-more .lines span {
    background-color: #F5AE06;
  }

  .relation .relation-part .content .see-more:hover .lines span,
  .band .relation-part .content .see-more:hover .lines span {
    background-color: #0E2B51;
  }

  .relation .relation-part:nth-child(3),
  .band .relation-part:nth-child(3) {
    background-color: #F4F4F4;
  }
}

.education .sidebar .sidebar-content {
  padding: 50px 0 50px;
}

.education .sidebar .sidebar-content h1 {
  margin: 0 0 0 8.33333333%;
  padding: 0;
  font-size: 0.85rem;
  line-height: 1.2;
  font-weight: 300;
  color: white;
  text-transform: uppercase;
}

.education .sidebar .sidebar-content h1 strong {
  margin-top: 3px;
  display: block;
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: 1.6px;
}

@media screen and (max-width: 1000px) {
  .education .sidebar .sidebar-content h1 {
    margin-left: 0;
  }
}

.education .sidebar .sidebar-content .intro {
  width: 83.33333333%;
  margin-left: 8.33333333%;
  margin-bottom: 60px;
  background-color: white;
  padding: 40px 4.16666667%;
}

@media screen and (max-width: 1000px) {
  .education .sidebar .sidebar-content .intro {
    width: 100%;
    margin-left: 0;
  }
}

@media screen and (max-width: 760px) {
  .education .sidebar .sidebar-content .intro {
    padding-left: 7.14285714%;
    padding-right: 7.14285714%;
    margin-bottom: 20px;
  }
}

.education .sidebar .sidebar-content .intro figure {
  position: relative;
  right: -20px;
  width: 400px;
  margin: 0 auto 40px;
}

.education .sidebar .sidebar-content .intro figure img {
  width: 100%;
  max-height: 91px;
}

@media screen and (max-width: 600px) {
  .education .sidebar .sidebar-content .intro figure {
    width: 280px;
    margin-left: 0;
  }

  .education .sidebar .sidebar-content .intro figure img {
    max-height: 64px;
  }
}

.education .education-part {
  padding-top: 50px;
  display: block;
  text-decoration: none;
}

.education .education-part figure {
  vertical-align: top;
  display: inline-block;
  width: 37.5%;
  margin: 0 0 0 8.33333333%;
}

@media screen and (max-width: 1050px) {
  .education .education-part figure {
    width: 45.83333333%;
    margin-left: 0;
  }
}

.education .education-part figure img {
  width: 100%;
}

.education .education-part figure img.small {
  display: none;
}

.education .education-part .content {
  vertical-align: top;
  margin-left: 8.33333333%;
  width: 45.83333333%;
}

.education .education-part .content h2 {
  font-size: 1rem;
  color: #193863;
  text-transform: uppercase;
  letter-spacing: 2.56px;
  margin: 0 0 35px;
}

@media screen and (max-width: 1200px) {
  .education .education-part .content h2 {
    margin-bottom: 20px;
  }
}

.education .education-part .content p {
  color: #193863;
  font-size: 0.9rem;
  line-height: 1.4;
}

.education .education-part .content p:first-of-type {
  margin-top: 0;
}

.education .education-part .content p:last-of-type {
  margin-bottom: 0;
}

.education .education-part .content p strong {
  font-family: "DubaiBold", Arial, sans-serif;
}

.education .education-part .content p a {
  font-family: "DubaiBold", Arial, sans-serif;
  color: #3B485B;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.education .education-part .content p a:hover {
  color: #27303c;
}

.education .education-part .content .see-more {
  display: block;
  padding: 20px 0;
  margin: 15px 0 0;
  text-decoration: none;
}

.education .education-part .content .see-more p {
  display: block;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 300;
  color: #193863;
  text-transform: uppercase;
}

.education .education-part .content .see-more .click-me-wrapper {
  margin-top: 4px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  align-items: center;
}

.education .education-part .content .see-more .click-me {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-family: "DubaiBold", Arial, sans-serif;
  color: #193863;
}

.education .education-part .content .see-more .click-me:after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  background: url("/img/somerenslust-sprite.svg") -35px -14px no-repeat;
  background-size: 200px 202px;
  width: 15px;
  height: 11px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.education .education-part .content .see-more .lines {
  display: inline-block;
  margin-right: 15px;
  width: 36px;
  font-size: 0;
  line-height: 0;
}

.education .education-part .content .see-more .lines span {
  display: inline-block;
  height: 15px;
  width: 2px;
  background-color: #0E2B51;
  margin-right: 6px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.education .education-part .content .see-more .lines span:nth-child(1) {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

.education .education-part .content .see-more .lines span:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.education .education-part .content .see-more .lines span:nth-child(3) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.education .education-part .content .see-more .lines span:nth-child(4) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.education .education-part .content .see-more .lines span:nth-child(5) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.education .education-part .content .see-more .lines span:last-of-type {
  margin-right: 0 !important;
}

.education .education-part .content .see-more:hover .click-me:after {
  -webkit-transform: translate3d(5px, 0, 0);
          transform: translate3d(5px, 0, 0);
}

.education .education-part .content .see-more:hover .lines span {
  background-color: #F5AE06;
}

.education .education-part.music_buddies .content h2 {
  display: none;
}

.education .education-part.music_buddies .content > figure {
  width: 450px;
  margin: 0 0 30px;
}

.education .education-part.music_buddies .content > figure img {
  width: 100%;
  max-height: 115px;
}

@media screen and (max-width: 1250px) {
  .education .education-part.music_buddies .content > figure {
    width: 350px;
  }

  .education .education-part.music_buddies .content > figure img {
    max-height: 89px;
  }
}

@media screen and (max-width: 1000px) {
  .education .education-part.music_buddies .content > figure {
    width: 300px;
  }

  .education .education-part.music_buddies .content > figure img {
    max-height: 77px;
  }
}

@media screen and (max-width: 360px) {
  .education .education-part.music_buddies .content > figure {
    width: 260px;
  }

  .education .education-part.music_buddies .content > figure img {
    max-height: 66px;
  }
}

.education .outro {
  padding: 40px 0;
  background-color: #F4F4F4;
}

.education .outro .kms-content {
  text-align: center;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.education .outro .kms-content p,
.education .outro .kms-content ul li,
.education .outro .kms-content ol li {
  font-size: 1.2rem;
}

@media screen and (max-width: 800px) {
  .education .outro .kms-content p,
  .education .outro .kms-content ul li,
  .education .outro .kms-content ol li {
    font-size: 1rem;
  }
}

@media screen and (max-width: 760px) {
  .education .sidebar:before {
    display: none;
  }

  .education .sidebar .fill-out {
    display: none;
  }

  .education .sidebar .sidebar-content .grid-row {
    width: 100%;
  }

  .education .sidebar .sidebar-content h1 {
    color: #193863;
    margin-left: 14.28571429%;
  }
}

@media screen and (max-width: 760px) and (max-width: 480px) {
  .education .sidebar .sidebar-content h1 {
    margin-left: 7.14285714%;
  }
}

@media screen and (max-width: 760px) {
  .education .education-part {
    padding-bottom: 20px;
  }

  .education .education-part figure {
    margin-bottom: 40px;
  }

  .education .education-part figure,
  .education .education-part .content {
    width: 71.42857143%;
    margin-left: 14.28571429%;
  }
}

@media screen and (max-width: 760px) and (max-width: 480px) {
  .education .education-part figure,
  .education .education-part .content {
    width: 85.71428571%;
    margin-left: 7.14285714%;
  }
}

@media screen and (max-width: 760px) {
  .education .education-part .content .see-more .lines span {
    background-color: #F5AE06;
  }

  .education .education-part .content .see-more:hover .lines span {
    background-color: #0E2B51;
  }

  .education .education-part:nth-child(even) {
    background-color: #F4F4F4;
  }
}

.show-error-message {
  background: #193863;
  padding: 40px 0 100px;
  text-align: center;
}

.show-error-message > .image {
  width: 90%;
  max-width: 600px;
  margin-bottom: 60px;
}

.show-error-message > .image img {
  width: 100%;
}

.show-error-message .message-placeholder {
  width: 66.66666667%;
  margin: auto;
}

@media screen and (max-width: 800px) {
  .show-error-message .message-placeholder {
    width: 91.66666667%;
  }
}

.show-error-message .message-placeholder .error-code {
  font-size: 2rem;
  line-height: 1.2;
  color: white;
}

.show-error-message .message-placeholder h1 {
  margin: 0 0 20px;
  color: white;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.show-error-message .message-placeholder p {
  margin: 0;
  color: white;
  font-size: 1.4rem;
}

.show-error-message .message-placeholder a {
  color: white;
  font-weight: 700;
}

/*==========================================================================
  Sitemap page
  @mixin ========================================================================= */

.sitemap ul {
  padding-left: 40px;
  padding-bottom: 20px;
  font-size: 0.85em;
}

.sitemap > ul {
  padding-left: 20px;
}

.sitemap li:before {
  top: 6px;
}

.sitemap li a {
  padding: 3px 0;
  border-bottom-color: transparent;
  border-bottom-style: dotted;
  display: block;
}

.sitemap li a:hover {
  border-bottom-color: rgba(29, 36, 51, 0.4);
}