@font-face {
  font-family: "Lazare Grotesk Trial";
  src: url("https://db.onlinewebfonts.com/t/8b1cf732b4b8e46cf8523ac279797521.eot");
  src: url("https://db.onlinewebfonts.com/t/8b1cf732b4b8e46cf8523ac279797521.eot?#iefix")format("embedded-opentype"),
  url("https://db.onlinewebfonts.com/t/8b1cf732b4b8e46cf8523ac279797521.woff2")format("woff2"),
  url("https://db.onlinewebfonts.com/t/8b1cf732b4b8e46cf8523ac279797521.woff")format("woff"),
  url("https://db.onlinewebfonts.com/t/8b1cf732b4b8e46cf8523ac279797521.ttf")format("truetype"),
  url("https://db.onlinewebfonts.com/t/8b1cf732b4b8e46cf8523ac279797521.svg#Lazare Grotesk Trial")format("svg");
}

/* ===== Reset & Base ===== */
:root{
  --bg: #0a0a12;
  --bg-alt: #0e0e1a;
  --card: #14141f;
  --card-border: #24242f;
  --card-border2: #b3c2d269;
  --card-border1: #58dedf;
  --text: #f2f2f5;
  --text-muted: #9a9aa8;
  --cyan: #33e0e0;
  --cyan-text: #33e0e0;
  --cyan-text1: #8FACFF;
  --cyan-dim: #1fb8c4;
  --purple: #8b5cf6;
  --gold: #f0b429;
  --radius: 16px;
  --container: 1200px;
  --font-display: 'Segoe UI', system-ui, sans-serif;
  /* --font-body: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;   */
  --font-pixel: "Silkscreen", monospace;
  --border: #b3c2d269;
  --font-body: "Montserrat Alternates", sans-serif;
  --font-head: "Lazare Grotesk Trial", sans-serif;
  --col1:#2d2844;
  --col2:#1a1a22;  
  --footer:#0b1220;
  --footert:#0b1220;
  --footer-text:#9aa4d6;
}

body.theme-light{
  --col1:#9540FF;
  --col2:#8FACFF;
}


*,*::before,*::after{ box-sizing: border-box; margin:0; padding:0; }

html{ scroll-behavior: smooth; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ text-decoration: none; color: inherit; }
ul{ list-style: none; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }

.btn-primary{
  background: linear-gradient(135deg, var(--cyan) 0%, #22a6c9 100%);
  color: #06141a;
  box-shadow: 0 8px 24px rgba(51,224,224,.25);
}
.btn-outline{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--card-border);
}
.btn-outline:hover{ border-color: var(--cyan-text); }

.btn-sm{ padding: 10px 20px; font-size: 14px; }

/* ===== Light theme ===== */
body[data-theme="light"]{
  --bg: #f5f6fa;
  --bg-alt: #ffffff;
  --card: #ffffff;
  --card-border: #e4e6ef;
  --text: #14141f;
  --text-muted: #63636f;
  --cyan-text: #0d8a95;
}
body[data-theme="light"] .btn-primary{ color: #06141a; }
body[data-theme="light"] .header-bar{ background: #ffffff; }
body[data-theme="light"] .stats-card{ background: rgba(20,20,31,.02); }
/* body[data-theme="light"] .stat-value{
  background-image: repeating-linear-gradient(45deg, #14141f 0 2px, rgba(20,20,31,.4) 2px 4px);
} */
body[data-theme="light"] .time-block span{ color: var(--text); }
body[data-theme="light"] .lucky-draw-card{
  background: linear-gradient(135deg, #efe8ff 0%, #e6ecff 100%);
  border-color: rgba(139,92,246,.25);
}
body[data-theme="light"] .lucky-draw-text p{ color: #4b4b5a; }
body[data-theme="light"] .lucky-draw-card .amount{ color: #0d8a95; }
body[data-theme="light"] .amount-label{ color: #4b4b5a; }
body[data-theme="light"] .amount-sub{ color: #8a8a99; }
body[data-theme="light"] .upto{ color: #8a8a99; }
body[data-theme="light"] .lucky-draw-amount{
  background: rgba(20,20,31,.03);
  border-color: rgba(20,20,31,.08);
}
/* ===== Header ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0 0;
}
#lightIcon{
  display: none;
}
.star{
  width: 200px;
  height: auto;
  position: absolute;
  top:-150px;
  left: 0;
}
.star1{
  width: 150px;
  height: auto;
  position: absolute;
  top:100px;
  left: -150px;
}
/* .header-bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #17171f;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
} */
.header-bar {
  width: 100%;
  max-width: 1250px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 22px;
  border-radius: 40px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0%, rgba(153, 153, 153, 0.00) 100%); 
    backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
  
.header-left{
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text);
}

.badge-live{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--cyan-text);
  background: rgba(51,224,224,.1);
  border: 1px solid rgba(51,224,224,.4);
  padding: 5px 12px;
  border-radius: 20px;
}
.badge-live .dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.main-nav{
  display: flex;
  gap: 32px;  
  align-items: center;
}
.main-nav a{
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color .15s ease;
}
.main-nav a:hover{ color: var(--cyan-text); }

.header-actions{
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-divider{
  width: 1px;
  height: 22px;
  background: var(--card-border);
}
.theme-toggle{
  background: transparent;
  border: none;
  width: 30px; height: 30px;
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan-text);
}

/* ===== Hero ===== */
.hero{
  padding: 64px 0 48px;
    /* background:
      radial-gradient(ellipse 800px 500px at 20% 0%, rgba(139,92,246,.18), transparent 60%),
      radial-gradient(ellipse 800px 500px at 90% 10%, rgba(51,224,224,.12), transparent 60%); */
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.pill{
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--cyan-text);
  /* background: rgba(139,92,246,.12); */
  border: 1px solid var(--cyan-text);;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.pill.small{ margin-bottom: 16px; }

.pill-luck{
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px; 
  background: #9540FF24;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.pill-luck.small{ margin-bottom: 16px; }

.hero-content h1{
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--cyan-text);
  margin-bottom: 20px;
  font-family: var(--font-head);
}
.accent{ color: var(--cyan-text); }

.hero-sub{
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}
.hero-desc{
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-btns{
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-tags{
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.hero-tags li{
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-tags svg{
  width: 15px;
  height: 15px;
  color: var(--cyan-text);
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.prize-badge{
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(240,180,41,.25));
  display: flex;
  justify-content: center;
}
.prize-badge img{ border-radius: 20px; }
.prize-caption{
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--card);
  border: 1px solid var(--card-border);
  padding: 6px 16px;
  border-radius: 20px;
}

.countdown-card{
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.countdown-label{
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.countdown-timer{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.time-block{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--card-border1);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 56px;
}
.time-block span{
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.time-block small{
  font-size: 9px;
  font-weight: 600;
  color: var(--cyan-text);
  letter-spacing: .5px;
  margin-top: 2px;
}
.colon{ font-size: 20px; color: var(--cyan-text); font-weight: 700; }

.progress-bar{
  height: 6px;
  border-radius: 4px;
  background: var(--bg-alt);
  overflow: hidden;
  display: none;
}


.progress-fill{
  height: 100%;
  width: 95%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}

/* ===== Stats ===== */
.stats{ padding: 8px 0 64px; }
.stats-card{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-image: linear-gradient(var(--col1),var(--col2));
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item{
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--card-border);
}
.stat-item:last-child{ border-right: none; }
.stat-value {
  display: block;
  font-family: var(--font-pixel);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  letter-spacing: 0.02em;
  color: var(--text);
}
.stat-label{
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan-text);
}

/* ===== Section shared ===== */
.section{ padding: 64px 0; }
.section-head{
  text-align: center;
  margin-bottom: 40px;
}
.eyebrow{
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cyan-text1);
  margin-bottom: 12px;
  font-family: var(--font-head);
}
.eyebrow.light{ color: rgba(255,255,255,.75); }
.section-head h2{
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.5px;  
  color: var(--cyan-text);
}
.section-desc{
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== Info table (Campaign at a Glance) ===== */
.info-table{
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.info-row{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--card-border);
}
.info-row:last-child{ border-bottom: none; }
.info-key{ color: var(--text-muted); font-size: 14px; }
.info-val{ font-weight: 600; font-size: 14px; }

/* ===== Reward table ===== */
.reward-table{
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.reward-head, .reward-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 16px 28px;
}
.reward-head{
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  background: var(--bg-alt);
  font-weight: 700;
}
.reward-row{
  border-top: 1px solid var(--card-border);
  font-size: 14px;
  font-weight: 600;
}
.reward-row div:last-child{ text-align: right; color: var(--cyan-text); }
.reward-row.muted{ color: var(--text-muted); }
.reward-row.muted div:last-child{ color: var(--text-muted); }
.reward-row.highlight{
  background: rgba(51,224,224,.06);
}
.reward-row.highlight div:last-child{ color: var(--gold); }

.note-box{
  max-width: 800px;
  margin: 20px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(51,224,224,.06);
  border: 1px solid rgba(51,224,224,.2);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-muted);
}
.note-icon{
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cyan);
  color: #06141a;
  font-weight: 700;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}

/* ===== Lucky draw ===== */
.lucky-draw-card{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(105deg, #4b3b81 0%, #1a1330 40%);
  border: 1px solid rgba(139,92,246,.3);
  border-radius: 20px;
  padding: 44px;
}
.lucky-draw-text h3{
  font-size: 26px;
  font-weight: 700;
  margin: 14px 0 16px;
  line-height: 1.25;
}
.lucky-draw-text p{
  color: rgba(255,255,255,.65);
  font-size: 14px;
}
.lucky-draw-amount{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.upto{ font-size: 11px; letter-spacing: 1px; color: rgba(255,255,255,.5); }
.amount{ font-size: 34px; font-weight: 700; color: var(--cyan); font-family: var(--font-pixel); }
.amount-label{ font-size: 13px; color: rgba(255,255,255,.7); }
.amount-sub{ font-size: 11px; color: rgba(255,255,255,.45); margin-top: 8px; }

/* ===== Eligibility ===== */
.eligibility-card{
  max-width: 900px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.check-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.check-list li:last-child{ margin-bottom: 0; }
.check-list strong{ color: var(--text); display: contents; }
.check{
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(51,224,224,.15);
  color: var(--cyan-text);
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

/* ===== Terms ===== */
.terms-list{
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.terms-list li{
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.terms-list li::before{
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}
.terms-list strong{ color: var(--text); }
.contact-line{
  max-width: 800px;
  margin: 24px auto 0;
  font-size: 14px;
  color: var(--text-muted);
}
.contact-line a{ color: var(--cyan-text); font-weight: 600; }

/* ===== CTA ===== */
.cta-card{
  text-align: center;
  background:
    radial-gradient(ellipse 600px 300px at 50% 0%, rgba(139,92,246,.25), transparent 70%),
    var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 56px 24px;
}
.cta-card h2{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}
.cta-sub{
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== Footer ===== */
.site-footer{
  border-top: 1px solid var(--card-border);
  padding: 40px 0;
  background: var(--bg-alt);
}
.footer-inner{ text-align: center; }
.footer-inner .logo{ margin-bottom: 16px; }
.footer-inner p{
  max-width: 700px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 992px){
  .hero-grid{ grid-template-columns: 1fr; flex-direction: column-reverse; display: flex; }
  .star{display: none;}
  .hero-content{ text-align: center;  }
  .hero-btns, .hero-tags{ justify-content: left; }
  .hero-desc{ margin-left: auto; margin-right: auto; }
  .hero-visual{ order: -1; }
  .hero-btns{ width:100% ; display: block;  }

  .stats-card{ grid-template-columns: repeat(2, 1fr); }
  .stat-item{ border-bottom: 1px solid var(--card-border); }
  .stat-item:nth-child(2n){ border-right: none; }
  .lucky-draw-card{ grid-template-columns: 1fr; }
  .eligibility-card{ grid-template-columns: 1fr; }
  .main-nav{ display: block; }
}

@media (max-width: 640px){
  .hero{ padding: 40px 0 32px; }
  .hero-content h1{ font-size: 32px; }
  .hero-sub{ font-size: 15px; }
  .stat-item{ padding: 20px 12px; }
  .stat-value{ font-size: 20px; }

  .section{ padding: 44px 0; }
  .section-head h2{ font-size: 26px; }

  .info-row{ grid-template-columns: 1fr; gap: 4px; padding: 16px 20px; }
  .reward-head, .reward-row{ padding: 14px 20px; }

  .lucky-draw-card{ padding: 28px 22px; }
  .lucky-draw-text h3{ font-size: 21px; }
  .eligibility-card{ padding: 28px 22px; }

  .time-block{ min-width: 46px; padding: 8px 10px; }
  .time-block span{ font-size: 18px; }

  .cta-card h2{ font-size: 24px; }
  .header-bar{ padding: 8px 8px 8px 16px; gap: 10px; }
  .badge-live{ display: none; }
}

@media (max-width: 420px){
  .stats-card{ grid-template-columns: 1fr; }
  .stat-item{ border-right: none; }
}
 
.jss216 {
    gap: 4px;
    left: 50%;
    bottom: 100%;
    height: 12px;
    display: flex;
    z-index: 1;
    position: absolute;
    transform: translateX(-50%);
    align-items: center;
    white-space: nowrap;
    margin-bottom: 2px;
    justify-content: center;
    top:13px; 
}
.jss214 {
  color: #4DF0FF;
  font-size: 10px; 
  font-weight: 700;
  white-space: nowrap;
}
.jss193 {
  color: #F8F8F8;
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 14px; 
  line-height: 17px;
  margin-right: 32px;
  text-decoration: none !important;
}
.btn-primary{
  color: #06141a !important;
}



.footer-col{max-width: 24%;}
footer{background:var(--footer);color:var(--footer-text);padding:60px 8%;margin-top:100px}
.footer-grid{display:flex;justify-content:space-between;flex-wrap:wrap;gap:40px}
.footer-col h4{color:#fff;margin-bottom:10px}
.footer-col p{font-size:14px;margin-bottom:6px}
.ex1-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ex1-footer-list li a {
  color: #dbe7ff;
  text-decoration: none;
  font-size: 14px;
}

.ex1-social-icons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 21px;
}

.ex1-social-icons a {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.ex1-social-icons a .svg_icon, .ex1-social-icons a svg {
  display: block;
  height: 100%;
  width: 100%;
}



/* menu ----------------------------------------------------------------------------------------------------------------------------------*/

.menu{
  display:flex;
  list-style:none;
}

.menu>li{
  position:relative;
}

.menu>li>a{
  display:block; 
  text-decoration:none;
  padding:25px 18px;
  transition:.3s;
  font-weight:600;
  font-size: 15px;
}

.menu>li>a:hover{
  color:var(--cyan)
}

/* =============== DROPDOWN ================= */

.dropdown{
  position:absolute;
  top:110%;
  left:0;
  min-width:230px;
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 15px 35px rgba(0,0,0,.12);
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:
      opacity .35s ease,
      transform .35s ease,
      visibility .35s;
}


.menu li:hover>.dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown li{
  list-style:none;
  position:relative;
}

.dropdown a{
  display:block;
  padding:14px 18px;
  color:#333;
  text-decoration:none;
  transition:.3s;
  font-weight: 600;

}
.dropdown span{
  color: gray;
  font-size: 12px;
  font-weight: normal;
 }

.dropdown a:hover{
  background:#f4f8ff;
  color:#0066ff;
  padding-left:24px;
}

/* =============== SUB MENU ================= */

.submenu{
  position:absolute;
  left:100%;
  top:0;
  min-width:220px;

  background:#fff;

  border-radius:10px;

  box-shadow:0 15px 35px rgba(0,0,0,.12);

  opacity:0;
  visibility:hidden;

  transform:translateX(20px);

  transition:
      opacity .35s ease,
      transform .35s ease;
}

.dropdown li:hover>.submenu{
  opacity:1;
  visibility:visible;
  transform:translateX(0);
}

/* =============== HAMBURGER ================= */

#menu-toggle{
  display:none;
}

.menu-icon{
  display:none;
  font-size:28px;
  color:#fff;
  cursor:pointer;
}

/* =============== RESPONSIVE ================= */

@media(max-width:991px){

  .footer-col{max-width: 100%;}

.menu-icon{
  display:block;
}
.logo{
  width: 100px;
}

.menu{
  position:absolute;
  top:70px;
  left:0;
  width:100%;

  background:#101828;

  display:block;

  max-height:0;
  overflow:hidden;

  transition:max-height .5s ease;
}

#menu-toggle:checked~.menu{
  max-height:700px;
}

.menu>li>a{
  padding:16px 20px;
  border-top:1px solid rgba(255,255,255,.08);
}

.dropdown,
.submenu{

  position:static;

  opacity:1;
  visibility:visible;

  transform:none;

  display:none;

  box-shadow:none;

  background:#172033;

  border-radius:0;
}

.menu li:hover>.dropdown{
  display:block;
}

.dropdown li:hover>.submenu{
  display:block;
}

.dropdown a,
.submenu a{
  color:#fff;
  padding-left:35px;
}

.submenu a{
  padding-left:55px;
}

}

/* menu---------------------------------------------------------------------------------------------------------------------------------- */


.faq-container{
  max-width:900px;
  margin:auto;
  background:#111;
  border-radius:10px;
  overflow:hidden;
}

.faq-item{
  border-bottom:1px solid rgba(255,255,255,.08);
}



.faq-question{
  width:100%;
  background:none;
  border:none;
  color:#67e8ff;
  font-size:18px;
  font-weight:400;
  text-align:left;
  cursor:pointer;
  padding:22px 25px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  transition:.3s;
}

.faq-question:hover{
  background:#181818;
}

.active .faq-question{
  font-weight: 600;
}

.icon{
  font-size:28px;
  color:#67e8ff;
  transition:.3s;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
  background:#111;
}

.faq-answer-content{
  padding:0 25px 22px;
  color:#bdbdbd;
  line-height:1.8;
  font-size:15px;
}

.faq-item.active .faq-answer{
  max-height:300px;
}

.faq-item.active .icon{
  transform:rotate(180deg);
}

.faq-item.active .icon::before{
  content:"−";
}

.icon::before{
  content:"+";
}

/* Mobile */

@media(max-width:768px){

.faq-question{
  font-size:16px;
  padding:18px;
}

.faq-answer-content{
  padding:0 18px 18px;
  font-size:14px;
}

.icon{
  font-size:24px;
}

}

@media(max-width:480px){

body{
  padding:20px 10px;
}

.faq-question{
  font-size:15px;
  gap:15px;
}

.faq-answer-content{
  font-size:13px;
}

}