  /**************************/
 /********** MISC **********/
/**************************/

.hidden{
    display: none !important;
}

@font-face {
      font-family: 'fontello';
      src: url('../font/fontello.eot?33202080');
      src: url('../font/fontello.eot?33202080#iefix') format('embedded-opentype'),
           url('../font/fontello.woff?33202080') format('woff'),
           url('../font/fontello.ttf?33202080') format('truetype'),
           url('../font/fontello.svg?33202080#fontello') format('svg');
      font-weight: normal;
      font-style: normal;
    }

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

pre.debug{
    background-color:black;
    color: white;
    padding:10px;
    overflow:hidden;
    text-align:left;
    font-size:14px;
    line-height: 1.25;
    font-family: 'Courier';
}

body{
    background-color: #face87;
    background-image: url(../images/pattern.png);
    background-size: 60px 60px;
    background-position: center;
    min-height: 100vh;
    position: relative;
}

body:before,
body:after{
    content: '';
    display: block;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

body:before{
    left: 0;
    top: 0;
    background-image: url(../images/rainbow-left.png);
    width: 520px;
    height: 494px;
    z-index: 1;
}

body:after{
    right: 0;
    bottom: 0;
    background-image: url(../images/rainbow-right.png);
    width: 701px;
    height: 665px;
    z-index: 1;
}

main,
header,
footer{
    max-width: 1600px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
    position: relative;
}

main{
    z-index: 3;
}

header{
    z-index: 4;
}

footer{
    z-index: 5;
}

@media only screen and (max-width: 975px) {
    body{
        padding: 100px 0 0 !important;
    }

    body:before{
        display: none;
    }

    body:after{
        width: 320px;
        height: 344px;
        background-image: url(../images/rainbow-right-mobile.png);
    }
}

@media only screen and (max-width:470px) {
    main.homepage-main{
        padding: 0 !important;
    }
}

  /**************************/
 /********* Buttons ********/
/**************************/

.button{
    color: #333;
    background-color: #fff;
    border: none;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    padding: 15px 15px;
    font-family: museo-sans-rounded, sans-serif;
    font-weight: 800;
    font-style: normal;
    display: inline-block;
    width: auto;
    cursor: hand;
    cursor: pointer;
    border-radius: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-transform: uppercase;
}

.button:hover{
    color: #fff;
    text-decoration: none;
    background-color: #333;
}

.button-1{
    color: #fff;
    background-color: #13a89e;
}

  /**************************/
 /********* Header *********/
/**************************/

header a.logo,
.mobile-logo {
    background-image: url(../images/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 367px;
    height: 346px;
    vertical-align: top;
    font-size:0;
    color: transparent;
}

header a.logo {
    display: inline-block;
}

.mobile-logo{
    display: none;
    width: 233px;
    height: 233px;
    float: left;
    margin-top: 5px;
    margin-left: 5px;
}

.userbar {
    padding: 8px 0 0;
    text-align: right;
}

.userbar a {
    color: #13a89e;
    margin-left: 30px;
    display: inline-block;
    text-decoration: none;
    font-family: museo-sans-rounded, sans-serif;
    font-weight: 800;
    font-style: normal;
    vertical-align: bottom;
    font-size: 24px;
}

.userbar a:hover{
    text-decoration: none;
}

.userbar a.gift-cards{
    float: left;
    margin-left: 0;
}

.userbar a.apply{
    float: left;
}

.userbar a.social{
    font-size: 0;
    color: transparent;
}


.userbar a.social:after{
    font-family: 'fontello';
    font-size: 30px;
    color: #13a89e;
    font-weight: 400;
}

.userbar a.facebook:after{
    content: '\f30c';
}

.userbar a.instagram:after{
    content: '\f16d';
}

.userbar a.yelp:after{
    content: '\f1e9';
}

@media only screen and (min-width: 975px) {
    .userbar {
        position: relative;
        z-index: 2;
    }

    .header-wrapper {
        position: relative;
        z-index: 1;
        top: -20px;
        margin-bottom: -20px;
    }
}

@media only screen and (max-width: 975px) {
    .userbar{
        display: none;
    }

    header a.logo{
        display: none;
    }

    .mobile-logo{
        display: block;
    }
}

  /**************************/
 /******* Main Nav *********/
/**************************/
.user-mobile{
    display: none;
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
}

#nav,
#nav ul {
    display: none
}

#nav li {
    padding-bottom: 0
}

#nav>li.hover>ul {
    display: block
}

.hover #nav {
    display: block
}

nav.main-nav #mobile-nav {
    display: none;
    height: 100px;
}

#nav-toggle {
    display: block;
    cursor: hand;
    font-size: 38px;
    color: #543211;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
}

#nav-toggle:before {
    font-family: 'fontello';
    content: "\e800";
    display: block;
    float: left;
    padding: 9px 10px;
    transform: scaleX(1.25);
    margin-right: 5px;
}

nav.main-nav.hover #nav-toggle:before {
    content: "\e801";
    font-size: 60px;
    position: relative;
    top: -15px;
}

#nav,
ul#nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

@media only screen and (min-width: 975px) {
    nav.main-nav {
        position: relative;
        z-index: 1000;
        display: block;
        width: 100%;
        vertical-align: bottom;
    }

    #nav {
        display: block;
        text-align: center;
    }

    #nav ul {
        position: absolute;
    }

    #nav>li {
        position: relative;
        display: inline-block;
        text-align: center;
        vertical-align: bottom;
    }

    nav.main-nav #nav>li>ul {
        width: 250px;
        text-align: left;
    }

    #nav>li.hover>ul {
        display: none;
    }

    #nav>li>ul>li {
        display: flex;
    }

    #nav>li>ul>li a {
        width: 100%;
    }

    #nav>li>ul>li.hover>ul {
        display: none;
    }

    #nav>li>ul>li.hover:hover>ul {
        display: block;
    } 

    #nav>li>ul>li:hover>ul {
        display: block;
        left: 100%;
        width: 250px;
        margin-bottom: -100%;
    }
}

@media only screen and (max-width: 975px) {
    .user-mobile{
        display: block;
    }

    nav.main-nav {
        top: -100px;
        left: 0;
        position: absolute;
        z-index: 120;
        width: 100%;
        z-index: 120;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -o-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
    }

    nav.main-nav,
    ul#nav {
        float: none
    }

    #nav>li.hover>ul {
        width: 100%
    }

    #nav>li {
        float: left;
        width: 100%
    }

    nav.main-nav #nav>li>ul>li.hover>ul>li>a {
        padding-left: 15px
    }

    nav.main-nav #mobile-nav {
        display: block;
        position: relative;
        z-index: 101
    }

    nav.main-nav>ul#nav {
        display: block;
        position: absolute;
        width: 100%;
        top: -300px;
        -webkit-transition: all .2s ease;
        z-index: 100;
        opacity: 0;
        -moz-transition: all .2s ease;
        -o-transition: all .2s ease;
        -ms-transition: all .2s ease;
        transition: all .2s ease
    }

    nav.main-nav.hover>ul#nav>li>a {
        overflow: hidden
    }

    nav.main-nav.hover>ul#nav {
        top: 56px;
        opacity: 1;
        z-index: 2;
    }

    nav.main-nav.hover>#mobile-nav {
        -webkit-transition: all .2s ease;
        -moz-transition: all .2s ease;
        -o-transition: all .2s ease;
        -ms-transition: all .2s ease;
        transition: all .2s ease;
        position: relative;
        z-index: 1;
    }
}

@media only screen and (max-width: 975px) {
    #nav li a {
        border-left: none;
        padding: 13px 20px;
        padding-left: 30px;
        background-color: #13a89e;
        color: #fff;
        display: block;
        font-size: 16px;
        line-height: 16px;
        text-decoration: none;
        margin: 0;
    }

    #nav>li>a{
        font-family: museo-sans-rounded, sans-serif;
        font-weight: 800;
        font-style: normal;
        text-transform: uppercase;
        padding-left: 15px;
    }

    #nav li.has-children>a:after {
        color: #fff;
        position: relative;
        left: 4px;
        top: 7px;
        content: "expand_more";
        display: inline-block;
        float: right;
        text-decoration: none;
        text-transform: none;
        letter-spacing: normal;
        word-wrap: normal;
        white-space: nowrap;
        direction: ltr;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
        -moz-osx-font-smoothing: grayscale;
        font-feature-settings: 'liga';
        font: 24px/1px 'Material Icons'
    }

    #nav>li>ul>li.hover>ul {
        display: block;
        float: none
    }

    #nav>li.logo-wrapper{
        display: none;
    }
}

@media only screen and (min-width: 975px) {
    #nav li a {
        padding: 13px 20px;
        font-size: 16px;
        line-height: 16px;
        color: #fff;
        display: inline-block;
        font-size: 16px;
        line-height: 16px;
        font-family: museo-sans-rounded, sans-serif;
        font-weight: 800;
        font-style: normal;
        text-decoration: none;
    }

    #nav>li>a{
        padding: 17px 20px;
        color: #603813;
        text-shadow: 0 0 5px rgba(243,216,173,1);
        font-size: 24px; 
        text-transform: uppercase;
    }

    #nav>li.logo-wrapper{
        margin-bottom: -200px;
        z-index: 1;
    }

    #nav>li:not(.logo-wrapper){
        z-index: 2;
    }

    #nav>li.logo-wrapper>a,
    #nav>li.logo-wrapper>a:hover{
        font-size: 0;
        color: transparent;
        background-color: transparent;
    }

    #nav>li:not(.logo-wrapper):hover>a,
    #nav>li:not(.logo-wrapper).hover>a,
    #nav>li:not(.logo-wrapper)>a.on {
        background-color: #13a89e;
        color: #fff;
        text-decoration: none;
        border-radius: 20px;
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
        -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
        text-shadow: none;
    }

    #nav>li.has-children:not(.logo-wrapper):hover>a,
    #nav>li:not(.logo-wrapper).has-children.hover>a {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    #nav>li:not(.logo-wrapper){
        width: calc((100% - 367px)/4);
    }

    #nav>li>ul>li>a {
        background-color: #13a89e;
        color: #fff;
        font-family: museo-sans, sans-serif;
        font-weight: 700;
        font-style: normal;
    }

    #nav>li>ul>li.has-children>a:after {
        color: #555;
        position: relative;
        left: 10px;
        top: 7px;
        content: "chevron_right";
        float: right;
        display: inline-block;
        text-decoration: none;
        text-transform: none;
        letter-spacing: normal;
        word-wrap: normal;
        white-space: nowrap;
        direction: ltr;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
        -moz-osx-font-smoothing: grayscale;
        font-feature-settings: 'liga';
        font: 24px/1px 'Material Icons'
    }

    #nav>li>ul>li:hover>ul>li>a,
    #nav>li>ul>li.hover>ul>li>a {
        background-color: #eee;
        color: #555;
        border-bottom: 1px dotted #111;
    }
}


@media only screen and (min-width: 975px) {
    .enable-hover #nav>li:hover>ul {
        display: block
    }

    .enable-hover #nav>li:hover>ul,
    #nav>li.hover>ul {
        left: 50%;
        top: auto;
        transform: translateX(-50%);
    }

    .enable-hover #nav>li:hover>ul>li:first-of-type>a,
    #nav>li.hover>ul>li:first-of-type>a {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .enable-hover #nav>li:hover>ul>li:last-of-type>a,
    #nav>li.hover>ul>li:last-of-type>a {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .enable-hover #nav>li:nth-child(1):hover>ul,
    .enable-hover #nav>li:nth-child(2):hover>ul,
    .enable-hover #nav>li:nth-child(4):hover>ul,
    .enable-hover #nav>li:nth-child(5):hover>ul{
        transform: none;
        left: auto;
    }

    .enable-hover #nav>li:nth-child(1):hover>ul{
        left: calc((100% - 109.34px)/2);
    }

    .enable-hover #nav>li:nth-child(2):hover>ul{
        left: calc((100% - 128.93px)/2);
    }

    .enable-hover #nav>li:nth-child(4):hover>ul{
        right: calc((100% - 122.64px)/2);
    }

    .enable-hover #nav>li:nth-child(5):hover>ul{
        right: calc((100% - 154.28px)/2);
    }

    .enable-hover #nav>li:nth-child(1):hover>ul>li:nth-child(1)>a,
    #nav>li.hover:nth-child(1)>ul>li:nth-child(1)>a,
    .enable-hover #nav>li:nth-child(2):hover>ul>li:nth-child(1)>a,
    #nav>li.hover:nth-child(2)>ul>li:nth-child(1)>a {
        border-top-left-radius: 0;    
    }

    .enable-hover #nav>li:nth-child(4):hover>ul>li:nth-child(1)>a,
    #nav>li.hover:nth-child(4)>ul>li:nth-child(1)>a,
    .enable-hover #nav>li:nth-child(5):hover>ul>li:nth-child(1)>a,
    #nav>li.hover:nth-child(5)>ul>li:nth-child(1)>a {
        border-top-right-radius: 0;    
    }

    #nav>li.hide-desktop{
        display: none;
    }
}

  /**************************/
 /******* Content **********/
/**************************/

h1.page-title{
    text-align: center;
    font-size: 48px;
    position: relative;
    z-index: 2;
}

h1.page-title:after{
    content: '';
    width: 115px;
    height: 8px;
    border-radius: 20px;
    background-color: #13a89e;
    display: block;
    margin: 15px auto 50px;
}

.content-wrapper {
    border-bottom: none;
    margin: 20px auto 0;
    margin-right: auto;
    background-color: rgba(255,255,255,.45);
    border-radius: 20px;
    border: 6px solid #fff;
    -webkit-box-shadow: 0 0 15px 0 rgb(0 0 0 / 40%);
    -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .4);
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 40%);
    padding: 180px 15px 50px;
    overflow: hidden;
}

.content-wrapper .fries,
.content-wrapper .spoon,
.content-wrapper .burger{
    position: absolute;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content-wrapper .fries{
    background-image: url(../images/fries.png);
    width: 481px;
    height: 276px;
    bottom: 50px;
    left: 50px;
}

.content-wrapper .spoon{
    background-image: url(../images/spoon.png);
    width: 369px;
    height: 162px;
    top: 193px;
    left: 50%;
}

.content-wrapper .burger{
    background-image: url(../images/burger.png);
    width: 427px;
    height: 333px;
    top: 50%;
    right: 50px;
}

#container{
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    z-index: 2;
}

#container #content {
    width: calc(100% - 350px);
    float: right;
    min-height: 415px;
}

#container #content.no-subnav {
    width: 100%;
}

@media only screen and (max-width: 975px) {
    .content-wrapper {
        padding: 115px 15px 20px;
    }

    #container #content {
        min-height: 50px;
        width: 100%;
    }

    .content-wrapper {
        margin: 0 auto;
    }

    .content-wrapper .fries,
    .content-wrapper .spoon,
    .content-wrapper .burger{
        display: none;
    }

    h1.page-title{
        font-size: 35px;
    }

    h1.page-title:after{
        margin-bottom: 30px;
    }
}


  /**************************/
 /******* Side Nav *********/
/**************************/

#subnav {
    width: 300px;
    padding: 0;
    list-style-type: none;
    float: right;
    margin-right: 50px;
}

#subnav li{
    margin: 0;
    padding: 0;
    display: block;
}

#subnav>li>a {
    font-size: 20px;
    line-height: 1;
    display: inline-block;
    padding: 0 0 30px;
    text-decoration: none;
    color: #603813;
    position: relative;
    text-transform: uppercase;
}

#subnav>li>a.on{
    text-decoration: none;
    font-family: museo-sans-rounded, sans-serif;
    font-weight: 800;
    font-style: normal;
}

#subnav>li>a:hover {
    text-decoration: none;
}

#subnav>li>a.on:after,
#subnav>li>a:hover:after{
    content: '';
    width: 100%;
    height: 8px;
    border-radius: 20px;
    background-color: #fcb040;
    display: block;
    position: absolute;
    bottom: 15px;
}

#subnav>li>ul>li>a {
    line-height: 16px;
    border-bottom: 1px dotted green;
    font-size: 14px;
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #999;
}

#subnav>li>ul>li>a.on {
    text-decoration: underline;
    color: #000;
}

#subnav>li>ul>li>a:hover {
    color: #000;
}

ul#subnav li ul {
    list-style: none;
    float: none;
    clear: none;
    padding-left: 0;
    padding-top: 0;
    margin: 0
}


@media only screen and (max-width: 975px) {
    ul#subnav {
        width: 100%;
        clear: right;
        margin: 20px 0 0;
    }
}

  /**************************/
 /******** Footer **********/
/**************************/
footer{
    text-align: center;
}

footer .hours{
     padding: 50px 15px 0;
    
    font-size: 32px;
    font-family: museo-sans-rounded, sans-serif;
    font-weight: 800;
    font-style: normal;
    text-shadow: 0 0 5px rgb(243 216 173);
}

footer .hours:after{
    content: '';
    width: 245px;
    height: 8px;
    border-radius: 20px;
    background-color: #fcb040;
    display: block;
    margin: 15px auto;
}

footer .hours > span{
    color: #13a89e;
}

footer .address-phone{
    padding: 0 15px;
    font-size: 24px;
    line-height: 1.25;
    text-shadow: 0 0 5px rgb(243 216 173);
}

footer .address-phone>a,
footer .address-phone>a:hover{
    font-family: museo-sans-rounded, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 28px;
    color: #603813;
    text-decoration: none;
}

@media only screen and (max-width: 975px) {
    footer .hours{
        padding: 50px 0 0;
    }

    footer .address-phone{
        padding: 0;
    }
}


  /**************************/
 /******* Scrollable *******/
/**************************/

.scroller-wrapper {
    padding: 0 50px;
}
.scrollable {
    overflow-y: scroll;
}

.scrollable::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.scrollable::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

.scrollable::-webkit-scrollbar-thumb {
    background: #ccc;
    border: 0px none #ccc;
    border-radius: 4px;
}

.scrollable::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.scrollable::-webkit-scrollbar-thumb:active {
    background: #ccc;
}

.scrollable::-webkit-scrollbar-track {
    background: #aaa;
    border: 0px none #ccc;
    border-radius: 3px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.scrollable::-webkit-scrollbar-track:hover {
    background: #aaa;
}

.scrollable::-webkit-scrollbar-track:active {
    background: #aaa;
}

.scrollable::-webkit-scrollbar-corner {
    background: transparent;
}


@media only screen and (max-width: 975px) {    
    .scroller-wrapper {
        padding: 0; 
    }
}

  /**************************/
 /********** Hero **********/
/**************************/

.hero-wrapper {
    margin: 20px auto 0;
    padding: 0;
    max-width: 1600px;
    position: relative;
    z-index: 1;
}

#hero {
    background-color: #603813;
    border: 6px solid #fff;
    border-radius: 20px;
    position: relative;
    clear: both;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    z-index: 0;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .4);
    -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .4);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .4);

}

#hero:after{
    content: '';
    display: block;
    padding-bottom: 55%;
    min-height: 715px;
}

#hero .slide{
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}


#hero .slide-textbox {
    width: 100%;
    padding: 0 15px;
    position: absolute;
    z-index: 1001;
    top: 250px;
    left: 0px;
    text-shadow: 0 0 8px rgba(0,0,0,.25);
    text-align: center;
}

#hero .slide-text,
#hero .slide-heading {
    color: #fff;
    font-family: museo-sans, sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}

#hero .slide-heading {
    font-size: 96px;
}

#hero .slide-text {
    font-size: 64px;
}

#hero .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-90deg, rgba(0,0,0,1) -20%, rgba(0,0,0,0) 50%);
    background: -webkit-linear-gradient(-90deg, rgba(0,0,0,1) -20%, rgba(0,0,0,0) 50%);
    z-index: 1;
}

#hero-controls {
    display: none;
}

@media only screen and (max-width: 1200px) {
    #hero .slide-textbox{
        top: 170px;
    }
}

@media only screen and (max-width: 975px) {
    #hero .slide-textbox{
        top: 95px;
    }

    #hero .slide-heading {
        font-size: 70px;
    }

    #hero .slide-text {
        font-size: 46px;
    }

    #hero:after{
        padding-bottom: 75%;
        min-height: 560px;
    }
}

@media only screen and (max-width: 480px) {
    #hero{
        height: calc(100vh - 121px);
        min-height: 615px;
        /*border-radius: 0;
        border-left: none;
        border-right: none;*/
    }

    #hero:after{
        padding-bottom: 0;
        min-height: auto;
    }

    #hero .slide-heading {
        font-size: 60px;
    }

    #hero .slide-text {
        font-size: 38px;
    }

    #hero .slide-textbox{
        top: 125px;
    }
}

@media only screen and (max-width: 470px) {
    #hero{
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

  /**************************/
 /******* Under Hero *******/
/**************************/

.under-hero-wrapper{
    display: -ms-flex;
    display: -webkit-flex;
    display:flex;
    flex-wrap:wrap;
    max-width: 1230px;
    margin: -75px auto 0;
    position: relative;
    z-index: 2;
    padding: 0 15px;
    justify-content: center;
}

.under-hero-wrapper>div{
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: calc((100% - 60px)/3);
    max-width: calc((100% - 60px)/3);
    text-align: center;
    padding: 30px 30px 0;
    background-color: #543211;
    border-radius: 20px;
    color: #fff;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .4);
    -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .4);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .4);
    background-repeat: no-repeat;
    margin-right: 30px;
}

.under-hero-wrapper>div:nth-child(1){
    background-image: url(../images/homepage-burger.png);
    background-size: 269px 210px;
    background-position: center;
}

.under-hero-wrapper>div:nth-child(2){
    background-color: #13a89e;
    background-image: url(../images/homepage-beer.png);
    background-size: 213px 297px;
    background-position: center;
}

.under-hero-wrapper>div:nth-child(3){
    background-image: url(../images/homepage-guitar.png);
    background-size: 298px 284px;
    background-position: center;
    margin-right: 0;
}

.under-hero-wrapper>div a{
    color: #fff;
}

.under-hero-wrapper>div p{
    font-size: 18px;
}

.under-hero-wrapper>div h2{
    font-size: 46px;
    font-family: museo-sans, sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}

.under-hero-wrapper>div h2:after{
    content: '';
    width: 112px;
    height: 8px;
    border-radius: 20px;
    background-color: #13a89e;
    display: block;
    margin: 15px auto;
}

.under-hero-wrapper>div:nth-child(2) h2{
    text-transform: uppercase;
    font-size: 64px;
}

.under-hero-wrapper>div:nth-child(2) h2:after{
    background-color: #fcb040;
}

.under-hero-wrapper>div:nth-child(2) p{
    line-height: 1;
}

@media only screen and (max-width: 1100px) {
    .under-hero-wrapper>div{
        flex-basis: calc((100% - 30px)/2);
        max-width: calc((100% - 30px)/2);
    }

    .under-hero-wrapper>div:nth-child(3){
        margin-top: 30px;
    }
    .under-hero-wrapper>div:nth-child(2){
        margin-right: 0;
    }
}

@media only screen and (max-width: 975px) {
    .under-hero-wrapper>div {
        flex-basis: calc((100% - 15px)/2);
        max-width: calc((100% - 15px)/2);
        margin-right: 15px;
        padding: 15px;
    }

    .under-hero-wrapper>div:nth-child(3){
        margin-top: 15px;
    }
}

@media only screen and (max-width: 730px) {
    .under-hero-wrapper{
        margin: 0 auto;
        padding: 0;
    }

    .under-hero-wrapper>div {
        flex-basis: 100%;
        max-width: 100%;
        margin-right: 0;
        padding: 30px 15px 0;
        margin-top: 15px;
    }
}

@media only screen and (max-width: 470px) {
    .under-hero-wrapper{
        padding: 0 15px;
    }
}

  /**************************/
 /******* FORM STYLES ******/
/**************************/

form input:not([type=radio]):not([type=checkbox]),
form textarea,
form select{
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
    margin-top: 5px;
    border-radius: 2px;
    border: none;
    background-color: #fff;
}

form input:focus,
form textarea:focus,
form select:focus{
    outline: none;
}

form textarea{
    min-height: 90px;
    min-width: 100%;
    max-width: 100%;
}

form select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 35px;
    background-image: url(../images/select_input_arrow.png);
    background-size: 32px 35px;
    background-position: right center;
    background-repeat: no-repeat;
}

form > div{
    padding: 0 0 30px;
}

form .mock-label,
form label{
    display: block;
    font-size: 18px;
    font-family: museo-sans-rounded, sans-serif;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
}

form .required{
    display: inline-block;
    color: red;
}

form label.for-check-or-radio{
    display: inline-block;
    width: auto;
    margin-right: 15px;
    margin-top: 10px;
}

form label.for-check-or-radio input{
    display: inline-block;
    width: auto;
    margin-right: 5px;
}

form .col-2,
form .col-3{
    display: inline-block;
    vertical-align: top;
}

form .col-3{
    width: calc(100% / 3 - 5px);
}

form .col-3.left{
    margin-right: 5px;
}

form .col-3.right{
    margin-left: 5px;
}

form .col-3.middle{
    margin-right: 2.5px;
    margin-left: 2.5px;
}

form .col-2{
    width: calc(100% / 2 - 3.75px);
}

form .col-2.left{
    margin-right: 3.75px;
}

form .col-2.right{
    margin-left: 3.75px;
}


@media only screen and (max-width: 975px) {
    form .col-3.left,
    form .col-3.right,
    form .col-3.middle,
    form .col-2.left,
    form .col-2.right{
        margin-left: 0;
        width: 100%;
        margin-right: 0;
        width: 100%;
    }
}

.social-list{
    margin: 0;
    padding: 0 0 20px;
}

.social-list li {
    display: inline-block;
    vertical-align: middle;
    padding: 10px;
}
.social-list li a {
    display: block;
    width: 34px;
    height: 34px;
    background-color: #603813;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    font-size: 0;
    -webkit-box-shadow: 0 0 10px 0 rgba(255, 255, 255, .4);
    -moz-box-shadow: 0 0 10px 0 rgba(255, 255, 255, .4);
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, .4);
}

.social-list li a.facebook {
    background-image: url(../images/icon-facebook.svg);
    background-size: 9px 16px;
}
.social-list li a.instagram {
    background-image: url(../images/icon-instagram.svg);
    background-size: 16px 17px;
}

.social-list li a.yelp:after{
    content: '\f1e9';
    font-family: 'fontello';
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    position: relative;
    top: 3px;
}

.social-list li a:hover {
    background-color: #f7941d;
}

@media only screen and (max-width: 735px) {
    .social-list{
        margin: 0;
        padding: 0 0 175px;
    }

}

.text-block-wrapper.content-wrapper{
    margin-top: -75px;
    padding-top: 125px;
    padding-bottom: 20px;
}

.text-block-wrapper.content-wrapper #container #content{
    min-height: auto;
}

  /**************************/
 /********* Stars **********/
/**************************/


.gmb-rating{
    font-size: 30px;
    background-color: #fff;
    padding: 30px;
    max-width: 225px;
    margin: 30px auto 0;
    border: 6px solid #fcb040;
    border-radius: 20px;
}

.gmb-rating .hidden-text{
    display: block;
    width: 0;
    height: 0;
    text-indent: -99999px;
    text-align: left;
}

.gmb-rating a:hover{
    text-decoration: none;
}

.gmb-rating .stars-container{
    margin-bottom: 5px;
    text-shadow: none;
}

footer .gmb-rating{
    margin: 10px auto;
    padding: 15px;
    font-size: 20px;
    max-width: 165px;
}

footer .stars-container .star{
    font-size: 20px;
}

.stars-container .star{
    display: inline-block;
    margin-right: 0;
    color: #f3d9ae;
    overflow: hidden;
    vertical-align: top;
    position: relative;
    font-size: 30px;
}

.stars-container .star:before{
    font-family: 'material icons';
    content: 'star';
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
}

.stars-container .star.on{
    color: #fcb040;
}

.stars-container .star.one{
    background: -o-linear-gradient(left, #fcb040 10%,#f3d9ae 10%);
    background: linear-gradient(left, #fcb040 10%,#f3d9ae 10%);
    background: -webkit-linear-gradient(left, #fcb040 10%,#f3d9ae 10%);
}
.stars-container .star.two{
    background: -webkit-linear-gradient(left, #fcb040 20%,#f3d9ae 20%);
    background: linear-gradient(left, #fcb040 20%,#f3d9ae 20%);
}

.stars-container .star.three{
    background: -webkit-linear-gradient(left, #fcb040 30%,#f3d9ae 30%);
    background: linear-gradient(left, #fcb040 30%,#f3d9ae 30%);
}

.stars-container .star.four{
    background: -webkit-linear-gradient(left, #fcb040 40%,#f3d9ae 40%);
    background: linear-gradient(left, #fcb040 40%,#f3d9ae 40%);
}

.stars-container .star.five{
    background: -webkit-linear-gradient(left, #fcb040 50%,#f3d9ae 50%);
    background: linear-gradient(left, #fcb040 50%,#f3d9ae 50%);
}

.stars-container .star.six{
    background: -webkit-linear-gradient(left, #fcb040 60%,#f3d9ae 60%);
    background: linear-gradient(left, #fcb040 60%,#f3d9ae 60%);
}

.stars-container .star.seven{
    background: -webkit-linear-gradient(left, #fcb040 70%,#f3d9ae 70%);
    background: linear-gradient(left, #fcb040 70%,#f3d9ae 70%);
}

.stars-container .star.eight{
    background: -webkit-linear-gradient(left, #fcb040 80%,#f3d9ae 80%);
    background: linear-gradient(left, #fcb040 80%,#f3d9ae 80%);
}

.stars-container .star.nine{
    background: -webkit-linear-gradient(left, #fcb040 90%,#f3d9ae 90%);
    background: linear-gradient(left, #fcb040 90%,#f3d9ae 90%);
}

        
.stars-container .star.one,.stars-container .star.two,.stars-container .star.three,.stars-container .star.four,.stars-container .star.five,
.stars-container .star.six,.stars-container .star.seven,.stars-container .star.eight,.stars-container .star.nine{
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;   
    text-fill-color: transparent;   
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){
     .stars-container .star&:before{
         display: inline-block;
     }
     
     .stars-container .star.one,.stars-container .star.two,.stars-container .star.three{
         color: #f3d9ae
     }

    .stars-container .star.four:before,.stars-container .star.five:before,.stars-container .star.six:before{
         color: red;
         width: 12.5px;
         overflow: hidden;
         display: inline-block;
    }

    .stars-container .star.four:after,.stars-container .star.five:after,.stars-container .star.six:after{
        display: inline-block;
        font-family: 'material icons';
        content: 'star';
        font-size: 25px;
        width: 12.5px;
        overflow: hidden;
        vertical-align: top;
        transform: scaleX(-1);
        position: relative;
     }

     .stars-container .star.seven,.stars-container .star.eight,.stars-container .star.nine{
         color: red;
     }

     .stars-container .star.one,.stars-container .star.two,.stars-container .star.three,.stars-container .star.four,.stars-container .star.five,
     .stars-container .star.six,.stars-container .star.seven,.stars-container .star.eight,.stars-container .star.nine{
         -webkit-background-clip: inherit;
         background-clip: inherit;
         -webkit-text-fill-color: inherit;
         text-fill-color: inherit;
     }
}