/* --------Basic Setup---------- */

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

html {
  background-color: #fff;
  color: #555;
  font-family: "Source Sans Pro", "Arial", "sans-serif";
  font-weight: 300;
  font-size: 20px;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3 {
  font-weight: 300;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #fff;
  font-size: 200%;
  word-spacing: 4px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
h2 {
  font-size: 180%;
  word-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

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

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

.section-features {
  padding: 80px 30px;
}

section {
  width: 100%;
}

/*----------------------------------*/
/*-----------Header-----------------*/
header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(./img/hero.jpg);
  background-position: center;
  background-size: cover;
  height: 100vh;
  background-attachment: fixed;
  width: 100%;
}

.hero-text-box {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-35%, -50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/*-----------Paragraph----------- */

.long-copy {
  line-height: 145%;
  width: 80%;
  margin-left: 10%;
}

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

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

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

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

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

/* Styles for Button */

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

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

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

.btn-ghost:link,
.btn-ghost:visited {
  border: 1px solid #e67e22;
  color: #e67e22;
}

.btn-full:hover,
.btn-full:active,
input[type="submit"]:hover,
input[type="submit"]:active {
  color: #fff;
  border: 1px solid #bf6516;
}

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

.btn:hover,
.btn:active {
  background-color: #bf6516;
}

/* Logo */

.logo {
  height: 90px;
  width: auto;
  margin: 20px;
}

.logo-black {
  display: none;
  height: 50px;
  width: auto;
  margin-left: 15%;
  margin-top: 5px;
  margin-bottom: 5px;
}

/* Navigation Bar -------------*/
.row {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */

  /* margin-top: 5px; */
}

.row1 {
  text-align: center;
  margin-bottom: 20px;
}

.section-features > .row {
  margin: 0 auto;
}

.main-nav {
  display: flex;
  list-style: none;
}

.main-nav li {
  margin: 0px 20px;
  margin-top: 45px;
}

.main-nav li a:link,
.main-nav li a:visited {
  padding: 8px 0px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 90%;
  transition: border-bottom cubic-bezier(0.075, 0.82, 0.165, 1);
  border: 0;
}

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

/* Sticky Navigation */

.mobile-nav-icon {
  cursor: pointer;
  display: none;
}

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

/* Sticky Navigation------------------- */

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 2px #e4e4e4;
  z-index: 10;
}

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

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

.sticky .logo {
  display: none;
}

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

.sticky .mobile-nav-icon ion-icon {
  color: #555;
}

ion-icon {
  color: #e67e22;
  font-size: 350%;
  display: block;
  margin-bottom: 10px;
}

.box {
  padding: 1%;
}

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

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

.meals-showcase li {
  width: 25%;
}

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

.meal-photo > img {
  width: 100%;
  height: auto;
  transition: transform 4s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.4s;
  transform: scale(1.2);
  opacity: 0.7;
}

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

/* --------How it Works--------- */

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

.app-screen {
  width: 200px;
}

.row-center {
  justify-content: center;
  align-items: flex-start;
}

.imgContainer {
  display: flex;
  justify-content: flex-end;
  margin-right: 5%;
}

.stepsContainer {
  margin-top: 40px;
  max-width: 400px;
  min-width: 400px;
}

.work-steps {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.howItWorks {
  margin: 0 auto;
  width: 60%;
  display: flex;
  justify-content: center;
}

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

.circle {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #e67e22;
  color: #e67e22;
  width: 35px;
  padding: 5px;
  height: 35px;
  margin-right: 15px;
  font-size: 140%;
}

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

.section-heading {
  /* margin-left: 150px; */
  justify-content: center !important;
}

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

.section-cities {
  padding: 60px 0px;
  /* background-color: #f4f4f4; */
}

.citiesContainer {
  display: flex;
  flex-flow: row wrap;
  margin-left: 10%;
  width: 80%;
  margin-top: 10px;
}

.card {
  width: 20%;
  margin: 0% 2.5%;
}

.city-photo > img {
  width: 100%;
  height: auto;
  transition: transform 4s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.4s;
  margin-bottom: 15px;
}

.city-photo {
  width: 100%;
}

.cityFeature {
  list-style: none;
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  margin-bottom: 10px;
}

.cardIcon {
  margin-right: 10px;
}

/*--------------Testimonals-----------*/

.section-testimonals {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(./img/back-customers.jpg);
  background-position: center;
  background-size: cover;
  color: #fff;
  background-attachment: fixed;
  padding: 60px 3%;
}

.testimonalCard {
  position: relative;
  margin-top: 60px;
}

blockquote {
  display: flex;
  flex-direction: column;
  padding: 3%;
  font-style: italic;
  line-height: 145%;
}

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

cite {
  display: flex;
  font-size: 90%;
  margin-top: 25px;
  align-items: center;
}

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

/*------------Subscription Plans-------*/
.section-subscriptionPlans {
  padding: 60px 0px;
  background-color: #f4f4f4;
}

.plans-details {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.planCard-head {
  height: 40%;
}

.plan-card div:first-child {
  background-color: rgb(226, 225, 225, 0.7);
  box-shadow: 0 2px 2px rgb(226, 225, 225, 0.9);
  border-radius: 20px;
}

.plan-card {
  display: flex;
  width: 20%;
  flex-flow: column;
  margin: 0px 3%;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 2px #c2c2c2;
  min-width: 250px;
}

.plan-card div {
  width: 100%;
  border-bottom: 1px solid rgba(214, 214, 214, 0.904);
  padding: 15px;
}

.plan-card div:last-child {
  text-align: center;
  border: 0;
}

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

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

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

.plan-card li {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  line-height: 155%;
  padding: 5px 0px;
}

.details ul li ion-icon {
  margin-right: 15px;
}

.details {
  height: 80%;
}
/*----------------Form--------------- */

.section-form {
  padding-top: 40px;
}

.form-container {
  display: flex;
  justify-content: center;
  font-size: 90%;
}

.contact-form {
  width: 40%;
}

.form-row {
  display: flex;
  margin: 15px 0px;
  align-items: center;
}

.form-row label {
  width: 45%;
  margin-right: 10%;
}

.form-row > span {
  width: 100%;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 7px;
  border-radius: 3px;
  border: 1px solid #cccc;
}

input[type="checkbox"] {
  margin-right: 5px;
}

*:focus {
  outline: none;
}

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

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

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}

.footer-social ul li,
.footer-navigation ul li {
  display: inline-block;
  margin-right: 20px;
}

.footer-social ul li:last-child,
.footer-navigation ul li:last-child {
  margin-right: 0px;
}

.footer-navigation li a:link,
.footer-navigation li a:visited {
  color: #999999;
  text-decoration: none;
  border: 0;
}

.footer-navigation li a:hover,
.footer-navigation li a:active {
  color: #e6e6e6 !important;
}

.footer-social ul li ion-icon {
  height: 25px;
  margin: 0;
  color: #999999 !important;
}

.copyright {
  color: #999999;
  text-align: center;
  margin-top: 30px;
}

.logo-facebook,
.logo-twitter,
.logo-instagram,
.logo-google {
  transition: color 0.2s;
}
.logo-facebook:hover {
  color: #1877f2 !important;
}
.logo-twitter:hover {
  color: #1da1f2 !important;
}
.logo-instagram:hover {
  color: #c32aa3 !important;
}
.logo-google:hover {
  color: #ea4335 !important;
}

/* Animation */

.jq-wp-1,
.jq-wp-2,
.jq-wp-4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.jq-wp-3 {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
}

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

.jq-wp-1.animated,
.jq-wp-2.animated,
.jq-wp-3.animated {
  opacity: 1;
}
