* {
    box-sizing: border-box;
}

@-ms-viewport {
    width: device-width;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    /* overflow-x: auto; */
    -webkit-overflow-scrolling: touch;
}

a {
    text-decoration: none;
    text-decoration: rgb(110, 110, 110);
}

a:visited {
    text-decoration: none;
    color: rgb(110, 110, 110);
}

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

a:hover,
a:active {
    text-decoration: none;
}

body {
    font-size: 1.1em;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

.container>* {
    color: #fff;
}

header {
    background-color: #0000;
}

main {
    background-color: #aad2ed;
}

aside {
    background-color: #6ad78a;
}

footer {
    background-color: #003351;
}

.-whiteModifier {
    color: white;
}


/*------------------------
    GRID DEFINITION 
-------------------------*/

.container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(50px, auto) minmax(50px, auto) minmax(50px, auto);
    grid-template-areas: "header" "main" "footer";
}

header {
    grid-area: header;
}

main {
    grid-area: main;
}

footer {
    grid-area: footer;
}


/*  display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 100px minmax(200px, auto) 100px;
    grid-template-areas: "header header" "main main" "footer footer";
    */


/*----------------------------
/* BEM Methodology naming 
-----------------------------*/


/*Container MOBILE FIRST*/


/*--------------------------------------------------- */

.container {}


/*Header and navigation bar MOBILE FIRST*/


/*--------------------------------------------------- */

.header {
    overflow: hidden;
}

.header__container {
    padding-top: 0.85em;
    background-color: #003351;
    height: 100%;
}

.header__mobileWrapper {
    display: flex;
    justify-content: space-between;
}

.header__logoBlock {
    display: flex;
    align-items: center;
    padding-left: 0.85em;
}

.header__nav {
    display: none;
}

.header__hamburger {
    padding-right: 0.85em;
}

-show {
    background-color: white;
}

.-BlueModifier {
    color: #003351 !important;
}

.header__navList {
    display: flex;
    flex-direction: column;
}

.header__navListItem {
    margin-bottom: 10px;
}

.header__navList a {
    display: block;
    text-align: center;
    border-bottom: 1px solid #003351;
    padding-bottom: 5px;
}

a:hover {
    border-bottom-color: #52bab3;
}


/*--------------
/*Main content MOBILE FIRST
---------------*/

.responsive {
    width: 100%;
    height: auto;
}

.fp-image1 {}

.fp-image2 {
    position: relative;
    top: -3em;
    margin-bottom: -6em;
}

.mainContent {
    max-width: 100vw;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}

.HeroImageSectionMobile {
    /* background: url('../media/DSC_0032.JPG') center center / cover no-repeat; */
    height: 30vh;
    /* max-width: 100vw; */
}

.HeroImageSectionMobile__Copy {
    top: 60%;
    position: relative;
    text-align: center;
    font-size: 1.5rem;
}

.HeroImageSectionMobileContainer {
    /* width: 100%;
    max-height: 30vh;
    height: 100%; */
    height: 30vh;
}

.slick-track,
.slick-list {
    height: 100%;
}

.HeroImageSectionMobile__ImageContainer {
    width: 600px;
    height: 400px;
}

.HeroImageSectionMobile__LazyImage {
    width: 600px;
    height: 400px;
}

.photo1 {
    background: url('../media/slider/1.jpg') center center / cover no-repeat;
}

.photo2 {
    background: url('../media/slider/2.jpg') center center / cover no-repeat;
}

.photo3 {
    background: url('../media/slider/3.jpg') center center / cover no-repeat;
}

.photo4 {
    background: url('../media/slider/6.jpg') center center / cover no-repeat;
}

.photo5 {
    background: url('../media/slider/8.jpg') center center / cover no-repeat;
}

.SectionDividerCopy {
    background-color: #003351;
    display: flex;
    justify-content: center;
    height: 16vh;
}

.SectionDividerCopy__Text {
    align-self: center;
    text-align: center;
    width: 70%;
    line-height: 130%;
    font-size: 1rem;
}

.SectionStory__liWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1em;
}

.SectionStory__li {
    list-style: circle;
    color: rgb(161, 161, 161);
    text-align: initial;
    font-size: 0.7em;
}

.SectionStory__li>li {
    padding: 0.6em;
}

.SectionStoryWrapper {
    padding: 1em;
    padding-bottom: 5em;
    max-width: 1290px;
    text-align: center;
    max-height: auto;
}

.SectionStory__logo {
    padding: 2em;
    text-align: center;
}

.SectionStory__ArtContainer {
    top: -2em;
    position: relative;
    text-align: center;
}

.SectionStory {
    background-color: white;
    width: 80%;
    height: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    background-repeat: no-repeat;
    background-position: -5% -5%;
    background-size: 30%;
    background-image: url('../media/coffee.svg');
    box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.75);
    margin-bottom: -60px !important;
}

.SectionStory__Gallery {
    display: grid;
    width: 60%;
    margin: 0 auto;
    grid-gap: 1em;
    grid-template-columns: minmax(10%, 1fr);
    grid-auto-rows: 1fr;
}

.SectionStory__Galleryboxes {}

.SectionStory__GalleryImage {
    display: block;
    max-width: 100%;
    height: auto;
}

.SectionStoryContainer {
    background-image: url('../media/wooden-Background-original.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 4em;
}

.SectionStory__logoImage {
    max-width: 100%;
}

.SectionStory__title {
    font-size: 1.8em;
    color: #003351;
}

.SectionStory__PolaroidContainer {
    position: relative;
}

.SectionStory__Polaroid {
    position: absolute;
    left: 0px;
    top: -5em;
    width: 45%;
}

.SectionStory__title2 {
    font-size: 1.6em;
    color: #003351;
    padding-top: 1.5em;
}

.SectionStory__copy {
    color: rgb(161, 161, 161);
    line-height: 130%;
    font-size: 0.7em;
    text-align: justify;
    padding: 1.5em;
    font-weight: 400;
}

.SectionDetailedInfo {
    background-color: #003351;
    min-height: 50vh;
}

.SectionDetailedInfo__mountainVector {
    position: relative;
    top: -2.5em;
    /*! left: 2; */
}

.SectionDetailedInfo__mountainVectorImage {
    max-width: 100%;
}

.SectionDetailedInfo__grid {
    display: grid;
    grid-template-columns: minmax(200px, 1fr);
    grid-gap: 3em;
}

.SectionDetailedInfo__gridItem {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.SectionDetailedInfo__Shape {
    width: 5em;
    height: 5em;
    background: linear-gradient( to bottom, #54e1e3, #54e1e3 50%, #00B0B0 50%, #00B0B0);
    background-color: #54e1e3;
    background-image: linear-gradient(transparent 50%, rgba(255, 255, 255, .5) 50%);
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    background-size: 3px 3px;
    border-radius: 10em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.SectionDetailedInfo__title {
    margin: 1em;
}

.SectionDetailedInfo__Image {
    height: 90%;
    width: 90%;
    border-radius: 50%;
}

.--ExtraMargin {
    margin-bottom: 2em;
}

.--ExtraPaddingBottom {
    padding-bottom: 1.5em !important;
}

.SectionDividerQuestion {
    height: 50vh;
    background-color: white;
}

.SectionDividerQuestion__Overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
    color: black;
}

.SectionDividerQuestion__Icon {
    max-width: 25%;
}

.SectionDividerQuestion__Title {
    font-size: 1.5rem;
    padding-top: 0.5em;
}

.SectionDividerQuestion__Subtitle {
    font-size: 0.8rem;
    color: #555555;
    padding: 0.5em;
}

.SectionContacts {
    min-height: auto;
    background-color: white;
    color: black;
}

.SectionContacts__HeaderText {
    padding: 1em;
    padding-top: 2.5em;
    text-align: center;
    font-size: 1.5em;
}

#map {
    height: 50vh;
    width: 100%;
}

.SectionContacts__Map {
    display: grid;
    grid-template-columns: 1fr;
}

.SectionContacts__address {
    background-color: #003351;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-content: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    align-items: center;
}

.SectionContacts__Title {
    padding: 1em;
    text-align: center;
    color: white !important;
}

.SectionContacts__Wrapper>* {
    max-width: 70%;
    padding: 1em;
    margin-left: auto;
    margin-right: auto;
    color: rgb(255, 255, 255);
    font-size: 1.2em;
    text-align: center;
}

.-smalltext {
    font-size: medium !important;
}

.SectionContacts__Form {
    /*! height: 50vh; */
}

.SectionContacts__wrapper {
    padding: 2em;
    padding-top: 0px;
}


/*Footer MOBILE FIRST*/

.Footer {}

.Footer__wrapper {
    margin: auto auto;
    padding: 2em;
    max-width: 900px;
    font-size: 0.8rem;
    text-align: center;
}

#google_translate_element>div>div {
    display: block !important;
}


/*-----------------------
SOCIAL MEDIA ICONS
------------------------*/

.icon-bar {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


/* Style the icon bar links */

.icon-bar a {
    display: block;
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
    color: white;
    font-size: 15px;
}


/* Style the social media icons with color, if you want */

.icon-bar a:hover {
    background-color: #000;
}

.facebook {
    background: #3B5998;
    color: white;
}

.twitter {
    background: #55ACEE;
    color: white;
}

.instagram {
    background: #dd4b39;
    color: white;
}

.youtube {
    background: #bb0000;
    color: white;
}


/*----------------------------*/

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}


/* Modal Content */

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    color: rgb(161, 161, 161);
    line-height: 130%;
    font-size: 0.7em;
    font-weight: 400;
    text-align: justify;
    background-color: white;
    background-repeat: no-repeat;
    background-position: -5% -5%;
    background-size: 30%;
    background-image: url(../media/coffee.svg);
    box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.75);
}

.modal-content>h1 {
    color: #003351;
    font-weight: 700;
}

.modal-content>h2 {
    color: #003351;
    font-weight: 700;
}


/* The Close Button */

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.-evensmallertext {
    font-size: medium !important;
}


/* --------------------------------------------------------

MEDIA QUERIES 

-----------------------------------------------------------*/

@media(min-width:315px) {
    .SectionDividerCopy__Text {
        align-self: center;
        width: 70%;
        line-height: 160%;
        font-size: 1.0rem;
    }
    .HeroImageSectionMobile__Copy {
        font-size: 1.3rem;
    }
    .SectionDividerQuestion__Title {
        font-size: 1.5rem;
    }
    .SectionDividerQuestion__Subtitle {
        font-size: 1rem;
    }
}

@media(max-width:454px) {
    .SectionStory__art {
        width: 90%;
    }
}

@media(min-width:450px) {
    .SectionStory__Polaroid {
        top: -7.5em;
    }
}

@media(min-width:600px) {
    .SectionStory__Polaroid {
        top: -8.8em;
    }
}

@media(min-width:769px) {
    html,
    body {
        /* overflow-x: hidden; */
    }
    .container {
        grid-template-rows: minmax(50px, 100vh) minmax(50px, auto) minmax(50px, auto);
    }
    .header__container {
        padding-top: 0.85em;
        background-color: #003351;
        height: 60px !important;
    }
    .header__hamburger {
        display: none;
    }
    .header__nav {
        display: inline-flex;
        flex-direction: row;
    }
    .header__navList {
        flex-direction: row;
        font-size: 1.1rem;
        align-items: center;
    }
    .header__navListItem {
        margin-right: 30px;
        margin-bottom: 0px;
    }
    .header__navListItem>a {
        padding-bottom: 0px;
    }
    .header__wrapper {
        display: flex;
        justify-content: space-between;
        max-width: 1290px;
        margin: 0 auto;
        /*! background-color: transparent; */
    }
    .header__mobileWrapper {
        display: inline-flex;
    }
    .header__navList a {
        border-bottom-color: transparent;
    }
    a:hover {
        border-bottom-color: #52bab3;
    }
    #logoSVG {
        height: 30px;
        width: 180px;
        margin-right: 30px;
    }
    .HeroImageSection {
        position: relative;
        height: 100vh;
        z-index: -1;
        top: -60px;
    }
    .HeroImageSection video {
        z-index: -1;
    }
    .HeroImageSection__logoImage {
        position: absolute;
        left: 6%;
        top: 10%;
    }
    .HeroImageSectionMobile {
        display: none !important;
    }
    .HeroImageSection__Copy {
        top: 10%;
        position: relative;
        text-align: right;
        font-size: 1.2rem;
        padding-right: 2.5em;
        padding-top: 0.5em;
    }
    .SectionDividerCopy {
        display: flex;
        background-color: #003351;
        height: 30vh;
        justify-content: center;
    }
    .SectionDividerCopy__Text {
        font-size: 3.1rem;
        text-align: center;
        align-self: center;
        max-width: 1000px;
    }
    .SectionStory__copy {
        color: rgb(161, 161, 161);
        line-height: 130%;
        font-size: 1em;
    }
    .SectionStory__li {
        font-size: 1em;
    }
    .SectionStory {
        background-repeat: no-repeat;
        background-position: -5% -5%;
        background-size: 20%;
    }
    .SectionStory__Polaroid {
        width: 30%;
        top: -8em;
        transform: rotate(-15deg);
    }
    .SectionStory__title {
        font-size: 2.2em;
        color: #003351;
    }
    .SectionStory__title2 {
        font-size: 2.2em;
        color: #003351;
    }
    .SectionStory__Gallery {
        display: grid;
        grid-gap: 2em;
        grid-template-columns: minmax(100px, 1fr) minmax(100px, 1fr) minmax(100px, 1fr) minmax(100px, 1fr);
        grid-template-rows: 1fr 1fr;
        width: 90%;
    }
    .SectionStory__GalleryImage {
        display: block;
        max-width: 90%;
        height: auto;
    }
    .SectionDetailedInfo__mountainVector {
        top: -6em;
    }
    .SectionDetailedInfo__grid {
        margin-top: -8em;
        display: grid;
        grid-template-columns: minmax(200px, 1fr) minmax(200px, 1fr) minmax(200px, 1fr);
    }
    .SectionDetailedInfo__Shape {
        width: 15em;
        height: 15em;
        border-radius: 15em;
    }
    .SectionDividerQuestion__Icon {
        max-width: 10%;
    }
    .SectionDividerQuestion__Title {
        font-size: 2.2rem;
    }
    .SectionDividerQuestion__Subtitle {
        font-size: 1.8rem;
    }
    .SectionContacts__Title {
        padding: 1em;
        text-align: center;
        color: white !important;
    }
    .SectionContacts__Map {
        display: grid;
        grid-template-columns: 2fr 1fr;
    }
    .SectionContacts__HeaderText {
        padding: 1em;
        text-align: center;
        font-size: 2em;
        padding-bottom: 0px;
    }
    .SectionContacts__Wrapper>* {
        font-size: 1.2em;
    }
    .icon-bar a {
        display: block;
        text-align: center;
        padding: 16px;
        transition: all 0.3s ease;
        color: white;
        font-size: 20px;
    }
    /*--------------------------*/
    .modal-content {
        margin: auto;
        padding: 20px;
        border: 1px solid #888;
        width: 40%;
        color: rgb(161, 161, 161);
        line-height: 140%;
        font-size: 0.9em;
        text-align: justify;
        background-color: white;
        background-repeat: no-repeat;
        background-position: -5% -5%;
        background-size: 30%;
        background-image: url(../media/coffee.svg);
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.75);
    }
    .-evensmallertext {
        font-size: small !important;
    }
}

.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        height: 300%;
        top: -100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        width: 300%;
        left: -100%;
    }
}

@media (max-width: 768px) {
    .fullscreen-bg {
        background: url('../img/videoframe.jpg') center center / cover no-repeat;
    }
    .fullscreen-bg__video {
        display: none;
    }
    .HeroImageSection {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1270px) {
    .SectionDividerCopy__Text {
        font-size: 2.5rem;
        text-align: center;
        line-height: 150%;
    }
}

@media (min-width: 769px) and (max-width: 1270px) {
    .SectionStory__Polaroid {
        top: -5em;
    }
}

@media (min-width: 500px) {
    .SectionDetailedInfo__mountainVector {
        top: -3.5em;
    }
}

@media (min-width: 768px) {
    .SectionDetailedInfo__mountainVector {
        top: -5.5em;
    }
    .SectionDetailedInfo__grid {
        margin-top: auto;
    }
}

@media (min-width: 1200px) {
    .SectionDetailedInfo__mountainVector {
        top: -10em;
    }
    .SectionDetailedInfo__grid {
        margin-top: -8em;
    }
}

@media (min-width: 1800px) {
    .SectionDetailedInfo__mountainVector {
        top: -15em;
    }
}