html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
@font-face {
  font-family: "NotoSans";
  src: url("fonts/NotoSans.woff") format("truetype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
:root {
  --dark-green: rgb(6, 61, 6);
  --green: rgba(12, 165, 17, 0.381);
}
body {
  margin: 0;
  font-family: "NotoSans", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  background-color: #333;
} 

/* ===== FitAura Header Styles ===== */

.fitaura-header {
  background: linear-gradient(90deg, #0a0a0a, #1a1a1a);
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease;
}

.fitaura-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fitaura-logo a {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #00e0a8;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}

.fitaura-logo a:hover {
  color: #76ffc4;
}

.fitaura-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.fitaura-nav a {
  color: #ddd;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.fitaura-nav a:hover,
.fitaura-nav a.active {
  color: #00e0a8;
}

.fitaura-btn {
  background: #00e0a8;
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.fitaura-btn:hover {
  background: #76ffc4;
  transform: translateY(-2px);
}

.fitaura-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.fitaura-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* ===== FitAura Footer Styles ===== */

.fitaura-footer {
  background: linear-gradient(180deg, #0b0b0b, #141414);
  color: #ccc;
  padding: 60px 20px 30px;
  font-family: 'Inter', sans-serif;
}

.fitaura-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.fitaura-footer-brand h2 {
  color: #00e0a8;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.fitaura-footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #aaa;
}

.fitaura-footer-links h3,
.fitaura-footer-contact h3,
.fitaura-footer-newsletter h3 {
  color: #00e0a8;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.fitaura-footer-links ul {
  list-style: none;
  padding: 0;
}

.fitaura-footer-links ul li {
  margin: 8px 0;
}

.fitaura-footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.fitaura-footer-links a:hover {
  color: #00e0a8;
}

.fitaura-footer-contact p,
.fitaura-footer-newsletter p {
  font-size: 0.9rem;
  color: #aaa;
}

.fitaura-footer-contact a {
  color: #00e0a8;
  text-decoration: none;
}

.fitaura-footer-newsletter input {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 25px;
  border: none;
  outline: none;
  font-size: 0.9rem;
}

.fitaura-footer-newsletter button {
  background: #00e0a8;
  color: #000;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  margin-top: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.fitaura-footer-newsletter button:hover {
  background: #76ffc4;
  transform: translateY(-2px);
}

.fitaura-footer-bottom {
  border-top: 1px solid #222;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
}

.fitaura-payments {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}

.fitaura-payments img {
  height: 28px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.fitaura-payments img:hover {
  opacity: 1;
}

.fitaura-footer-bottom p {
  color: #666;
  font-size: 0.85rem;
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
  .fitaura-nav {
    position: absolute;
    top: 64px;
    right: 0;
    width: 200px;
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
  }

  .fitaura-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .fitaura-nav.active {
    display: flex;
  }

  .fitaura-menu-toggle {
    display: flex;
  }

  .fitaura-cta {
    display: none;
  }
}



.fjZpgLFCqXoTJVe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.UxffgMHfouLZsgX {
  text-align: left !important;
}
.peCGAJJkSJmhHuw {
  list-style-type: none;
  padding-left: 30px;
}
.EetRoeZUjVNfBnn {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.FsZFbrTNUXvJLJx {
  margin-bottom: 50px;
}
.kpBzdgJErqtVlSI {
  margin-top: 20px !important;
}
.fLWoMcXUStjinVS {
  color: #fff;
}
.cRNrWNMrIFglDIr {
  text-align: center;
}
.qYIrcBfjPUZjtxb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.duAUwZIisALnfMt {
  margin-top: 50px !important;
}
.hSatsmiSbkyWpaX {
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
}
.ppENJOfLiKAyQOg {
  margin: 0;
  margin-bottom: 20px;
  color: #fff;
  font-size: 48px;
  font-weight: 400;
  text-decoration: none;
  line-height: 130%;
  
  position: relative;
}
.aociSqlECxghHrj {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
}
main {
  min-height: 100vh;
  margin-top: 50px;
}    
.StpgAHFQjRyBIwc {
  padding: 100px;
  text-align: center;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.StpgAHFQjRyBIwc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(25deg, #aaefdf 0%, #000000c2 30%);
}
 
#QUUrIXILGhzBoVh h1 {
   letter-spacing: 1.5px;
   text-transform: uppercase;
  text-shadow: 1px 1px 15px #fff;
  color: #fff;
}
.top-offers {
   margin: 45px auto;
}
.StpgAHFQjRyBIwc #JkLMpuimTYpvbrx {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
#qJdBAaEHqEQcnde {
background: transparent;}
.OrEPeHyuaCgXmFs {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
} 
.YrOMQyrRTvCnOfD h1 {
  font-size: 36px;
}
.YrOMQyrRTvCnOfD p {
  font-size: 1.5em;
  text-shadow: 0 0 20px #000;
  margin-bottom: 30px;
}
.hKxUGirYiLjkENa {
   
  background:
  linear-gradient(135deg, #16201eaf, #00e0a8),
  
  linear-gradient(300deg, #9ee37d 0%, #63c132 100%);
  color: #f4f4f4;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  
}
.qxFcYawzsPqGOIp {
  padding: 100px 0;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
  line-height: 130%;
  background-size: cover;
}
.qxFcYawzsPqGOIp .mXrMErmpaQpsjFq {
  display: flex;
  gap: 15px;
}
.qxFcYawzsPqGOIp p {
  font-size: 18px;
  margin: 0 auto;
  line-height: 150%;
}
.qxFcYawzsPqGOIp h3 {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  line-height: 130%;
}
.qxFcYawzsPqGOIp .hSatsmiSbkyWpaX {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#eGlyzAFMFDUWEbV {
  background-image: linear-gradient(135deg, #16201eaf, #00e0a8) 
}
.XMsLNtqEsPkLadv .bxInfBasbzsCvYn {
  background: #cffcff;
}
.BCHQsTrhKPxmNVq .bxInfBasbzsCvYn {
  background: rgba(26, 26, 26, 0.937);
}
#mehCmOybIJitBYb {
  margin: 50px auto;
}
.TQfDJNUwgXMShiR {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#mehCmOybIJitBYb .mXrMErmpaQpsjFq {
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
#mehCmOybIJitBYb .ARpvWkzhfXyxoYs {
  padding: 15px;
  background: #098b6a;
  border-radius: 8px;
}
.hxqjFqoLbzhwTsm {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto 20px;
  object-position: top center;
}
.TQfDJNUwgXMShiR .mXrMErmpaQpsjFq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  row-gap: 10px;
  min-height: auto;
}
#mehCmOybIJitBYb .lmnSIKmTUPtlkiL {
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
}
#mehCmOybIJitBYb h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 18px;
}
#mehCmOybIJitBYb p {
  color: #fff;
}
.vVkXEOgBncTmosf {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}
#qJdBAaEHqEQcnde .aociSqlECxghHrj {
  transform: rotate(-2deg);
}
.aociSqlECxghHrj {
  flex: 1 1 50%;
  padding: 20px;
}
.aociSqlECxghHrj p {
  background-color: #00000072;
  margin-bottom: 20px;
  font-size: 1.2em;
  line-height: 1.8;
  padding: 20px;
   text-shadow: 1px 1px 5px rgb(0, 0, 0);
}
.dLStxJlehaWQpHN {
  flex: 1 1 50%;
  padding: 20px;
  height: 300px;
  transform: rotate(2deg);
}
#wEJyDaiRbhXXLfP {
  background-image: linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.5)
    ),
    url(pics/Plans.webp);
}
#wEJyDaiRbhXXLfP.StpgAHFQjRyBIwc::after{
   display: none;
}
.UDGtWjsqicZJogK .bxInfBasbzsCvYn h3 {
  font-size: 18px;
  letter-spacing: normal;
  font-weight: normal;
  margin: 0;
}
.UDGtWjsqicZJogK .LbgcmsZPqzYxEPM img {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  object-fit: cover;
}
#tUGEpQQIPLmxFNC {
  background-color: transparent;
}
#hGhaXRARZTRGVzp {
  background-image: url(pics/smartwatches-banner.jpg);
}
.StpgAHFQjRyBIwc h1,
.StpgAHFQjRyBIwc h3,
.StpgAHFQjRyBIwc p {
  margin: 0 auto;
}
#eGlyzAFMFDUWEbV a {
  border: 3px solid #aaefdf;
}
#WUjGJDeytQYMTnr .bxInfBasbzsCvYn {
  justify-content: unset;
}
 
.qxFcYawzsPqGOIp h2 {
  font-size: 36px;
  line-height: 130%;
  margin: 0;
}
#hqOGhFkNcHsilrC {
  background-image: url(pics/Device.jpg);
}
#tUGEpQQIPLmxFNC h3 {
  margin-bottom: 0;
}
#OnPfjbxPvThHRxw {
  color: #f4f4f4;
  padding: 45px 0;
  position: relative;
  
  z-index: 2;
}
.zxabxxLONRnQEJH {
  text-align: center;
  margin-bottom: 60px;
  z-index: 10;
  position: relative;
  padding: 0 15px;
}
.zxabxxLONRnQEJH h2 {
  font-size: 36px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  color: #aaefdf;
}
.UDGtWjsqicZJogK h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 20px;
  line-height: 130%;
}
.UDGtWjsqicZJogK .NtkhJQTpTjlzQih {
  margin-top: 50px;
}
.zxabxxLONRnQEJH p {
  font-size: 16px;
  margin-top: 20px;
  opacity: 0.9;
}
#OnPfjbxPvThHRxw .zxabxxLONRnQEJH {
  margin: 50px auto;
}
.NtkhJQTpTjlzQih {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  gap: 20px;
  padding: 0 30px;
  z-index: 10;
  position: relative;
}
.bxInfBasbzsCvYn {
  background: rgb(0 0 0 / 24%);
  border: 1px solid #aaefdf;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bxInfBasbzsCvYn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(194, 193, 193, 0.5);
}
#eefYxzYqUmWYZWQ:not(.RHIHEhgekGhCnwe) {
  margin: 50px auto;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.MTNunEtmXMKnEvh {
  margin-bottom: 0 !important;
}
.rbUtJSHVyJjaJlg {
  color: #1c1c1c !important;
}
.jxMXpjcfFhkAKHa {
  background: linear-gradient(45deg, #cffcff, #9ee37d);
  color: #1c1c1c;
  margin: 65px auto;
}
#eefYxzYqUmWYZWQ .mXrMErmpaQpsjFq {
  -ms-grid-column-span: 3;
  text-align: center;
  grid-column: span 3;
}
.aZqodygwyxYEfYi {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.aZqodygwyxYEfYi {
  background-color: #cdcccced;
  border: 1px solid grey;
  border-radius: 15;
}
.aZqodygwyxYEfYi .fmLHyjCttXIXieN {
  padding: 15px;
  font-size: 18px;
  line-height: 130%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.aZqodygwyxYEfYi .fmLHyjCttXIXieN p {
  margin-top: 0;
}
.aZqodygwyxYEfYi img {
  max-width: 100%;
  border-radius: 4px;
}
.aZqodygwyxYEfYi img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.UDGtWjsqicZJogK.eefYxzYqUmWYZWQ .NtkhJQTpTjlzQih {
  flex-wrap: wrap;
}
.eefYxzYqUmWYZWQ .bxInfBasbzsCvYn {
  flex-basis: calc(25% - 20px);
}
.KZeqTaqrXJEJrIb {
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
  width: 100%;
}
.CSOpkgEPokpnPGM {
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  margin-bottom: 50px;
}
.bUTzRtXOcLoBmSZ {
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  margin-top: 50px;
}
.LbgcmsZPqzYxEPM {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bxInfBasbzsCvYn h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.bxInfBasbzsCvYn p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  z-index: 10;
  position: relative;
}
#PdxhGaSMrECYIar {
  padding: 50px 0;
  color: #fff;
}
#PdxhGaSMrECYIar .zxabxxLONRnQEJH h2 {
  margin-top: 0;
}
#PdxhGaSMrECYIar .NtkhJQTpTjlzQih {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#PdxhGaSMrECYIar .bxInfBasbzsCvYn {
  padding: 15px;
}
#PdxhGaSMrECYIar.ESBWltxLZcLmyDM .NtkhJQTpTjlzQih {
  grid-template-columns: 1fr 1fr;
}
#PdxhGaSMrECYIar .bxInfBasbzsCvYn h3 {
  font-size: 24px;
}
#MJKTYiYcwezhAky {
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.83), rgba(0, 0, 0, 0.5)),
    url(pics/Max.jpg);
}

#MJKTYiYcwezhAky.StpgAHFQjRyBIwc::after{
  display: none;
}
 
 
#QUUrIXILGhzBoVh {
  background-image: url(pics/Premium.avif);
}
.ylURtTsdWdoFFgO {
  padding: 80px 20px;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hSatsmiSbkyWpaX {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.oahfALfRrMUHspN {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  position: relative;
}
.SXxLqBAVPrwQkne {
       background: #c0ece41c;
  flex: 0.5;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.SXxLqBAVPrwQkne img {
  width: 100%;
  display: flex;
  height: auto;
  transition: transform 0.3s ease;
}
.SXxLqBAVPrwQkne:hover img {
  transform: scale(1.05);
}
.LtkETclQmKwAnml {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.pgKbVrKKPnwwIKT {
  margin: 0 auto;
  padding: 15px;
  box-sizing: border-box;
  width: fit-content;
  display: block;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  color: #1a1a1a;
  background-color: #9ee37d;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.pgKbVrKKPnwwIKT:hover {
  background-color: #63c132;
  transform: translateY(-2px);
}
@media (max-width: 1400px) {
  .bxInfBasbzsCvYn {
    padding: 15px;
  }
}
@media (max-width: 1144px) {
  .bxInfBasbzsCvYn h3 {
    font-size: 16px;
  }
  .bxInfBasbzsCvYn {
    padding: 15px;
  }
  nav {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  #eefYxzYqUmWYZWQ.LwqOIuGyWmIQJsp {
    grid-template-columns: 1fr 1fr !important;
  }
  #eefYxzYqUmWYZWQ.LwqOIuGyWmIQJsp .mXrMErmpaQpsjFq {
    grid-column: span 2;
  }
  #mehCmOybIJitBYb .mXrMErmpaQpsjFq,
  #eefYxzYqUmWYZWQ:not(.RHIHEhgekGhCnwe) {
    grid-template-columns: 1fr 1fr;
  }
  #eefYxzYqUmWYZWQ .mXrMErmpaQpsjFq {
    grid-column: span 2;
  }
  .LtkETclQmKwAnml .fjZpgLFCqXoTJVe {
    grid-template-columns: 1fr;
  }
  .UDGtWjsqicZJogK .NtkhJQTpTjlzQih {
    flex-wrap: wrap;
  }
  .bxInfBasbzsCvYn {
    align-items: normal;
  }
  .bxInfBasbzsCvYn a {
    margin: 0 auto;
  }
  #OnPfjbxPvThHRxw.UDGtWjsqicZJogK {
    margin-top: 0;
    clip-path: none;
  }
  #OnPfjbxPvThHRxw {
    margin-top: -105px;
  }
  .dLStxJlehaWQpHN {
flex: auto;
width: 100%;
transform: none;  }
  #qJdBAaEHqEQcnde .aociSqlECxghHrj {
    transform: none;
  }
  #PdxhGaSMrECYIar .NtkhJQTpTjlzQih {
    grid-template-columns: 1fr 1fr;
  }
  .bxInfBasbzsCvYn {
    flex: auto;
  }
  .eefYxzYqUmWYZWQ .bxInfBasbzsCvYn {
    flex-basis: calc(28% - 20px);
  }
}
@media (max-width: 850px) {
    .vVkXEOgBncTmosf {
    display: flex;
    flex-direction: column;
  }
  .StpgAHFQjRyBIwc {
    padding: 100px 30px;
  }
  .eefYxzYqUmWYZWQ .bxInfBasbzsCvYn {
    flex-basis: calc(45% - 20px);
  }
  .fjZpgLFCqXoTJVe,
  #eefYxzYqUmWYZWQ:not(.RHIHEhgekGhCnwe) {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #eefYxzYqUmWYZWQ.LwqOIuGyWmIQJsp {
    grid-template-columns: 1fr !important;
  }
  #eefYxzYqUmWYZWQ.LwqOIuGyWmIQJsp .mXrMErmpaQpsjFq,
  #eefYxzYqUmWYZWQ .mXrMErmpaQpsjFq {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  #mehCmOybIJitBYb .mXrMErmpaQpsjFq {
    grid-template-columns: 1fr;
  }
  .YrOMQyrRTvCnOfD h1 {
    font-size: 36px;
  }
  #OnPfjbxPvThHRxw .NtkhJQTpTjlzQih,
  #PdxhGaSMrECYIar .NtkhJQTpTjlzQih {
    grid-template-columns: 1fr;
  }
  .NtkhJQTpTjlzQih,
  .oahfALfRrMUHspN {
    flex-direction: column;
  }
  .SXxLqBAVPrwQkne {
    width: 100%;
  }
  .zxabxxLONRnQEJH h2 {
    font-size: 2em;
  }
  #OnPfjbxPvThHRxw {
    clip-path: none;
    margin-top: 0;
  }
  .aociSqlECxghHrj,
  .dLStxJlehaWQpHN {
    transform: none;
  }
  #mehCmOybIJitBYb .mXrMErmpaQpsjFq {
    grid-template-columns: 1fr 1fr;
  }
  .qxFcYawzsPqGOIp h2 {
    font-size: 24px !important;
  }
}
@media (max-width: 640px) {
 
  .dLStxJlehaWQpHN .OrEPeHyuaCgXmFs {
    width: 100% !important;
  }
  #PdxhGaSMrECYIar.ESBWltxLZcLmyDM .NtkhJQTpTjlzQih,
  #mehCmOybIJitBYb .mXrMErmpaQpsjFq {
    grid-template-columns: 1fr;
  }
  .ESBWltxLZcLmyDM .bxInfBasbzsCvYn:not(.RtOLRNuNgmVrwjm):first-child {
    flex-direction: column;
    gap: 0;
  }
  .ESBWltxLZcLmyDM .bxInfBasbzsCvYn:not(.RtOLRNuNgmVrwjm):first-child {
    grid-column: span 1;
  }
  .zxabxxLONRnQEJH h2 {
    font-size: 24px;
  }
  .StpgAHFQjRyBIwc .hSatsmiSbkyWpaX {
    padding: 0;
  }
}
@media (max-width: 480px) {
 
 
  .qxFcYawzsPqGOIp h2 {
    font-size: 24px !important;
  }
  .qxFcYawzsPqGOIp p {
    font-size: 20px !important;
  }
}
@media (max-width: 425px) {
  .StpgAHFQjRyBIwc {
    padding: 50px 15px;
  }
  .LtkETclQmKwAnml {
    padding: 0;
  }
  .YrOMQyrRTvCnOfD h1 {
    font-size: 24px;
  }
  .ppENJOfLiKAyQOg {
    font-size: 22px;
  }
  nav a {
    font-size: 14px;
  }
}
