/* =============================
   VARIABLES & RESET
============================= */

:root {
    --primary-orange: #ff5722;
    --btn-red: #d32f2f;
    --bg-cream: #FFFEF2;
    --text-dark: #333;
    --font-oswald: 'Oswald', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-poppins);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

ul { list-style: none; }
a { text-decoration: none; }

/* --- HERO SECTION --- */
.hero-section {
    background: url(../powder/powder-assets/banner.svg) no-repeat center center;
    background-size: cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-wrapper {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 120px; /* navbar space */
}

/* Background Pattern */

.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1400px;
    background: rgba(255,255,255,0.85);
    padding: 8px 30px;
    border-radius: 50px;
    display: flex;
    margin-bottom: 100px;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-links.left, .nav-links.right {
    display: flex;
    align-items: center;
    /* gap: 40px; */
    flex: 1; 
}

.nav-links.right { justify-content: flex-end; gap: 150px;}

.nav-links a {
    color: #444;
    font-weight: 700;
    font-size: 13px;
    margin: 0 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--primary-orange); }

.nav-links.left {
  gap: 150px;
}
/* Logo hanging adjustment */
.nav-logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.main-logo { height: 75px; }

.btn-buy-nav {
    background-color: var(--btn-red);
    color: white !important;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}
.btn-buy-nav:hover{
  transform: translateY(-3px);background: url(../assets/everygi.png)no-repeat center right / cover; color: #fff ; background-color: #D70F14; transition: 0.3s;
}

.lang-selector {
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #333;
    margin-left: 15px;
}

/* ===============================
   NAVBAR PRODUCTS DROPDOWN
================================ */

/* Wrapper */
.products-dropdown {
  position: relative;
}

/* Toggle (SMALL + CLEAN) */
.dropdown-toggle {
  padding: 8px 15px;
  font-weight: 700;
  font-size: 14px;
  /* color: #ff4a17; */
  color: #444;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 1px;
  transition: 0.3s ease;
}
.dropdown-toggle:hover{
  color: #ff4a17;
}
/* Arrow */
.arrow {
  font-size: 12px;
  transition: transform 0.35s ease;
}
/* Rotate Arrow */
.products-dropdown.open .arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 45px;
  left: 0;
  width: 260px;
  background: #fffffff2;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  
  opacity: 0;
  transform: translateY(15px) scale(0.95);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(.17,.67,.83,.67);
}

/* Show */
.products-dropdown.open .dropdown-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;

}

/* Items */
.dropdown-item {
  display: block;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 15px;
  background: #FEEDE8;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  color: #5a4c48;
  text-decoration: none;
  transition: 0.3s ease;
  border: 6px solid #fff8f4;
}

/* Active */
.dropdown-item.active {
  background: #ff4a17;
  color: white;
  /* box-shadow: 0 8px 18px rgba(255,74,23,0.35); */
}
.dropdown-item.active:hover{
  color: white;
}
/* Hover */
.dropdown-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  border: none;
  transition: 0.5ms ease-in-out;
}
/* --- HERO CONTENT --- */
.hero-content {
    flex: 1;
    color: white;
}

.hero-content-heading-activon {
  position: relative;
    font-family: var(--font-oswald);
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 400px;
    left: 10px;
}

.hero-subtext {
  position: relative;
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 1px;
    bottom: 270px;
    left: 40px;
    font-family: var(--font-oswald);
}

/* RIGHT PRODUCT IMAGE */
.hero-products-powder {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-products-powder img {
    margin-top: 80px;
    width: 110%;
    max-width: 689px;
    height: auto;
}
.hero-buttons { margin-bottom: 10px; }

.btn-white {
    background: white;
    color: var(--text-dark);
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    margin: 0 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}
.btn-white:hover { transform: translateY(-3px);background: url(../assets/everygi.png)no-repeat center right / cover; color: #fff; background-color: #D70F14;transition: 0.3s;}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.dot {
  margin-top: 20px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 1px solid white;
}
.dot.active {   transform:scale(1.6); }
.red .dot { border-color: #ccc; background: #ccc; }
.red .dot.active { background: var(--primary-orange); border-color: var(--primary-orange); }



/* SECTION BACKGROUND */
.why-immunevolt,
.benefits {
  padding: 100px 8%;
  background-color: var(--bg-cream);
  font-family: 'Poppins', sans-serif;
}

/* ================= WHY SECTION ================= */

.why-container {
  display: flex;
  align-items: center;
  gap: 100px;
}
.why-image img {
  width: 100%;
  min-height: 40%;
  max-width: 600px;
  border-radius: 25px;
  transition: transform 0.6s ease;
  margin-left: 50px;
}

.why-image img:hover {
  transform: scale(1.1);
}

.why-content {
  max-width: 550px;
  /* padding-left: 250px; */
}


.why-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #493E34;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 45px;
  margin-bottom: 40px;
  color: #3b332b;
  font-weight: 500;
}

.section-title span {
  color: #ff4d00;
}
/* ================= BENEFITS ================= */

/* ================= BENEFITS SECTION ================= */
/* .benefits {
  padding: 120px 5%;
  text-align: center;
}



.benefits-wrapper {
  display: grid;
  grid-template-columns: 1fr 600px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 40px;
  position: relative;
}

.benefit-center {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-center img {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 0 20px rgba(255, 102, 0, 0.5));
  transition: transform 0.5s ease;
}

.benefit-center:hover img {
  transform: scale(1.05);
}

.benefit {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 350px;
}

.benefit.left {
  justify-self: end;
  text-align: right;
}

.benefit.right {
  text-align: left;
}

.benefit.left.top {
  grid-column: 1;
  grid-row: 1;
}

.benefit.left.bottom {
  grid-column: 1;
  grid-row: 2;
}

.benefit.right.top {
  grid-column: 3;
  grid-row: 1;
}

.benefit.right.bottom {
  grid-column: 3;
  grid-row: 2;
}

.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-circle img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.benefit:hover .icon-circle {
  transform: scale(1.1);
}

.benefit h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #F94C1B;
  margin-bottom: 10px;
}

.benefit p {
  font-size: 16px;
  color: #493E34;
  line-height: 1.6;
} */
.benefits-powder{
  padding:100px 6%;
}

/* MAIN LAYOUT */

.benefits-container-powder{
  display:grid;
  grid-template-columns: 1fr 500px;
  align-items:center;
  gap:80px;
}

/* LEFT TEXT SIDE */

.benefits-text-powder{
  display:flex;
  flex-direction:column;
  gap:45px;
  margin-left: 5vw;
}

/* EACH BENEFIT */

.benefit-item-powder{
  display:flex;
  align-items:flex-start;
  gap:50px;
}

/* ICON */

.icon-circle-powder{
  width:70px;
  height:70px;
  background:#ff4d00;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.icon-circle-powder img{
  width: 90px;
  height: 90px;
  object-fit: contain;
}

/* TEXT */

.benefit-item-powder h3{
   font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #F94C1B;
  margin-bottom: 10px;
}

.benefit-item-powder p{
  font-size:15px;
  color:#5b5148;
  line-height:1.6;
  max-width:340px;
}

/* RIGHT IMAGE */

.benefits-image-powder{
  display:flex;
  justify-content:center;
}

.benefits-image-powder img{
margin-right: 120px;
}
/* ================= WHEN TO USE =================== */


.when-use {
  padding: 0 100px 5%;
}

/* ORANGE CONTAINER */
.when-use-container {
  background: #ff4d00;
  border-radius: 25px;
  padding: 60px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SIDE */
.when-left {
  max-width: 300px;
  color: #fff;
}

.when-left h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 20px;
}

.when-left p {
  font-size: 16px;
  line-height: 1.6;
}

/* RIGHT SIDE */
.when-right {
  display: flex;
  gap: 60px;
  flex: 1;
  justify-content: space-between;
}

.use-item {
  text-align: center;
  color: #fff;
  max-width: 220px;
}

/* ICON CIRCLE */
.use-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.use-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* HOVER EFFECT */
.use-item:hover .use-icon {
  transform: translateY(-8px);
}

/* TEXT */
.use-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 100;
  margin-bottom: 12px;
}

.use-item p {
  font-size: 13px;
  line-height: 1.5;
}


/* ================= BOOST SECTION ================= */
.boost-section {
  padding: 100px 5%;
  text-align: center;
}

.boost-p{
        margin-bottom: 60px;
}
/* SLIDER WRAPPER */
.boost-slider {
  position: relative;
  max-width: 1100px;
  margin: auto;
  height: 450px;
}

.boost-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* STACKED SLIDES */
.boost-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8ss ease;
}

/* ACTIVE SLIDE */
.boost-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Background */
.slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  transition: all 0.8s ease;
}

/* PRODUCT OVERLAY */
.slide-product {
  position: absolute;
  left: 48%;
  bottom: -20px;
transform: translateX(-80%) translateY(0);
  height: 65vh;
  z-index: 5;
  transition: transform 0.8s ease;
}

/* Slide active product animation */
.boost-slide.active .slide-product {
  transform: translateX(-50%) translateY(0);
}

/* TEXT */
.slide-content {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) translateX(40px);
  width: 35%;
  color: white;
  opacity: 0;
  transition: all 0.8s ease;
  text-align: left;
}

.boost-slide.active .slide-content {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.slide-content h3 {
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 20px;
}

.slide-content button {
  margin-top: 20px;
  padding: 12px 35px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
.slide-content button:hover{
  transform: translateY(-3px);background: url(../assets/everygi.png)no-repeat center right / cover; color: #fff; background-color: #D70F14;
}
.boost-arrows {
  position: absolute;
  top: 50%;
  left: -55px;
  width: 110%;
    transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  gap: 20px;
}

.arrow-right{
  border-radius: 50%;
  padding: 18px;
    background-color: #FFCC04;
    border: none;
}
.arrow-right:hover {
    background-color: #efbf00;
  transform: scale(1.1);
}
.arrow-left{
  border-radius: 50%;
  padding: 18px;
    background-color: #ffffff;
    border: none;
}
.arrow-left:hover {
    background-color: #d5d3cd;
  transform: scale(1.1);
}
/* ===============================
   HOW TO USE SECTION
================================ */

.how-to-use {
  padding: 80px 6%;
  text-align: center;
}

/* WHERE TO BUY */


.where-buy {
  padding: 0 100px 100px 0 5%;
  text-align: center;
}

/* TITLE */
.where-title {
  font-family: 'Oswald', sans-serif;
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 15px;
  margin-top: 15px;
  color: #3b332b;
}

.where-title span {
  color: #ff4d00;
}

/* SUBTITLE */
.where-subtitle {
  font-size: 1rem;
  color: #6b625a;
  margin-bottom: 60px;
}

/* CARDS WRAPPER */
.buy-platforms {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* INDIVIDUAL CARD */
.platform-card {
  width: 190px;
  height: 95px;
  background: #ffffff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 13px 12px 20px rgb(255 99 0 / 17%);
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgb(255 99 0 / 17%);
}

/* IMAGE */
.platform-card img {
  /* max-width: 120px; */
  /* max-height: 50px; */
  object-fit: contain;
} 
.platform-card:nth-child(1) img{
  position: absolute;
  height: 140px;
  width: 168px;
}
.platform-card:nth-child(2) img{
  position: absolute;
  height: 140px;
  width: 114px;
}.platform-card:nth-child(3) img{
  position: absolute;
  height: 140px;
  width: 168px;
}.platform-card:nth-child(4) img{
  position: absolute;
  height: 140px;
  width: 168px;
}.platform-card:nth-child(5) img{
  position: absolute;
  height: 140px;
  width: 168px;
}


.watch-section-powder{
  padding:100px 6%;
  text-align:center;
}

/* TITLE */

.watch-title-powder{
  font-size:46px;
  font-family:Oswald;
  margin-bottom:60px;
  color:#4c4036;
}

.brand-powder{
  color:#ff008a;
  font-style:italic;
}

/* SLIDER LAYOUT */

.watch-slider-powder{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:40px;
}

/* SIDE IMAGES */

/* .slide-side-powder{
  width:260px;
} */

/* .slide-side-powder img{
  width:100%;
  border-radius:18px;
} */

/* MAIN VIDEO */

.slide-main-powder{
  position:relative;
  width:650px;
}

.slide-main-powder img{
  width:100%;
  border-radius:24px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.slide-main-powder img:hover{
  transform: scale(1.05);
}
/* PLAY BUTTON */

.play-button-powder{
  position:absolute;
  top:46%;
  left:46%;
  transform:translate(-50%,-50%);
  width:80px;
  height:80px;
  background:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:#ff4d00;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  cursor:pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.play-button-powder{
  transform: scale(1);
}

.left-icon button{
  background: none;
  border: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.left-icon button:hover{
  transform: scale(1.05);
  color: #333;
}
.right-icon button{
  background: none;
  border: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.right-icon button:hover{
  transform: scale(1.05);
  color: #333;
}
/* DOTS */

.slider-dots-powder{
  margin-top:35px;
}

.dot-powder{
  width:8px;
  height:8px;
  background:#cfcfcf;
  display:inline-block;
  border-radius:50%;
  margin:0 6px;
}

.dot-powder.active{
  background:#ff4d00;
}
/* ===============================
   DESKTOP LAYOUT
================================ */

.steps-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 50px 10px 10px 0;
  position: relative;
}

.step-card {
  position: relative;
  width: 400px;
}

.big-number {
  position: absolute;
  top: -90px;
  left: 10%;
  transform: translateX(-50%);
  font-size: 80px;
  font-weight: 700;
  color: #f94b1b22;
  font-family: var(--font-oswald);
  z-index: 0;
  pointer-events: none;
}

.card-content {
  background: #f2dfaa;
  border-radius: 25px;
  height: 240px;
  padding: 30px;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.card-content h3 {
  color: #EF3501;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  font-family: var(--font-oswald);
  text-transform: uppercase;
}

/* IMAGE */
.card-content img {
  position: absolute;
  bottom: 0px;
  right: 10px;
  height: 190px;
  object-fit: contain;
  z-index: 5;
}

/* Arrow */
.arrow-htu img{
  background: #ff4a17;
  border-radius: 50%;
  width: 40px;
  /* height: 9px; */
  padding: 12px;
  margin-top: 90px;
}

/* ===============================
   TABLET RESPONSIVE
================================ */

@media (max-width: 1024px) {

  .steps-container {
    gap: 40px;
  }

  .step-card {
    width: 320px;
  }

  .card-content {
    height: 220px;
  }

  .card-content img {
    height: 220px;
  }

  .big-number {
    font-size: 130px;
    top: -100px;
  }

}
/* ===============================
   SCROLL REVEAL BASE
================================ */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Left Slide */
.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
  transition: all 1s ease;

}

/* Right Slide */
.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.5s ease;

}
/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {

  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }

  .arrow {
    display: none;
  }

  .step-card {
    width: 90%;
    max-width: 380px;
  }

  .big-number {
    font-size: 120px;
    top: -90px;
  }

  .card-content {
    height: 220px;
  }

  .card-content img {
    height: 220px;
    right: 10px;
  }

}

/* ===============================
   DOWN TO UP IMAGE ANIMATION
================================ */

.animate-img {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease;
}

.step-card.show .animate-img {
  opacity: 1;
  transform: translateY(0);
}

/* --- FOOTER --- */
footer { padding-top: 60px; }
.footer-top {
    display: flex;
    justify-content: space-between;
    width: 96%;
    max-width: 1700px;
    margin: 0 auto 50px auto;
    padding: 0 2%;
}
.footer-col.left { flex: 1; display: flex; gap: 15px; color: #555; font-size: 14px; line-height: 1.5; }
.footer-col.left i { color: #e91e63; font-size: 22px; }
.footer-col.center { flex: 1; text-align: center; }
.footer-col.center img{
    height: 102px;
    width: 164px;
}
/* .footer-col.right { flex: 1; display: flex; justify-content: flex-end; gap: 30px; font-weight: 700; font-size: 14px; } */
/* .footer-col.right a { color: #333; } */

.footer-col.right{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:10px;
    font-weight:700;
    font-size:14px;
}
.footer-links{
    display:flex;
    gap:30px;
}
.footer-links a{
  color:#333;
  text-decoration:none;
}
.footer-ai-label{
    display:flex;
    align-items:center;
    gap:6px;
    font-family: sans-serif;
    font-size:14px;
    color:#493E34;
}

.ai-star{
    background: var(--primary-orange);
    border-radius: 50%;
    padding: 10px 10px 5px 10px ;
    color: white;
}
.footer-bottom {
    margin: 10px;
    background: var(--primary-orange);
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    border-radius: 50px;
}

.socials a { color: white; margin: 0 10px; font-size: 18px; }

.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    background: #00c853;
    color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 100;
}




/* .faq-section-powder{
  padding:100px 6%;
} */

.faq-container-powder{
  background: #FEECDC;
  border-radius: 20px;
  padding: 80px;
  max-width:1285px;
  margin:auto;
}

/* TITLE */

.faq-title-powder{
  text-align:center;
  font-size:44px;
  font-family:Oswald;
  margin-bottom:60px;
  color:#4b3f35;
}

.faq-title-powder span{
  color:#ff4d00;
}

/* ACCORDION */

.faq-accordion-powder{
  display:flex;
  flex-direction:column;
  gap:25px;
}

/* ITEM */

.faq-item-powder{
  border-radius:22px;
  padding:26px 30px;
  background:transparent;
  transition:0.3s;
}

/* ACTIVE ITEM */

.faq-item-powder.active{
  background:#ff4d00;
  color:white;
}

/* QUESTION */

.faq-question-powder{
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.faq-question-powder h3{
  font-family: var(--font-oswald);
  font-size:24px;
  font-weight:100;
}

/* ARROW */

.arrow-powder{
  font-size:22px;
}

/* ANSWER */

.faq-answer-powder{
  margin-top:15px;
  font-size:16px;
  line-height:1.6;
  display:none;
}

/* SHOW ACTIVE */

.faq-item-powder.active .faq-answer-powder{
  display:block;
}

.faq-answer-powder{
  display:none;
}

.faq-item-powder.active .faq-answer-powder{
  display:block;
}

.arrow-powder{
  transition:0.3s;
}

.faq-item-powder.active .arrow-powder{
  transform:rotate(180deg);
}

/* .fa-chevron-down:before{
  border: none;
  display: none;
}
.fa-chevron-up:before{
  border: none;
  display: none;
} */