@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

/* Abril Fatface Font */
@font-face {
  font-family: 'Abril Fatface';
  src: url('../fonts/AbrilFatface-Regular.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

/* Teko Font */
@font-face {
  font-family: 'Teko';
  src: url('../fonts/Teko-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

/* Inter Font */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-VariableFont_opsz\,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

/*======================== NAVBAR =======================*/

.navbar-custom {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  border-radius: 110px;
  padding: 10px 50px;
}

.navbar-nav .nav-link {
  color: white;

}

/* =============================== HERO SECTION ==============================*/

.hero-section {
  color: white;
  text-align: left;
  padding: 5vw 0 10vw 0;
  /* height: 55vh; */
  display: flex;
}

.hero-title sup {
  font-size: 0.5em;
  line-height: 0;
}
.underline-text {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.underline-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2em;
  width: 100%;
  height: clamp(13px, 6px, 12px);
  background-color: rgba(0, 94, 247, 1);
  z-index: -1;
}


.card-img {
  /* height: 120vh; */
  object-fit: cover;
  border-radius: 0 0 50px 50px;
}

img.bottle_img {
  position: absolute;
  top: 520px;
  left: -140px;
  width: 320px;
}

/* =====================MEDIA QUERIES ==================== */
@media (max-width: 768px) {
  .logo {
    height: 60px;
  }



  .bottle_img {
    max-width: 90px !important;
    margin-bottom: -200px;
  }

}

@media (min-width: 720px) and (max-width: 1024px) {

  .logo {
    height: 80px;
  }

}

@media (min-width: 1800px) {
  .hero-section {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .logo {
    height: 180px;
  }

  .bottle_img {
    max-width: 290px !important;
    margin-bottom: -200px;
  }


}

.buy-now-3 {
  border-radius: 75px;
  display: inline-block;
  text-align: center;
  margin-top: 10px;
  padding: 12px 40px;
  font-family: "Onest", sans-serif;
  font-weight: 700;
  font-size: 18px;
  border-style: solid;
  background: rgba(0, 94, 247, 1);
  color: white;
  border-right: 4px solid black;
  border-bottom: 4px solid black;
}

.buy-now-3:hover {
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
}



/*================== CERTIFICATION ==============*/

.image-container {
  position: relative;
  display: inline-block;
}

.image-container::before {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: 100%;
  height: 100%;
  background: rgba(0, 94, 247, 1);
  border-radius: 20px;
  z-index: -1;
}

.custom-container {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 15px;
}

/* ===================== VIDEO ======================*/
.yellow-underline {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 5px;
  white-space: nowrap;
}

.yellow-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 20px;
  background-color: #F5E901;
  z-index: -1;
}

/* Tablet View */
@media (max-width: 768px) {
  /* .yellow-underline {
                font-size: 80%;
            } */

  .yellow-underline::after {
    height: 15px;
  }
}

@media (max-width: 480px) {
  /* .yellow-underline {
                background: none !important;
                font-size: 28px;
                white-space: normal;
                text-align: center;
            } */

  .yellow-underline::after {
    height: 10px;
  }

  .video-heading {
    font-size: 30px !important;

  }
}

.video-container {
  position: relative;
  width: 100%;

  margin: auto;
}

.video-thumbnail {
  width: 100%;
  cursor: pointer;
  border-radius: 10px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: orange;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  font-weight: bold;
}

.video-player {
  display: none;
  width: 100%;
  height: 100%;
}

@media (max-width: 425px) {
  .video-thumbnail {
    height: 100vw;
    object-fit: cover;
  }
}

/* =================== MIGHTY RECIPE ===================== */
#heading {
  margin-top: 100px !important;
  margin-bottom: 60px;
}

.custom-section {
  background: #f2f2fc;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  padding-top: 50px !important;
  margin-left: 1px !important;
  margin-right: 1px !important;

}

.custom-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.custom-card img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
  border-radius: 20px;
}

.custom-card:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}

.overlay i {
  font-size: 18px;
  transform: rotate(45deg);
}

.banner {
  background-color: rgba(0, 94, 247, 1);
  color: white;
  text-align: center;
  padding: 60px 10px;
  border-radius: 20px;
  margin: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
}

.banner::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 100%;
  height: 100%;
  background: black;
  border-radius: 20px;
  z-index: -1;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left,
.right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center {
  flex: 2;
  text-align: center;
}

.bottle {
  width: 250px;
  max-width: 100%;
}

@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
  }

  .left {
    order: 1;
    margin-bottom: 20px;
  }

  .center {
    order: 2;
    margin-bottom: 20px;
  }

  .right {
    order: 3;
    margin-bottom: 20px;
  }

  .bottle {
    width: 130px;
  }
}

@media (min-width: 450px) and (max-width: 768px) {
  .banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    text-align: center;
  }

  .left,
  .right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .center {
    flex: 2;
    text-align: center;
  }

  .bottle {
    width: 150px;
  }
}


.buy-now-2 {
  border-radius: 75px;
  display: inline-block;
  text-align: center;
  margin-top: 10px;
  padding: 12px 40px;
  font-family: "Onest", sans-serif;
  font-weight: 700;
  font-size: 18px;
  border-style: solid;
  background: rgba(255, 255, 255, 1);
  color: rgba(35, 68, 63, 1);
  border-right: 4px solid rgba(9, 17, 16, 1);
  border-bottom: 4px solid rgba(9, 17, 16, 1);
}

.buy-now-2:hover {
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
}

/*================== FONT STYLES MOVED FROM INLINE CSS ==================*/

.navbar-nav {
  font-family: 'Teko', sans-serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
}

.hero-title {
  font-family: 'Teko', sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 10vw, 111px);
  line-height: 99%;
  letter-spacing: -2%;
}

.hero-text {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 100%;
  letter-spacing: -2%;
}

.umami-title {
  font-family: 'Teko', sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 7vw, 85px);
  line-height: 73%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.umami-text {
  font-family: 'Onest', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 164%;
  letter-spacing: 2%;
}

.video-heading {
  font-family: 'Teko', sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 7vw, 85px);
  line-height: 73%;
  letter-spacing: 0%;
  text-transform: capitalize;
  text-align: center;
  margin-top: 100px !important;
}

.recipe-title {
  font-family: 'Teko', sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 7vw, 85px);
  line-height: 73%;
  letter-spacing: 0%;
  text-transform: capitalize;
  text-align: center;

}

.recipe-text {
  font-family: 'Onest', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 164%;
  letter-spacing: 2%;
}

.card-title {
  font-family: 'Teko', sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 85%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
}

.card-text {
  font-family: 'Onest', sans-serif;
  font-size: 14px;
  line-height: 164%;
  text-align: center;
  min-height: 80px;
}

.footer-text {
  font-family: 'Onest', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  margin-bottom: 10px;
}

.watermark-text {
  color: rgba(2, 15, 242, 0.07);
  font-family: 'Abril Fatface', cursive;
  font-weight: 400;
  font-size: clamp(80px, 20vw, 284.49px);
  line-height: 115%;
  letter-spacing: 0%;
  text-transform: capitalize;
  position: absolute;
  bottom: -110px;
}

.watermark-container {
  height: 175px;
}

@media screen and (max-width: 768px) {
  footer .list-unstyled li {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .watermark-text {
    bottom: -35px !important;
  }
  .watermark-container {
    height: 120px;
  }
}
@media screen and (max-width: 420px) {
  .watermark-container {
    height: 80px;
  }
}

/* By arbab */

/* Header */

.navbar-nav .active a {
  color: #005EF7;
}

/* Home Page */

.boost_evey_bite .banner {
  padding-bottom: 0;
  padding-top: 0;
  background-image: url(../images/boost-every-bite-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.boost_evey_bite .center {
  padding-top: 106px;
  padding-bottom: 106px;
}

.boost_evey_bite .banner .left img,
.boost_evey_bite .banner .right img {
  position: absolute;
  width: 26%;
  bottom: 0;
}

.boost_evey_bite .banner .right img {
  position: absolute;
  width: 27%;
  bottom: 0;
}

.boost_evey_bite {
  position: relative;
}

.card-img-overlay {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* Responsivness Style Start */

@media screen and (max-width: 1024px) {

  .boost_evey_bite .banner .left,
  .boost_evey_bite .banner .right {
    display: none;
  }

  .boost_evey_bite .center {
    padding: 50px 50px 40px 50px;
  }
}

@media screen and (max-width: 820px) {}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 600px) {

  .boost_evey_bite .center {
    padding: 50px 30px 20px 30px;
  }

  .card-img {
    height: 640px;
  }
}

a.nostyle {
  text-decoration: none;
  color: inherit;
}

