html {
    height: 100%;
    width: initial !important;
}

body {
    max-width: initial !important;
    height: 100%;
    font-family: 'Oswald', sans-serif;
    color: white;
    background-color: black;
    /*padding-top: 80px;*/
    overflow-x: hidden;
}

@media print {
    html, body {
        display: none; /* hide whole page */
    }
}

section:not(.navbar) {
    padding-left: 60px !important;
    padding-right: 60px !important;
}

/*Biko, Marion*/



h1{
    margin: 35px;
    text-transform: uppercase;
    font-weight: 800;
    /*letter-spacing: 1px;*/
    line-height: 1em;
}


h2,
h3,
h4,
h5,
h6 {
    margin: 10px;
    text-transform: uppercase;
    font-weight: 500;
    line-height:1em;
    letter-spacing:2px;
}


p, li, td {
    line-height: 1.5em;
    letter-spacing: 1.2px;
    font-family: 'Numans', sans-serif;
    font-weight: 100;
}

p {
    text-align: justify;
    margin: 20px 0 35px 0;
}

@media(max-width:544px){
    p{
        text-align:center;
    }
}

ul{
    list-style:none;
    padding-left:10px;
}

ul li:not(#testli)::before {
    content: "\002022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: rgb(255, 214, 21); /* Change the color */
    /*font-weight: bold;*/ /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 0.8em; /* Also needed for space (tweak if needed) */
    /*height:5em;*/
    /*margin-left: -1em;*/ /* Also needed for space (tweak if needed) */
    font-size: 20px;
}

.container {
    margin: 2em 0;
}

button {
    outline: none;
    border: none;
    outline-color: none;
}

/* 
Extra small devices (portrait phones, less than 544px) 
*/
h1 {
    font-size: 2.5rem;
    line-height: 1.2em;
    margin-right: 0px;
    margin-left: 0px;
    /*letter-spacing: 0.1em;*/
    color:rgb(255, 214, 21);
}

h2 {
    font-size: 2rem;
    line-height: 1em;
    margin-right: 0px;
    margin-left: 0px;
    /*font-family: 'Asap', sans-serif;*/
}

h3 {
    font-size: 1.5rem;
}

p, li, td{
    font-size:1.3rem;
}


/*1rem = 16px*/

/* Small devices (landscape phones, 544px and up) */
@media (min-width: 544px) {
    h1 {
        margin-right: 0;
        margin-left: 0;
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3, th {
        font-size: 1.5rem;
    }

    p, li, td {
        font-size: 1rem;
    }
}
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 768px) {
    h1 {
        margin-right: 0px;
        margin-left: 0px;
        font-size: 3rem;
    }

    h2{
        font-size: 2rem;
    }
    h3, th {
        font-size: 1.5rem;
    }

    p, li, td {
        font-size: 1rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    h1, .typeWriter {
        font-size: 3.5rem;
        font-weight:800;
    }

    h2 {
        font-size: 2.5rem;
        font-weight: 500;
    }

    h3, th {
        font-size: 2rem;
        font-weight: 500;
    }
    p, li, td {
        font-size: 1.2rem;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    h1 {
        font-size: 3.5rem;
        font-weight: 800;
    }
    h2{
        font-size: 2.5rem;
        font-weight:500;
    }

    h3, th {
        font-size: 2rem;
        font-weight: 500;
    }
    /*1rem = 16px*/
    p, li, td {
        font-size: 1.6rem;
    }
}

/* NavBar */


.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content, .dropdown-content, .subnavbtn {
    position: relative;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

.overlay-content {
    top: 20%;
    margin-top: 30px;
}
.overlay-content > * {
    font-size: 36px;
}

.subnav-content > * {
    font-size: 25px;
}

.overlay-content > *, .subnav-content > * {
    padding: 8px;
    text-decoration: none;
    color: rgb(255, 214, 21);
    display: block;
    transition: 0.3s;
    /*background-color: ;*/
}

#menu-button{
    background-color:transparent;
}

.overlay a:hover, .overlay a:focus, #menu-button:hover {
    color: white;
    text-decoration: none;
}

#foodMenu    {
    width: 0;
    position: fixed;
    z-index: 10;
    background-color: none;
    /*overflow-x: hidden;*/
    /*transition: 0.5s;*/
    left:50%;
    top:20%;
    margin-top:30px;
    overflow: hidden;
    height: 0;
    transition: height 0.2s ease-out;
}

#foodMenu a {
    color: rgb(255, 214, 21);
    text-decoration: none;
    display: block;
}

#menuPage i{
    color:rgb(254, 214, 21);
}


@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px
    }

    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

.nav {
    width: 100%;
    height: 100px;
    max-height: 100px;
    background-color: black;
}

#logo-navbar {
    float: left;
    max-height: inherit !important;
}

/*.subnav-content{
    display:none;
}*/


#logoImg {

    padding: 25px;
    max-height: inherit !important;
}

#nav-button {
    background-color: transparent;
    display: inline-block;
    border-color: transparent;
    float: right;
    height: inherit;
    width: auto;
    padding: 25px;
}

.bar1, .bar2, .bar3 {
    width: 30px;
    height: 3px;
    background-color: rgb(255, 214, 21);
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-6px, -8px);
    transform: rotate(45deg) translate(-6px, -8px);
}

/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
    z-index: 100;
    background: black;
    position: fixed;
    bottom: 5%;
    -webkit-transform: translateY(-5%);
    -ms-transform: translateY(-5%);
    transform: translateY(-5%);
    -webkit-transform: translateX(-1px);
    -ms-transform: translateX(-1px);
    transform: translateX(-1px);
}

/* Style the icon bar links */
.icon-bar a , .icon-bar button{
    display: block;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    color: rgb(255, 214, 21) !important;
    background-color:black;
    font-size: 20px;
}

/* Style the social media icons with color, if you want */
.icon-bar a:hover, .icon-bar button:hover {
    background-color: rgb(255, 214, 21);
    color: black !important;
    text-decoration: none;
}

.icon-bar a:hover .fa {
    color: black;
}

@media(max-width:768px) {
    .icon-bar a {
        padding: 10px;
    }
    
}

.facebook, .instagram, .mail, .language, .contact {
    color: rgb(255, 214, 21);
}

.container-fluid {
    margin: 0;
    padding: 0;
}

/*All Pages*/

#mainPage h2{
    font-weight:bold;
}


#mainPage .backgroundHaut {
    margin:60px;
    margin-top:0;
    height: 80%;
    background-color: rgb(255, 214, 21);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position:relative;
}

.parallax {
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Main page */

/*----------------- Pop-up ----------------- */

#pop-up{
    background: rgba(0,0,0,0.4);
    display:none;
    height:100%;
    position:fixed;
    width:100%;
    top:0;
    z-index:2000;
    overflow:auto;
}

#pop-up > div{
    background: rgba(0,0,0);
    box-shadow: 10px 10px 60px #555;
    display: inline-block;
    top:10%;
    left:20%;
    width: 60%;
    height:auto;
    position: relative;
    border-radius: 8px;
    padding: 15px 10%;
    line-height: normal;
    /* text-align: center; */
}
/* Buttons */
#pop-up > div > div {
    display:inline-center;
    text-align: center;
}
#pop-up > div > p{
    /* text-align: center; */
}
#pop-up > div > ul{
    /* padding-left:15%; */
}

#pop-up > div > p, #pop-up > div > ul{
    margin-top:10px;
    margin-bottom: 20px;
}

#pop-up > div > p, #pop-up > div > ul *{
    font-family: "Inter", sans-serif !important;
}


#pop-up > div > ul> li > a{
    line-height:1em;
    color:rgb(255, 214, 21);
} 
/* 
#pop-up > div > p > *{
    line-height:1.3em;
    margin-left:13%;
    margin-right:13%;
    margin-bottom:20px;
    text-align:center;
    font-size: 13px;
    letter-spacing: 0.05rem;
    font-weight: 200 !important;
    display:block;
}


/* #pop-up > div > p >b{
    color:rgb(255, 214, 21);
    text-transform: uppercase;
} */

#pop-up .firstP{
    text-align: center;
    font-size: 15px;
}

.greetings{
    color:rgb(255, 214, 21);
    text-transform: uppercase;
}


#pop-up > div > img{
    height:auto;
    /* top:0; */
    left:30%;
    width: 40%;
    /* align-content: center; */
    /* align-items: center; */
    /* background-position: center; */
    position: relative;
    display:block;
}

@media(max-width:1048px){
    #btnShop{
        width:30% !important;
    }
}

@media(max-width:875px){
    #pop-up > div{
        width:70%;
        left:15%;
    }
    #pop-up > div > p{
        font-size:11px;
        margin-left:8%;
        margin-right:8%;
    }
    #btnShop{
        width:50% !important;
        /* left: 30% !important; */
    }
}
@media(max-width:425px){
    #pop-up > div {
        width:80%;
        left:10%;
    }
    #pop-up > div > p{
        font-size:10px;
        margin-left:0;
        margin-right:0;
    }
    #btnShop{
        width:60% !important;
        /* left: 20% !important; */
    }
    .popupCloseButton {
        top:5px !important;
        right:5px !important;
    }
}

#btnShop{
    display:inline-block;
    position: relative;
    width:25%;
    height:auto;
    text-align: center;
    font-family: "Inter", sans-serif !important;
    font-weight: bold;
    /* left:40%; */
    margin-bottom:20px;
    background-color:rgb(255, 214, 21);
    color:black;
    z-index:10000;
    line-height:3rem !important;
}

#btnShop:hover{
    background-color: rgb(206, 173, 19);
    text-decoration: none;
}


#pop-up .helper{
    display:inline-block;
    height:80%;
    vertical-align:middle;
}

.popupCloseButton {
    /* background-color: #fff; */
    /* border: 3px solid #999; */
    /* border-radius: 50px; */
    color:white;
    cursor: pointer;
    display: inline-block;
    font-family: arial;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 25px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
    z-index:4000;
}
.popupCloseButton:hover {
    color:rgb(206, 173, 19);
    text-decoration: none;
    
}

/* ----------------- Pop-Up End ----------------- */





/* Sandwich */
#pop-up-sandwich {
    height:0;
    width:30vw;
    padding-bottom: 35vw;
    background-size:100% auto;
    background-repeat:no-repeat;
    background-position:center;
    border: solid 2px black;
    position: relative;
    transition: opacity 2s ease-in-out;
 }

#pop-up-sandwich.fade-in{
    opacity:1;
}

#pop-up-sandwich.hidden{
    display:none;
}


#pop-up-sandwich #close {
    position: absolute;
    top: 10px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: black;
}

.anchor {
    display: block;
    position:relative;
    top:-99px; 
}


#welcomePage {
    background-image: url(../images/Van_2.png);
    align-content: center;
    align-items: center;
    /*position: relative;*/


}

#welcomePage > .circle{
    background-color: rgb(255, 214, 21);
}

#welcomePage .circle a i{
    /*text-decoration: none;*/
    color:black;
}

#first-chevron-down {
    /*visibility: hidden;*/
    /*opacity: 0;*/
    -webkit-animation: opacityFadeIn 1s infinite; /* Safari 4.0 - 8.0 */
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -webkit-animation-direction: alternate;
    animation-delay: .2s;
    animation-direction: alternate;
    /*transition: visibility 1s, opacity 0.5s;*/
}
#second-chevron-down {
    -webkit-animation: opacityFadeIn 1s infinite; /* Safari 4.0 - 8.0 */
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    -webkit-animation-direction: alternate;
    animation-delay: .4s;
    animation-direction: alternate;
    /*animation-delay:unset;*/
}
#third-chevron-down {
    -webkit-animation: opacityFadeIn 1s infinite; /* Safari 4.0 - 8.0 */
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -webkit-animation-direction: alternate;
    animation-delay: .6s;
    animation-direction: alternate;
} 



@keyframes opacityFadeIn {
    from {
        opacity: 0;
        visibility: hidden;
    }

    to {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes opacityFadeOut {
    from {
        opacity: 1;
        visibility: visible;
    }

    to {
        opacity: 0;
        visibility: hidden;
    }
}


#history {
    max-width: 100%;
    margin-left: 70px;
    margin-right: 70px;
    margin-top: 30px;
    margin-bottom: 30px;
    color: white;
}


#history > div > h1 {
    color: rgb(255, 214, 21);
}

#history > img {
    padding-top: 30px;
    padding-bottom: 30px;
}


@media (max-width: 992px) {

    #history {
        margin-left: 0px;
        margin-right: 0px;
    }

    #history > img {
        position: relative;
        left: -65px;
        width: 100vw;
     }
}


#mainPage h1{
    color:black;
}

#mainPage #testimonials h1, #mainPage #citation h1{
    color:white;
}

.slide-left {
    height: 300px;
    width: 300px;
    float: left;
    animation: 1s ease-out 0s 1 slideInFromLeft;
}

.slowly-appear {
    animation: 1s ease 0s 1 opacityFadeIn;
}

#citation:not(#content-wrapper) {
    margin: 0px;
    padding: 0px;
    height: 80vh;
    width: 100%;
    background-image: url(http://alohaespressobar.com/images/Latte_Yellow_Flowers_faded.png);
    -webkit-backface-visibility: hidden;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


#citation .jumping {
    position: sticky;
    position: -webkit-sticky;
    top: 150px;
    padding-bottom: 10px;
    transition: transform 1s;
}

#citation h1 {
    margin-bottom: 60px;
}

#citation h2 {
    color: rgb(255, 214, 21);
    font-family: 'Alex Brush' !important;
    text-transform: none;
}



/*Hours*/

#hours, #contact {
    color: black;
    background-color: rgb(255, 214, 21);
    width: 100%;
    padding: 30px;
    align-items: center;
    align-content: center;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
}

#map {
    max-width: 90%;
    height: auto;
}

    #map img {
        height: auto;
    }

#hours div, #contact div {
    display: flex;
    align-items: center !important;
    justify-content: space-evenly;
    flex-direction: column;
}


#hours #girl-cafe {
    width: 80%;
    height: auto;
}

@media(max-width:544px) {
    #hours #girl-cafe {
        width: 130%;
        position: relative;
    }

    #map {
        padding: 0;
        margin: 0;
        width: 110% !important;
        max-width: 110% !important;
        left: -5%;
        position: relative;
    }
}

/*#hours table td, #contact table td {
    padding: 10px;
}*/

@media(max-width:544px){
    #info_hours {
        padding: 0px;
    }
}

#info_hours table, #contact table{
    margin-bottom:40px;
}

#phone {
    color: black;
    text-decoration: none;
}

/*Instagram Feed*/
#instagramFeed {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
}

#instagramFeed a {
    display: inline-block;
    width: 30%;
    margin:5px;
    padding-bottom: 30%;
    background: #eee 50% 50% no-repeat;
    background-size: cover;
}

@media(max-width: 544px){
    #instagramFeed a {
        display: inline-block;
        width: 100% !important;
        height: 0;
        padding-bottom: 100% !important;
        background: #eee 50% 50% no-repeat;
        background-size: cover;
    }
}

.posts {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

/*Testimonials*/

#testimonials {
    margin: 30px;
}

#testimonials img {
    -webkit-filter: grayscale(0%) contrast(2); /* Safari 6.0 - 9.0 */
    filter: grayscale(0%) contrast(1);
}

#testimonials img:hover {
    -webkit-filter: grayscale(50%); /* Safari 6.0 - 9.0 */
    filter: grayscale(50%);
}


#testimonials h1 {
    width: 100%;
}

#testimonials div {
    /*padding-left:3px;*/
    padding: 0px !important;
}

#testimonials > div > a {
    margin-bottom: 4px !important;
    /*list-style:none !important;*/
}

#testimonials > div > a >img{
    padding:4px !important;
}

/*Other Pages*/
.backgroundHaut:not(#welcomePage) {
    height: 65%;
    transform: translateY(50px);
    background-color: black;
    background-size: cover;
    margin-bottom: 0px;
    margin-top: 0px;
    margin-left:60px;
    margin-right:60px;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.pageTitle {
    height: 20%;
    transform: translateY(50px);
   /*margin-bottom: 20px;*/
}

.pageTitle h1 {
    margin-bottom: 0px;
}

.anchorPages{
    top:0px;
}

.circle {
    /*z-index:100;*/
    background-color:black;
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    color: black;
    width: 10vh;
    height: 10vh;
    border-radius: 50%;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
}

.circle a i {
    color:white;
    font-size: 20px;
    position: relative;
    text-decoration: none;
    display: block;
}

.circle a:hover{
    text-decoration:none;
}

.p-before-list{
     margin-bottom:10px;
}

/*About Page*/


#aboutPage .backgroundHaut {
    background-image: url(../images/page_about.png);
}

#aboutText{
    transform:translateY(20px);
}

#aboutPage table{
    text-align:left;
}
#aboutPage table td{
    min-width:130px;
    text-align: left;
}

#values-table td i{

    font-family: 'Montez', sans-serif;
    font-size:25px;
    line-height:1.1em;
}

.imgValues{
    height:100%;

}

.imgValues img {
    height: 100%;
    /* margin:10px; */
}

/*.imgMission{
    background-image:url(../images/mission.png);
    background-position:center;
    background-size:cover;
}*/

#valueSection {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 50vh;
}


/*Eco Page*/
#ecoPage .backgroundHaut {
    background-image: url(../images/page_eco.png);
    background-position:bottom;
}

/*#ecoFirstParallax {
    height: 60%;
    background-image: url(../images/Road_to_Hana_green.jpg);
    background-position: center;
}*/

/*#ecoSecondParallax {
    height: 60%;
    background-image: url(http://alohaespressobar.com/images/Latte_Yellow_Flowers.jpg);
    background-position: top;
}*/

#ecoPage ul{
    text-align:left;
}

/*Franchise Page*/


#franchisePage .backgroundHaut {
    background-image: url(../images/page_franchise.png);
}

#cathedrale{
    background-image:url(../images/basilique.png);
    background-position:center;
    background-size:contain;
    background-repeat: no-repeat;
}

#franchisePage ul {
    text-align: left;
}



    /*UnderConstructionPages*/
    .underConstrMes {
    position:absolute;
    transform: translate(-50%, -50%);
    left:50%;
    top:50%;
    color:rgb(255, 214, 21);
}

/*Food pages*/

a:not(#phone) {
    line-height:4rem;
}

.descText {
    /*font-family: 'News Cycle', sans-serif;*/
    margin-bottom: 60px;
}



.acaiDesc {
    font-family: 'Rancho', sans-serif;
}

#menuPage h3{
    color:rgb(255, 181, 0);
    /*font-family:'Montez', sans-serif;*/
}

#menuPage #topBtn {
    width: 6vh;
    height: 6vh;
    border-radius: 50%;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;

    display: none;
    position: fixed;
    top: 50%;
    right: 3vh;
    z-index: 3;
    font-size: 18px;
    outline: none;
    background-color: rgb(255, 214, 21);
    color: black;
    cursor: pointer;
    
}

#f{
    /*position:fixed;*/
}


/*
    .icon-bar {
    z-index: 100;
    background: black;
    position: fixed;
    bottom: 5%;
    -webkit-transform: translateY(-5%);
    -ms-transform: translateY(-5%);
    transform: translateY(-5%);
    -webkit-transform: translateX(-1px);
    -ms-transform: translateX(-1px);
    transform: translateX(-1px);
}

.icon-bar a , .icon-bar button{
    display: block;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    color: rgb(255, 214, 21) !important;
    background-color:black;
    font-size: 20px;
}

.icon-bar a:hover, .icon-bar button:hover {
    background-color: rgb(255, 214, 21);
    color: black !important;
    text-decoration: none;
}

.icon-bar a:hover .fa {
    color: black;
}

@media(max-width:544px) {
    .icon-bar a {
        padding: 10px;
    }
}*/

#food-menu {
    z-index: 100;
    position: fixed;
    /*width: 100%;*/
    right:0;
    clear:right;
    bottom: 3%;
    -webkit-transform: translateY(-3%);
    -ms-transform: translateY(-3%);
    transform: translateY(-3%);
}

#food-menu a {
    display: block;
    position: relative;
    right: -170px;
    transition: 0.3s;
    width: 240px;
    height:70px;
    padding: 10px;
    /*padding-bottom:35px;*/
    /*padding-left: 0px !important;*/
    text-decoration: none;
    font-size: 20px;
    background-color: black;
    color:black;
    vertical-align:middle;
}

#food-menu a:hover{
    right:0px;
    background-color:rgb(254, 214, 21);
}

#food-menu a:focus{

}

#food-menu a:hover img {
    filter: brightness(0%);
}

.food-pic {
    width: 50px;
    height: auto;
    vertical-align:inherit;
}

#food-menu span {
    /*display: inline-block;*/
    vertical-align: middle;
}

@media(max-width:768px) {
    #food-menu a {
        padding: 5px;
        right: -170px;
        width:210px;
        height:50px;
    }
    
    .food-pic{
        width:30px;
        height:auto;
    }
}

#menuPage #topBtn i {
    margin: 0;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media(max-width: 768px){
    #menuPage #topBtn {
        width: 5vh;
        height: 5vh;
        font-size: 15px;
        justify-content: center;
        align-content: center;
        align-items: center;
        text-align: center;
    }

}

.vertical-align{
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
}


.text-illustration{
    position:relative;
}



#menuPage #topBtn:hover {
    background-color: rgb(206, 173, 19);
}

#menuPage #topBtn:hover i{
    top:-3px;
}


#menuPage h1 {
    color: rgb(255, 214, 21);
}

#menuPage .backgroundHaut{
    background-image:url(../images/IMG_5306.jpg);
    background-size:cover;
    padding:0 !important;
}

/*#foodMenu a {
    display: block;
    height: 12.5%;
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: rgb(255, 214, 21);
    text-transform:uppercase;
}

#foodMenu a:hover{
    color:white;
}

#foodMenu {
    height: 100%;
    width:100%;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.7);
    overflow-x: hidden;
    transition: 0.5s;
}*/


.foodTitle {
    max-width: 100%;
}

.foodTitle > img {
    max-height: 100px;
}

.spaced {
    margin-top: 50px;
    margin-bottom: 85px;
}

@media(max-width:544px){
    .spaced{
        margin-bottom:50px;
    }
}

.pokeSection table {
    /*padding:0px;*/
    /*text-align: left;*/
}

@media(min-width:768px){
    .pokeSection {
        color: black;
        height: 40vh;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media(min-width:992px){
    .pokeSection {
        height: 70vh;
    }
}
@media(max-width:767px) {
    .pokeSection {
        background-image: none !important;
    }
}

.pokeSection > div {
    padding-top: 20px;
}

table td {
    padding: 10px;
}

.smoothieSection table td {
    text-align: left;
}

#menuPage .tableTitle {
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    width: 25%;
}


#descPoke, #descAcais {
    margin-top: 50px;
    margin-bottom: 50px;
}

#img-acai-1 {
    background-image: url(../images/acaideco.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#img-acai-2 {
    background-image: url(../images/acaideco2.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#img-poke-1 {
    background-image: url(../images/poke_section.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#img-poke-2 {
    background-image: url(../images/Chopsticks_illustration.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}



    /*#infoBreakfast .items, #infoSandwiches  .items{
    padding-left:30px;
    padding-right:30px;
}*/

    .items div {
        /*height:*/
    }

    #infoBreakfast table {
        /*table-layout: fixed;
    width: 83%;*/
    }

    .sandwich, .breakfast {
        /*height:300px;*/
        /*width: 400px;*/
        /*padding:50px;*/
    }

    #infoSandwiches > div:not(.row) {
        min-height: 300px;
    }

    #img-lazy-morning-1 {
        background-image: url(../images/lazymorning.png);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    #img-lazy-morning-2 {
        background-image: url(../images/lazymorning2.png);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    #img-sandwich-1 {
        background-image: url(../images/sandwich.png);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    #img-sandwich-2 {
        background-image: url(../images/sandwich2.png);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    
    #infoCoffee img {
        width: 100%;
    }

    #infoCoffee ul {
        display: block;
        padding: 0;
        margin: 0;
        width: 100%;
    }

        #infoCoffee ul > li {
            display: inline-block;
            text-align: left;
            width: 25%;
            margin: 6px;
        }



    @media(max-width:544px) {
        #infoCoffee ul > li {
            width: 100%;
            margin: auto;
            text-align: center;
        }
    }

    #infoCoffee table, #descPoke table, .smoothieSection table {
        /*text-align:left;*/
        margin: auto;
    }

    @media(max-width:768px) {

        table tr td, #descPoke table tr td, .smoothieSection table tr td {
            display: block;
            text-align: center;
            width: 100% !important;
            padding: 15px;
            padding-top: 1px;
        }

        .tableTitle {
            padding: 0px !important;
        }
    }

    #roadtohana, #rainbow, #ironman,
    #pinkpanther, #dragonfly, #buddhapalm,
    #maui, #bomb, #hawaii50 {
        padding: 0px;
    }

    @media(min-width:768px) {

        #roadtohannaInfo, #rainbowInfo, #ironmanInfo,
        #pinkpantherInfo, #dragonflyInfo, #buddhapalmInfo,
        #mauiInfo, #bombInfo, #hawaii50Info {
            padding: 30px;
        }
    }

    .twist-grow {
        -webkit-transition: width 2s, height 2s, -webkit-transform 2s;
        transition: width 2s, height 2s, transform 2s;
        transition-timing-function: ease-out;
        position: relative;
    }

        .twist-grow:hover {
            -webkit-transform: rotate(180deg);
            transform: rotate(360deg);
        }

        .twist-grow img {
            width: 80%;
            height: 80%;
        }

    @media(max-width:768px) {
        .twist-grow img {
            width: 70%;
            height: 70%;
        }
    }


    #pokePage {
        background-image: url(http://alohaespressobar.com/images/pokes.jpg);
        background-size: cover;
        background-color: black;
        background-position: center;
    }

    #pitayaPage {
        background-image: url(http://alohaespressobar.com/images/Pitaya_Bowls.jpg);
        background-size: cover;
        background-color: black;
        background-position: center;
    }

    #acaiPage {
        background-image: url(http://alohaespressobar.com/images/Acais_page.jpg);
        background-size: cover;
        background-color: black;
        background-position: center;
    }


    #pokePhoto {
        background-image: url(../images/poke_shirt.jpg);
        height: 50%;
    }



    #pokePhoto2 {
        background-image: url(../images/poke_shirt.jpg);
        height: 80%;
        background-position: center;
    }

    #pitayaPhoto {
        background-image: url(../images/Pink_Panther.jpeg);
        height: 80%;
        background-position: center;
    }

    #pitayaPhoto2 {
        background-image: url(../images/IMG_9797.jpg);
        height: 80%;
        background-position: bottom;
    }

    #acaiPhoto {
        background-image: url(http://alohaespressobar.com/images/Acais_outside.jpg);
        height: 60%;
    }

    #acaiPhoto2 {
        background-image: url(http://alohaespressobar.com/images/Rainbow_Acai_Coffee.jpg);
        height: 80%;
        background-position: center;
    }



    @media(max-width:768px) {
        .sandwich p {
            text-align: center;
        }
    }

    #sandwichesPage .backgroundHaut {
        background-image: url(http://alohaespressobar.com/images/sandwiches_copy.jpg);
        background-position: center;
        background-size: cover;
    }

    #breakfastPage .backgroundHaut {
        background-image: url(http://alohaespressobar.com/images/breakfast.jpg);
        background-position: center;
        background-size: cover;
    }

    #breakfastPage h1, #sandwichesPage h1 {
        color: rgb(255, 214, 21);
    }

    #sandwichesPhoto {
        background-image: url(http://alohaespressobar.com/images/IMG_2353.jpg);
        height: 60%;
    }

    #breakfastPhoto {
        background-image: url(../images/Poivron_magique.jpg);
        height: 60%;
        background-position: center;
    }

    .logo_vegan {
        height: 25px;
        margin-right: 5px;
        /*margin:10px;*/
    }

    .vegan-logo-title * {
        display: inline-block !important;
    }


    .breakfast p, .sandwich p {
        text-align: center !important;
    }


    #coffeePhoto {
        background-image: url(../images/Latte_plant_cropped.jpg);
        height: 60%;
        background-position: center;
    }

    #coffeePhoto2 {
        background-image: url(../images/Espresso_presentation.jpg);
        height: 60%;
        background-position: center;
    }

    #coffeePhoto3 {
        background-image: url(../images/Kona_coffe_acai.jpg);
        height: 60%;
        background-position: center;
    }

    #cocktailsPhoto {
        background-image: url(../images/Dirty_Pink_Panther.jpeg);
        height: 60%;
        background-position: center;
    }

    #shaveicePhoto {
        background-image: url(../images/IMG_5204_cropped.jpg);
        height: 60%;
        background-position: center;
    }

    /*Order Online Page*/

    #shopPage {
        color: black;
    }

    #shop-coffee-page{
        transform: translateY(50px);
        /* margin-top:50px; */
    }

    #shop-coffee-page h1{
        /* margin-top:70px; */
        margin-bottom:70px;
    }

    .shopLink {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
        /* this is a fix for IE7-9 */
        background-color: #ffffff;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        opacity: 0;
    }

    .collectionSquare {
        text-align: center;
        vertical-align: central;
    }

        .collectionSquare h1 {
            stroke-width: 100%;
            position: relative;
            top: 50%;
            color: white;
            text-align: center;
        }

        .collectionSquare > div {
            width: 100%;
            height: 500px;
            margin: 10px;
            background-position: center;
            background-size: cover;
        }

    #coffeeShopSquare {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0,0,0,0.2)),url(../images/coffee_shop.jpg);
    }

    #clothesShopSquare {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0,0,0,0.2)),url(http://alohaespressobar.com/images/clothes_shop.jpg);
    }

    #otherShopSquare {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0,0,0,0.2)),url(../images/other_shop.jpg);
    }

        #otherShopSquare:hover, #clothesShopSquare:hover, #coffeeShopSquare:hover {
            filter: grayscale(70%);
        }


    #coffeeShopPage, #clothesShopPage, #otherShopPage {
        background: white;
    }


        #coffeeShopPage h1 {
            color: black;
        }

        #coffeeShopPage img {
            max-height: 400px;
        }

        #coffeeShopPage div > * {
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
    
    



    #orderPage section {
        margin: 0;
        padding: 0;
        padding-top: 2.5%;
        position: relative;
        background-image: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0,0,0,0.5)),url(http://alohaespressobar.com/images/Aloha_Espresso_Bar_04.jpg);
        width: 100%;
        -ms-background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    #orderPage {
        color: white;
    }

        #orderPage .info ul {
            margin: 0;
            margin-top: 10px;
            margin-bottom: 10px;
            padding: 0;
            list-style-type: none;
        }

        #orderPage div {
            width: 100%;
        }

    .pSoonAv {
        text-transform: uppercase;
    }



    /*CafeKona page*/

    @media(min-width:700px) {
        #cafeKonaPage .backgroundHaut {
            background-image: url(../images/kona_coffe_v_english.png);
            background-size: cover;
            background-position: center;
        }
    }

    @media(max-width:700px) {
        #cafeKonaPage .backgroundHaut {
            background-image: url(../images/small_ecran_v_en.png);
            background-size: cover;
            background-position: center;
            background-position-y: top;
        }
    }


    #cafeKonaPage .backgroundHaut {
        height: 80%;
        margin-bottom: 60px;
        background-color:rgb(255, 214, 21);
        /*margin-top:60px;*/
    }

    /*#cafeKonaPage > .backgroundHaut > p {
    color: black;
    top: 40%;
    position: absolute;
    font-weight: 800;
    font-size: 1.5em;
    letter-spacing: 0.01em;
}

#cafeKonaPage > .backgroundHaut > h1 {
    color: black;
    top: 50%;
    position: absolute;
    left: 45%;
    font-weight: 800;
    font-size: 2em;
    letter-spacing: 0.01em;
}*/




    .row {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -webkit-justify-content: center;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 50px;
        margin-right: 0px;
        margin-left: 0px;
    }

    @media(max-width:768px) {
        .row {
            margin: 0px;
        }
    }



    .row > [class*='col-'] {
        display: flex;
        flex-direction: column;
    }

    .row:before, .row:after {
        display: none;
    }

    /*div[class^=col-] {
    float: none;
    display: inline-block;
    vertical-align: top;
}*/

#cafeKonaPage h1 a{
    text-decoration: none;
    color: rgb(255, 214, 21);
}

#cafeKonaPage #buyCoffeeNow{
    color:white;
    text-decoration: underline;
}

#cafeKonaPage #buyCoffeeNow:hover{
    color:rgba(206, 173, 19);
}

#cafeKonaPage h1 a:hover{
    color:rgb(206, 173, 19);
}

#cafeKonaPage .row{
    padding-top:35px;
}

    #cafeKonaPage h1 {
        margin-top: 10px;
    }

    .ornamentSide {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .ornamentKona {
        background-image: url(../images/Ornaments_Kona.png);
    }

    .ornamentAbout {
        background-image: url(../images/ornaments.png);
        padding-left: 10px;
        padding-right: 10px;
    }

    .ornamentEco {
        background-image: url(http://alohaespressobar.com/images/ornaments_eco.png);
    }


    .descriptionParagraph {
        padding: 10px;
    }

    @media(max-width:544px) {
        .descriptionParagraph {
            padding: 0px;
        }
    }

    .flowersOrnamentTop {
        z-index: 3;
        width: 100%;
        max-width: 100%;
        position: relative;
        top: 0px;
        margin: 0;
        padding: 0;
    }

    #konaPhoto {
        background-image: linear-gradient(rgba(0, 0, 0, 0.3),rgba(0,0,0,0.3)),url(../images/Kona_Coffee.JPG);
    }

    #konaPhoto, #cateringAcai {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 70%;
        background-attachment: fixed;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    #buyKonaCoffee {
        background-image: url(http://alohaespressobar.com/images/panneau.png);
        background-size: contain;
        height: 30%;
        background-repeat: no-repeat;
        background-position: center;
    }

    @media(max-width:544px) {
        #konaPhoto {
            height: 50%;
        }
    }

    @media(max-width:768px) {
        #konaPhoto {
            height: 70%;
        }
    }


    /*Catering*/

    #cateringPage .backgroundHaut {
        background-image: url(http://alohaespressobar.com/images/page_catering.png);
        background-position: center;
        background-size: cover;
    }

    
    #cateringPage #cateringAcai {
        height: 80%;
        background-image: url(../images/catering_acais.jpg);
        background-position: center;
    }

    /* #infoCatering {
        margin-top: 70px;
        margin-bottom: 30px;
    } */

    .textCatering {
        margin-bottom: 35px;
    }

    #contactCatering {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 20px;
        height: auto;
    }

        #contactCatering p {
            text-align: center;
            text-transform: uppercase;
            font-size: 2rem;
        }

    @media(min-width:768px) {
        #contactCatering p {
            font-size: 2.5rem;
        }
    }

    @media(min-wdith:1200px) {
        #contactCatering p {
            font-size: 3.5rem;
        }
    }


    form {
        display: inline-block;
        width: 100%;
    }

        form table, form tr {
            width: 100%;
        }

    input[type=text], select, textarea {
        width: 100%;
        margin: 8px 0;
        display: inline-block;
        color: black;
    }

    textarea {
        min-height: 250px !important;
    }

    input[type=submit] {
        width: 100%;
        background-color: rgb(255, 214, 21);
        color: black;
        padding: 14px 20px;
        margin: 8px 0;
        border: none;
        cursor: pointer;
    }

        input[type=submit]:hover {
            background-color: rgb(206, 173, 19);
        }

    /*Footer*/
    footer {
        margin: 20px;
        max-height: 50%;
        position: relative;
        color: white;
        text-align: center;
        vertical-align: central;
        align-content: center;
        align-items: center;
    }

    footer h1 {
        font-size: 18px;
        margin: 0px;
        padding: 0px;
        color: white !important;
    }

    footer p, footer svg {
        font-size: 12px;
        color: white;
        text-align: center;
    }

    footer img {
        height: 15vh;
        max-height: 15vh;
        margin: 10px;
        padding-bottom: 20px;
    }

    .shop-page footer p{
        color: black;
    }