* {
    margin: 0%;
    padding: 0%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    background-color: snow;
    color: gray;
    font-family: 'Lato', 'Helvetica', 'Arial', 'sans-serif';
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.clearfix {zoom: 1;}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/* ------ Reusable Components ------ */

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

section {
    padding: 0%;
    margin: 0% 0% 0% 0%;
    display: block;
    padding-bottom: 3%;
}

.box {
    padding: 0%;
}
header.row{
    margin: 0%;
    padding: 0;
}

/* ------ Header & Navigation Bar ------ */

header{
    background-image: -webkit-gradient(linear,left top, left bottom,from(rgba(0, 0, 0, 0.7)),to(rgba(0, 0, 0, 0.69))),url(img/hero.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.69)),url(img/hero.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin-top: 0;
    padding: 0% 5%;
    background-attachment: fixed;
    display: inline-block;
    width: 100%; 
}

.nav {
    margin: 0;
    padding: 0;
    border: 0;
}
.logo {
    
    height:auto;
    width:10%;
    float: left;
    margin-top: 20px;
}

.logo-black {
    display: none;
    width:50px;
    float: left;
    margin: 5px;
}

.main-nav{
    float:right;
    list-style: none;
    height: 40px;
}

.main-nav li{
    display: inline-block;
    margin-left: 40px;
    margin-top: 50px;
}

.main-nav li a:link,
.main-nav li a:visited {
    color:snow;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    -webkit-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
    padding: 5px 0px;
    border-bottom-color: transparent;
}

.hero-text-box{
    position: absolute;
    width: 1140px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

h1, h2 {   
    font-weight: 300%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    margin-top: 0%;
    padding-top: 10%;
    margin-bottom: 20px;
    color: snow;
    font-size: 240%;
    word-spacing: 4px;
}

h2 {
    font-size: 180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 4%;
    padding-top: 3%

}

h2:after {
    content: "";
    width: 20%;
    margin-left: 40%;
    margin-top: 6px;
    display: block;
    height: 2px;
    background-color: orange;
}

/*either use hr - also in the html file - or h:after to make a line*/
/*
hr {
    width: 10%;
    display: block;
    height: 2px;
    background-color: orange;
    border: 0;
    border-top: 0px solid orange;
    margin: 0% 45% 2% 45%;
}*/

h3 {
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 120%;
    letter-spacing: 0px;
    text-align: left;
    margin: 0% 0% 7% 0%;
}

/* ------ Sticky Navigation Bar ------ */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 2px #efefef;
    z-index: 9999;
}
.sticky .main-nav li{
    font-weight: 400;
    display: inline-block;
    margin-top: 15px;

}
.sticky .main-nav { 
    margin-top: 3.5px;
    padding-top: 0;

}

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    padding: 5px 0;
    color: #555;
    display: block;
}

.sticky .logo { display: none; }
.sticky .logo-black { display: block; }

/* ------ Mobile Navigation Bar ------ */

.mobile-nav-icon {
    float: right;
    margin-top: 30px;
    cursor: pointer;
    display: none;
    
}

.mobile-nav-icon ion-icon {
    font-size: 200%;
    color: #ffff;
    border: none;
}

.sticky .mobile-nav-icon ion-icon {
    font-size: 200%;
    color: black;
}



/* ------ Features ------ */

.section-features .long-copy {
    margin: 0% 10% 2% 10%;
    padding: 0% 0% 0% 0%;
}

.section-features h3 {
    text-align: center;
    
}

.section-features .pbox {
    margin: auto;
    padding: auto;
    text-align: justify;
}

/* ------ Meals ------ */

.section-meals {
  
    width: 100%;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

.meals-showcase {
    list-style: none;
    width: 100%;
}

.meals-showcase li {
    display: block;
    float: left;
    width: 25%;
}

.meal-photo {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background-color: #000;
}

.meal-photo img {
    margin: 0% 0% 0% 0%;
    padding: 0% 0% 0% 0%;
    opacity: 0.7;
    width: 100%;
    -webkit-transition: opacity 0.9s;
    transition: opacity 0.9s;
    -webkit-transition: -webkit-transform 0.9s;
    transition: -webkit-transform 0.9s;
    transition: transform 0.9s;
    transition: transform 0.9s, -webkit-transform 0.9s;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.meal-photo img:hover {
    opacity: 1;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

/* ------ How It Works ------ */

.section-steps {
    margin: 0px;
    background-color: #f4f4f4;
}

.steps-box {
    margin-top: 30px;
}

.steps-box:first-child {
    text-align: right;
    margin: 0% 0% 0% 0%;
    padding: 0% 4% 0% 0%;
}

.steps-box:last-child {
    text-align: left;
    margin: 0% 0% 0% 0%;
    padding: 4% 0% 0% 4%;
}

.app-screen {
    width: 40%;
}

.works-steps {
    margin: 0% 0% 5% 0%;
}

.works-steps div {
    color: orange;
    border: 2px solid orange;
    border-radius: 50%;
    height: 55px;
    width: 55px;
    text-align: center;
    padding: 5px;
    float: left;
    font-size: 150%;
    margin-right: 25px;
}

.btn-app:link,
.btn-app:visited {
    border: 0;
    text-align: center;
}

.btn-app.ios img{
    border: 0;
    width: 32%;
    height: auto;
    margin: 4% 0% 0% 14.5%;
    padding: 0% 0% 0% 0%;
}

.btn-app.android img{
    border: 0;
    width: 35%;
    height: auto;
    margin: 4% 14.5% 0% 0%;
    padding: 0% 0% 0% 0%;
}

/* ------ Paragraphs ------ */

.long-copy {
    line-height: 140%;
    width: 78%;
    text-align: center;
    margin: 0% 0%;
    padding: 0% 11% 0% 11%;
}

.box p {
    font-size: 90%;
    line-height: 145%;
    text-align: left;
    padding: 0px 5px;
}

/* ------ Icons ------ */

.icon-big {
    font-size: 350%;
    display: block;
    color: orange;
    margin-bottom: 10px; 
    text-align: center;
}

/* ------ Buttons ------ */

.btn:link,
.btn:visited,
input[type=submit]{
    display: inline;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    -webkit-transition:  background-color 0.5s, border 0.2s, color 0.2s;
    transition:  background-color 0.5s, border 0.2s, color 0.2s;
}

.btn-full:link,
.btn-full:visited,
input[type=submit]{
    color: snow;
    border: 1px solid #b46300;
    background-color: #d33682;
}

.btn-ghost:link,
.btn-ghost:visited{
    color: orange;
    border: 1px solid orange;
    background-color: transparent;
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active{
    color: snow;
    border-color: orange;
    background-color: orange;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid darkorange; 
}

/* ------ Cities ------ */

.box img {
    width: 100%;
    height: auto;
    margin: 1% 0% 3% 0%;
    text-align: left;
}

.city-features {
    margin: 0.5% 0% 0% 5%;
    text-align: left;
}

.icon-small {
    text-align: center;
    display: inline-block;
    width: 9%;
    color: orange;
    font-size: 120%;
    /* Aligm Secrets */
    line-height: 120%;
    vertical-align: middle;
    margin-top: -5px;
    margin-right: 4px;
}

/* ------ Links ------ */

a:link,
a:visited {
    color: gray;
    text-decoration: none;
    padding: 1px;
    -webkit-transition: border-bottom 0.4s, color 0.4s;
    transition: border-bottom 0.4s, color 0.4s;
    border-bottom: 1px solid gray;
}
a:hover,
a:active {
    color: darkorange;
    border-bottom: 1px solid darkorange;
}

/* ------ Customers ------ */

.section-testimonials div {
    margin: 0% auto;
    padding: 0% 0%;
    border: 0% auto; 
}

.section-testimonials{
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.80)), to(rgba(0, 0, 0, .80))), url(img/back-customers.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.80), rgba(0, 0, 0, .80)), url(img/back-customers.jpg);
    background-size: cover;
    color: white;
    background-attachment: fixed;
    width: 100%;
    padding-left: 3.22%;
}

/*This is not a class it is an attribute*/

blockquote {
    padding: 2.5%;
    font-style: italic;
    line-height: 145%;  
    position: relative;
    margin-top: 40px;
}

blockquote:before {
    content:"\201c";
    font-size: 500%;
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
}

cite {
    font-size: 90%;
    margin-top: 25px;
    display: block;
}

cite img {
    height: 50px;
    border-radius: 50%;
    margin-left: 2%;
    margin-right: 3%;
    vertical-align: middle;
}

/* ------ Plans ------ */

.section-plans{
    background-color: #f4f4f4;
}

.section-plans h3 {
    color: #313131;
    margin: 3% auto auto 3%;
}

.plan-box {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    margin-left: 5%;
    -webkit-box-shadow: 2px 2px 2px #ede5e5;
    box-shadow: 2px 2px 2px #ede5e5;
}

.plan-box div {
    padding:5%;
    
}

.plan-price {
    margin-left: 3%;
    font-size: 300%;
    color: darkorange;
    margin-bottom: 10px;
    font-weight: 100;
}


.plan-price span { /*this is a child elemnt*/
    font-size: 30%;
    font-weight: 300;
}

.plan-price-meal {
    font-size: 80%;
    margin: auto 0 0% 3%;
    font-weight: 400;
}

.plan-box ul {
    list-style: none;
}

.plan-box ul li {
    padding: 1% 0% 0% 3%;
}

.plan-box div:first-child {
    background-color: #f7eded;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 1px solid #c9c6c6;
}

.plan-box div:last-child {
    text-align: center;
    border: 0;
    padding: 7%;
}

/* ------ Form ------ */

.section-form {
    width: 60%;
    margin: 0 auto;
}

input[type=text],
input[type=email],
select,
textarea {
    width: 85%;
    padding: 7px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

input[type=submit] {
    width: auto;
    text-align: center;
}

.section-form label {
    color: black;
}

.section-form .col:first-child {
    text-align: right;

}

#name-email{
    margin-top: 2%;
    padding-top: 0%;
}

#dropline {
    margin-top: 3%;
}
#hearus{
    margin-top: 2%;
}
textarea{
    height: 100px;
}

input[type=checkbox] {
    margin: 10px 5px 10px 0;
}

*:focus {outline: none;}

/* ------ Footer ------ */

footer {
    background-color: #333;
    padding: 1% 10%;
}

.footer-nav {
    padding-left: 15%;
    list-style: none;
    float: left;
}

.social-icons {
    padding-right: 15%;
    list-style: none;
    float:right;
}

.footer-nav li,
.social-icons li {
    display: inline-block;
    margin-right: 20px;
}
.footer-nav li:last-child,
.social-icons li:last-child {
    margin-right: 0px;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-icons li a:link,
.social-icons li a:visited {
    text-decoration: none;
    border: 0;
    color: #888;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.footer-nav li a:hover,
.footer-nav li a:active {
    color: #ddd;
}

footer p {
    padding-left: 7.5%;
    font-size: 95%;
    color: #888;
    padding-top: 1%;
    text-align: left;
}

.social-icons li a:link,
.social-icons li a:visited {
    font-size: 110%;
}

.ion-social-facebook,
.ion-social-twitter,
.ion-social-googleplus,
.ion-social-instagram {
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}
.ion-social-facebook:hover {
    color: #1877f2;
}

.ion-social-twitter:hover {
    color: #1da1f2;
}

.ion-social-googleplus:hover {
    color: #db4437;
}

.ion-social-instagram:hover {
    color: #c32aa3;
}

/* ------ Animation ------ */

.js--wp-1,
.js--wp-2,
.js--wp-3 {
    opacity: 0;
}

.js--wp-1.animate__animated,
.js--wp-2.animate__animated,
.js--wp-3.animate__animated,{
    opacity: 1;
}