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

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #6f6f70;
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo {
  height: 4.2rem;
}

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

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

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

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

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

.main-nav-link.nav-FAQ:hover,
.main-nav-link.nav-FAQ:active {
  background-color: #8dc63f;
}

/* 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;
}

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

.section-hero {
  background-color: #333;
  padding: 4.8rem 0 9.6rem 0;
  background-image: url(../img/video-background.png);
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  text-align: center;
  align-items: center;
  color: #ffffff;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

.hero-img {
  width: 100%;
}

.main-header {
  color: #d6ebb9;
}
.happy-subscribers {
  align-items: center;
  margin-top: 8rem;
}

.subscribers-img {

}

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

.subscribers-img img:last-child {
  margin: 0;
}

.subscribers-text {
  padding-top: 19px;
  font-size: 1.8rem;
  font-weight: 600;
}

.subscribers-text span {
  color: #8dc63f;
  font-weight: 700;
}

/**************************/
/* PRODUCTS SECTION */
/**************************/

.section-products {
  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 {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.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%;
}


/**************************/
/* ABOUT SECTION */
/**************************/

.section-about {
  background-color: #eefcdc;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  color: #000;
}

.about-container {
  padding: 9.6rem;
}

.about {
  display: grid;
  grid-auto-flow: row;
  row-gap: 4.8rem;
  column-gap: 8rem;
}

.about-us-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.about-us-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.about-us-name {
  font-size: 1.6rem;
  color: #6f6f6f;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 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);
}

/**************************/
/* PRICING SECTION */
/**************************/

.section-pricing {
  padding: 9.6rem 0;
}


.pricing-plan {
  border-radius: 11px;
  width: 100%;
  color: #000;
}

.pricing-plan--starter {
  justify-self: center;
  border: 2px solid #eefcdc;
  padding: 4.6rem;
}

.pricing-plan--complete {
  background-color:  #eefcdc;
  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.8rem;
  line-height: 1.9;
  color: #4b4a4a;
}

.plan-text-additional {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #6f6f6f;
  padding-top: 10px;
}


/**************************/
/* FAQ SECTION */
/**************************/

.section-FAQ {
  /* top / right / bottom / left */
  /* padding: 9.6rem 0 12.8rem 0; */

  /* top / horizontal / left */
  padding: 4.8rem 0 12.8rem;
  background-color: #6f6f70;;
}

.FAQ-header {
color: #d6ebb9;
font-size: 4.4rem;
line-height: 1.2;
margin-bottom: 3.6rem;
}

.FAQ-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #ffffff;
}

.FAQ .heading-secondary {
  /* color: #45260a; */
  color: inherit;
  margin-bottom: 3.2rem;
}

.FAQ-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.FAQ-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(235, 151, 78, 0.35),
      rgba(230, 125, 34, 0.35)
    ),
    url("../img/eating.jpg");
  background-size: cover;
  background-position: center;
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
}

.footer-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin-right: auto;
  margin-left: auto;
}

.footer-container a {
text-decoration: none;
color: #333;
font-size: 1.8rem ;
}

.copyright{
  font-weight: bold;
  margin:0 auto;
  text-align: right;
}

.copyright.pos-re{
  padding-top:30px;
}

.pos-re {
  position: relative;
  padding: 100px 0px;
}

/**************************/
/* LEGACY POPUP */
/**************************/
/* Popup container - can be anything you want */
.popup {
  font-weight: bold;
  margin:0 auto;
  text-align: right;
  font-size: 1.8rem;
  
}

/* The actual popup */
.popup .popuptext {
  height: 300px;
  overflow:auto;
  visibility: hidden;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #333333;
  color: #fff;
  font-size: 1.8rem;
  text-align: left;
  line-height: 2.0rem;
  padding: 30px;
  position: absolute;

  bottom: 125%;
  left: 50%;
  margin-left: -200px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}