/* --------------------------------------------- */
/* STARTER SETUPS
/* --------------------------------------------- */

* {
    /* Starter setups */
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* /Starter setups*/
    /* Font Render Optimize */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    /* Starter setups */
    background-color: #fff;
    color: #333333;
    font-family: 'Lato', 'Arial', sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    /* /Starter setups */
    overflow-x: hidden;
}

body {
    background-color: #0a0a0a;
}

/* --------------------------------------------- */
/* REUSABLE COMPONENTS
/* --------------------------------------------- */

.row {
    max-width: 1140px;
    margin: 0 auto;
}

.center-div {
    display: inline-block;
}

.yellow-line {
    height: 10px;
    width: 5%;
    margin: 0 auto;
    background-color: #f39c12;
}

.skew-it {
    -webkit-transform: skewY(-2deg);
    transform: skewY(-2deg);
}

.normalize-it {
    -webkit-transform: skewY(2deg);
    transform: skewY(2deg);
}

.text-center {
    text-align: center;
}


/* ----------- HEADINGS ----------- */

h1 {
    margin-top: 0px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 330%;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 4px;
}

p {
    line-height: 130%;
}


/* ----------- BUTTONS ----------- */

.btn:link,
.btn:visited {
    display: inline-block;
    padding: 13px 30px;
    margin: 0 5px;
    font-weight: 300;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.btn-full:link,
.btn-full:visited {
    background-color: #e58514;
    border: 2px solid #e58514;
    color: white;
    font-weight: 400;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 2px solid #e58514;
    color: #e58514;
    font-weight: 400;
}

.btn-full:hover,
.btn-full:active {
    background-color: #f39c12;
    border: 2px solid #f39c12;
    color: #392200;
    font-weight: 700;
    padding-right: 50px;
    padding-left: 50px;
}

.btn-ghost:hover,
.btn-ghost:active {
    color: #f39c12;
    border: 2px solid #f39c12;
    padding-right: 10px;
    padding-left: 10px;
}


/* --------------------------------------------- */
/* HEADER
/* --------------------------------------------- */

header {
    /* Make bg darker over image */
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.53)), to(rgba(0, 0, 0, 0.48))), url(img/pexels.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.53), rgba(0, 0, 0, 0.48)), url(img/pexels.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
}

.hero-text-box {
    /* Center horizontally & vertically */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    text-align: center;
}

.hero-text-box h1 {
    font-weight: 400;
}

.hero-text-box h1 span {
    font-weight: 300;
}

.logo {
    height: 100px;
    margin: 0 20px;
}

header .row {
    text-align: center;
}

.main-nav {
    padding-top: 20px;
}

.main-nav a {
    display: inline-block;
}

.main-nav li {
    position: relative;
    display: inline-block;
    margin-left: 15px;
    margin-right: 15px;
    width: 150px;
    bottom: 45px;
    font-size: 18px;
    font-weight: 400;
}

.main-nav li a:link,
.main-nav li a:visited {
    position: relative;
    bottom: 0px;
    text-decoration: none;
    color: #ffdba9;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
    position: relative;
    bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 2px solid #f39c12;
    color: #ffeacc;
}


/* --------------------------------------------- */
/* SECTION BEST SELLER
/* --------------------------------------------- */

.section-about {
    height: auto;
    background-color: #f2f2f2;
    padding: 180px 0 150px 0;
    overflow: hi
}

.plant {
    position: absolute;
    right: 0;
    top: 0;
    width: 25%;
}

.plant2 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 25%;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.floating-div {
    background-color: black;
    -webkit-box-shadow: 0px 13px 50px 0px rgba(50, 50, 50, 0.58);
    box-shadow: 0px 13px 50px 0px rgba(50, 50, 50, 0.58);
    position: relative;
    bottom: 50px;
    background-color: #fff;
    width: 70%;
    margin: 0 auto;
    padding: 40px;
    padding-bottom: 60px;
    border-bottom: 20px solid #f39c12;
}

.floater {
    height: 480px;
}

.floating-div .row h2 {
    display: inline-block;
    position: relative;
    right: 70px;
    padding: 15px 40px;
    background-color: #f39c12;
    -webkit-transform: skewY(-2deg);
    transform: skewY(-2deg);
    color: #fff;
    text-align: center;
    margin-top: 20px;
    font-size: 32px;
    text-transform: uppercase;
}

.floating-div .row p {
    margin: 5px 0;
    padding: 30px 0 50px 0;
    text-align: center;
    width: 50%;
    margin: 0 auto;
}

.floating-div .row img {
    width: 33.33%;
    float: left;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}

.hexagon {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
    cursor: pointer;
    height: 440px;
    width: 30%;
    overflow: hidden;
    visibility: hidden;
    float: left;
    margin: 0 10px;
}

.hex {
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.hex2,
.hex3,
.hex4 {
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
    height: 100%;
    position: relative;
    visibility: visible;
    width: 100%;
}

.hexagon .hex .hex2,
.hexagon .hex .hex3,
.hexagon .hex .hex4 {
    background-position: center;
    background-repeat: no-repeat;
}

.hexagon .hex .hex2 {
    background-image: url(img/1.jpg);
}

.hexagon .hex .hex3 {
    background-image: url(img/5.jpg);
}

.hexagon .hex .hex4 {
    background-image: url(img/6.jpg);
}

.hex-container {
    position: relative;
    bottom: 105px;
    width: 70%;
    margin: 0 auto;
    display: table;
}


/* --------------------------------------------- */
/* SECTION FEATURES
/* --------------------------------------------- */

.section-features {
    background-color: #f39c12;
    padding: 250px 0 0 0;
    height: auto;
    overflow: hidden;
    clear: both;
}

.rolling-pin {
    position: absolute;
    -webkit-transform: scale(1.3) rotate(-40deg);
    transform: scale(1.3) rotate(-40deg);
    top: -350px;
    right: -150px;
}

.powder {
    position: absolute;
    -webkit-transform: scale(1.0) rotate(-40deg);
    transform: scale(1.0) rotate(-40deg);
    top: -350px;
    right: -150px;
    -webkit-filter: invert(100%);
    opacity: 0.45;
}

.section-features .row h2 {
    display: inline-block;
    position: relative;
    padding: 15px 40px;
    background-color: #ff6e14;
    color: #fff;
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    float: left;
    text-transform: uppercase;
}

.features-container {
    width: 80%;
    background-color: #fff;
    padding: 10px 30px 35px 30px;
    float: left;
    z-index: 2;
    display: block;
    position: relative;
    -webkit-box-shadow: 0px 30px 50px 0px rgba(50, 50, 50, 0.38);
    box-shadow: 0px 30px 50px 0px rgba(50, 50, 50, 0.38);
}

.features-content {
    display: inline-block;
    width: 33.33%;
    float: left;
    padding: 70px 20px 30px 20px;
}

.fresh {
    margin-right: 15px;
}

.features-content h3 {
    min-height: 50px;
    margin-bottom: 30px;
}

.features-container h2 {
    display: inline-block;
    position: absolute;
    padding: 15px 40px;
    background-color: #171717;
    -webkit-transform: skewY(-2deg);
    transform: skewY(-2deg);
    color: #fff;
    text-align: center;
    font-size: 32px;
}

.icon-big {
    font-size: 300%;
    font-weight: 400;
    color: #f39c12;
    display: block;
    text-align: left;
    margin-bottom: 20px;
}

.chef-container {
    width: 20%;
    display: block;
    position: relative;
    top: 12px;
    right: 58px;
    float: left;
    z-index: 2;
}

.chef-container img {
    width: 124.3%;
}

.features-bottom {
    display: block;
    position: relative;
    z-index: 1;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    width: 1000%;
    height: 100px;
    background-color: #42221d;
    float: left;
    bottom: 57px;
}


/* --------------------------------------------- */
/* HOW IT WORKS
/* --------------------------------------------- */

.section-steps {
    background-color: #42221d;
    position: relative;
    bottom: 70px;
    padding: 60px 0 100px 0;
    z-index: 2;
}

.cookies {
    position: absolute;
    width: 250px;
    height: auto;
    display: inline-block;
    right: -80px;
    top: -50px;
}

.section-steps .row h2 {
    color: #efbfb7;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.steps-left {
    width: 40%;
    float: left;
}

.steps-left img {
    display: block;
    width: 110%;
    right: 50px;
}

.steps-right {
    width: 50%;
    float: left;
    margin-left: 40px;
    padding: 80px 20px 20px 20px;
}

.works-step {
    margin-bottom: 50px;
}

.works-step div {
    color: #ffd7d1;
    background-color: #884237;
    border: 2px solid #c49d97;
    display: inline-block;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 8px;
    text-align: center;
    float: left;
    font-size: 120%;
    font-weight: 400;
    margin-right: 25px;
}

.works-step p {
    color: #c49d97;
    line-height: 30px;
    font-weight: 400;
}

.btn-app img {
    display: inline-block;
    height: 60px;
    width: auto;
    margin: 5px;
    cursor: pointer;
}

.btn-app {
    cursor: pointer;
    display: inline-block;
    float: left;
}


/* --------------------------------------------- */
/* PLANS
/* --------------------------------------------- */

.section-plans {
    bottom: 75px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(253, 210, 182)), to(rgb(255, 255, 255)));
    background: linear-gradient(rgb(253, 210, 182), rgb(255, 255, 255));
    display: table;
    width: 100%;
    padding-bottom: 450px;
}

.bite {
    position: absolute;
    width: 60px;
    z-index: 1;
}

.section-plans .row h2 {
    text-align: center;
    text-transform: uppercase;
    bottom: 50px;
    color: #5f3b32;
}

.plan-container {
    width: 80%;
    margin: 0 auto;
    display: table;
}

.plan-box {
    width: 30.33%;
    background-color: #c72828;
    float: left;
    margin: 0 1.5%;
    -webkit-box-shadow: 5px 10px 20px 0px rgba(0, 0, 0, 0.22);
    box-shadow: 5px 10px 20px 0px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    padding-bottom: 60px;
    cursor: pointer;
    top: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.plan-box:hover {
    top: -20px;
    -webkit-box-shadow: 5px 10px 35px 0px rgba(0, 0, 0, 0.52);
    box-shadow: 5px 10px 35px 0px rgba(0, 0, 0, 0.52);
}

.plan-box div h3 {
    margin: 20px 0;
    text-transform: uppercase;
    padding: 50px;
    background-color: #5f3b32;
    color: white;
    margin: 0;
    text-align: center;
    border-bottom: 10px solid #dddddd;
}

.plan-price {
    padding: 15px 15px;
    text-align: center;
    font-size: 200%;
    color: #fff;
}

.plan-price-meal {
    text-align: center;
}

.plan-box div ul {
    list-style-type: none;
    border-top: 1px solid rgba(255, 159, 159, 0.51);
    margin: 0 20px;
}

.plan-box div ul li {
    margin: 10px 0;
    padding: 0 15px;
    color: #ffc8c8;
}

.plan-box div ul li i {
    margin-right: 20px;
    font-size: 130%;
    font-weight: 400;
}

.plans-btn {
    width: 60%;
    float: right;
    position: absolute;
    right: 0;
    bottom: 0;
}


/* --------------------------------------------- */
/* CITIES
/* --------------------------------------------- */

.skew-section {
    bottom: 100px;
    height: 200px;
    background-color: #fff;
}

.airplane {
    position: absolute;
    width: 80%;
    right: 5%;
    top: -300px;
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
}

.cities-skew {
    height: 500px;
    width: 150%;
    position: absolute;
    top: 0;
    right: 0;
    left: -200px;
    -webkit-transform: rotate(13deg);
    transform: rotate(13deg);
    background-color: #6dc1ff;
}

.section-cities {
    bottom: 150px;
    background-color: #6dc1ff;
    display: table;
    width: 100%;
    padding-bottom: 180px;
}

.chocolate-drip {
    width: 100%;
    position: relative;
}

.section-cities .row h2 {
    text-transform: uppercase;
    bottom: 100px;
    padding-left: 20px;
    border-left: 5px solid #fff;
    color: #242424;
}

.cities-container {
    width: 80%;
    margin: 0 auto;
    display: table;
    position: relative;
    z-index: 1;
}

.cities-box {
    overflow: hidden;
    display: block;
    width: 24%;
    float: left;
    padding: 0 0 10px 0;
    background-color: #fff;
    margin: 0 0.5%;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.22);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.22);
}

.cities-box img {
    display: inline-block;
    width: 100%;
    height: auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cities-box img:hover {
    width: 110%;
}

.city-content {
    display: block;
    position: relative;
    background-color: #fff;
    margin: 0 10px;
}

.cities-box h3 {
    margin: 15px 10px;
    color: #1b5bc1;
}

.city-features {
    margin: 10px;
}

.city-features i {
    font-size: 19px;
    margin-right: 10px;
    color: #f39c12;
}

.city-features {
    font-size: 19px;
    color: #5d5d5d;
}

.city-features a:link,
.city-features a:visited {
    text-decoration: none;
    font-weight: 400;
    color: #0f0f0f;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.city-features a:hover,
.city-features a:active {
    color: #1b5bc1;
}

.water {
    position: absolute;
    width: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    bottom: 0;
    opacity: 0.3;
}


/* --------------------------------------------- */
/* TESTIMONIALS
/* --------------------------------------------- */

.section-testimonials {
    background: -webkit-gradient(linear, left top, left bottom, from(#ffe7c2), to(#ffd084));
    background: linear-gradient(#ffe7c2, #ffd084);
    bottom: 170px;
    padding: 70px 0 170px 0;
    display: table;
    width: 100%;
    text-align: center;
}

.section-testimonials .row {
    text-align: center;
}

.section-testimonials .row h2 {
    text-transform: uppercase;
    padding: 15px;
    display: inline-block;
    color: #a85d38;
    margin-bottom: 20px;
}

.customer-container {
    background-position: center;
    background-size: cover;
    display: table;
    z-index: 1;
    margin-bottom: 20px;
}

.customer-box {
    width: 30.33%;
    float: left;
    padding: 25px 15px 30px 15px;
    margin: 0 1.5%;
    max-height: 520px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 0;
}

.customer-box:hover {
    top: -5px;
    -webkit-box-shadow: 0px 17px 50px 0px rgba(50, 50, 50, 0.48);
    box-shadow: 0px 17px 50px 0px rgba(50, 50, 50, 0.48);
}

.customer-box img {
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

.customer-name {
    text-align: center;
    margin: 20px 0;
    text-transform: uppercase;
    color: #a85d38;
}

.customer-statement {
    line-height: 30px;
    text-align: center;
    padding: 20px 5px;
    font-style: italic;
    font-weight: 400;
    color: #a85d38;
}

.customer-statement:before {
    content: "\201C";
    font-size: 300%;
    display: block;
}

.coffee {
    position: absolute;
    width: 20%;
    right: 0;
    left: 40%;
    ;
    bottom: -120px;
}


/* --------------------------------------------- */
/* SECTION MEALS
/* --------------------------------------------- */

.section-meals {
    bottom: 175px;
    background-color: #fff;
    height: auto;
}

.section-meals h2 {
    font-size: 1000%;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    text-align: center;
    font-size: 1500%;
    text-align: center;
    text-transform: uppercase;
    color: rgba(255, 208, 132, 0.69);
    font-family: 'Righteous', sans-serif;
    font-weight: 700;
}

.collage--spotlight {
    height: 80vh;
}

.spotlight__item {
    position: absolute;
    overflow: hidden;
}

.spotlight__item:nth-of-type(1) {
    top: 0%;
    left: 0%;
    height: 66.66667%;
    width: 33.33333%;
}

.spotlight__item:nth-of-type(2) {
    top: 66.66667%;
    left: 0%;
    height: 33.33333%;
    width: 33.33333%;
}

.spotlight__item:nth-of-type(3) {
    top: 0%;
    left: 33.33333%;
    height: 33.33333%;
    width: 66.66667%;
}

.spotlight__item:nth-of-type(4) {
    top: 33.33333%;
    left: 33.33333%;
    height: 66.66667%;
    width: 33.33333%;
}

.spotlight__item:nth-of-type(5) {
    top: 33.33333%;
    left: 66.66667%;
    height: 33.33333%;
    width: 33.33333%;
}

.spotlight__item:nth-of-type(6) {
    top: 66.66667%;
    left: 66.66667%;
    height: 33.33333%;
    width: 33.33333%;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

*:before,
*:after {
    pointer-events: none;
}

.collage--spotlight {}

.spotlight__item {
    cursor: pointer;
}

.spotlight__item.item--active {
    top: 0;
    left: 0;
    z-index: 20;
    height: 100%;
    width: 100%;
}

.filter-bnw {
    -webkit-filter: grayscale(70%);
    filter: grayscale(70%);
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.filter-bnw:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.spotlight__item:nth-of-type(1) {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.39)), to(rgba(0, 0, 0, 0.76))), url(img/1.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0.76)), url(img/1.jpg);
    background-position: top left;
    background-size: cover;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.spotlight__item:nth-of-type(1):hover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), url(img/1.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(img/1.jpg);
}

.spotlight__item:nth-of-type(2) {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.39)), to(rgba(0, 0, 0, 0.76))), url(img/3.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0.76)), url(img/3.jpg);
    background-position: bottom left;
    background-size: cover;
}

.spotlight__item:nth-of-type(2):hover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), url(img/3.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(img/3.jpg);
}

.spotlight__item:nth-of-type(3) {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.31)), to(rgba(0, 0, 0, 0.43))), url(img/7.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.31), rgba(0, 0, 0, 0.43)), url(img/7.jpg);
    background-position: bottom left;
    background-size: cover;
}

.spotlight__item:nth-of-type(3):hover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), url(img/7.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(img/7.jpg);
}

.spotlight__item:nth-of-type(4) {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.31)), to(rgba(0, 0, 0, 0.62))), url(img/2.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.31), rgba(0, 0, 0, 0.62)), url(img/2.jpg);
    background-position: center;
    background-size: cover;
}

.spotlight__item:nth-of-type(4):hover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), url(img/2.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(img/2.jpg);
}

.spotlight__item:nth-of-type(5) {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.31)), to(rgba(0, 0, 0, 0.43))), url(img/5.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.31), rgba(0, 0, 0, 0.43)), url(img/5.jpg);
    background-position: bottom;
    background-size: cover;
}

.spotlight__item:nth-of-type(5):hover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), url(img/5.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(img/5.jpg);
}

.spotlight__item:nth-of-type(6) {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.31)), to(rgba(0, 0, 0, 0.71))), url(img/6.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.31), rgba(0, 0, 0, 0.71)), url(img/6.jpg);
    background-position: left;
    background-size: cover;
}

.spotlight__item:nth-of-type(6):hover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), url(img/6.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(img/6.jpg);
}

.spotlight__item:before {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
}


/* --------------------------------------------- */
/* SECTION CONTACT
/* --------------------------------------------- */

.section-contact {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.72)), to(rgba(0, 0, 0, 0.7))), url(img/contact.jpeg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.7)), url(img/contact.jpeg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    height: 78vh;
}

.section-contact .row h2 {
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-size: 300%;
    font-weight: 300;
}

.email-us .row form h3 {
    margin: auto;
}

.section-contact .row h3 {
    color: #f39c12;
    text-align: center;
    text-transform: uppercase;
    font-size: 200%;
}

.section-contact .row:nth-child(2) {
    /* Center horizontally & vertically */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    text-align: center;
}

.email-us {
    height: 200px;
    left: 0;
    right: 0;
    position: absolute;
    top: -200px;
    background-color: rgb(229, 133, 20);
}

form {
    display: block;
    width: 100%;
    margin: 0 auto;
    margin-top: 60px;
}

.form-content {
    display: inline-block;
}

.email-us .row h3 {
    display: inline-block;
    color: #fff;
    text-transform: lowercase;
    width: 50%;
    text-align: right;
    padding-right: 20px;
    top: 5px;
}

.email-us input {
    font-size: 120%;
    padding: 10px;
    -webkit-transition: border 0.2s ease-in-out;
    transition: border 0.2s ease-in-out;
}

.email-us input:focus {
    outline: none;
    border-left: 15px solid #e58514;
}

input[type=submit] {
    display: inline-block;
    padding: 13px 30px;
    margin: 0 5px;
    font-weight: 300;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #d02e08;
    border: none;
}

input[type=submit]:hover {
    background-color: #de4a27;
}


/* --------------------------------------------- */
/* FOOTER
/* --------------------------------------------- */

footer {
    height: 22vh;
    background-color: #0d0d0d;
    border-top: 2px solid #ffa337;
}

.footer-container {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    text-align: center;
}

.footer-tabs {
    display: block;
    width: 45%;
    float: left;
    height: 80px;
}

.footer-tabs ul {
    list-style-type: none;
    float: left;
    margin: 25px 0;
}

.footer-tabs ul li {
    display: inline-block;
    padding: 10px 15px;
}

.footer-tabs ul li a:link,
.footer-tabs ul li a:visited {
    text-decoration: none;
    color: #717171;
    font-size: 93%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer-tabs ul li a:hover,
.footer-tabs ul li a:active {
    color: #f39c12;
}

.footer-logo {
    display: block;
    width: 10%;
    float: left;
    text-align: center;
}

.footer-logo a {
    display: table;
    width: 100%;
}

.footer-logo-img {
    background-image: url(img/logo-gray.png);
    background-position: center;
    background-size: contain;
    display: inline-block;
    width: 80px;
    height: 80px;
    cursor: pointer;
}

.footer-logo-img:hover {
    background-image: url(img/logo-yellow.png);
    background-position: center;
    background-size: contain;
}

.footer-social {
    display: block;
    width: 45%;
    float: left;
    height: 80px;
}

.footer-social ul {
    list-style-type: none;
    display: inline-block;
    float: right;
    margin: 25px 0;
}

.footer-social ul li {
    display: inline-block;
    padding: 10px 30px;
}

.footer-social ul li a:link,
.footer-social ul li a:visited {
    text-decoration: none;
    color: #717171;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer-social ul li a:hover,
.footer-social ul li a:active {
    color: #f39c12;
}

.rights {
    float: left;
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    padding-top: 10px;
}

.rights p {
    font-size: 80%;
    color: #454545;
}

/* --------------------------------------------- */
/* ANIMATIONS
/* --------------------------------------------- */

/* HEADER */
.js-section-header { opacity: 0; }
.js-section-header.animated { opacity: 1; -webkit-animation-duration: 2s; animation-duration: 2s; }
.hero-text-box { opacity: 0; }
.hero-text-box.animated { opacity: 1; -webkit-animation-delay: 0.5s; animation-delay: 0.5s; -webkit-animation-duration: 2s; animation-duration: 2s; }

.main-nav { opacity: 0; }
.main-nav.animated { opacity: 1; -webkit-animation-delay: 0.2s; animation-delay: 0.2s; -webkit-animation-duration: 3s; animation-duration: 3s; }

/* ABOUT, FEATURES */
.plant,
.plant2,
.floating-div,
.floater .row h2,
.features-container,
.rolling-pin,
.powder
{ opacity: 0; }

.floating-div.animated,
.features-container.animated,
.rolling-pin.animated,
.powder.animated
{ opacity: 1; }

/* Delayed - About */
.plant.animated,
.plant2.animated,
.floater .row h2.animated { opacity: 1; -webkit-animation-delay: 1s; animation-delay: 1s; }

/* Delayed - Features */
.chef-container,
.js-section-features .row h2
{ opacity: 0;  }

.chef-container.animated,
.js-section-features .row h2.animated
{ opacity: 1; -webkit-animation-delay: 1s; animation-delay: 1s; }

/* HOW IT WORKS */
.app-screen
{ opacity: 0; }

.app-screen.animated
{ opacity: 1; }

/* PLANS */
.plan-box
{ opacity: 0; }

.plan-box,
.plan-box:nth-child(1).animated
{ opactiy: 1; }

.plan-box:nth-child(2).animated
{ opactiy: 1; -webkit-animation-delay: 0.1s; animation-delay: 0.1s }

.plan-box:nth-child(3).animated
{ opactiy: 1; -webkit-animation-delay: 0.3s; animation-delay: 0.3s }

.plans-btn.animated {opacity: 1; -webkit-animation-delay: 0.7s; animation-delay: 0.7s }

/* CITIES */
.airplane,
.section-cities .row h2
{ opacity: 0; }

.airplane.animated,
.section-cities .row h2.animated
{ opacity: 1; }

/* TESTIMONIALS */
.customer-box { opacity: 0; }

.customer-box:nth-child(1).animated
{ opacity: 1; -webkit-animation-delay: 0.2s; animation-delay: 0.2s; -webkit-animation-duration: 2s; animation-duration: 2s }
.customer-box:nth-child(2).animated
{ opacity: 1; -webkit-animation-delay: 0.4s; animation-delay: 0.4s; -webkit-animation-duration: 2s; animation-duration: 2s }
.customer-box:nth-child(3).animated
{ opacity: 1; -webkit-animation-delay: 0.6s; animation-delay: 0.6s; -webkit-animation-duration: 2s; animation-duration: 2s }

/* MEALS */
.collage--spotlight { opacity: 0; }
.collage--spotlight.animated { opacity: 1; -webkit-animation-duration: 1s; animation-duration: 1s }

/* CONTACT */
.js-section-contact .row h2,
.js-section-contact .row h3:nth-child(2)
{ opacity: 0; }

.js-section-contact .row h2.animated { opacity: 1; }
.js-section-contact .row h3:nth-child(2).animated { opacity: 1; -webkit-animation-delay: 0.3s; animation-delay: 0.3s; }

/* FOOTER */
.footer-logo.animated { -webkit-animation-delay: 0.5s; animation-delay: 0.5s; }











/* --------------------------------------------- */
/* MOBILE RESPONSIVE NAV */
/* --------------------------------------------- */
.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.95);
    overflow-y: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    text-decoration: none;
    font-size: 30px;
    color: #818181;
    display: block;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-transform: uppercase;
    font-weight: 300;
}

.overlay-content a {
    padding: 15px;
    text-decoration: none;
    font-size: 30px;
    color: #818181;
    display: block;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-transform: uppercase;
    font-weight: 300;
}

.overlay a:hover, .overlay a:focus {
    color: #f39c12;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

@media screen and (max-height: 450px) {
    .overlay {overflow-y: auto;}
    .overlay a {font-size: 20px}
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}
