@charset "utf-8";
/* CSS Document */
@font-face {
    font-family: RobotoCondensedBold;
    src:url(../fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf);
}
@font-face {
    font-family: RobotoCondensedLight;
	src:url(../fonts/Roboto_Condensed/RobotoCondensed-Light.ttf);
}
@font-face {
    font-family: RobotoCondensed;
	src:url(../fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf);
}
@font-face {
    font-family: RobotoMonoLight;
	src:url(../fonts/Roboto_Mono/RobotoMono-Light.ttf);
}

@media screen and (min-width: 900px) {
    ::-webkit-scrollbar {
        width: 6px;
        height: 6px;
        position: absolute;
        overflow-y: hidden;
    }

    ::-webkit-scrollbar-track {
        background: transparent;
        position: absolute;
    }

    ::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: rgba( 0, 0, 0, 0.3 );
        transition: all 400ms ease;
        cursor: pointer;
        position: absolute;
    }

    *:hover::-webkit-scrollbar-thumb{
        background: rgba( 0, 0, 0, 0.6 );
        position: absolute;
    }
}

/* a change */
*{
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-family: Roboto;
    font-size: 16px;
    -webkit-font-feature-settings:"liga" 0;
    font-feature-settings:"liga" 0;
    font-variant-ligatures: no-common-ligatures;
}

.mobile{
	display:none;
}

#toggler{
	display:none;
}

body, html{
    width: 100%;
    overflow-x: hidden;
}
body{
	font-size:100%;
	background-color: #262626;
}

#wrapper{
	width:100%;
	overflow:hidden;
}

/*////////FONTS////////*/
h1{
	font-family:RobotoCondensedBold;
	font-size:4.1em;
}
h2{
	font-family:RobotoCondensedLight;
	font-size:4.1em;
	font-weight:lighter;
}
h3{
	font-family:RobotoCondensedLight;
	font-size:2.05em;
	font-weight:lighter;
}
.p1{
	font-family:RobotoCondensedLight;
	font-size:1.35em;
	line-height:115%;
	word-break:break-strict;
}
em{
	font-family:RobotoCondensedBold;
	font-style:normal;
}
.dark_grey_text{
	color:#333333;
}
.white_text{
	color:#ffffff;
}
a{
	text-decoration:none;
	cursor: pointer;
}
.blue_link {
    color: #fff;
    transition: ease-in-out 0.25s;
    border-bottom: 1px solid #fff;
}


/**************************
* ANIMATIONS
**************************/
@-webkit-keyframes dsFadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes dsFadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.dsAnimated {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.show-menu .sub-menu {
  display: block !important;
  -webkit-animation-name: dsFadeInUp;
  animation-name: dsFadeInUp;
}


/**************************
* TABLE
**************************/

table {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 1.75em 0;
    width: 100%;
    max-width: 100%;
    background-color: transparent;
}

table th,
table td {
    padding: 8px;
    line-height: 20px;
    text-align: left;
    vertical-align: top;
    border-top: #EFEFEF 1px solid;
}

table th { color: #000; }

table caption + thead tr:first-child th,
table caption + thead tr:first-child td,
table colgroup + thead tr:first-child th,
table colgroup + thead tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td {
    border-top: 0;
}

table tbody + tbody { border-top: #EFEFEF 2px solid; }

table table table { background-color: #FFF; }

table tbody > tr:nth-child(odd) > td,
table tbody > tr:nth-child(odd) > th {
    background-color: #F6F6F6;
}

table.plain tbody > tr:nth-child(odd) > td,
table.plain tbody > tr:nth-child(odd) > th {
   background: transparent;
}

/**************************
* NAVIGATION
**************************/
#dsh-nav{
	position: absolute;
	right: 20px;
	top: 10px;
	z-index: 12;
    text-align: right;
    user-select: none;
}

#dsh-nav .main > *,
#dsh-nav .sub > *{
    font-family: Roboto, sans-serif;
    cursor: pointer;
    color: #3caae0;
    display: inline-block;
    box-sizing: border-box;
    margin-left: 30px;
    padding: 4px;
    text-decoration: none;
    font-size: 16px;
    line-height: 16px;
 	position: relative;
    font-weight: 400;
}

#dsh-nav .main > *:hover{
    color: #227ca9;
}

#dsh-nav .sub > *{
    font-size: 13px;
    margin-left: 14px;
    color: #5b8ea7;
    border-radius: 3px;
    cursor: pointer;
    padding: 2px 10px;
    transition: all 300ms ease;
    box-sizing: border-box;
}

#dsh-nav .sub > *:hover{
    color: #3caae0;
}

#dsh-nav .sub > *.button{
    border: 1px solid #5b8ea7;
}

#dsh-nav .sub > *.button:hover{
    border: 1px solid #3caae0;
}

#dsh-nav .search{
    position: relative;
}

#dsh-nav .search i {
    z-index: 22;
    top: 2px;
    right: 16px;
    position: absolute;
    font-size: 15px;
}

#search-input{
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #5b8ea7;
    font-size: 12px;
    color: #3caae0;
    padding: 2px 10px;
    top: -2px;
    border-radius: 6px;
    outline: none;
    width: 100px;
}

#search-input:active{
    border-bottom-color: #3caae0;
}


#dsh-nav span.dropdown .head i{
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #3caae0;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: -1px;
}

#dsh-nav span.dropdown.show-menu .head i{
    border-top: none;
    border-bottom: 6px solid #3caae0;
}

#dsh-nav .sub-menu{
	display: none;
    position: absolute;
    background: #262626;
    width: 420px;
    left: 50%;
    margin-left: -210px;
    top: 100%;
    margin-top: 10px;
    border: 1px solid #3caae0;
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.5);
}

/*************************
* TODO TEMPORARY, REMOVE ONCE BLOG IS ADDED AGAIN | START
*************************/
#dsh-nav .sub-menu.dev{
    left: -12px;
}

#dsh-nav .sub-menu.dev .tip{
    margin-left: 14px;
}
/*************************
* TODO TEMPORARY, REMOVE ONCE BLOG IS ADDED AGAIN | END
*************************/
.bright #dsh-nav .sub-menu{
    background: #fff;
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
}

#dsh-nav .sub-menu .tip{
	border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #3caae0;
    position: absolute;
    top: -7px;
    left: 50%;
    margin-left: -7px;
}

.bright #dsh-nav .sub-menu .tip {
    border-bottom-color: #ccc;
}

#dsh-nav .sub-menu .tip div{
    left: -5px;
    top: 2px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #232323;
    position: absolute;
    z-index: 1111;
}

.bright #dsh-nav .sub-menu .tip div{
    border-bottom-color: #fff;
}

#dsh-nav .sub-menu a{
    display: block;
    width: 50%;
    box-sizing: border-box;
    padding: 20px;
    float: left;
    text-align: left;
    cursor: pointer;
}

#dsh-nav .sub-menu a:nth-child(1),
#dsh-nav .sub-menu a:nth-child(3),
#dsh-nav .sub-menu a:nth-child(5){
	border-right: 1px solid #333;
}

#dsh-nav .sub-menu a:nth-child(2),
#dsh-nav .sub-menu a:nth-child(4),
#dsh-nav .sub-menu a:nth-child(6){
	border-left: 1px solid #111;
}

#dsh-nav .sub-menu a:nth-child(1),
#dsh-nav .sub-menu a:nth-child(2),
#dsh-nav .sub-menu a:nth-child(3),
#dsh-nav .sub-menu a:nth-child(4){
	border-bottom: 1px solid #333;
}

#dsh-nav .sub-menu a:nth-child(5),
#dsh-nav .sub-menu a:nth-child(6){
	border-top: 1px solid #111;
}

.bright #dsh-nav .sub-menu a:nth-child(1),
.bright #dsh-nav .sub-menu a:nth-child(2),
.bright #dsh-nav .sub-menu a:nth-child(3),
.bright #dsh-nav .sub-menu a:nth-child(4){
    border-bottom: 1px solid #ddd;
}

.bright #dsh-nav .sub-menu a:nth-child(1),
.bright #dsh-nav .sub-menu a:nth-child(3),
.bright #dsh-nav .sub-menu a:nth-child(5){
    border-right: 1px solid #ddd;
}


.bright #dsh-nav .sub-menu a{
    border: none;
    height: 120px;
}

#dsh-nav .sub-menu a{
	text-decoration: none;
    height: 120px;
}

#dsh-nav .sub-menu a > *{
	font-size: 12px;
	text-decoration: none;
	transition: color 300ms ease;
}

#dsh-nav .sub-menu a em{
    font-family: RobotoCondensed;
    font-size: 15px;
    display: block;
    margin-bottom: 4px;
	font-style: normal;
	color: #fafafa;
}

.bright #dsh-nav .sub-menu a em{
    color: #333;
}

.bright #dsh-nav .sub-menu a:hover em{
    color: #666;
}

#dsh-nav .sub-menu a p{
	margin: 0;
	color: #ccc;
    font-size: 14px;
    line-height: 20px;
}

.bright #dsh-nav .sub-menu a p{
    color: #666;
}

.bright #dsh-nav .sub-menu a:hover{
    background-color: #eee;
}

.bright #dsh-nav .sub-menu a:hover p{
    color: #333;
}

#dsh-nav .sub-menu a:hover > *{
	color: #3caae0;
}

/******* PRODUCT NAV MENU ***********/
#dsh-nav .product-menu .sub-menu{
    width: 440px;
    margin-left: -220px;
}

#dsh-nav .product-menu .sub-menu .product-list{
    overflow: hidden;
}

#dsh-nav .product-menu .sub-menu .product-list a{
    display: block;
    float: left;
    width: 220px;
    box-sizing: border-box;
    height: 260px;
    margin: 0;
    text-align: center;
    padding-top: 20px;
}

.bright #dsh-nav .product-menu .sub-menu .product-list a{
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.bright #dsh-nav .product-menu .sub-menu .product-list a h3{
    color: #333;
}

.dark #dsh-nav .product-menu .sub-menu .product-list a h3{
    color: #fff;
}

.dark #dsh-nav .product-menu .sub-menu .product-list a:hover h3{
    color: #7ac0e2;
}

#dsh-nav .product-menu .sub-menu .product-list a:last-child{
    border-right: none;
}

.dark #dsh-nav .product-menu .sub-menu .product-list a:nth-child(2){
    border-right: 1px solid #333;
}

.dark #dsh-nav .product-menu .sub-menu .product-list a:nth-child(3){
    border-left: 1px solid #111;
}

#dsh-nav .product-menu .sub-menu .product-list a img{
    height: 100px;
}

#dsh-nav .product-menu .sub-menu .product-list a h3{
    font-size: 16px;
    margin: 20px 0 6px;
    text-align: left;
}

#dsh-nav .product-menu .sub-menu .product-list a p{
    text-align: left;
}

#dsh-nav .product-menu .sub-menu .compare-products{
    width: 100%;
    height: auto;
    padding: 12px 0;
    text-align: center;
    color: #3caae0;
    font-size: 14px;
}

.dark #dsh-nav .product-menu .sub-menu .compare-products{
    border-top: 1px solid #111;
}

@media screen and (max-width: 900px) {
    #dsh-nav .product-menu .sub-menu .product-list{
        margin-top: 20px;
    }

    #dsh-nav .product-menu .sub-menu .product-list a{
        width: 100%;
        padding: 20px;
        overflow: hidden;
        height: auto;
    }

    #dsh-nav .product-menu .sub-menu .product-list a img{
        display: block;
        float: left;
        margin-right: 20px;
    }

     #dsh-nav .product-menu .sub-menu .product-list a h3{
        margin-top: 0;
     }
}
/*////////Hamburger Menu///////*/

.nav-icon1 {
    width: 40px;
    height: 40px;
    position: absolute;
    display: none;
    right: 30px;
    top: 30px;
    z-index: 11;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.nav-icon1 span {
  display: block;
  position: absolute;
  height: 6px;
  width: 100%;
  background: #fff;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.bright .nav-icon1 span{
    background: #333;
}

.nav-icon1 span:nth-child(1) {
  top: 0px;
}

.nav-icon1 span:nth-child(2) {
  top: 12px;
}

.nav-icon1 span:nth-child(3) {
  top: 24px;
}

.nav-open .nav-icon1 span:nth-child(1) {
  top: 12px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.nav-open .nav-icon1 span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.nav-open .nav-icon1 span:nth-child(3) {
  top: 12px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/*////////NAV///////*/

@media screen and (max-width: 1100px) {
    #search-input {
        width: 80px;
    }

    #dsh-nav .sub > * {
        margin-left: 0px;
        padding: 2px 7px;
        font-size: 12px;
    }
    #dsh-nav .main > * {
        margin-left: 26px;
    }
}

@media screen and (max-width: 900px) {
    #dsh-nav .search{
        display: none;
    }
    .main-header{
        position: relative;
    }

    .nav-icon1{
        display: block;
    }

    #dsh-nav{
        z-index: 10;
        left: 100%;
        top: 0;
        position: fixed;
        height: 100%;
        overflow: scroll;
        padding-top: 90px;
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        background: #232323;
        transition: left 500ms ease;
        background: rgba(0,0,0,0.6);
    }

    .bright #dsh-nav{
        background: rgba(0,0,0, 0.99);
    }


    .nav-open #dsh-nav{
        left: 0;
    }

    #dsh-nav .main,
    #dsh-nav .sub{
        overflow: hidden;
        background: #232323;
    }

    #dsh-nav .sub a,
    #dsh-nav .main > *{
        display: block;
        width: 50%;
        margin: 0;
        float: left;
        border: none;
        padding: 19px 0;
        text-align: center;
        font-size: 14px;
        color: #eee !important;
        border-radius: 0;
        border-bottom: 1px solid #444;
    }

    #dsh-nav .sub a.getting-started{
        display: none;
    }

    /*
    #dsh-nav .sub a.signup,
    #dsh-nav .sub a.login{
        background: #333;
        box-shadow: 0 0 3px rgba( 0, 0, 0, 0.6 );
    }
    */
    #dsh-nav .sub a.button{
        border: none;
        border-bottom: 1px solid #444;
    }

    #dsh-nav .sub a:nth-child( 2 ),
    #dsh-nav .sub a:nth-child( 5 ),
    #dsh-nav .sub a:nth-child( 7 )
    {
        border-right: 1px solid #444;
    }

    .bright #dsh-nav .sub-menu a em{
        color: #eee;
    }
    .bright #dsh-nav .sub-menu a p{
        color: #ccc;
    }

    #dsh-nav .main .head i{
        border-top-color: #fff !important;
    }

    #dsh-nav .main > *{
        width: 100%;
    }

    #dsh-nav .main .dropdown .head{

    }

    #dsh-nav .main .dropdown .sub-menu{
        display: block;
        position: relative;
        border: none;
        box-shadow: none;
        top: 0;
        left: 0;
        margin: 0;
        overflow: hidden;
        width: 100%;
        background: none;
        height: 0;
    }

    #dsh-nav .main .dropdown .sub-menu a{
        border: none !important;
    }

    #dsh-nav .main .dropdown .sub-menu .tip{
        display: none;
    }

    .show-menu .sub-menu{
        animation: none;
        height: auto !important;
    }

    #dsh-nav span.dropdown.show-menu .head i{
        border-top: none;
        border-bottom: 6px solid #fff;
    }
}

/*////////NAV///////*/

.top-bar{
	height: 70px;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 11;
}

#dsh-logo{
    width: 182px;
    height: 31px;
    background-image: url(/assets/img/deepstreamhub-logo.png);
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 15px 0 0 15px;
    background-position: center;
}

.bright #dsh-logo{
    background-image: url(/assets/img/deepstreamhub-logo-bright.png);
}
/*////////LOGIN///////*/

#top-nav{
	position: absolute;
	right: 40px;
	top: 30px;
	z-index: 99;
}

#top-nav > *{
    font-family: Roboto, sans-serif;
    cursor: pointer;
    color: #3caae0;
    display: inline-block;
    box-sizing: border-box;
    margin-left: 30px;
    border-bottom: 1px solid #3caae0;
    padding: 4px;
}

#top-nav > *:hover{

}

#top-nav > a.start-link{
	display: none;
}

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

    #dsh-logo{
        margin-top: 15px;
    }

	#top-nav > a.start-link,
	.nav-icon1{
		display: block;
	}

	#top-nav{
		position: fixed;
		width: 100%;
	    height: 100%;
		border-top: 1px solid rgba(255,255,255,0.5);
		background: rgba( 0, 0, 0, 0.9 );
	    left: 100%;
	    top: 100px;
		-webkit-transition: .25s ease-in-out;
		-moz-transition: .25s ease-in-out;
		-o-transition: .25s ease-in-out;
		transition: .25s ease-in-out;
	}

    #dsh-logo{
        width: 232px;
        height: 60px;
    }

	.nav-open #top-nav{
		left: 0;
	}

	#top-nav > *{
	    display: block;
	    padding: 20px;
	    margin-left: 0;
	    font-size: 22px;
	}
}

/*******************************
* White Menu
* *****************************/
.white-menu #dsh-logo{
    background-image: url(/assets/img/deepstreamhub-logo-white.png);
}

.white-menu #dsh-nav .main > *,
.white-menu #dsh-nav .sub > *{
    color: #fff;
}

.white-menu #dsh-nav span.dropdown .head i{
    border-top-color: #fff;
}

.white-menu #dsh-nav span.dropdown.show-menu .head i{
    border-bottom-color: #fff;
}

.white-menu #search-input{
    border-bottom-color: #fff;
    color: #fff;
}

.white-menu #dsh-nav .sub > *.button{
    border-color: #fff;
}

.white-menu .nav-icon1 span{
    background: #fff;
}
/*******************************
* Contact Box
* *****************************/
.contact-box{
    border: 1px solid #3caae0;
    color: #3caae0;
    text-align: center;
    padding: 10px;
    margin-top: 30px;
    font-weight: 500;
}

.contact-box a{
    display: block;
    border: 1px solid #3caae0;
    cursor: pointer;
    width: 100px;
    padding: 6px 10px;
    margin: 10px auto;
    text-decoration: none !important;
    background-color: #f8fdff;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.2);
    transition: all 400ms ease;
}

.contact-box a:hover{
    box-shadow: 0px 0px 6px rgba(0,0,0,0.4);
    background-color: #dceff7;
}
/*******************************
* Login
* *****************************/
.login, .login *{
	font-family: Roboto, sans-serif;
}

.login{
	cursor: pointer;
	color: #3caae0;
}

.login-form{
    position: absolute;
    background-color: #021a2b;
    padding: 16px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.8);
    border-bottom: 1px solid #0f5577;
    top: 100%;
    margin-top: 16px;
    right: 0;
    display: none;
}

.login-form .tip{
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 14px solid #021a2b;
    position: absolute;
    right: 0;
    top: -14px;
}

.login-form form{
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #3caae0;
}

.login-form input{
	color: #eee;
	padding: 3px;
	margin: 10px 0;
	background: none;
	outline: none;
}

.login-form input[type="text"],
.login-form input[type="password"]{
	border: none;
	border-bottom: 1px solid #eee;
}

.login-form input[type="submit"]{
	background: none;
	border: 1px solid #eee;
	display: block;
	width: 100%;
}

.login-form p{
	font-size: 12px;
	text-align: center;
	margin-bottom: 12px;
}

#login-error{
	color: #c30e0e;
    font-size: 14px;
    text-align: center;
    display: none;
}

#top-nav .hover-highlight{
	cursor: pointer;
	opacity: 0.8;
	transition: opacity 500ms ease;
}

#top-nav .hover-highlight:hover{
	opacity: 1;
}

#top-nav .login-form .social-login a {
    width: 45%;
    color: #fff;
    font-size: 16px;
    padding-left: 24px;
    box-sizing: border-box;
    background-size: contain;
    background-repeat: no-repeat;
}

#top-nav .login-form .social-login a:first-child{
	margin-right: 10%;
}

.login-form .social-login .github{
	background-image: url(../img/startpage/icons/social-github.svg);
}

.login-form .social-login .google{
	background-image: url(../img/startpage/icons/social-google.svg);
}

/*////////CTA///////*/
.blue{
    display: inline-block;
    background-color: #3caae0;
    padding: 2% 5%;
    border: none;
    border-radius: 7px;
    color: #ffffff;
    transition: ease-in-out 0.25s;
}

.white{
    width: 30%;
    background-color: #ffffff;
    padding: 2.3% 0% 2.3% 4.7%;
    border: none;
    border-radius: 30px;
    color: #3caae0;
	transition:ease-in-out 0.25s;
}


/*////////SOCIAL MEDIA///////*/
.social_icons_white{
	background-color:#ffffff;
	border:none;
	border-radius:180px;
	width:5%;
	padding:5% 1% 0.5% 1%;
	transition:ease-in-out 0.25s;
}
.social_icons_blue{
	border:none;
	border-radius:180px;
	width:5%;
	padding: 5% 1.5% 0.5% 1.5%;
	transition:ease-in-out 0.25s;
}
.social_icon{
	width:5%;
    opacity: 0.3;
}

/*/////////FOOTER//////////*/
#page-footer {
    position: relative;
    background-color: #232323;
    overflow: hidden;
    font-weight: 100;
    padding: 20px 0;
    border-top: 1px solid #0d3d54;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    text-align: center;
}

#page-footer *{
	font: 12px/17px Roboto, sans-serif;
	color: #666;
}

#page-footer section{
    width: 13%;
    box-sizing: border-box;
    margin-left: 3%;
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-align: left;
}

#page-footer a{
    text-decoration: underline;
}

#page-footer div.copyright{
    display: block;
    clear: left;
    width: 100%;
    text-align: center;
}

#page-footer .social a:before{
    text-align: center;
    width: 20px;
}

#page-footer section.eu{
    width: 20%;
    margin: 0;
    overflow: hidden;
}

#page-footer section.eu img{
    height: 120px;
    margin-right: 20px;
    float: left;
    margin-bottom: 20px;
}

#page-footer section.eu p{
    display: block;
    height: 100%;
}
/*// embedded mail-chimp //*/

#page-footer .newsletter-label {
    color: #666;
    transition: all 250ms ease;
}

#page-footer .newsletter-input {
    height: 15px;
    width: 150px;
    margin-top: 1px;
    background-color: #666;
    border: none;
    color: #171616;
    transition: all 250ms ease;
}

#page-footer .newsletter-input:focus {
    outline: 0;
}

#page-footer .mc-field-group {
    margin-top: -4px;
}

#page-footer .newsletter {
    opacity: .85;
    text-align: center;
    height: 120px;
    width:180px;
    margin-top: -10px;
    padding: 10px;
    transition: 200ms ease;

}

#page-footer .newsletter:hover {
    opacity: 1;
    transition: 200ms ease;
}

#page-footer #email-label {
    float: left;
    margin-top: 7px;
    margin-left: 5px;
    font-size: 12px;
}

#page-footer .news-heading-container {
    display: inline-block;
    text-align: left;
}

#page-footer #newsletter-img {
    margin-top: -35px;
    margin-left: 3px;
    margin-right: -6px;
    width: 40px;
    height: 40px;
    float: right;
}

#page-footer #newsletter-heading {
    margin-bottom: 7px;
    font-size: 14px;
    color: #eeeeee;
}

#page-footer #mc-embedded-subscribe {
    background-color: #084161;
    border: none;
    width: 59px;
    color: rgba(238,238,238, .7);
    border-radius: 2px;
    margin-top: 10px;
    cursor: pointer;
    outline: none;
    transition: all 200ms ease;

}

#page-footer #mc-embedded-subscribe:hover {
    color: #eeeeee;
    background-color: #3caae0;
    transition: all 200ms ease;

}

@media screen and (max-width: 900px) {
    #page-footer *{
        font-size: 11px;
        color: #666;
    }

	#page-footer section {
        width: 180px;
		margin-right: 3%
	}

    #page-footer .social{
        width: 100%;
        overflow: hidden;
        margin: 30px 0;
        display: flex;
        justify-content: space-around;
        flex-flow: wrap;
    }

	#page-footer .social a{
        display: block;
        padding-top: 10px;
        width: 10%;
        margin: 0 3%;
        text-align: center;
        float: left;
        font-size: 40px;
    }

    #page-footer .social a span{
        display: none;

    }

    #page-footer section.eu{
        width: 90%;
    }

    #page-footer #mce-EMAIL {
        text-align: center;
        height: 15px;
        width: 148px;
        background-color: #666;
        border: none;
        color: #171616;
    }

    #page-footer #mc_embed_signup {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

#page-footer a,
#page-footer p {
	display: block;
}

/***********************************
* PANORAMA HEADER
***********************************/
header.panorama{
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

header.panorama *{
    font-family: Roboto;
    font-weight: 100;
    color: #fff;
}

header.panorama h1{
    font-size: 70px;
}

header.panorama h2{
    font-size: 23px;
    margin: 10px 0 0;
    line-height: 27px;
}

@media screen and (max-width: 710px) {
    #page-footer .newsletter {
        margin-left: 25%;
        margin-right: 25%;
        margin-bottom: 7px;
    }

    #page-footer .footer-left {
        float: left;
        margin-right: 3%;
        width: auto;
    }

    #page-footer .footer-right {
        float: right;
        margin-right: 3%;
        width: auto;
    }
}

/**********************************
* GENERIC SUB PAGE STYLES
**********************************/
#page-header{
    height: 300px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: border-box;
    padding: 100px;
}

@media screen and (max-width: 900px) {
    #page-header{
        padding: 100px 30px;
    }
}

#page-header *{
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

#page-header h1{
    margin-bottom: 4px;
}

#page-header h1 .nav-label{
    display: none;
}

.text-page{
    background: #fff;
}

.wrapper{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.center-headline{
    text-align: center;
    position: relative;
    padding: 60px 0;
}

.center-headline h3{
    font-size: 30px;
    font-weight: 100;
    color: #666;
}

.center-headline h4{
    font-size: 16px;
    font-weight: 300;
    color: #666;
}

.section-dark h3,
.section-dark h4{
    color: #BBB;
}

.center-headline .divider{
    width: 20%;
    margin: 6px auto;
    border-bottom: 1px solid #3caae0;
}

.section-dark{
    background: #232323;
    padding: 30px 0;
}

a.boxlink{
    display: block;
    box-sizing: border-box;
    padding: 6px;
    cursor: pointer;
    text-align: center;
    border: 1px solid #3caae0;
    color: #3caae0;
    margin: 10px 0;
    transition: all 200ms ease;
}

a.boxlink:hover{
    background-color: #3caae0;
    color: #fff;
}

a.btn{
    display: inline-block;
    background-color: #3caae0;
    color: #fff;
    font-weight: bold;
    padding: 10px 40px;
    cursor: pointer;
    border-radius: 3px;
    margin: 16px auto;
    transition: 200ms ease;
}

a.btn:hover{
    background-color: #2b7194;
}

/*************************
* OPEN SOURCE
*************************/

.opensource #page-header {
    background-color: #0FBBEC;
}
