/* ***************************** */
/* SETTING DEFAULTS */
/* ***************************** */

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

*:focus {
  outline: none;
}

html {
  color: #555;
  font-family: 'Lato', 'Arial', sans-serif;
  font-weight: 300;
  font-size: 20px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

/* ***************************** */
/* COMPONENTS */
/* ***************************** */

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

section {
  padding: 80px 0;
}

.box {
  padding: 1%;
}

/* ***** HEADINGS ***** */

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

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

h2 {
  font-size: 180%;
  word-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
}

h2:after {
  display: block;
  height: 2px;
  background-color: #e67e22;
  content: '';
  width: 200px;
  margin: 0 auto;
  margin-top: 30px;
}

h3 {
  font-size: 110%;
  margin-bottom: 15px;
  letter-spacing: 0;
}

/* ***** PARAGRAPHS ***** */

.long-copy {
  line-height: 145%;
  width: 70%;
  margin-left: 15%;
}

.box p {
  font-size: 90%;
  line-height: 145%;
}

/* ***** ICONS ***** */

.icon-bg {
  font-size: 150%;
  display: block;
  margin-bottom: 10px;
  color: #e67e22;
}

.icon-sm {
  display: inline-block;
  width: 30px;
  text-align: center;
  font-size: 90%;
  line-height: 90%;
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 10px;
  color: #e67e22;
}

/* ***** LINKS ***** */

a:link,
a:visited {
  color: #e67e22;
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px solid #e67e22;
  transition: all 0.2s;
}

a:hover,
a:active {
  color: #555;
  border-bottom: 1px solid transparent;
}

/* ***** BUTTONS ***** */

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

.btn-full:link,
.btn-full:visited,
input[type='submit'] {
  background-color: #e67e22;
  border: 1px solid #e67e22;
  color: #fff;
  margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
  border: 1px solid #e67e22;
  color: #e67e22;
  margin-right: 15px;
  letter-spacing: 1px;
  word-spacing: 2px;
  text-transform: uppercase;
  font-size: 80%;
}

.btn:hover,
.btn:active,
input[type='submit']:hover,
input[type='submit']:active {
  background-color: #cf6d17;
}

.btn-full:hover,
.btn-full:active,
input[type='submit']:hover,
input[type='submit']:active {
  border: 1px solid #cf6d17;
}

.btn-ghost:hover,
.btn-ghost:active {
  border: 1px solid #cf6d17;
  color: #fff;
}

/* ***************************** */
/* HEADER SECTION */
/* ***************************** */

header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/hero-new-min.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* background-attachment: scroll; */
  height: 100vh;
}

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

.logo,
.logo-black {
  height: 100px;
  width: auto;
  float: left;
  margin-top: 20px;
}

.logo-black {
  display: none;
  height: 50px;
  margin: 5px 0;
}

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

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

.main-nav li a:link,
.main-nav li a:visited {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 80%;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

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

/* mobile nav */

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

.mobile-nav-icon i {
  font-size: 200%;
  color: #fff;
}

/* sticky nav */

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(245, 245, 245, 0.9);
  box-shadow: 0 2px 2px #efefef;
  z-index: 9999;
}

.sticky .main-nav {
  margin-top: 18px;
}

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

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

.sticky .logo {
  display: none;
}

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

.section-features .long-copy {
  margin-bottom: 30px;
}

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

.section-meals {
  padding: 0;
}

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

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

.meals-showcase li figure {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background-color: #000;
  position: relative;
}

.meals-showcase li figure img {
  opacity: 0.7;
  width: 100%;
  height: auto;
  transform: scale(1.2);
  transition: all 0.5s;
}

.meals-showcase li figure figcaption {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  position: absolute;
  top: 120%;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 10px;
  opacity: 0;
  transition: all 0.3s;
}

.meals-showcase li figure:hover figcaption {
  opacity: 1;
  top: 70%;
}

.meals-showcase li figure:hover img {
  transform: scale(1.05);
  opacity: 1;
}

/* ***************************** */
/* STEPS SECTION */
/* ***************************** */

.section-steps {
  background-color: rgb(237, 237, 237);
}

.steps-box:first-child {
  text-align: right;
  padding-right: 15%;
  margin-top: 30px;
}

.steps-box:last-child {
  padding-right: 5%;
  margin-top: 50px;
}

.app-screen {
  width: 50%;
}

.work-steps {
  margin-bottom: 50px;
}

.work-steps:last-of-type {
  margin-bottom: 80px;
}

.work-steps div {
  display: inline-block;
  color: #e67e22;
  border: 2px solid #e67e22;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  text-align: center;
  padding: 5px;
  margin-right: 20px;
  float: left;
  font-size: 150%;
}

.btn-app img {
  height: 50px;
  width: auto;
  padding-right: 10px;
}

.btn-app:link,
.btn-app:visited {
  border-bottom: none;
}

/* ***************************** */
/* CITIES SECTION */
/* ***************************** */

.section-cities img {
  width: 100%;
  height: auto;
}

.section-cities h3 {
  margin-top: 15px;
}

.city-feature {
  margin-bottom: 10px;
}

/* ***************************** */
/* TESTIMONIALS SECTION */
/* ***************************** */

.section-testimonials {
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)); */
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}

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

blockquote:before {
  content: '\201C';
  display: block;
  font-size: 500%;
  position: absolute;
  top: -5px;
  left: -5px;
}

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

cite img {
  height: 45px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

/* ***************************** */
/* PLANS SECTION */
/* ***************************** */

.section-plans {
  background-color: rgb(237, 237, 237);
}

.plan-box {
  background-color: #fff;
  border-top: 10px solid #e67e22;
  width: 90%;
  margin-left: 5%;
  box-shadow: 0px 3px 3px 0px rgba(152, 152, 152, 0.5);
}

.plan-box div {
  padding: 15px;
  border-bottom: 1px solid #e8e8e8;
}

.plan-box div:first-child {
  background-color: #fcfcfc;
}

.plan-box div:last-child {
  text-align: center;
  border: none;
}

.plan-price {
  font-size: 300%;
  font-weight: 100;
  margin-bottom: 10px;
  color: #cf6d17;
}

.plan-price span {
  font-size: 30%;
  font-weight: 300;
}

.plan-price-meal {
  font-size: 80%;
}

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

.plan-box ul li {
  padding: 5px 0;
}

.plan-box ul li .icon-sm {
  font-size: 80%;
}

.grey-text {
  color: #e8e8e8;
  text-decoration: line-through;
}

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

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

input[type='text'],
input[type='email'],
select,
textarea {
  width: 100%;
  padding: 7px;
  border-radius: 3px;
  border: 1px solid #ccc;
  font-weight: 300;
  transition: all 0.3s;
}

input[type='text']:focus,
input[type='email']:focus,
select:focus,
textarea:focus {
  border: 1px solid #e67e22;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(#fff, #fff);
  color: #555;
}

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

/* ***************************** */
/* FOOTER SECTION */
/* ***************************** */

footer {
  background-color: #333;
  padding: 40px;
  font-size: 80%;
}

footer p {
  text-align: center;
  color: #666;
  margin-top: 20px;
  font-size: 90%;
}

footer ul {
  list-style: none;
}

.footer-nav {
  float: left;
}

.social-nav {
  float: right;
  font-size: 150%;
}

footer ul li {
  display: inline-block;
  margin-right: 20px;
}

footer ul li:last-child {
  margin-right: 0;
}

footer a:link,
footer a:visited {
  text-decoration: none;
  border: 0;
  color: #666;
}

footer a:hover,
footer a:active {
  text-decoration: none;
  border: 0;
  color: #bbb;
}

footer .fab {
  color: #666;
  transition: all 0.3s;
}

footer .fa-facebook-f:hover {
  color: #3b5999;
}

footer .fa-twitter:hover {
  color: #55acee;
}

footer .fa-youtube:hover {
  color: #cd201f;
}

footer .fa-instagram:hover {
  color: #e4405f;
}

footer .fa-snapchat-ghost:hover {
  color: #fffc00;
}

/* ***************************** */
/* ANIMATION SECTION */
/* ***************************** */

.hidden-features {
  opacity: 0;
  transition: opacity 1s;
}

.show-features {
  opacity: 1;
}
