/**************************************/
/* HEADER */
/**************************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4.8rem;
  /* Because we dont want to be sticky */
  height: 9.6rem;
  position: relative;

  background-color: #e4e9f5;
}

.branding {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.logo {
  /* height: 2.2rem; */
  height: 7.2rem;
}

/**************************************/
/* NAVIGATION */
/**************************************/

.main-nav-list {
  display: flex;
  gap: 4.8rem;
  align-items: center;
  list-style: none;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #9b451c;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #bb5d27;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #9b451c;
}

/* MOBILE */

.btn-mobile-nav {
  cursor: pointer;
  background: none;
  border: none;

  display: none;
}

.icon-mobile-nav {
 height: 4.8rem;
 width: 4.8rem;   
 color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

.sticky .header{
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}



.section-hero {
  background-color: #e4e9f5;
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 9.6rem;
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

.hero-img {
  width: 100%;
}

.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 #e4e9f5;
}

.delivered-imgs img:last-child {
  margin: 0;
}

.delivered-meals p {
  font-size: 1.8rem;
  font-weight: 600;
}

.delivered-meals span {
  color: #9b451c;
  font-weight: 700;
}

/**************************************/
/* FEATURED IN SECTION */
/**************************************/

.section-featured {
  padding: 4.8rem 0 3.2rem 0;
}

.heading-featured-in {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  text-align: center;
  color: #888;
  margin-bottom: 2.4rem;
}

.logos {
  display: flex;
  justify-content: space-around;
}

.logos img {
  height: 3.2rem;
  filter: brightness(0);
  opacity: 50%;
}

/**************************************/
/* HOW IT WORKS SECTION */
/**************************************/

.section-how {
  padding: 9.6rem 0;
}

.step-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
}

.step-img-box {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img-box::before,
.step-img-box::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  border-radius: 50%;
}

/* .step-img-box::before {
  width: 60%;
  padding-bottom: 60%;
  background-color: #e4e9f5;
  z-index: -2;
}
.step-img-box::after {
  background-color: #f9e6dd;
  width: 45%;
  padding-bottom: 45%;
  z-index: -1;
} */

.step-img {
  width: 86%;
}



/**************************************/
/* Testimonials SECTION */
/**************************************/

.img-con {
  position: absolute;
}
.img-con img {
  height: 1px;
  width: 1px;
}
.wrapper {
  background-color: #ffffff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.6em;
  -webkit-box-shadow: 0 1.8em 3em rgba(1, 17, 39, 0.15);
  box-shadow: 0 1.8em 3em rgba(1, 17, 39, 0.15);
}
.testimonial-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 2rem;
  background-color: #fff;
  color: #333;
  border-radius: 15px;
  margin: 20px auto;
  padding: 50px 80px;
  width: 80%;
  max-width:120rem;
  min-height: 430px;
  position: relative;
}

.stars {
  font-size: 14px;
}

.testimonial {
  display: flex;
  align-items: center;
  text-align: center;
  height: 100%;
  line-height: 28px;
  font-size: 1.8rem;
  margin: 0;
}

.user {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.user .user-image {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  object-fit: cover;
}

.user .user-details {
  text-align: center;
}

.user .username {
  margin: 0;
  font-size: 14px;
}

.user .role {
  margin: 0;
  font-size: 12px;
}

.progress-dots {
  display: flex;
  gap: 5px;
}

.progress-dot {
  width: 5px;
  height: 5px;
  background-color: #eee;
  border-radius: 50%;
}

.progress-dot.active {
  background-color: #555;
}

.btn-testimonial {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  font-size: 10px;
  cursor: pointer;
  transition: 0.1s ease;
}

.btn-testimonial:hover {
  background-color: #eee;
}

#btn-testimonial-prev {
  left: 25px;
}

#btn-testimonial-next {
  right: 25px;
}



/**************************************/
/* FEATURE SECTION */
/**************************************/

.feature-icon {
  box-sizing: border-box;
  height: 9.4rem;
  width: 9.4rem;
  padding: 1.6rem;
  border-radius: 50%;
  background-color: #e4e9f5;
  margin-bottom: 3.2rem;
}



.feature-title {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  font-weight: 700;
  color: #333;
}

.feature-text {
  font-size: 1.8rem;
  line-height: 1.8;
}


/**************************************/
/* CALL-TO-ACTION SECTION */
/**************************************/

.section-cta {
  padding: 4.8rem 0 12.8rem 0;
}

.cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  /* height: 50rem; */
  background-color: #bb5d27;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;
  overflow: hidden;
  background-image: linear-gradient(to right bottom,#bb5d27, #eb984e);
}


.cta-text-box {
  /* padding: 4.8rem 6.4rem 6.4rem 6.4rem; */
  padding: 2.8rem 6.8rem 3.8rem 6.8rem;
  /* color: #1f4399; */
  color: #45260a ;
}

.cta-text-box .heading-secondary {
  color: inherit;
  margin-bottom: 1.4rem;
}

.cta-text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 2.6rem;
}

.cta-img-box {
  background-image:linear-gradient(to right bottom,rgba(230, 125, 34, 0.35), rgba(235, 151, 78, 0.35)), url(../img/form.png);
  background-size: cover;
  background-position: center;
}

.cta-form {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  /* margin-bottom: 1.2rem; */
  margin-bottom: 0.8rem;
  font-family: inherit;
  font-weight: 500;
}

.cta-form input, .cta-form select, .cta-form textarea {
  width: 100%;
  font-size: 1.4rem;
  font-family: inherit;
  padding: 1.2rem;
  background-color: #e4e9f5;
  border: none;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  color: inherit;
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
} 

/**************************************/
/* FOOTER */
/**************************************/

.footer {
  border-top: 1px solid #eee;
  padding: 6.2rem 0;
}

.grid--3-footer {
  display: grid;
  grid-template-columns: 1.8fr 1.8fr 1fr;
  gap: 6rem;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
  size: 100%;
}

.footer-logo > .logo {
  height: 14rem;
  margin-top: -17px;
  margin-left: -17px;
}

.social-links {
  margin-top: -2rem;
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.contact {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-heading {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.footer-link:link, .footer-link:visited {
  font-size: 1.6rem;
  color: #767676;
  text-decoration: none;
  transition: all 0.3s;
} 

.footer-link:hover, .footer-link:active {
  color: #555;
}

.copyright {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
  text-align: center;
}