download-form input/************************/
/*  COLOR PALLETES */
/************************/
:root {
  --primary-color: #087f5b;
  --white-color: #fff;
  --main-bg-color: #e6fcf5;
  --btn--hover: #066649;
  --focus-color: rgba(12, 166, 120, 0.1);
}

/************************/
/* HEADER */
/************************/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--main-bg-color);
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo {
  height: 3.2rem;
}

/************************/
/* NAVIGATION */
/************************/
.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.main-nav-list:last-child {
  gap: 2.4rem;
}

.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: var(--primary-color);
}

.active:link,
.active:visited {
  color: var(--primary-color);
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited,
.main-nav-link.nav-login:link,
.main-nav-link.nav-login:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  color: #fff;
  background-color: var(--primary-color);
}

.main-nav-link.nav-login:link,
.main-nav-link.nav-login:visited {
  background-color: var(--main-bg-color);
  box-shadow: inset 0 0 0 2px var(--primary-color);
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: var(--btn--hover);
}

.main-nav-link.nav-login:hover,
.main-nav-link.nav-login:active {
  background-color: #fff;
}

/* NAV Menu */
.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 NAV*/
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 100;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/************************/
/* HERO SECTION*/
/************************/
.section-hero {
  background-color: var(--main-bg-color);
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.hero-description {
  font-size: 1.8rem;
  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 #cee5de;
}

.delivered-imgs img:last-child {
  margin: 0;
}

.delivered-text {
  font-size: 1.8rem;
  font-weight: 600;
}

.delivered-text span {
  color: var(--primary-color);
  font-weight: 700;
}

/************************/
/* HOW IT WORKS SECTION */
/************************/
.section-how {
  padding: 9.6rem 0;
}

.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;
}

.step-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-img-box::before,
.step-img-box::after {
  content: "";
  display: block;
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-img-box::before {
  width: 60%;
  padding-bottom: 60%;
  border-radius: 50%;
  background-color: #e6f2ef;
  z-index: -2;
}

.step-img-box::after {
  width: 45%;
  padding-bottom: 45%;
  background-color: #b5d9ce;
  border-radius: 50%;
  z-index: -1;
}

.step-img {
  width: 35%;
  /* z-index: 10; */
}

.get-started {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 27rem;
  justify-self: center;
  text-align: center;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.05);
}

.get-started-icon {
  height: 3.2rem;
  width: 3.2rem;
  margin-bottom: -0.8rem;
}

/************************/
/* SERVICES SECTION*/
/************************/
.section-services {
  padding: 9.6rem 0;
}

.services {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 1.2rem 1.6rem 3.2rem rgba(0, 0, 0, 0.08);
  padding: 3.2rem;
  border-radius: 2.4rem;
  cursor: pointer;
  transition: all 0.4s ease;
}

.services:hover {
  transform: translateY(-10px);
}

.service-text {
  font-size: 2.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.2rem;
}

.service-text-description {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 2.4rem;
}

/************************/
/* NEWS SECTION */
/************************/
.section-news {
  padding: 9.6rem 0;
}

.news {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  max-width: 50rem;
  transition: all 0.4s;
}

.news-img-box {
  width: 100%;
  height: 30rem;
  overflow: hidden;
}

.news-img-box img {
  width: 100%;
}

.news-details {
  padding: 2.4rem 3.2rem;
}

.news-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.news-description {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 3.2rem;
}

.news-container {
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  border: 4px solid var(--primary-color);
  border-radius: 11px;
  padding: 2.4rem;
}

.post-likes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  color: var(--btn--hover);
  font-weight: 500;
}

.like {
  text-decoration: none;
  color: #555;
  transition: all 0.3s ease;
}

.like:hover {
  color: var(--primary-color);
  text-decoration: underline double;
}

.comment-field {
  resize: none;
  height: 20rem;
}

.post-btn:hover {
  box-shadow: inset 0 0 0 3px var(--primary-color);
}

/************************/
/* TESTIMONIALS SECTION */
/************************/
.section-testimonials {
  padding: 9.6rem 0;
  background-color: var(--main-bg-color);
  margin-bottom: 12.8rem;
}

.testimonial-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.testimonial-name {
  font-size: 1.6rem;
  color: #6f6f6f;
}

/************************/
/* LOGIN SECTION */
/************************/
.section-cta {
  padding: 9.6rem 0 12.8rem 0;
}

.cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;
  background: linear-gradient(
    to right bottom,
    var(--main-bg-color),
    var(--primary-color)
  );
  overflow: hidden;
}

.cta-text-box {
  padding: 6.4rem;
  padding-top: 4.8rem;
  color: #333;
}
.cta-text-box .heading-secondary {
  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 bottom left,
      rgba(12, 166, 120, 0.1),
      rgba(12, 166, 120, 0.1)
    ),
    url("../img/app/sign-in-mn.jpg");
  background-size: cover;
  background-position: center;
}

.cta-form {
  display: grid;
  gap: 3.2rem;
}

.cta-login {
  grid-template-columns: 1fr;
}

.cta-sign-up {
  grid-template-columns: 1fr 1fr;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.cta-form input,
.cta-form select,
.comment-field {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: var(--main-bg-color);
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgb(253, 242, 233, 0.5);
}

.cta-action-link:link,
.cta-action-link:visited {
  display: inline-block;
  text-align: right;
  font-size: 1.4rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.cta-action-link:hover,
.cta-action-link:active {
  text-decoration: underline;
}

.cta-action-text {
  font-size: 1.4rem;
  font-weight: 500;
  color: #021912;
}

.cta-agreement {
  margin-top: 3.2rem;
  font-size: 1.6rem;
  text-align: center;
  color: #021912;
  font-weight: 500;
}

.cta-agreement a {
  color: #fff;
}

/************************/
/* CM / PQ SECTION */
/************************/
.section-download {
  padding: 9.6rem 0 12.8rem 0;
}

.download {
  /* height: 100px; */
  width: 100%;
  border: 4px inset var(--primary-color);
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.download-box {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4.8rem 0;
}

.download-img-box {
  width: 20rem;
  height: 17rem;
  overflow: hidden;
  background-image: linear-gradient(
      rgba(12, 166, 120, 0.01),
      rgba(12, 166, 120, 0.1)
    ),
    url("../img/book.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  border: 3px solid var(--primary-color);
  margin-bottom: 2.4rem;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.05);
}

.download-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.download-icon {
  width: 6.4rem;
  height: 6.4rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1.8rem;
  animation: dangle 1s infinite;
  z-index: -1;
}

@keyframes dangle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.download-text-des {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 2.4rem;
}

.download-text-des span {
  color: var(--primary-color);
  font-weight: 600;
}

.download-form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-form input {
  display: inline-block;
  width: 90%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: 3.5px solid var(--primary-color);
  border-right: 0;
  background-color: var(--main-bg-color);
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.download-form input::placeholder {
  color: #aaa;
}

.download-form .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* TABLE */
table {
  width: 100%;
  margin-top: 6.4rem;
  font-size: 1.8rem;
  color: #222;
  border-collapse: collapse;
}

td,
th {
  padding: 1.6rem 2.4rem;
  text-align: left;
}

thead th {
  background-color: var(--primary-color);
  color: #fff;
  /* width: 25%; */
}

tbody tr:nth-child(odd) {
  background: #f8f9fa;
}
tbody tr:nth-child(even) {
  background: #e9ecef;
}

.btn-download:link,
.btn-download:visited {
  display: inline;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 1.2rem 2.4rem;
  background-color: #fff;
  color: #222;
  box-shadow: inset 0 0 0 2px var(--primary-color);
  border-radius: 9px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.4s;
}

.btn-download:hover,
.btn-download:active {
  background-color: var(--btn--hover);
  color: #fff;
}

/************************/
/* FOOTER SECTION */
/************************/
.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icons {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 2.6rem;
}

.copyright {
  font-size: 1.4rem;
  color: #767676;
  line-height: 1.6;
  margin-top: auto;
}

.year {
  font-weight: 500;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 3.2rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 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;
}

/* GROUP LINK SECTION */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(8, 127, 91, 0.2);
  backdrop-filter: blur(3px);
  z-index: 1000;
  display: none;
}

.group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-100px);
  width: 50rem;
  background: #fff;
  z-index: 100;
  padding: 3.2rem;
  padding-top: 3.8rem;
  color: #021912;
  border-radius: 11px;
  box-shadow: 0 1.6rem 3.2rem rgba(0, 0, 0, 0.05);
  opacity: 0;
  transition: all 0.5s ease-in;
}

/* Visible state with animation */
.group.open {
  transform: translate(-50%, -50%) translateY(0);
  opacity: 1;
}

.overlay.show {
  display: block;
}

.group-title {
  font-size: 2.4rem;
  text-align: center;
  padding-bottom: 2.4rem;
  margin-bottom: 3.2rem;
  font-weight: 600;
  color: #066649;
  border-bottom: 1px solid #ddd;
}

.group-text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 2.4rem;
  text-align: center;
}

.group-text span {
  font-weight: 500;
  color: #e03131;
}

.group-link-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}

.group-link i {
  font-size: 1.8rem;
}

.group-link:link,
.group-link:visited {
  text-decoration: none;
  color: #fff;
  font-size: 1.8rem;
  padding: 1.2rem;
  font-weight: 400;
  border-radius: 9px;
  transition: all 0.3s ease;
}

.whatsapp {
  background: #51cf66;
}

.whatsapp:hover {
  background: #37b24d;
}

.telegram {
  background: #339af0;
}

.telegram:hover {
  background: #1c7ed6;
}

.close-group {
  width: 3.6rem;
  height: 3.6rem;
  color: #e03131;
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  cursor: pointer;
}

.close {
  top: 0.6rem;
  left: 0.6rem;
  color: #fff;
  background: #e03131;
  padding: 0.8rem 1.2rem;
  height: 2.4rem;
  width: 4.8rem;
  border-radius: 5px;
}
