/* --------------------------Layout---------------------------------
 ------------------------------------------------------------------*/

.background-picture {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.surround {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;

}

.surround-background {
    width: 100%;
}

.white {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #fff;
}

.grey {
    background-color: rgba(245, 245, 245, 1.0);
}

.two-columns {
    display: grid;
    align-content: center;
    justify-content: center;
    grid-auto-flow: column;
}

.two-four-columns {
    display: flex;
    justify-content: center;
    grid-auto-flow: column;
}


.three-columns {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
}

.four-columns {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: row;
}

.column {
    max-width: 400px;
    padding: 20px;
}
.column-one {
    width: 60%;
    margin: 0 auto;
}

.column-grid {
    width: 400px;
    padding: 20px;
}

.column-two {
    width: 500px;
    padding: 20px;
}

.column-four {
    width: 300px;
    padding: 10px;
}

.hr-short {
    width: 50px;
    border: 1px solid rgb(235, 0, 41);
}

.darkblue {
    background-color: #131F33;
}

.lightblue {
    background-color: #37A6DE;
}


/* --------------------------Typography-----------------------------
 ------------------------------------------------------------------*/
a:hover,
a:active {
    color: #37A6DE !important;
}

a #hover_email:hover {
    color: #ffffff;
}

#focus {
    color: #37A6DE;
}

#focus-topbar {
    background-color: #37A6DE;
    color: #ffffff;
    font-family: "Frutiger Next W04 Bold";
}

.a-big-menu {
    font-family: "Frutiger Next W04 Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.a-big-menu-strong {
    font-family: "Frutiger Next W04 Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1 {
    font-family: "Frutiger Next W04 Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 4rem;
    line-height: 1.25em;
}

.h2white {
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
}

.h2black {
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
    font-family: "Frutiger Next W04 Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.headline-solo {
    display: grid;
    justify-content: center;
    align-content: center;
    font-family: "Frutiger Next W04 Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.headline-solo-h1 {
    font-size: 2.5em;
    padding-top: 80px;
    text-align: center;
    font-family: "Frutiger Next W04 Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.uppercase-center {
    text-align: center;
    margin-top: 10px;
}

hr {
    margin-top: 50px;
    width: 80%;
}

strong {
    font-family: "Frutiger Next W04 Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

span.cyan {
    color: #37A6DE;
}
/* --------------------------lightbox-----------------------------
 ------------------------------------------------------------------*/

.thumbnail {
    max-width: 90%;
    margin: 0 auto;
}
.thumbnail_2 {
    max-width: 100%;
    margin: 0 auto;
}

.lightbox {
    display: none;
    position:fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 70px;
    left: 0;
    background: rgba(255, 255, 255, 1);
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    margin-top: 2%;
    border: 1px solid rgba(0, 0, 0, .25);
}
.lightbox:target {
    outline: none;
    display: block;
}

.fa-plus {
    width: 50px;
    height: 50px;
    border-radius: 25px;
}


#to-top{
    position:fixed;
    width: 50px;
    height: 50px;
    right:17px;
    bottom:17px;
    display:none;
    padding:10px 13px;
    background:rgba(228,0,43,.7);
    color:#ffffff;
}

.surround {
    position: relative;
    width: 100%;
}
.overlay-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #008cba;
}

.surround:hover .overlay {
    opacity: 1.0;
}

.nav-current a {
    color: #37A6DE
}
/* --------------------------tables-----------------------------
 ------------------------------------------------------------------*/

.th-light {
    font-family: "Frutiger Next W04 Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
}