* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  /* font-size: 10px; */
  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 8vh !important;
  /* Does NOT work on Safari */
  /* scroll-behavior: smooth; */
}
body {
  font-family: "Roboto", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #1f1f1f;
  /* Only works if there is nothing absolutely positioned in relation to body */
  overflow-x: hidden;
}
/**************************/
/* HEADER */
/**************************/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  /* Because we want header to be sticky later */
  height: 9rem;
  padding: 0 4.8rem;
  position: relative;
}
.logo {
  height: 8rem;
}
/**************************/
/* NAVIGATION */
/**************************/
.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
  z-index: 999;
}
.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #5e6f6e;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}
.main-nav-link:hover,
.main-nav-link:active {
  color: #111918;
}
.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #a38664;
}
.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #af987c;
}
/* 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: 9rem;
  padding-top: 0;
  padding-bottom: 0;
  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;
} */
/**************************/
/* HERO SECTION */
/**************************/
.section-hero {
  height: 100vh;
  /* z-index: -1; */
  background-image: linear-gradient(
      rgba(34, 34, 34, 0.6),
      rgba(34, 34, 34, 0.6)
    ),
    url(../images/hero-image.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* background: linear-gradient(rgba(0, 0, 0, 0.342), rgba(0, 0, 0, 0.342)),
    url(hero-image.webp) no-repeat center / cover; */
  /* background-size: cover; */
  color: whitesmoke;
}
.hero-container {
  width: 90%;
  height: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
h1 span {
  font-size: 3.6rem;
}
.hero-container .info h1 {
  font-size: 4.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  margin-bottom: 2.8rem;
}
.hero-container .info a {
  text-decoration: none;
  display: inline-block;
  background-color: #a38664;
  border-radius: 9px;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 0.6em 1.6em;
  margin-top: 2rem;
  color: whitesmoke;
}
.hero-container .info a:hover {
  background-color: #af987c;
}
.btn--full:link,
.btn--full:visited {
  background-color: #a38664;
  color: #fff;
  cursor: pointer;
}
.btn--full:hover,
.btn--full:active {
  background-color: #af987c;
  cursor: pointer;
}
.cta-btn {
  display: none;
}
.div-btn-cta {
  display: none;
}
.btn-cta {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.6rem;
  white-space: nowrap;
}
.section-about-ptcg .center-text {
  margin-top: 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: #cf711f;
  font-weight: 700;
}
/**************************/
/* FEATURED IN SECTION */
/**************************/
.section-featured {
  padding: 4.8rem 0 3.2rem 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: 3.2rem;
  filter: brightness(0);
  opacity: 50%;
}
/**************************/
/* HOW IT WORKS SECTION */
/**************************/
.section-about-ptcg {
  padding: 9.6rem 0;
}
.align-left {
  text-align: left;
}
.about-description {
  padding: 0;
  font-size: 1.8rem;
  line-height: 1.8;
}
/* .about-img-box {
  position: relative; */
/* display: flex;
  align-items: center;
  justify-content: flex-end; */
.step-img-box::before,
.step-img-box::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.step-img-box::before {
  width: 60%;
  padding-bottom: 60%;
  background-color: #fdf2e9;
  z-index: -2;
}
.step-img-box::after {
  width: 45%;
  padding-bottom: 45%;
  background-color: #fae5d3;
  z-index: -1;
}
.step-img {
  width: 35%;
  /* z-index: 10; */
}
.about-img-box-top {
  display: none;
}
.alejo-img-right {
  width: 360px;
}
/**************************/
/* PRACTICE AREAS SECTION */
/**************************/
.section-practice-areas {
  padding: 9.6rem 0 7.2rem;
}
.practice-areas-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 9.6rem;
}
.practice-area {
  display: grid;
  grid-template-columns: 1fr 8fr;
  grid-column-gap: 1.2rem;
  /*
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;
*/
}
/*
.practice-area:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}
*/
.practice-area-content {
  padding: 3.2rem 3.2rem 3.2rem 1.6rem;
}
.practice-area-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 3.2rem;
}
.practice-area-attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.practice-area-attribute {
  font-size: 1.8rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.meal-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #e67e22;
}
.practice-area-img {
  width: 100%;
}
.all-recipes {
  text-align: center;
  font-size: 1.8rem;
}
/**************************/
/* TESTIMONIALS SECTION */
/**************************/
/* .testimonials p {
  font-size: 1.8rem;
  line-height: 1.8;
} */
.section-testimonials {
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
  background: linear-gradient(to right, hsl(71, 21%, 65%), hsl(170, 21%, 75%));
}
.testimonials-container {
  max-width: 1170px;
  margin: auto;
  padding: 0 15px;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .title {
  font-size: 3.6rem;
  font-weight: 600;
  text-transform: capitalize;
  color: hsl(0, 0%, 100%);
  line-height: 1.2;
}
.testimonials {
  padding: 0;
}
/* .swiper-wrapper {
  gap: 4.8rem;
} */
.testimonials-item {
  min-height: 352px;
  background-color: hsl(0, 0%, 100%);
  padding: 30px;
  border-radius: 30px;
}
.testimonials-item .rating {
  margin-top: 15px;
  margin-bottom: 1.8rem;
  font-size: 24px;
  color: hsl(36, 88%, 66%);
}
.testimonials-item h3 {
  font-size: 2.4rem;
  text-transform: capitalize;
  font-weight: 600;
  color: hsl(0, 0%, 0%);
  line-height: 1.2;
  margin-bottom: 1.8rem;
}
.testimonial-text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}
.testimonial-name {
  font-size: 1.2rem;
  color: #6f6f6f;
}
.testimonials .swiper-pagination {
  position: relative;
  margin-top: 40px;
  bottom: auto;
}
.testimonials .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  background-color: hsl(0, 0%, 100%);
}
.resources-container {
  padding: 9.6rem;
}
.resources {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4.8rem;
  column-gap: 8rem;
}
.section-resources h2 {
  margin-bottom: 3.2rem;
}
.tax-resources {
  font-size: 1.8rem;
  margin-bottom: 4.8rem;
}
.resources-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}
.resources-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.resources-name {
  font-size: 1.6rem;
  color: #6f6f6f;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  padding: 1.6rem;
}
.gallery-item {
  overflow: hidden;
}
.gallery-item img {
  display: block;
  width: 100%;
  transition: all 0.4s;
}
.gallery-item img:hover {
  transform: scale(1.1);
}
/**************************/
/* MEALS SECTION */
/**************************/
.section-resources {
  padding: 7.2rem 0;
}
.pricing-plan {
  border-radius: 11px;
  width: 75%;
}
.pricing-plan--starter {
  justify-self: end;
  border: 2px solid #fdf2e9;
  padding: 4.6rem;
}
.pricing-plan--complete {
  background-color: #fdf2e9;
  padding: 4.8rem;
  position: relative;
  overflow: hidden;
}
.pricing-plan--complete::after {
  content: "Best value";
  position: absolute;
  top: 6%;
  right: -18%;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  background-color: #ffd43b;
  padding: 0.8rem 8rem;
  transform: rotate(45deg);
}
.plan-header {
  text-align: center;
  margin-bottom: 4.8rem;
}
.plan-name {
  color: #cf711f;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 3.2rem;
}
.plan-price {
  font-size: 6.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.6rem;
}
.plan-price span {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
}
.plan-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #6f6f6f;
}
.plan-sign-up {
  text-align: center;
  margin-top: 4.8rem;
}
.plan-details {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}
.feature-icon {
  color: #e67e22;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #fdf2e9;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}
.feature-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.feature-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 2.4rem;
}
/**************************/
/* CTA SECTION */
/**************************/
.section-cta {
  /* top / right / bottom / left */
  /* padding: 9.6rem 0 12.8rem 0; */
  /* top / horizontal / left */
  padding: 4.8rem 0 12.8rem;
}
.cta {
  display: grid;
  /* 2/3 = 66.6% + 1/3 = 33.3% */
  grid-template-columns: 4fr 3fr;
  /* background-color: #e67e22; */
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;
  background-image: linear-gradient(to right bottom, #e9e1cf, #e9e1cf);
  overflow: hidden;
}
.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #45260a;
}
.cta .heading-secondary {
  /* color: #45260a; */
  color: inherit;
  margin-bottom: 3.2rem;
}
.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}
.cta-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.35)
    ),
    url("../images/contact-img-800x1200.webp");
  background-size: cover;
  background-position: center;
}
.cta-form {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}
.cta-form label {
  display: block;
  font-size: 2.4rem;
  font-weight: 500;
}
.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #fff;
  margin-bottom: 2.4rem;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.cta-form input::placeholder {
  color: #aaa;
}
/*
.cta-textarea {
    margin-bottom: 3.2rem;
}
*/
.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}
/**************************/
/* FOOTER */
/**************************/
.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
}
.grid--footer {
  grid-template-columns: 3fr 1.5fr 1fr 1fr;
  column-gap: 7.2rem;
}
.logo-col {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  display: block;
  margin-bottom: 2.4rem;
  height: 6.4rem;
}
.social-links {
  list-style: none;
  display: flex;
  margin-bottom: 2.4rem;
  gap: 2.4rem;
}
.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}
.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
  margin-top: auto;
}
.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
  padding-top: 1.5rem;
}
.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: 2.4rem;
}
.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}
.footer-link:hover,
.footer-link:active {
  color: #555;
}
.about-alejo {
  background-color: #e9e1cf;
  padding: 6.4rem 0;
}
/* .heading-hero {
  font-size: 4.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #e8e3da;
  letter-spacing: 0.8rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 2.4rem;
} */
/* .heading-hero2 {
  font-size: 4.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #e8e3da;
  letter-spacing: 0.8rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 2.4rem;
} */
/* .heading-hero2h {
  font-size: 4.8rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  color: #e8e3da;
  letter-spacing: 0.8rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 2.4rem;
} */
.indent-right {
  margin-left: 10%;
}
.about-pacini {
  padding: 0;
  font-size: 1.8rem;
  line-height: 1.8;
}
.margin-bt-sm {
  margin-bottom: 2.4rem;
}
.padding-x-lg {
  padding-left: 9.6rem;
  padding-right: 9.6rem;
}
.alejo {
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 9.6rem;
  align-items: center;
}
.feature {
  padding-bottom: 3.2rem;
  border-bottom: 1px solid rgb(222, 226, 230);
}
.resource-link:link,
.resource-link:visited {
  font-size: 1.8rem;
  text-decoration: none;
  color: #b48914;
}
.resource-link:hover,
.resource-link:active {
  font-size: 1.8rem;
  text-decoration: none;
  color: #45310c;
}
.area-icon {
  display: block;
  margin-top: 2.4rem;
  margin-left: auto;
  margin-right: auto;
  height: 7.2rem;
  width: 7.2rem;
}
.container-areas {
  padding: 0;
}
.phone {
  margin-bottom: 2.4rem;
}
.contact-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
