html, body {
	height: 100%;
}

body {
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	color: #282828;
	margin: 0;
	padding: 0;
    overflow-x: hidden;
	
	background: url('../img/bg-desktop.jpg') no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

/*
 * Typography
 */
h1, h2, h3, h4 {
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 300;
  color: #00588C; }
h1.thin, h2.thin, h3.thing, h4.thin {
  font-weight: 300; }
h1 {
  font-size: 32px;
  line-height: 1.2; }
h2 {
  font-size: 28px;
  line-height: 1.25; }
h3 {
  font-size: 24px;
  line-height: 1.3; }
h4 {
  font-size: 18px;
  line-height: 1.4; }
a {
  text-decoration: none;
  color: #00588C; }
a:hover {
  text-decoration: underline; }
p {
  margin-top: 0;
  line-height: 1.5;
  margin-bottom: 15px; }
hr {
  border: 0;
  color: #E4E4E4;
  background-color: #E4E4E4;
  height: 1px;
  margin: 15px 0; }

/*
 * Grid
 */
.row {
    margin-left: -15px;
    margin-right: -15px; }
.row [class*='col-'] {
    position: relative;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box; }
.row [class*='col-']:last-child {
    margin-right: 0; }
.col-1-4 {
    width: 25%; }
.col-3-4 {
    width: 75%; }
.col-7-10 {
    width: 70%; }
.col-3-10 {
    width: 30%; }
  
/*
 * Sidebar
 */
#sidebar {
	width: 270px;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -270px;
    z-index: 1000;
	background-color: #00588C;
    overflow-y: auto;

    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
#sidebar nav {
	padding: 20px;
    padding-right: 50px;
}
#sidebar nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#sidebar nav ul li {
	margin-bottom: 15px;
}
#sidebar nav ul li a {
	display: block;
	font-size: 15px;
	color: #FFF;
}
#sidebar.active {
    right: 0;
}
#sidebar .toggle-sidebar {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #FFF;
}
#sidebar footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background-color: #005181;
    color: #FFF;
    text-align: center;
}
#sidebar footer p {
    margin: 0;
}

/* Submenu */
#sidebar nav ul li ul {
    margin-left: 10px;
    margin-top: 10px;
    transition: all 0.3s ease;
}
#sidebar nav ul li ul li {
    margin-bottom: 10px;
}
#sidebar nav ul li ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/*
 * Main
 */
main {
    position: relative;
    margin: 50px auto;
    max-width: 800px;
}

/*
 * Buttons
 */
.btn {
  display: inline-block;
  color: #282828;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  outline: 0;
  border: 1px solid #E4E4E4;
  background-color: #FFF;
  border-radius: 3px;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all ease 0.3s; }
  .btn:hover {
    border-color: #D6D6D6;
    text-decoration: none; }
  .btn:active {
    box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.1); }

.btn-small {
  height: 26px;
  line-height: 24px;
  padding: 0 8px;
  font-size: 12px; }

.btn-medium {
  height: 34px;
  line-height: 32px;
  padding: 0 12px; }

.btn-large {
  height: 40px;
  line-height: 38px;
  padding: 0 18px;
  font-size: 15px; }

.btn-primary {
  color: #FFF;
  background-color: #00588C;
  border-color: transparent; }
  .btn-primary:hover {
    background-color: #00588C;
    border-color: transparent; }

.btn-secondary {
  color: #FFF;
  background-color: #AAA;
  border-color: transparent; }
  .btn-secondary:hover {
    background-color: #999;
    border-color: transparent; }
.btn > i {
    margin-right: 8px;
}
.btn ~ .btn {
  margin-left: 8px; }

h1 > .btn, h2 > .btn, h3 > .btn, h4 > .btn {
  vertical-align: middle; }

.form-group {
  position: relative;
  margin-bottom: 15px; }

.form-help {
  margin-top: 10px;
  color: #888;
  font-size: 12px; }

/*
 * Notifications
 */
.notification {
    display: none;
    padding: 12px 34px 12px 12px;
    position: relative;
    margin-bottom: 15px;
    color: #FFF;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.notification.success { background-color: #6CA85B; }
.notification.error { background-color: #E76969; }
.notification.info { background-color: #FFBF00; }
.notification a {
    color: #FFF;
    text-decoration: underline;
}
.notification a:hover {
    color: #222;
}
.notification a.close {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #FFF;
}
.notification a.close:hover {
    color: #444;
}

/*
 * Form elements
 */
label {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px; }

input[type="text"], input[type="password"], textarea, select {
  width: 100%;
  padding: 12px;
  display: block;
  border: 1px solid #DDD;
  background: #FFF;
  font: 13px normal 'Roboto', sans-serif;
  color: #262626;
  outline: 0;
  border-radius: 3px;
  box-sizing: border-box; }
  input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
    border-color: #00588C;
    transition: all 0.3s ease; }

input[type="text"], input[type="password"], select {
  height: 36px;
  padding: 0 12px; }

input[type="radio"], input[type="checkbox"] {
  margin: 3px;
  cursor: pointer;
  vertical-align: middle; }

textarea {
  resize: vertical; }

button[type="submit"] {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  cursor: pointer;
  outline: 0;
  line-height: 1; }

/*
 * Placeholders
 */
::-webkit-input-placeholder {
  color: #AAA; }

:-moz-placeholder {
  color: #AAA;
  opacity: 1; }

::-moz-placeholder {
  color: #AAA;
  opacity: 1; }

:-ms-input-placeholder {
  color: #AAA; }

/*
 * Helpers
 */
.img-responsive {
  max-width: 100%;
  height: auto;
  display: block; }
.img-rounded {
  border-radius: 3px; }
.img-circle {
  border-radius: 50%; }

.pull-left {
    float: left; }
.pull-right {
    float: right; }

/*
 * Clearfixes
 */
.clearfix:after, header:after, main:after {
  content: "";
  display: table;
  clear: both; }

/*
 * Container
 */
.container {
  width: 90%;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  padding: 35px 0; }
.container.small {
  max-width: 420px;
}

/*
 * Header
 */
#header {
    position: relative;
    padding: 30px;
    background-color: #FFF;
    border-bottom: 1px solid #E8E8E8;
}
#header #site-logo {
    float: left;
}
#header #site-logo img {
    max-height: 80px;
}
#header #sidebar-toggle {
    position: absolute;
    right: 40px;
    top: 50%;
    margin-top: -20px;
}

/*
 * Page
 */
#page {
  position: relative;
  min-height: 100%;
  padding-bottom: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#page-overlay {
    z-index: 900;
    display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255,255,255,0.7);
}
.page-home #sidebar-toggle {
    z-index: 100;
    position: absolute;
    top: 40px;
    right: 40px;
}
.page-home main {
    position: absolute;
    bottom: 22%;
    left: 40%;
    max-width: 50%;
    padding: 0 20px;
    -webkit-animation: main-slide 2.5s ease-in-out;
    -moz-animation: main-slide 2.5s ease-in-out;
    animation: main-slide 2.5s ease-in-out;
}
.page-home #site-logo {
    margin-bottom: 20px;
}
.page-home #site-slogan {
    font-size: 30px;
    font-weight: 300;
}
.page-home h2 {
    font-size: 26px;
    font-weight: 300;
    position: relative;
    top: 1.4em;
}
.page-home h2 span {
    text-transform: uppercase;
}
.page-home #frontimage-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: -8%;
    right: 58%;
    overflow: hidden;
}
.page-home #frontimage {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('../img/anja.png') no-repeat right center;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

    -webkit-animation: frontimage-slide 2s ease-in-out;
    -moz-animation: frontimage-slide 2s ease-in-out;
    animation: frontimage-slide 2s ease-in-out;
}
.page-home #blackbird {
    position: absolute;
    bottom: 0;
    right: 40px;

    -webkit-animation: blackbird-slide 1.5s ease-in-out;
    -moz-animation: blackbird-slide 1.5s ease-in-out;
    animation: blackbird-slide 1.5s ease-in-out;

    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.page-home #blackbird:hover {
    opacity: 0.7;
    cursor: pointer;
}
.page-home #blackbird img {
    display: block;
    border: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.page-home #blackbird:hover img {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}
#home-video {
    position: absolute;
    right: 20px;
    bottom: -25px;
    z-index: 1;
}
.page-contact .locations {
    background-color: #F4F4F4;
    padding: 15px;
    margin: 0;
    text-align: center;
    list-style: none;
    border-bottom: 1px solid #E8E8E8;
}
.page-contact .locations li {
    display: inline-block;
    color: #00588C;
    padding: 0 10px;
    cursor: pointer;
}
.page-contact .locations li.active {
    font-weight: 700;
}
.page-contact #map-canvas {
    width: 100%;
    height: 400px;
}
.page-contact #map-canvas {
    border-bottom: 1px solid #DDD;
}
.page-contact .sidebar {
    padding: 15px;
    text-align: center;
    background-color: #00588C;
    color: #FFF;
    margin-bottom: 15px;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.page-contact .sidebar hr {
    color: rgba(255,255,255,0.15);
    background-color: rgba(255,255,255,0.15);
}
.page-contact main {
    padding-left: 20px;
    padding-right: 20px;
}

@-webkit-keyframes main-slide {
    from  { left: -40%; }
    to { left: 40%; }
}
@-moz-keyframes main-slide {
    from  { left: -40%; }
    to { left: 40%; }
}
@keyframes main-slide {
    from  { left: -40%; }
    to { left: 40%; }
}
@-webkit-keyframes blackbird-slide {
    from  { right: -270px; }
    to { right: 40px; }
}
@-moz-keyframes blackbird-slide {
    from  { right: -270px; }
    to { right: 40px; }
}
@keyframes blackbird-slide {
    from  { right: -270px; }
    to { right: 40px; }
}
@-webkit-keyframes frontimage-slide {
    from  { left: -100%; }
    to { left: 0; }
}
@-moz-keyframes frontimage-slide {
    from  { left: -100%; }
    to { left: 0; }
}
@keyframes frontimage-slide {
    from  { left: -100%; }
    to { left: 0; }
}

/*
 * Wysiwyg content
 */
.wysiwyg-content {
    font-size: 14.5px;
}
.wysiwyg-content h1, .wysiwyg-content h2 {
  font-weight: 500; }

.wysiwyg-content h1 {
  font-size: 24px; }
.wysiwyg-content h2 {
  font-size: 20px; }
.wysiwyg-content h3 {
    font-size: 16px; }
.wysiwyg-content blockquote {
  margin: 0 0 15px 35px;
  padding: 0px 15px;
  border-left: 2px solid #00588C; }


/*
 * Reponsiveness
 */
@media only screen and (max-width: 1024px) {

    /* Homepage */
    .page-home #blackbird {
        display: none;
        background: none;
    }
    .page-home #site-slogan {
        font-size: 22px;
    }
}

@media only screen and (max-width: 767px) {
	body {
		background-image: url('../img/bg-mobile.jpg');
	}

    #header {
        padding: 20px;
    }
    #header #site-logo img {
        max-height: 50px;
    }
    #header #sidebar-toggle {
        right: 20px;
    }

    .row [class*='col-'] {
        width: 100%;
    }

    main {
        padding: 20px;
    }

    /* Homepage */
    .page-home {
        padding-top: 80px;
    }
    .page-home #sidebar-toggle {
        top: 20px;
        right: 20px;
    }
    .page-home #frontimage-container {
        display: none;
    }
    .page-home #frontimage {
        background: none;
    }
    .page-home main {
        max-width: none;
        position: static;
    }

    /* Contact */
    .page-contact #map-canvas {
        display: none;
    }

    /* Sidebar */
    #sidebar footer {
        display: none;
    }
}

@media only screen and (max-width: 479px) {

}