/* =========================================================
   NET GUARDIAN SOLUTION — CUSTOM STYLESHEET
   ========================================================= */

:root {
  --navy: #0A2E40;
  --navy-dark: #071F2C;
  --teal: #0FA9B1;
  --teal-light: #38C6CE;
  --amber: #FF7A1A;
  --amber-dark: #E85D04;
  --cream: #FBF8F2;
  --text-dark: #142C33;
  --text-gray: #5C7480;
  --border-light: #E7EEF0;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 10px 30px rgba(10, 46, 64, 0.08);
  --shadow-hover: 0 18px 40px rgba(10, 46, 64, 0.16);
  --transition: all 0.3s ease;
}

/* =========================================================
   BASE
   ========================================================= */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
}

a { text-decoration: none; transition: var(--transition); }

.section { padding: 90px 0; }

@media (max-width: 767.98px) {
  .section { padding: 60px 0; overflow-x: hidden;}
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: rgba(255, 122, 26, 0.1);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-eyebrow.light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-text {
  color: var(--text-gray);
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-heading { margin-bottom: 50px; }

/* Reveal on scroll */
.reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn-primary-brand {
  background: var(--amber);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(255, 122, 26, 0.35);
  transition: var(--transition);
}
.btn-primary-brand:hover {
  background: var(--amber-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(255, 122, 26, 0.45);
}

.btn-cta-header {
  background: var(--amber);
  color: #fff !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-cta-header:hover { background: var(--amber-dark); transform: translateY(-2px); }

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
  background: var(--navy-dark);
  color: #cfe3e8;
  font-size: 0.86rem;
}
.top-bar-info a, .top-bar-info span {
  color: #cfe3e8;
  margin-right: 22px;
}
.top-bar-info a:hover { color: var(--amber); }
.top-bar-social a {
  color: #cfe3e8;
  margin-left: 10px;
  font-size: 0.95rem;
}
.top-bar-social a:hover { color: var(--amber); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 18px rgba(10, 46, 64, 0.08);
  z-index: 1030;
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 22px rgba(10, 46, 64, 0.14); }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.1;
}
.brand-text em {
  display: block;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
}

.navbar .nav-link {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 10px 14px !important;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: var(--transition);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { width: calc(100% - 28px); }
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--amber-dark); }

/* =========================================================
   HERO CAROUSEL
   ========================================================= */
.hero-section { position: relative; }

.carousel-item img {
  height: 92vh;
  min-height: 560px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,31,44,0.72) 10%, rgba(7,31,44,0.35) 60%, rgba(7,31,44,0.15) 100%);
}

.hero-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 640px;
  color: #fff;
  padding: 0 15px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 122, 26, 0.9);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title span { color: var(--teal-light); }

.hero-text {
  font-size: 1.1rem;
  color: #e4eef1;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-hero-primary {
  background: var(--amber);
  color: #fff;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.4);
}
.btn-hero-primary:hover { background: var(--amber-dark); color: #fff; transform: translateY(-3px); }

.btn-hero-outline {
  border: 2px solid #ffffff;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  background: transparent;
}
.btn-hero-outline:hover { background: #fff; color: var(--navy); transform: translateY(-3px); }

.hero-section .carousel-indicators [data-bs-target] {
  width: 34px;
  height: 4px;
  border-radius: 4px;
  background-color: rgba(255,255,255,0.5);
}
.hero-section .carousel-indicators .active { background-color: var(--amber); }

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next { width: 5%; opacity: 0.85; }

@media (max-width: 991.98px) {
  .hero-title { font-size: 2.3rem; }
  .carousel-item img { height: 82vh; }
}
@media (max-width: 575.98px) {
  .hero-title { font-size: 1.75rem; }
  .hero-text { font-size: 0.98rem; }
  .carousel-item img { height: 78vh; min-height: 480px; }
  .hero-caption { top: 46%; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-section { background: #fff; }

.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-points .about-point {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--border-light);
}
.about-point i { color: var(--teal); font-size: 1.15rem; }

/* =========================================================
   SERVICES
   ========================================================= */
.services-section { background: var(--cream); }

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-img { overflow: hidden; }
.service-img img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }

.service-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }

.service-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 12px;
}
.service-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--amber);
  border-radius: 3px;
}

.service-text { color: var(--text-gray); margin-bottom: 18px; line-height: 1.7; }

.service-list { list-style: none; padding: 0; margin: 0 0 24px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.94rem;
  color: var(--text-dark);
}
.service-list i { color: var(--teal); font-size: 1.05rem; }

.service-body .btn-primary-brand { align-self: flex-start; margin-top: auto; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section { background: #fff; }

.why-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 34px 24px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.why-card:hover {
  background: var(--navy);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.why-card:hover h3, .why-card:hover p { color: #fff; }
.why-card:hover .why-icon { background: var(--amber); color: #fff; }

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(15, 169, 177, 0.12);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  transition: var(--transition);
}

.why-card h3 { font-size: 1.15rem; margin-bottom: 10px; transition: var(--transition); }
.why-card p { color: var(--text-gray); font-size: 0.92rem; margin: 0; transition: var(--transition); }

/* =========================================================
   COUNTER SECTION
   ========================================================= */
.counter-section {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 70px 0;
  position: relative;
}

.counter-item i { font-size: 2rem; color: var(--amber); margin-bottom: 12px; display: inline-block; }
.counter-number {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.counter-item p { color: #b7cdd4; margin: 0; font-weight: 500; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.process-section { background: var(--cream); }

.process-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 34px 26px;
  height: 100%;
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition);
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.process-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  background: var(--amber);
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 18px;
}

.process-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.process-card p { color: var(--text-gray); font-size: 0.93rem; margin: 0; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-section { background: #fff; }

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 46, 64, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay i { color: #fff; font-size: 1.8rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.08); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-section { background: var(--cream); }

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 720px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}
.quote-icon { font-size: 2.5rem; color: var(--amber); margin-bottom: 14px; }
.testimonial-card p {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 26px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.testimonial-author h4 { font-size: 1rem; margin: 0; }
.testimonial-author span { color: var(--text-gray); font-size: 0.85rem; }
.rating i { color: var(--amber); font-size: 0.95rem; margin: 0 1px; }

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  position: static;
  width: auto;
  display: inline-flex;
  opacity: 1;
}
.testimonial-nav-icon {
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.testimonial-nav-icon:hover { background: var(--amber); color: #fff; }
#testimonialCarousel .carousel-control-prev { float: left; margin-top: -220px; margin-left: 4%; }
#testimonialCarousel .carousel-control-next { float: right; margin-top: -220px; margin-right: 4%; }

@media (max-width: 767.98px) {
  .testimonial-card { padding: 32px 22px; }
  #testimonialCarousel .carousel-control-prev,
  #testimonialCarousel .carousel-control-next { display: none; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { background: #fff; }

.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  margin-bottom: 14px;
}
.accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  background: var(--cream);
}
.accordion-button:not(.collapsed) {
  background: var(--navy);
  color: #fff;
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: var(--border-light); }
.accordion-button::after { filter: none; }
.accordion-body { color: var(--text-gray); line-height: 1.7; }

/* =========================================================
   BOOKING SECTION (special)
   ========================================================= */
.booking-section {
  padding: 80px 0;
  background: linear-gradient(120deg, var(--teal) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
}

.booking-box {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
}

.booking-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.booking-title {
  color: #fff;
  font-size: 2.1rem;
  margin-bottom: 16px;
}
.booking-text {
  color: #e4f3f4;
  font-size: 1.02rem;
  margin-bottom: 34px;
  line-height: 1.75;
}

.booking-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.btn-booking-call, .btn-booking-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}
.btn-booking-call i, .btn-booking-text i { font-size: 1.3rem; }
.btn-booking-call small, .btn-booking-text small { display: block; font-weight: 400; }

.btn-booking-call {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,0.25);
}
.btn-booking-call:hover { background: var(--amber-dark); color: #fff; transform: translateY(-4px); }

.btn-booking-text {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(0,0,0,0.2);
}
.btn-booking-text:hover { background: var(--cream); color: var(--navy); transform: translateY(-4px); }

.booking-note {
  color: #d7ecee;
  font-size: 0.88rem;
  margin: 0;
}

@media (max-width: 575.98px) {
  .booking-title { font-size: 1.6rem; }
  .booking-actions { flex-direction: column; align-items: stretch; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section { background: var(--cream); }

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item i {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(255,255,255,0.1);
  color: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-info-item h4 { color: #fff; font-size: 1rem; margin-bottom: 4px; }
.contact-info-item a, .contact-info-item span { color: #b7cdd4; font-size: 0.94rem; }
.contact-info-item a:hover { color: var(--amber); }

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.contact-form .form-label { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.95rem;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 169, 177, 0.15);
}

.map-wrap {
  margin-top: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  line-height: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-dark);
  color: #b7cdd4;
  padding: 70px 0 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand em { font-style: normal; color: var(--amber); }

.footer-text { font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 50%;
  margin-right: 8px;
}
.footer-social a:hover { background: var(--amber); transform: translateY(-3px); }

.footer-heading {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--amber);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #b7cdd4; font-size: 0.92rem; }
.footer-links a:hover { color: var(--amber); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact i { color: var(--amber); margin-top: 3px; }

.site-footer hr { border-color: rgba(255,255,255,0.1); margin: 40px 0 20px; }

.footer-bottom { text-align: center; font-size: 0.86rem; }
.footer-bottom p { margin: 0; }

/* =========================================================
   FLOATING ICONS
   ========================================================= */
.floating-btn {
  position: fixed;
  bottom: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  z-index: 1040;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
  animation: floatPulse 2.4s infinite;
}

.floating-call {
  right: 26px;
  background: var(--amber);
}
.floating-call:hover { background: var(--amber-dark); color: #fff; transform: scale(1.08); }

.floating-whatsapp {
  left: 26px;
  background: #25D366;
}
.floating-whatsapp:hover { background: #1ebe5b; color: #fff; transform: scale(1.08); }

@keyframes floatPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,122,26,0.4); }
  70%  { box-shadow: 0 0 0 16px rgba(255,122,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,122,26,0); }
}
.floating-whatsapp { animation: floatPulseGreen 2.4s infinite; }
@keyframes floatPulseGreen {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.cu-lg-wdth{
	width:250px;
}
@media(max-width:767px)
{
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
}
@media (max-width: 575.98px) {
  .floating-btn { width: 50px; height: 50px; font-size: 1.3rem; bottom: 18px; }
  .floating-call { right: 18px; }
  .floating-whatsapp { left: 18px; }
}

/* =========================================================
   SCROLL TO TOP (utility, optional use)
   ========================================================= */
::selection { background: var(--amber); color: #fff; }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
#enu-st{
	background: var(--amber);
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(255, 122, 26, 0.35);
    transition: var(--transition);
	display:block;
	width:100%
}
@media(max-width:424px)
{
	.cu-fnt-12{
		font-size:12px!important;
	}
}
@media(max-width:374px)
{
	.cu-lg-wdth{
	width:220px;
}
}