/*********************************************************/
/*HEADER COMPONENTS */
/*********************************************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f7f7f7;
  /* Because we want header to be sticky later */
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
  z-index: 10000000000;
}

.logo {
  height: 8.2rem;
  width: 8.2rem;
}

/*********************************************************/
/* NAVIGATION SECTION */
/*********************************************************/

.main-nav-list {
  /*gap: 3.2rem;
  align-items: center;*/
  transform: translate(-50%, -50%);
  top: 50%;
  left: 77%;
  padding: 0px 0;
  position: absolute;
  margin: 0;
  display: flex;
  /*
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  */
}

.main-nav-list li {
  list-style: none;
  text-align: center;
  display: block;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.main-nav-list li a {
  text-decoration: none;
  padding: 0 40px;
  display: block;
}

.main-nav-list li:last-child {
  border-right: none;
}

.main-nav-list li a .icon {
  width: 40px;
  height: 40px;
  text-align: center;
  overflow: hidden;
  font-size: 16px;
  margin: 0 auto 10px;
}

.main-nav-list li a .icon .fa {
  width: 37px;
  height: 100%;
  line-height: 40px;
  display: inherit;
  transition: 0.5s;
  font-size: 20px;
  color: #000;
}
.main-nav-list li a .name {
  position: relative;
  height: 14px;
  width: 100%;
  display: block;
  overflow: hidden;
}
.main-nav-list li a .name span {
  display: block;
  position: relative;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  transition: 0.5s;
}
.main-nav-list li a .name span:before {
  content: attr(data-text);
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fd565d;
}
.main-nav-list li a:hover .name span {
  transform: translateY(20px);
}
.main-nav-list li a .icon .fa:last-child {
  color: #fd565d;
}
.main-nav-list li a:hover .icon .fa {
  transform: translateY(-100%);
}
/*
.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #fd565d;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  background-color: #fd565d;
  color: #fff;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #fd565d;
}
.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #fd565d;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #fd565d;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #474746;
}
*/
/*********************************************************/
/* MOBILE NAV SECTION */
/*********************************************************/

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 10000000000000000000;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/*
        <ion-icon class="icon-mobile-nav" name="menu-outline"></ion-icon>
        <ion-icon class="icon-mobile-nav" name="close-outline"></ion-icon>
*/

/*********************************************************/
/* HERO SECTION */
/*********************************************************/

/* /////////////////////////////// MOBILE_SLIDERS //////////////////// */
/*
* {
  box-sizing: border-box;
}
body {
  font-family: Verdana, sans-serif;
}
.mySlides {
  display: none;
}
img {
  vertical-align: middle;
}
*/
/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #ffffff;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px;
  }
}

.mobile-sliders {
  display: none;
}
.text {
  background-color: #fd565d;
}
/* /////////////////////////////////////////////////////////////////////*/
.section-hero {
  /*background-color: #ffffff;*/
  padding: 0rem 0 0rem 0;
}

.hero {
  max-width: 194rem;
  margin: 0 auto;
  padding: 0 0rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0rem;
  align-items: center;
}
.sliders {
  z-index: 1;
}
.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

.hero-img {
  width: 100%;
  margin-bottom: 4.8rem;
}

.delivered-meals {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 8rem;
}

.delivered-imgs {
  display: flex;
}

.delivered-imgs img {
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid #fdf2e9;
}

.delivered-imgs img:last-child {
  margin: 0;
}

.delivered-text {
  font-size: 1.8rem;
  font-weight: 600;
}

.delivered-text span {
  color: #fd565d;
  font-weight: 700;
}

/*********************************************************/
/* FEATURED IN SECTION */
/*********************************************************/
.section-featured {
  padding: 2.8rem 0;
}

.heading-featured-in {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.4rem;
  color: #888;
}

.logos {
  display: flex;
  justify-content: space-around;
}
.logos img {
  height: 13rem;
  /*filter: blur(100);*/
  opacity: 60%;
}
/*********************************************************/
/* HOW IT WORKS SECTION */
/*********************************************************/

.section-how {
  padding: 9.6px 0;
}

.step-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img-box::after,
.step-img-box::before {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-img-box::before {
  width: 60%;
  /*height: 60%;*/

  /*60% of parent's width*/
  padding-bottom: 60%;
  background-color: #d6d6d6;
  z-index: -2;
}

.step-img-box::after {
  width: 45%;
  padding-bottom: 45%;
  background-color: #bdbdbd;
  z-index: -1;
}

.step-img {
  width: 80%;
  border: 4px solid #d6d6d6;

  /*z-index: 10*/
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
}

/*********************************************************/
/* CAR POTIONS SECTION */
/*********************************************************/

.section-car--potions {
  padding: 9.6px 0;
}

.caroption {
  box-shadow: 0 2.4rem 4.8rem rgb(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;
}

.caroption:hover {
  box-shadow: 0 3.2rem 6.4rem rgb(0, 0, 0, 0.06);
  transform: translateY(-2rem);
}

.car-content {
  padding: 1rem 1rem 1rem 1rem;
}
.car-tags {
  margin-bottom: 1.2rem;
}
.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  background-color: #333;
  color: #eee7e1;
  border-radius: 100px;
  font-weight: 600;
}

.car-title {
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 3.2rem;
}

.car-desctriptions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.car-desctription {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.car-ion-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #fd565d;
}
.car-mig {
  width: 100%;
}

.margin-bottom-sm {
  margin-right: 1.6rem !important;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}
/*********************************************************/
/* TESTIMONIALS SECTION */
/*********************************************************/

.section-testimonials {
  border-top: 1px solid rgba(192, 192, 192, 0.877);
  image-resolution: 10px;
  display: grid;
  grid-template-columns: 7fr 4fr;
  align-items: center;

  max-width: 150rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}
#testimonial_main {
  color: rgb(99, 99, 99);
}
.testimonials-container {
  padding: 6.9rem;
}
.testimonials {
  display: grid;
  grid-template-columns: 4fr 4fr;
  gap: 4.8rem;
  row-gap: 4.8rem;
  column-gap: 8rem;
}

.testimonial-img {
  width: 6.4rem;
  color: #fc4952;
  /*border-radius: 50%;*/
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1.5rem;
  line-height: 1.8rem;
  margin-bottom: 1.6rem;
  color: rgb(99, 99, 99);
}

.testimonial-name {
  font-size: 1.6rem;
  color: #fe575e;
}
.Testimonials_Tilte {
  color: #fe575e;
  font-size: 15px;
}
.all-recipes {
  text-align: center;
  font-size: 1.8rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  padding: 1.6rem;
}
.gallery-item {
  overflow: hidden;
  border: 1px solid #fe575e;
  border-radius: 50%;
  -webkit-box-shadow: inset -1px 3px 8px 5px #b4b4b4, 2px 5px 16px 0px #525252,
    5px 5px 15px 5px rgba(0, 0, 0, 0);
  box-shadow: inset -1px 3px 8px 5px #adadad, 2px 5px 16px 0px #575757,
    5px 5px 15px 5px rgba(0, 0, 0, 0);
}
.gallery-item img {
  display: block;
  width: 100%;
  transition: all 0.4s;

  box-shadow: black;
}

.gallery-item img:hover {
  transform: scale(1.1);
}
.testimonial-text {
  box-shadow: black;
}
/*********************************************************/
/* CTA SECTION */
/*********************************************************/
.section-cta {
  /*Top, Right, Bottom, Left*/
  /*padding: 9.6rem 12.8rem 0;*/

  /*Top, Horizontal, Left*/
  padding: 8.8rem 0 12.8rem;
  border-top: 1px solid rgba(192, 192, 192, 0.877);
}
.cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background-color: #fe575e;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.015);
  border-radius: 11px;
  background-image: linear-gradient(to right bottom, #fe575e, #383838);
  /*temp*/

  overflow: hidden;
}
.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #2e1907;
}
.cta .heading-secondary {
  /* color: #2e1907;*/
  color: inherit;
  margin-bottom: 3.2rem;
}
.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  color: whitesmoke;
}
.cta-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(235, 151, 78, 0.35),
      rgba(230, 125, 34, 0.35)
    ),
    url(../img/contact/A2.jpg);
  background-size: cover;
  background-position: center;
}

.cta-from {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-from label,
.cta-from select {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  color: whitesmoke;
}

.cta-from select,
.cta-from input {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #fdf2e9;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.cta-from input::placeholder {
  color: #aaa;
}
.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

#mgs {
  height: 50px;
  width: 100%;
  padding-top: 3px;
}

/*********************************************************/
/* FOOTER SECTION */
/*********************************************************/
.footer {
  padding: 3rem 0;
  border-top: 1px solid #eee;
  background: #2e2e2e;
  height: 50vh;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}

.logo-col {
  flex-direction: column;
  display: inline-block;
  width: 100%;
  height: 0px;
}

.footer-logo {
  display: block;
  margin-bottom: 1.2rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}
.copyright {
  font-size: 1.1rem;
  line-height: 1.6rem;
  color: #f9f0f1;
  margin-top: auto;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: rgb(231, 231, 231);
}
.footer_lines {
  border: 1px solid #fd565d;
  margin-bottom: 5px;
}
.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  color: rgb(231, 231, 231);
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: rgb(231, 231, 231);
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #fd565d;
}
.footer-icons {
  font-size: 100000px;
}
.address-col,
.nav-col {
  /*text-align: center;*/
  display: inline-block;
  width: 100%;
  height: 0px;
}
