*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    line-height: 1.7em;
    color: #7f8c8d;
    font-size: 13px;
    background-color: #111;
}
h1,
h2,
h3,
h4,
h5,
h6,
label {
    color: #34495e;
}

a {
    text-decoration: none;
    color: rgb(61, 146, 201);
}
a:hover,
a:focus {
    text-decoration: underline;
}

.l-box {
    padding: 1em;
}

.pure-button {
    background-color: #1f8dd6;
    color: white;
    border-radius: 5px;
}
.pure-form button[type=submit] {
    margin: 0;
}
a.pure-button-primary {
    background: white;
    color: #1f8dd6;
    font-size: 120%;
}

/*
 * -- TABLET (AND UP) MEDIA QUERIES --
 * On tablets and other medium-sized devices, we want to customize some
 * of the mobile styles.
 */
 @media (min-width: 48em) {

    /* We increase the body font size */
    body {
        font-size: 16px;
    }
}

.content-wrapper {
    padding: 3.4em 1em 0 1em;
    background-color: white;
}

.home-menu {
    padding: 0.5em;
    text-align: center;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.10);
}

.home-menu {
    background: #2d3e50;
    text-align: right;
    padding-right: 4em;
    padding-bottom: 0;
}

.pure-menu.pure-menu-fixed {
    /* Fixed menus normally have a border at the bottom. */
    border-bottom: none;
    /* I need a higher z-index here because of the scroll-over effect. */
    z-index: 2000;
}

.home-menu .pure-menu-heading {
    color: white;
    font-weight: 400;
    font-size: 120%;
    float: left;
    display: flex;
    align-items: center;
}

.home-menu .pure-menu-heading .logo {
    height: 1em;
    margin-right: 0.5em;
}

.home-menu .pure-menu-selected a {
    color: white;
}

.home-menu a {
    color: #6FBEF3;
}

.home-menu ul.pure-menu-list li.pure-menu-item {
    display: none;
}

.home-menu.active ul.pure-menu-list li.pure-menu-item {
    display: list-item;
}

.home-menu li a:hover, .home-menu li a:focus {
    background: none;
    border: none;
    color: #AECFE5;
}

.menu-link {
    position: fixed;
    display: block;
    /* show this only on small screens */
    top: 0;
    right: 0;
    font-size: 10px;
    /* change this value to increase/decrease button size */
    z-index: 2010;
    width: 5.2em;
    height: auto;
    padding: 2.1em 1.6em;
}

.menu-link span {
    position: relative;
    display: block;
}

.menu-link span, .menu-link span:before, .menu-link span:after {
    background-color: #fff;
    width: 100%;
    height: 0.2em;
}

.menu-link span:before, .menu-link span:after {
    position: absolute;
    margin-top: -0.6em;
    content: " ";
}

.menu-link span:after {
    margin-top: 0.6em;
}

@media (min-width: 48em) {
    /* We can align the menu header to the left, but float the
    menu items to the right. */
    .home-menu {
        text-align: left;
    }
    .home-menu ul {
        float: right;
    }
    .menu-link {
        position: fixed;
        right: 150px;
        display: none;
    }
}

@media (min-width: 35.5em) {
    .home-menu ul.pure-menu-list li.pure-menu-item, .home-menu.active ul.pure-menu-list li.pure-menu-item {
        display: inline-block;
    }
    .home-menu {
        padding-right: 0;
    }
    .menu-link {
        position: fixed;
        right: 150px;
        display: none;
    }
}

.slider {
    height: 300px;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .slider__nav {
    width: 12px;
    height: 12px;
    margin: 2rem 12px;
    border-radius: 50%;
    z-index: 10;
    outline: 6px solid #ccc;
    outline-offset: -6px;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  .slider__nav:checked {
    -webkit-animation: check 0.4s linear forwards;
            animation: check 0.4s linear forwards;
  }
  .slider__nav:checked:nth-of-type(1) ~ .slider__inner {
    left: 0%;
  }
  .slider__nav:checked:nth-of-type(2) ~ .slider__inner {
    left: -100%;
  }
  .slider__nav:checked:nth-of-type(3) ~ .slider__inner {
    left: -200%;
  }
  .slider__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 100%;
    -webkit-transition: left 0.4s;
    transition: left 0.4s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
  .slider__contents {
    height: 100%;
    padding: 2rem;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .slider__image {
    font-size: 2.7rem;
        color: #2196F3;
  }
  .slider__caption {
    font-weight: 500;
    margin: 2rem 0 1rem;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  }
  .slider__txt {
    color: #999;
    margin-bottom: 3rem;
    max-width: 300px;
  }
  
  @-webkit-keyframes check {
    50% {
      outline-color: #333;
      box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
    }
    100% {
      outline-color: #333;
      box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
    }
  }
  
  @keyframes check {
    50% {
      outline-color: #333;
      box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
    }
    100% {
      outline-color: #333;
      box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
    }
  }
  
.footer {
    background: #111;
    width: 100%;
    text-align: center;
}
/* Splash */

.splash-container {
    background: #ff6347;
    z-index: 1;
    overflow: hidden;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    height: 25em;
    top: 0;
    left: 0;
    position: fixed !important;
}

.splash {
    /* absolute center .splash within .splash-container */
    width: 80%;
    margin: auto;
    position: absolute;
    top: 2.5em; left: 0; /*bottom: 0;*/ right: 0;
    text-align: center;
}

/* This is the main heading that appears on the blue section */
.splash-head {
    font-size: 20px;
    font-weight: bold;
    color: white;
    padding: 0.6em 1.6em;
    font-weight: 100;
    border-radius: 5px;
    line-height: 1em;
}

.splash-head .handwriting {
    font-family: "Bradley Hand ITC", sans-serif;
}

.splash-subhead {
    color: white;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.splash a {
    color: black;
}

.splash button {
    padding: 0;
}

.content-wrapper {
    /* These styles are required for the "scroll-over" effect */
    position: absolute;
    top: 25em;
    width: 100%;
    min-height: 12%;
    z-index: 2;
    padding:0;
}

/* We want to give the content area some more padding */
.content {
    padding: 1em 1em 3em;
}

.content-alt {
    background-color: lightgray;
}

/* This is the class used for the main content headers (<h2>) */
.content-head {
    font-weight: 400;
    letter-spacing: 0.1em;
    margin: 2em 0 1em;
    text-transform: uppercase;
}

/* This is the class used for the content sub-headers (<h3>) */
.content-subhead {
    color: #1f8dd6;
}

p.euro {
    font-size: 5em;
    color: Tomato;
    text-align: center;
    margin:0;
}

@media (min-width: 48em) and (min-height: 35.5em) {
    .splash-container {
        height: 30em;
    }

    .content-wrapper {
        top: 30em;
    }

    .splash {
        width: 60%;
    }

    .splash-head {
        font-size: 250%;
    }
}
@media (min-width: 78em) {
    .splash-container {
        height: 35em;
    }
    
    .content-wrapper {
        top: 35em;
    }

    /* We increase the header font size even more */
    .splash-head {
        font-size: 300%;
    }
}
