:root {
    --deepred: #9a0201;
    --red: #ff0000;
    --darkred: #26080a;
    --accentcolor: #df6260;
    --white: #ffffff;
    --whitebg: #f1ece4;
    --black: #141313;
    --navToggbleBtnWht: #928c8c;
  
    --ff-poppins: 'Poppins', sans-serif;
  
    --fontSize-1: 2.625rem; /* 4.2rem * 0.625 */
    --fontSize-2: 2.25rem;  /* 3.6rem * 0.625 */
    --fontSize-3: 1.5625rem;/* 2.5rem * 0.625 */
    --fontSize-4: 1.5rem;   /* 2.4rem * 0.625 */
    --fontSize-5: 1.25rem;  /* 2rem * 0.625 */
    --fontSize-6: 1rem;     /* 1.6rem * 0.625 */
    --fontSize-7: 0.9375rem;/* 1.5rem * 0.625 */
  
    --weight-bold: 700;
    --weight-semiBold: 600;
    --weight-medium: 500;
  
    --border-gainsboro: hsl(0, 1%, 85%);
  
    --shadow-1: 0 2px 10px hsla(209, 40%, 14%, 10%);
    --shadow-2: 0 5px 10px hsla(249, 95%, 63%, 25%);
    --shadow-3: 0 5px 10px hsla(357, 64%, 53%, 25%);
    --shadow-4: 0 30px 50px hsla(357, 64%, 53%, 30%);
  
    --radius-pill: 50px;
    --radius-circle: 50%;
    --radius-30: 30px;
    --radius-20: 20px;
  
    --transition-1: 250ms ease;
    --transition-2: 500ms ease;
    --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);
}


/* =============== HERO SECTIONS STARTS ================== */
.other__hero{
    background: url(/assets/images/pattern1.png);
    background-position: center;
    background-size: cover;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.other__hero .other__hero__container{
    margin-top: 5rem;
    width: 70%;
}
.other__hero .other__hero__container h1{
    font-size: var(--fontSize-1);
    color: var(--white);
    line-height: 1.3;
    font-weight: var(--weight-semiBold);
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}
.other__hero .other__hero__container p{
    display: flex;
    align-items: center;
    font-size: var(--fontSize-7);
    color: var(--white);
    font-weight: 300;
    margin-bottom: 3rem;text-transform: capitalize;
}
.other__hero .other__hero__container p span{
    margin-right: .5rem;
    margin-left: 0.5rem;
}
.other__hero .other__hero__container p a{
    color: var(--red);
}
.other__hero .other__hero__container p a:hover{
    color: var(--deepred);
}
  
  
/* =============== HERO SECTIONS ENDS ================== */
  



/* =========== BLOG INDIVIDUAL DETAILS CSS ============= */
.blog__individual .individual__container h5{
  font-size: var(--fontSize-6);
  text-transform: capitalize;
  font-weight:var(--weight-medium);
  color: var(--deepred);
}
.blog__individual .individual__container .individual__flex .icons{
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fontSize-3);
  margin-left: -0.5rem;
  margin-bottom: 1.5rem;
  color: var(--darkred);
  font-weight: bolder
}
.blog__individual .individual__container .individual__flex .icons a:hover{
  color: var(--red);
}
.blog__individual .individual__container .img{
  width: 100%;
  height: 100%;
  margin-bottom: 1rem;
  overflow: hidden;
}
.blog__individual .individual__container .img img{
  transition: var(--transition-1);
}
.blog__individual .individual__container .img img:hover{
  transform: scale(1.05);
  cursor: pointer;
}
.blog__individual .individual__container .content .blog__title{
  color: var(--deepred);
  font-size: var(--fontSize-5);
  margin-bottom: .5rem;
}
.blog__individual .individual__container .content .blog__snippet{
  color: var(--darkred);
  font-size: var(--fontSize-7);
  line-height: 1.5;margin-bottom: 0.5rem;
}
.blog__individual .individual__container .content .blog__snippet:last-child{
  margin-bottom: 0;
}



/* =========== SUPPORT ============== */
.support h2{
  font-size: var(--fontSize-5);
  color: var(--deepred);
  margin-bottom: .5rem;
}
.support p{
  font-size: var(--fontSize-6);
  color: var(--black);
  margin-bottom: 2rem;
}
.support .support__container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.support .support__container .support__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.support .support__container .support__grid .support__card{
  background-color: var(--white);
  box-shadow: var(--shadow-1);
  padding: .7rem;
  margin-bottom: 0;
  height: max-content;
  border-radius: var(--radius-20);
}
.support .support__container .support__grid .support__card i{
  font-size: var(--fontSize-4);
  margin-bottom: .5rem;
  color: var(--darkred);
}
.support .support__container .support__grid .support__card h3{
  font-size: var(--fontSize-6);
  margin-bottom: .5rem;
  color: var(--darkred);
}
.support .support__container .support__grid .support__card p{
  font-size: var(--fontSize-7);
  margin-bottom: .5rem;
  color: var(--black);
}
.support .support__container .support__grid .support__card a{
  font-size: var(--fontSize-7);
  margin-bottom: .5rem;
  color: var(--darkred);
  font-weight: var(--weight-semiBold);
}
.support .support__container .support__grid .support__card a:hover{
  color: var(--red);
  text-decoration: underline;
}
.contact__form__wrapper h2 {
  font-size: var(--fontSize-6);
  margin-bottom: .5rem;
  color: var(--darkred);
}
.contact__form {
  max-width: 700px;
  margin: 0 auto;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}
textarea{
  resize: none;
  width: 100%;
  height: 100px;
}
.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--deepred);
}

.contact__form .btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 2rem;
  cursor: pointer;
  border: none;
}



/* ========= EARNING OPPORTUNITIES ================ */
.earning__opportunities {
  background-color: var(--white);
}
.earning__opportunities h2 {
  text-align: center;
  font-size: var(--fontSize-5);
  color: var(--deepred);
  margin-bottom: 3rem;
}
.opportunity__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.opportunity__card {
  background-color: var(--white);
  border-radius: var(--radius-20);
  padding: 2rem;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s ease;
  border: 1px solid #f2f2f2;
}
.opportunity__card:hover {
  transform: translateY(-5px);
}
.opportunity__card h3 {
  font-size: var(--fontSize-6);
  margin-bottom: 1rem;
  color: var(--darkred);
}
.opportunity__card p {
  font-size: var(--fontSize-7);
  color: var(--black);
}

.cta__block {
  background: url(/assets/images/pattern1.png);
    background-position: center;
    background-size: cover;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.cta__block h2 {
  font-size: var(--fontSize-5);
  margin-bottom: 2rem;
  color: var(--white);
}
.cta__block .btn {
  background-color: var(--white);
  color: var(--deepred);
  font-weight: var(--weight-semiBold);
  border-radius: var(--radius-20);
  padding: 0.75rem 2rem;
  transition: background-color 0.3s ease;
}
.cta__block .btn:hover {
  background-color: var(--darkred);
  color: var(--white);
}
.primary1{
  margin-top: 1rem;
}


/* =========== FAQ SECTION ========== */
.faq.section {
  background-color: var(--white);
}

.faq .section__title {
  text-align: center;
  color: var(--deepred);
  margin-bottom: 2rem;
  font-size: var(--fontSize-5);
}

.faq__wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--border-gainsboro);
  border-radius: var(--radius-20);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  background-color: var(--white);
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: var(--fontSize-6);
  font-weight: var(--weight-semiBold);
  color: var(--black);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq__question:hover {
  background-color: var(--whitebg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  background-color: var(--white);
  transition: max-height 0.3s ease;
}

.faq__answer p {
  margin: 1rem 0;
  font-size: var(--fontSize-7);
  color: var(--black);
}




/* ========= VENDORS  ================ */
.coupon h2{
  font-size: var(--fontSize-5);
  color: var(--deepred);
  margin-bottom: 3rem;
}
.coupon .coupon__containers{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.coupon .coupon__containers .box{
  background-color: var(--white);
  box-shadow: var(--shadow-1);
  padding: .7rem;
  margin-bottom: 0;
  height: max-content;
  border-radius: var(--radius-20);
}
.coupon .coupon__containers .box .img{
  width: 100%;
  height: 100%;
  margin-bottom: 1rem;
  overflow: hidden;
}
.coupon .coupon__containers .box .img img{
  transition: var(--transition-1);
  border-radius: var(--radius-20);
}
.coupon .coupon__containers .box .img img:hover{
  transform: scale(1.05);
  cursor: pointer;
}
.coupon .coupon__containers .box .vendor__name{
  color: var(--black);
  font-size: var(--fontSize-6);
  margin-bottom: 1rem;
}
.coupon .coupon__containers .box .btn{
  height: 40px;
  padding-left: 30px;
  padding-right: 30px;
}





@media screen and (max-width: 900px) {
/* =============== HERO SECTIONS STARTS ================== */
  .other__hero{
    height: auto;
  }
  .other__hero .other__hero__container{
    margin-top: 5rem;
    width: 85%;
  }
  .other__hero .other__hero__container h1{
    font-size: var(--fontSize-3);
  }

  /* =============== HERO SECTIONS ENDS ================== */
}