:root {
  --primary-color: #cc3333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Titillium Web", sans-serif;
}

a {
  text-decoration: none;
  color: black;
}

p {
  margin-bottom: 16px;
  font-size: 2rem;
}

h2 {
  font-size: 4.4rem;
  color: var(--primary-color);
}

h3 {
  font-size: 2.4rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
}

.primary--text {
  color: var(--primary-color);
}

.red--text {
  color: #f44336;
}

.black--text {
  color: #000;
}

.white--text {
  color: #fff;
}

.yellow--text {
  color: #ffeb3b;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid--2 {
  grid-template-columns: 1fr 1fr;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.text-center {
  text-align: center;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.align-end {
  align-items: flex-end;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-space-between {
  justify-content: space-between;
}

.m-auto {
  margin: auto;
}

.display-1 {
  font-size: 3.4rem;
}

.display-4 {
  font-size: 9rem;
}

.headline {
  font-size: 2rem;
}

.title {
  font-size: 1.8rem;
}

.font-600 {
  font-weight: 600;
}

.mr-3 {
  margin-right: 12px;
}

.text-uppercase {
  text-transform: uppercase;
}

.divider {
  border-color: rgba(0, 0, 0, 0.12);
  margin: 20px 0;
}

.badge {
  background-color: var(--primary-color);
}

.badge__wrapper {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.badge__title {
  font-style: italic;
  color: #fff;
  font-size: 2.6rem;
}

.hero {
  padding: 20px 0;
}

.hero__title {
  color: var(--primary-color);
  font-size: 3.6rem;
  text-transform: uppercase;
}

.hero__buy-now {
  max-width: 300px;
}

.hero__order-today {
  display: block;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

.hero__bottles-img {
  max-width: 300px;
  margin-top: -40px;
  margin-bottom: -50px;
  width: 100%;
}

.header__timer {
  margin-top: 40px;
}

.header__timer-item {
  margin: 0 12px;
}

.header__timer-item h2 {
  background-color: #ffa726;
  border: 4px solid #f09000;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  display: grid;
  place-content: center;
  font-size: 2.8rem;
  color: #000;
}

.header__timer-item p {
  font-size: 1.4rem;
  color: rgb(156, 156, 156);
}

.what-is {
  padding: 20px 0;
}

.special-offer {
  background-color: var(--primary-color);
  padding: 20px 0;
}

.special-offer__title {
  color: #fff;
}

.special-offer__subtitle {
  color: #fff;
  font-size: 3rem;
}

.special-offer__stars {
  max-width: 200px;
}

.pricing-box {
  background: #fff;
  padding: 40px 60px;
  border-radius: 24px;
  margin: 30px 0;
}

.pricing-card {
  background: #424242;
  padding: 4px;
}

.pricing-card__img {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  display: block;
}

.pricing-card__header {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 4rem;
}

.pricing-card__body {
  padding: 10px;
  background: #fff;
}

.pricing-card__price {
  max-height: 110px;
}

.pricing-card__btn {
  max-width: 300px;
  width: 100%;
  margin: auto;
  display: block;
}

.safe {
  padding: 20px 0;
}

.safe__img {
  max-width: 160px;
  margin-right: 60px;
}

.guarantee {
  background-color: var(--primary-color);
  padding: 40px 0;
}

.guarantee .grid--2 {
  grid-template-columns: 0.5fr 1fr;
}

.guarantee__img {
  max-width: 340px;
  width: 100%;
}

.guarantee__btn {
  max-width: 360px;
  width: 100%;
}

.ingredients {
  padding: 20px 0;
}

.buy-now--centered {
  display: block;
  margin: auto;
}

.footer {
  background-color: #424242;
  padding: 30px 0;
  margin-top: 60px;
}

.footer__header {
  margin-bottom: 30px;
}

.footer__list {
  list-style: none;
  display: flex;
}

.footer__list-item {
  margin: 0 12px;
}

.footer__list-item a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.footer__copyright,
.footer__disclaimer {
  font-size: 1.5rem;
}

.terms {
  padding: 60px 0;
}

.terms ul li {
  font-size: 1.6rem;
}

.order__bottles-img,
.order__get-started {
  max-width: 450px;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .grid--3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 930px) {
  .badge__wrapper {
    flex-direction: column;
  }

  .grid--2,
  .guarantee .grid--2 {
    grid-template-columns: 1fr;
  }

  .footer__header {
    flex-direction: column;
  }

  .display-1 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .pricing-box {
    padding: 40px 20px;
  }
  .flex-md-column {
    flex-direction: column;
  }

  .display-1 {
    font-size: 2.6rem;
  }
}
.work-section{
    width:100%;
    background:#fff;
    margin:60px 0;
    font-family:'Poppins',sans-serif;
}

.work-header{
    background:#181818;
    padding:45px 20px;
    text-align:center;
}

.work-header h2{
    color:#fff;
    font-size:52px;
    font-weight:700;
    margin:0;
}

.work-content{
    max-width:1100px;
    margin:auto;
    padding:60px 20px;
}

.work-content .intro{
    font-size:22px;
    color:#444;
    line-height:1.8;
    margin-bottom:50px;
}

.work-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:35px;
}

.check{
    width:48px;
    height:48px;
    min-width:48px;
    background:#28a745;
    border-radius:50%;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    font-weight:700;
    margin-right:22px;
}

.work-item h4{
    margin:0 0 10px;
    font-size:30px;
    font-weight:700;
    color:#222;
}

.work-item p{
    margin:0;
    color:#555;
    font-size:20px;
    line-height:1.8;
}

/* Responsive */

@media(max-width:768px){

.work-header h2{
    font-size:34px;
}

.work-content{
    padding:40px 20px;
}

.work-content .intro{
    font-size:18px;
}

.work-item h4{
    font-size:24px;
}

.work-item p{
    font-size:17px;
}

.check{
    width:42px;
    height:42px;
    min-width:42px;
    font-size:22px;
}

}

.offer-section{
background:#fff;
font-family:Poppins,sans-serif;
}

.offer-header{
background:#181818;
padding:25px;
text-align:center;
}

.offer-header h2{
color:#fff;
font-size:50px;
font-weight:700;
margin:0;
}

.offer-top{
text-align:center;
padding:30px 0;
border-bottom:1px solid #ddd;
}

.offer-top h3{
font-size:40px;
font-weight:700;
margin-bottom:10px;
}

.offer-top h4{
font-size:34px;
font-weight:700;
}

.offer-top span{
color:#e53935;
}

.offer-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
padding:50px 0;
}

.compare-box{
display:flex;
justify-content:center;
gap:40px;
}

.product{
text-align:center;
}

.product img{
max-width:180px;
}

.green{
color:#4CAF50;
}

.red{
color:#f44336;
}

.circle{
width:70px;
height:70px;
border-radius:50%;
margin:20px auto;
display:flex;
align-items:center;
justify-content:center;
font-size:42px;
color:#fff;
}

.green-bg{
background:#4CAF50;
}

.red-bg{
background:#f44336;
}

.badges{
display:block;
margin:30px auto;
max-width:420px;
width:100%;
}

.stars{
display:block;
margin:20px auto;
width:260px;
}

.compare h2{
text-align:center;
font-size:38px;
margin-top:20px;
}

.discount{
text-align:center;
color:#f44336;
font-size:34px;
}

.content h1{
font-size:58px;
font-weight:700;
margin-bottom:25px;
}

.content p{
font-size:22px;
line-height:1.8;
}

.old-price{
font-size:34px;
color:#f44336;
margin-top:30px;
}

.price{
font-size:54px;
font-weight:700;
}

.price span{
color:#111;
}

.today{
font-size:36px;
margin:25px 0;
}

.today span{
color:#f44336;
}

.offer-btn{
display:inline-block;
background:#FFD54F;
padding:22px 55px;
border-radius:50px;
font-size:32px;
font-weight:700;
color:#222;
text-decoration:none;
box-shadow:0 6px 12px rgba(0,0,0,.2);
transition:.3s;
}

.offer-btn:hover{
transform:translateY(-3px);
}

@media(max-width:991px){

.offer-grid{
grid-template-columns:1fr;
}

.offer-header h2{
font-size:34px;
}

.offer-top h3{
font-size:28px;
}

.offer-top h4{
font-size:24px;
}

.content h1{
font-size:38px;
text-align:center;
}

.price{
font-size:36px;
}

.offer-btn{
font-size:24px;
padding:18px 35px;
display:block;
text-align:center;
}

.compare-box{
flex-direction:column;
align-items:center;
}

}
.product-image,
.guarantee__btn.buy-now--centered:first-child{
    width:380px;      /* पहले 320px था */
    max-width:100%;
    height:auto;
    display:block;
    margin:0 auto 15px;
}.stars-image,
img[src*="5-stars"]{
    width:220px;
    height:auto;
    display:block;
    margin:15px auto;
}.badge-image,
img[src*="fda"]{
    width:260px;
    height:auto;
    display:block;
    margin:15px auto;
}