/* ***********  HEADER *********** */

.header {
  background-color: #eff9f1;
  position: relative;
}

.header .content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 8rem;
}

.logo {
  max-width: 12rem;
}

/* ***********  NAVIGATION *********** */

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.6rem;
}

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

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

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.6rem;
  background-color: #2b561f;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #fff;
  border-radius: 9px;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #365e2a;
}

/* MOBILE ICON */

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.btn-mobile-nav:link,
.btn-mobile-nav:visited,
.btn-mobile-nav.main-nav-link.nav-cta:active {
  outline: none;
  box-shadow: 0 0 0 0.4rem rgba(0, 0, 0, 0.158);
}

.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;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

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

/* END OF NAVIGATION & MOBILE NAVIGATION */

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

.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6.4rem;
}

.heading-primary {
  text-align: center;
  font-size: 4.6rem;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 8rem;
}

.hero-section {
  background-color: #eff9f1;
}

.gallery {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
  /* padding: 3.2rem; */
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  transition: all 0.4s;
  border-radius: 9px;
  box-shadow: 0 0 3.2rem rgba(0, 0, 0, 0.1);
}

.hero-btns-container {
  font-weight: 500;
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  margin-top: 4.8rem;
  margin-bottom: 7.4rem;
}

.hero-btns-container .btn {
  font-size: 1.6rem;
  padding: 1.4rem 2.8rem;
}

.pre-orders {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 4.8rem;
  text-align: center;
}

.pre-orders span {
  color: #2b561f;
  font-weight: 700;
}

/**********************************/
/*********************************/
/* END OF ------->> HERO SECTION */
/********************************/
/********************************/

/* *********** SECTION - What is piece *********** */
.section-wt-is-piece {
  background: #fff;
}

.section-wt-is-piece .grid-pattern--1 .left {
  display: flex;
  justify-content: center;
  position: relative;
}

.section-wt-is-piece .grid-pattern--1 .left img {
  width: 100%;
  /* max-height: 50rem; */
  border-radius: 0.2rem;
  box-shadow: 0 0 3.2rem rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  z-index: 10;
}

.section-wt-is-piece .grid-pattern--1 .left::before,
.section-wt-is-piece .grid-pattern--1 .left::after {
  content: '';
  display: block;
  border-radius: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-wt-is-piece .grid-pattern--1 .left::before {
  background-color: #eff9f1;
  width: 125%;
  padding-bottom: 125%;
  z-index: 0;
}

.section-wt-is-piece .grid-pattern--1 .left::after {
  background-color: #fff;
  width: 110%;
  padding-bottom: 110%;
  z-index: 1;
}

.section-wt-is-piece .grid-pattern--1 .right {
  padding: 0 2.4rem;
}

.section-wt-is-piece h2 {
  font-weight: 700;
  margin-bottom: 4.8rem;
  color: #2b561f;
}

.section-wt-is-piece p {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  text-align: left;
}

.section-wt-is-piece p span {
  font-weight: 600;
}

.section-wt-is-piece p:last-child {
  margin-bottom: 0;
}

.btn.read-more:hover {
  background: none;
  box-shadow: inset 0 0 0 1px #000;
  color: #333;
}

/* *********** SECTION - Products *********** */
.section-products {
  /* background-color: #f4fbf5; */
  background-image: linear-gradient(
    to right bottom,
    #ffffff,
    #fbfdff,
    #f5fcfe,
    #f0fbf9,
    #eff9f1
  );

  padding-bottom: 12.8rem;
}

.section-products .products-heading {
  font-size: 2.6rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #2b561f;
  text-align: center;
  margin-bottom: 6.4rem;
  text-transform: uppercase;
}

.product-cards-container {
  width: 66.6%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 6.4rem;
  margin: 0 auto;
}

.product-cards-container img {
  max-width: 100%;
  border-radius: 9px 9px 0 0;
  box-shadow: 0 3.2rem 3.2rem rgba(0, 0, 0, 0.04);
  max-height: 27.2rem;
}

.product-card {
  background-color: #fff;
  border-radius: 9px;
  box-shadow: 0 3.2rem 3.2rem rgba(0, 0, 0, 0.05);
}

/* .product-card:last-child {
  background-color: #f2faf4;
} */

.product-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  margin-top: 3.2rem;
  padding: 0 2.4rem 2.4rem 2.4rem;
  text-align: center;
}

.product-details h4 {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
}

.product-details ol {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  list-style: disc;
  /* list-style-position: inside; */
  text-align: start;
  height: 43.7rem;
  margin-left: 1.8rem;
  margin-bottom: 1.2rem;
}

.product-details ol li {
  font-size: 1.6rem;
  line-height: 1.5;
}

.product-details p {
  /* width: 70%; */

  font-size: 1.8rem;
  line-height: 1.7;
  /* padding: 0 1.8rem; */
  /* margin: 0 auto; */
  margin-bottom: 1.2rem;
  min-height: 23.5rem;
}

.order-product-container {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 2.4rem;
}

.order-product-container .btn--outline:link,
.order-product-container .btn--outline:visited {
  /* font-size: 1.2rem; */
  color: #2b561f;
  padding: 0.9rem 1.6rem;
  letter-spacing: 1px;
  border: 0.3rem solid transparent;
  border-radius: 9px;
}

.order-product-container .btn--outline:hover {
  color: #365e2a;
  border: 0.3rem solid #2b561f;
}

/* *********** SECTION - How we do it *********** */
.section-how {
  background-color: #eff9f1;
}

.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #2b561f;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.section-how h2 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 8rem;
  color: #2b561f;
}

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

.step-text-box {
  align-self: center;
  justify-self: center;
  /* width: 88%; */
}

.section-how h3 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

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

.step-img-box {
  justify-self: center;
}

.step-img {
  margin: 0 auto;
  max-width: 100%;
  max-height: 38rem;
  /* border-radius: 9px; */
}

/* *********** SECTION - Down's Pics *********** */
.section-down-pics {
  background-color: #fff;
}

.section-down-pics .content-container {
  position: relative;
  width: 70%;
}

.section-down-pics .content-container::before {
  content: '';
  display: block;
  position: absolute;
  width: 24%;
  padding-bottom: 24%;
  background-image: url('../img/Down-Syndrome-Ribbon.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
  top: 50%;
  left: 0;
  transform: translate(-30%, -70%);
  z-index: 0;
}

.section-down-pics .content-container::after {
  content: '';
  display: block;
  position: absolute;
  width: 25%;
  padding-bottom: 25%;
  background-image: url('../img/ribbon.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
  top: 50%;
  right: 0;
  transform: translate(50%, -70%);
  z-index: 0;
}

.section-down-pics .down-heading {
  font-size: 3.2rem;
  font-weight: 700;
  color: #2b561f;
  text-align: center;
  margin-bottom: 6.4rem;
}

.down-pics-container {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3.2rem;
  margin: 0 auto;
}

.section-down-pics p {
  width: 70%;

  font-size: 1.8rem;
  line-height: 1.8;
  margin: 0 auto;
  margin-bottom: 1.2rem;
}

.section-down-pics p:last-child {
  margin-bottom: 0;
}

.down-text-box {
  margin-bottom: 6.4rem;
}

.down-pics-container img {
  width: 100%;
  border-radius: 9px;
  box-shadow: 0 3.2rem 3.2rem rgba(0, 0, 0, 0.15);
}

/* *********** SECTION - features *********** */

.section-features {
  background-color: #eff9f1;
  z-index: 10;
}

.section-features .grid-pattern--2 .right img {
  width: 100%;
  margin: 0 auto;
  transform: scale(1.44);
}

.features-container {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 4.8rem;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;

  position: relative;
}

.features-container * {
  z-index: 10;
}

.section-features h2 {
  margin-bottom: 4.4rem;
  font-weight: 700;
}

.icon-container {
  display: flex;
  align-items: flex-end;
  height: 3rem;
}

.section-features .feature h3 {
  font-size: 2.2rem;
  color: #333;
  margin: 1.6rem 0 1.6rem 0;
}

.section-features .feature p {
  color: f7f7f7;
  font-size: 1.4rem;
  line-height: 1.6;
}

.icon-25 {
  width: 2.5rem;
  height: 2.5rem;
  fill: #2b561f;
}

.icon-30 {
  width: 3rem;
  height: 3rem;
  stroke: #2b561f;
  color: #2b561f;
}

/* *********** SECTION - who we are *********** */

.section-who {
  background-color: #fff;
}

.section-who .content-container {
  position: relative;
}

.section-who h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 4.4rem;
  color: #2b561f;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-who .content-container .background {
  position: absolute;
  width: 27%;
  padding-bottom: 27%;
  background-image: url('../img/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.section-who-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  column-gap: 4.4rem;
  row-gap: 9.6rem;
}

.span-2 {
  grid-column: span 2;
}

.span-5 {
  grid-column: span 5;
}

.span-row {
  grid-column: 1 / -1;
}

.section-who-grid .content {
  padding-top: 4.4rem;
  align-self: center;
  justify-self: center;
  z-index: 10;
}

.section-who-grid img {
  width: 100%;
  max-height: 17rem;
  align-self: center;
  justify-self: center;
}

.section-who-grid .content p {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  padding-top: 2.4rem;
}

.section-who-grid .content p span {
  font-weight: 700;
  font-size: 3.2rem;
}

.section-who-grid .content p:first-child {
  padding-top: 0;
}

.section-who-grid .content--right {
  padding-left: 4.4rem;
}

.section-who-grid .content--left {
  padding-right: 4.4rem;
}

/* *********** SECTION - Experienced Team *********** */

.section-experienced {
  text-align: center;
  background-color: #eff9f1;
}

.section-experienced h2 {
  margin-bottom: 4.8rem;
}

.break-line::before {
  content: '\a';
  white-space: pre;
}

.experienced-container {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin: 0 auto;
}

.experienced-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 5px 5px 5px 5px;
  transition: all 0.3s ease-in-out;
}

.experienced-card:hover {
  transform: translateY(-1rem);
  box-shadow: 0 3.2rem 3.2rem rgba(0, 0, 0, 0.06);
  background: linear-gradient(#eff9f1 50%, #2b561f 50%);
}

.experienced-card:hover .team-name,
.experienced-card:hover .team-job {
  color: #eff9f1;
}

.team-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.2rem;
}

.team-img-box img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.team-name {
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #2b561f;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}

.team-job {
  padding-bottom: 3.2rem;
  color: #2b561f;
}

/* *********** SECTION -- distribution *********** */
.section-distribution {
  background-image: linear-gradient(
    to top,
    #eff9f1,
    #f0fbf9,
    #f5fcfe,
    #fbfdff,
    #ffffff
  );
}

.section-distribution h2 {
  margin-bottom: 4.8rem;
}
.distribution-container {
  display: grid;
  grid-template-columns: repeat(4, 23rem);
  column-gap: 2.4rem;
  row-gap: 2.4rem;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.distribution-logo {
  height: 15rem;
  padding: 0.8rem 0;
  border: 4px solid #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.distribution-logo img {
  max-height: 100%;
  max-width: 100%;
}

/* *********** SECTION -- Featured in *********** */
.section-featured-in h2 {
  margin-bottom: 4.8rem;
}
.featured-in-container {
  display: grid;
  grid-template-columns: repeat(3, 23rem);
  column-gap: 2.4rem;
  row-gap: 2.4rem;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.featured-in-logo {
  height: 15rem;
  padding: 0.8rem 0;
  border: 4px solid #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-in-logo img {
  max-height: 85%;
  max-width: 85%;
}

/* *********** SECTION -- CTA *********** */

.section-contact {
  background: linear-gradient(90deg, #eff9f1 50%, #2b561f 50%);
}

.contact-container {
  display: grid;

  column-gap: 2.4rem;
  row-gap: 2.4rem;
  grid-template-columns: 1fr 1fr;
}

.section-contact .left {
  padding: 4.8rem 4.8rem 4.8rem 0;
}

.section-contact .left h2,
.section-contact .right h2 {
  color: #333;
  font-size: 3.2rem;
  font-weight: 700;
}

.cta-form {
  padding-top: 3.2rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 22rem;
  column-gap: 2.4rem;
  row-gap: 1.6rem;
}

.cta-form input {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.2rem;
  font-family: inherit;
  background-color: #eff9f1;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn.join-btn {
  justify-self: start;
  height: 3.2rem;
  width: 10.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background-color: #2b561f;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin-top: 1.6rem;
  border-radius: 9px;
}

.btn.join-btn:hover {
  background: none;
  box-shadow: inset 0 0 0 1px #000;
  color: #333;
}

.section-contact .right {
  padding: 4.8rem;
  margin: 0 auto;
}

.section-contact .right h2 {
  color: #f4f5f7;
}

.contact-info {
  padding-top: 4.8rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.address,
.call-us,
.email-address {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.address span,
.call-us span,
.email-address span {
  letter-spacing: 1px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
}

.address p,
.call-us p,
.email-address p {
  font-size: 1.8rem;
  color: #eff9f1;
}

.address-info p,
.call-us-info p,
.email-address-info p {
  line-height: 1.5;
}

.cta-form *:focus {
  outline: none;
  box-shadow: 0 0 0 0.4rem rgba(0, 0, 0, 0.158);
}

/* *********** Footer *********** */

.footer {
  background-color: #181818;
}

.footer .grid {
  align-items: center;
  justify-content: center;
  padding: 2.4rem 0;
}

.footer-container {
  padding: 2.4rem 0;
}

.footer-container .copyright p {
  color: #fff;
}

.footer-nav-list nav ul {
  margin-left: 1.6rem;
  list-style: none;
  color: #fff;
  display: flex;
  gap: 1.8rem;
}

.footer-nav-link:link,
.footer-nav-link:visited {
  cursor: pointer;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  font-size: 1.2rem;
  color: #fff;
}

.footer-nav-link:hover,
.footer-nav-link:active {
  color: #dee2e6;
}
