:root {
    --primary-color: #f47325;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    font-size: 62.5%;
  }
  
  body {
    font-family: Arial, sans-serif;
    
  }
  
  a {
    text-decoration: none;
  }
  
  ul {
    list-style: none;
  }
  
  p {
    margin-bottom: 16px;
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
   
  }
  
  .section {
    padding: 20px 0;
  }
  
  .btn {
    border: 0;
    background: none;
    cursor: pointer;
  }
  
  .subtitle {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .navbar {
    background-color: #232323;
    /* background-color:#00865cdc; */
    padding: 20px 0;
  }
  
  .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .navbar__logo {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 600;
  }
  
  .navbar__menu {
    display: none;
  }
  
  .hero {
    padding: 40px 0;

    /* background-color: #73b1a4; */
    /* background: radial-gradient(circle, #23508b 15%, #23508b 15%, #0b2c58 60%); */
    background: #00aeef;
    
  }
  
  .hero__title {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 20px;
  }
  s
  .hero__subtitle {
    font-family:cursive;
    color: #ca2525;
    font-size: 12px;
  }
  
  .hero__list {
    margin: 30px 0;
  }
  
  .hero__list-item {
    font-weight: 600;
    font-size: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .hero__list-item::before {
    content: "⭐";
    font-size: 20px;
    margin-right: 10px;
    margin-top: -5px;
  }
  
  .hero__btn {
    text-transform: uppercase;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 10px 10px;
    margin-top: 20px;
  }
  
  .hero__img {
    width: 100%;
    max-width: 400px;
  }
  
  .benefits__list {
    list-style: disc;
    margin-left: 20px;
  }
  
  .guarantee {
    background: radial-gradient(circle, #23508b 15%, #23508b 15%, #0b2c58 60%);
    color: #fff;
    padding: 30px 0;
    margin: 40px 0;
  }
  
  .guarantee img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 40px;
  }
  
  .guarantee h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  
  .ingredients__img {
    text-align: center;
  }
  
  .ingredients__img img {
    width: 100%;
    max-width: 1000px;
  }
  
  .order {
    text-align: center;
  }
  
  .order__bottles {
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .order__bottles img {
    width: 100%;
    max-width: 800px;
    transition: ease 0.3s all;
  }
  
  .order__bottles img:hover {
    transform: scale(1.1);
  }
  
  .order__title {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .order__title,
  .order__subtitle {
    color: var(--primary-color);
  }
  
  .checkout__title {
    color: #fff;
    background-color: var(--primary-color);
    font-size: 2rem;
    text-align: center;
    padding: 20px 30px;
    margin-bottom: 20px;
  }
  
  .checkout__text {
    text-align: center;
  }
  
  .checkout__img {
    text-align: center;
    margin: 60px 0;
  }
  
  .checkout__img img {
    width: 100%;
    max-width: 900px;
  }
  
  .links {
    background-color: var(--primary-color);
    padding: 20px 0;
  }
  
  .links a {
    color: #fff;
    font-weight: 600;
  }
  
  .footer {
    margin-top: 40px;
  }
  
  .footer p {
    font-size: 1.2rem;
  }
  
  .footer__copyright {
    color: #241f1f;
    font-size: 18px;
    font-weight: 600;
  }
  
  /* Tablets */
  @media screen and (min-width: 481px) {
    p {
      font-size: 2rem;
    }
    .subtitle {
      font-size: 2.4rem;
    }
    .hero__title {
      font-size: 3rem;
    }
    .hero__subtitle {
      color: #fff;
      /* font-size: 2.8rem; */
      
    }
  }
  
  /* Small screens, laptops */
  @media screen and (min-width: 769px) {
    p {
      font-size: 2.2rem;
    }
    .subtitle {
      font-size: 3rem;
    }
    .navbar {
      padding: 30px 0;
    }
    .navbar__logo {
      font-size: 3.4rem;
    }
    .navbar__menu {
      display: flex;
    }
    .navbar__menu-item {
      margin-right: 20px;
    }
    .navbar__menu-item a {
      color: #fff;
      font-size: 1.4rem;
      text-transform: uppercase;
    }
    /* Order
    .button1{
      color: #fff;
      background-color: #2c9181;
      padding-left: 20px;
      padding-right: 20px;
      padding-top: 9px;
      padding-bottom: 9px;
     border: 1px solid #2c9181;
     border-radius: 5px;
     font-weight: 900; */
     
    .hero__title {
      font-size: 3.6rem;
    }
    .hero__list {
      margin-left: 20px;
    }
    .hero-container {
      display: grid;
      align-items: center;
      grid-template-columns: repeat(2, 1fr);
      
    }
    .benefits__list {
      margin-left: 40px;
    }
    .guarantee {
      text-align: center;
    }
    .guarantee h2 {
      font-size: 3rem;
    }
    .order__bottles {
      flex-direction: row;
    }
    .order__text {
      width: 100%;
      max-width: 760px;
      margin: auto;
    }
    .checkout__title {
      font-size: 2.6rem;
    }
    .links__list {
      columns: 2;
      -webkit-columns: 2;
      -moz-columns: 2;
    }
    .footer__copyright {
      text-align: center;
    }
  }
  
  /* Desktops, large screens */
  @media screen and (min-width: 1025px) {
    .subtitle {
      font-size: 4rem;
    }
    .navbar__logo {
      font-size: 4rem;
    }
    .hero__title {
      font-size: 4.2rem;
    }
  }
  .Hightlight{
    color:gold ;
  }
  /* .testimonials */
.testim{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: radial-gradient(circle, #23508b 15%, #23508b 15%, #0b2c58 60%);
}



.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    text-align: center;
}

/* This class is defining the styling 
for the container element that holds each
testimonial in a testimonial grid. */
.testimonial-container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* This class is defining the 
styling for the avatar image */
.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333333;
}

.testimonial-role {
    font-size: 16px;
    color: #666666;
}

/* This media query in CSS that targets 
screens with a maximum width of 600 pixels. */
@media screen and (max-width: 600px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
