* {
  margin: 0px;
  padding: 0px;
  font-family: sans-serif;
}
.header {
  height: 100vh;
  width: 100%;
  background-image: url(../img/lemon.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}
.header nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}
nav img {
  height: 130px;
}
.navbar-list {
  flex: 1;
  text-align: right;
}
.navbar-list ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}
.navbar-list ul li a {
  color: black;
  text-decoration: none;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
}
.navbar-list ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: black;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.navbar-list ul li:hover::after {
  width: 100%;
}
nav .fa {
  display: none;
}
.body {
  margin: 50px auto;
  text-align: center;
  /* padding-top: 75px; */
}
.body h1 {
  background-image: linear-gradient(
    to top,
    #fdb0b5,
    #ff9db8,
    #ff8ac4,
    #ff79da,
    #fd6ef7
  );
  /* background-image: linear-gradient(to top, #f92134, #ff2767, #ff4298, #ff62c6, #f280ed); */
  /* background: linear-gradient(90deg,red,blue); */
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 100px;
  font-family: "Sigmar One", cursive;
}
.body p {
  font-size: 30px;
  margin: 60px auto 0;
  text-align: center;
  text-transform: uppercase;
  font-family: "Cherry Cream Soda", cursive;
}
.body h3 {
  text-transform: uppercase;
  padding-top: 70px;
  font-family: "MuseoModerno", cursive;
}
@media (min-width: 700px) {
  .body .none {
    display: none;
  }
}
@media (max-width: 770px) {
  .navbar-list ul li {
    display: block;
  }
  .navbar-list {
    display: none;
    position: absolute;
    background: url(../img/main.jpg);
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
  }
  nav .fa {
    display: block;
    color: black;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  .navbar-list ul {
    padding: 20px;
  }
  .body h1 {
    font-size: 70px;
  }
  .body p {
    font-size: 16px;
  }
}

/* ----------- STATS SECTION ------- */

.stats {
  width: 90%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
  background-image: url(../img/stats.jpg);
  background-position: center;
  background-size: cover;
}
.row {
  margin-top: 3%;
  display: flex;
  justify-content: space-between;
}
.col {
  flex-basis: 22%;
  margin-bottom: 3%;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;
  text-align: center;
}
.counter-box {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 10px 0;
  border-radius: 20px;
  box-shadow: 0 0 20px -4px #66676c;
}
.counter-box:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
.counter-box h2,
span {
  display: inline-block;
  margin: 15px 0;
  font-size: 50px;
  color: #000;
}
.counter-box .fa {
  font-size: 50px;
  color: #fd82da;
  display: block;
}
.counter-box h4 {
  font-size: 3vh;
}
@media (max-width: 700px) {
  .row {
    flex-direction: column;
  }
}

/* ----------- OUR VISION SECTION ------- */
.vision {
  width: 90%;
  height: 80vh;
  background-image: url(../img/vision.jpg);
  text-align: center;
  background-position: center;
  background-size: cover;
  margin: auto;
  border-radius: 50px;
}
.vision .row {
  display: flex;
  justify-content: space-between;
}
.vision .details {
  flex-basis: 45%;
  margin: 2% auto;
  height: 72vh;
  width: 40%;
}
#detail1 h1 {
  text-align: center;
  /* margin: auto; */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  font-size: 145px;
  background: linear-gradient(
    90deg,
    rgba(131, 58, 180, 1) 0%,
    rgba(253, 29, 29, 1) 50%,
    rgba(247, 145, 0, 1) 100%
  );
  background-image: linear-gradient(
    to top,
    #fdb0b5,
    #ff9db8,
    #ff8ac4,
    #ff79da,
    #fd6ef7
  );
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#detail2 {
  text-align: left;
  font-size: 40px;
  text-align: justify;
}
#detail2 p {
  margin: 28px 0 0 0;
  color: black;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 34px;
}
@media (max-width: 700px) {
  .vision .row {
    display: block;
    justify-content: center;
  }
  .none {
    display: none;
  }
  #detail1 {
    width: 100%;
    height: 10vh;
  }
  .nonev {
    display: none;
  }
  #detail1 h1 {
    font-size: 57px;
  }
  #detail2 {
    width: 100%;
  }
  #detail2 p {
    font-size: 28px;
    margin: 28px 5px 0;
  }
}

/* ----------- FOOTER SECTION ------- */

#footer {
  width: 80%;
  text-align: center;
  padding: 30px 0;
  margin: 40px auto;
  background-position: center;
  background-color: #fff3f3;
}
#footer:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

#footer h3 {
  margin-bottom: 25px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 55px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#footer h3::after {
  content: "";
  width: 0%;
  height: 2px;
  background: black;
  display: block;
  margin: auto;
  transition: 0.5s;
}
#footer h3:hover::after {
  width: 27%;
}
#footer p {
  font-size: 20px;
}
#footer .madewlove {
  font-size: 25px;
}
.icons .fa {
  color: black;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
  font-size: 25px;
}
.fa-heart-o {
  color: #f44336;
}
.tiktok {
  height: 25px;
  width: 27.86px;
}
@media (max-width: 700px) {
  #footer h3 {
    font-size: 48px;
  }
}
