/* ==========================================================================
   Variables & Global Styles
   ========================================================================== */
:root {
  --primary-color: #E71D36;
  --secondary-color: #2EC4B6;
  --success-color: #2EC4B6;
  --warning-color: #ffe66d;
  --info-color: #74c0fc;
  --danger-color: #ff8e8e;
  --dark-color: #2c3e50;
  --light-color: #f8f9fa;
  --text-color: #011627;
  --heading-color: #011627;
  --danger-color: #9F1239;
  --gradient-color: linear-gradient(90deg, #FFE6E6 0%, #F5FFFE 26.81%, #FCF3FF 54.58%, #FFF4E6 99.86%);
  --light-pink-color: #FFFBFB;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.py-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.fs-24 {
  font-size: 24px;
  text-transform: uppercase;
}

.fs-md-35 {
  font-size: 35px !important;
}
.mt--5 {
  margin-top: -3rem !important;
}

.max-w-700 {
  max-width: 700px;
}

.w-max-128 {
  max-width: 128px;
  max-height: 128px;
  object-fit: cover;
}

.fs-18 {
  font-size: 18px;
}

.fs-12 {
  font-size: 12px;
  color: var(--text-color);
}

.fs-26 {
  font-size: 26px;
  color: var(--primary-color);
  font-weight: 500;
}

.cursor-pointer {
  cursor: pointer;
}

.bg-gradient-color {
  background: var(--gradient-color);
}

.heading-color {
  color: var(--heading-color) !important;
}

.text-secondary-color {
  color: var(--secondary-color) !important;
}

.text-primary-color {
  color: var(--primary-color) !important;
}

.bg-primary {
  background: var(--primary-color) !important;
}

.primary-bedge {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 16.8px;
  letter-spacing: 0%;
}

.text-dark-danger {
  color: var(--danger-color) !important;
}

.main-heading {
  font-weight: 700;
  font-size: 45px;
  line-height: 55px;
  letter-spacing: 1.5px;
}

.bg-light-pink {
  background: var(--light-pink-color) !important;
}

.shadow-custom {
  box-shadow: 0px 4px 13px 0px #0000001C;
}

.rounded-custom {
  border-radius: 25px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.brand-logo {
  max-width: 177px;
  height: auto;
}

.nav-link {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-item.active .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
  background: var(--primary-color);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  padding: 10px 20px;
  min-width: 167px;
}

.btn-primary:hover {
  background: var(--secondary-color);
  color: #fff;
}

.btn-secondary {
  background: var(--secondary-color);
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0px 4px 12px 0px #2EC4B67A;
  border-radius: 10px;
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0px 4px 12px 0px #c42e2e7a;
}

.btn-primary-light {
  min-width: 256px;
  border-radius: 10px;
  background: #FF5A5F;
  box-shadow: 0px 4px 12px 0px #2EC4B67A;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

.btn-primary-light:hover {
  background: var(--secondary-color);
  color: #fff;
}

.btn-outline-primary {
  min-width: 256px;
  border-radius: 10px;
  background: transparent;
  color: var(--text-color);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  border: 1px solid #FF5A5F;
}

.btn-outline-primary:hover {
  background: #FF5A5F;
  color: #fff;
  border: 1px solid #FF5A5F;
  box-shadow: 0px 4px 12px 0px #2EC4B67A;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  background: url('./../../images/public/hero/hero-bg.png') no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ==========================================================================
   Why choose
   ========================================================================== */
.why-choose-section {
  position: relative;
}

.why-choose-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 200px;
  background: url('./assets/images/choose/top-dots.svg') no-repeat left center;
  background-size: contain;
  max-height: 246px;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  z-index: -1;
}

.why-choose-section:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 200px;
  background: url('./assets/images/choose/bottom-dots.svg') no-repeat right center;
  background-size: contain;
  height: 100%;
  max-height: 246px;
  background-position: right bottom;
  background-repeat: no-repeat;
  z-index: -1;
}

.choose-text-shape:before{
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 100%;
  height: 100%;
  min-height: 150px;
  transform: translate(-50%, -60%);
  background: url('./assets/images/choose/choose-vector.svg') no-repeat center center;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
}

/* ==========================================================================
   Feature Cards
   ========================================================================== */
.feature-card {
  height: 333px;
  border-radius: 25px;
  padding: 30px;
  position: relative;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0px 4px 13px 0px #0000000F;
}

.feature-card.red-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(231, 29, 54, 0.6) 0%, rgba(231, 29, 54, 0) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.feature-card.green-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(46, 196, 182, 0.6) 0%, rgba(46, 196, 182, 0) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.feature-card.green-card {
  background-color: #F6FFFE;
}

.feature-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.feature-icon-container.red-bg {
  background-color: #FFEEEE;
}

.feature-icon-container.green-bg {
  background-color: #E6FFFA;
}

.feature-title {
  color: #1E3A8A;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
}

.feature-description {
  color: #64748B;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 600px;
  margin: 0 auto;
}


.feature-text-shape:before{
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 100%;
  height: 100%;
  min-height: 150px;
  transform: translate(-50%, -60%);
  background: url('./assets/images/features.svg') no-repeat center center;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
}

/* ==========================================================================
   Powerful Features Section
   ========================================================================== */
.gray-card {
  background: #F3F4F6;
  border-radius: 16px;
  padding: 24px;
  min-height: 160px;
}

.power-feature-card {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-card {
  border-radius: 25px;
  padding: 10px;
  position: relative;
  background-color: white;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: 25px;
  max-width: 208px;
}

.blog-text-shape {
  position: relative;
  z-index: 2;
  display: inline-block;
  overflow: visible;
  line-height: 1;
}

.blog-text-shape:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 100%;
  height: 100%;
  min-height: 100px;
  transform: translate(-50%, -60%);
  background: url('./assets/images/blog/blog-text-shape.svg') no-repeat center center;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
}

.blog-card.pink-card .blog-card-image {
  border-bottom: 5px solid #E71D36;
}

.blog-card.teal-card .blog-card-image {
  border-bottom: 5px solid #2EC4B6;
}

.blog-card-content {
  padding: 20px;
}

.blog-meta {
  color: #64748B;
  font-size: 12px;
  margin-bottom: 12px;
}

.blog-title {
  color: #011627;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 40px;
  font-family: "Inter", sans-serif;
}

.blog-description {
  color: #011627;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}

.read-more-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.read-more-link.pink {
  color: #E71D36;
}

.read-more-link.teal {
  color: #2EC4B6;
}

.read-more-link:hover {
  opacity: 0.8;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 0 auto;
}

/* Pink/Red card gradient border using pseudo-element */
.blog-card.pink-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(270deg, rgba(231, 29, 54, 0.6) 0%, rgba(231, 29, 54, 0) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Teal/Green card gradient border using pseudo-element */
.blog-card.teal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(270deg, rgba(46, 196, 182, 0.6) 0%, rgba(46, 196, 182, 0) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.read-more-link:hover .arrow-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.bg-primary-gradient {
  background: linear-gradient(225deg, #FFF8F8 22.66%, rgba(46, 196, 182, 0.5) 85.36%);
}

.min-h-590 {
  min-height: 590px;
}

.pricing-section {
  position: relative;
}

.pricing-section:before {
  content: "";
  position: absolute;
  top: 50px;
  right: 0;
  background: url('./assets/images/offer-shape.svg') no-repeat top right;
  background-size: contain;
  width: 100%;
  height: 100%;
  max-height: 80px;
  background-position: right top;
  background-repeat: no-repeat;
}

.time-unit {
  background: #FFFFFF20;
  min-width: 100px;
  min-height: 100px;
  border-radius: 8px;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonial-card {
  min-height: 292px;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0px 4px 20px 0px #1E3A8A10;
}

.testimonial-card-pink {
  background: #FFF8F8;
}

.testimonial-card-yellow {
  background: #FFDE5933;
}

.testimonial-card-green {
  background: #F8FFFE;
}

/* ==========================================================================
   Video Section
   ========================================================================== */
.video-container {
  box-shadow: 0px 5.65px 28.25px 0px #1E3A8A10;
  background: #F3F4F6;
  position: relative;
}

.video-container:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #1E3A8A9C;
}

.video-container.play:before {
  content: none !important;
  display: none !important;
}

.video-section {
  position: relative;
}

.video-section:after {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  width: 100%;
  max-width: 200px;
  background: url('./assets/images/choose/top-dots.svg') no-repeat right center;
  background-size: contain;
  max-height: 246px;
  height: 100%;
  background-position: right top;
  background-repeat: no-repeat;
  z-index: -1;
}

.video-section:before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  max-width: 200px;
  background: url('./assets/images/choose/bottom-dots.svg') no-repeat left center;
  background-size: contain;
  height: 100%;
  max-height: 246px;
  background-position: left bottom;
  background-repeat: no-repeat;
  z-index: -1;
}

/* ==========================================================================
   Core Statistics Section
   ========================================================================== */
.statistics-section {
  position: relative;
}

.statistics-section:before {
  content: "";
  position: absolute;
  top: 50px;
  right: 0;
  background: url('./assets/images/statistics-shape.svg') no-repeat top left;
  background-size: contain;
  width: 100%;
  height: 100%;
  max-height: 80px;
  background-position: left top;
  background-repeat: no-repeat;
}
.time-number.heading-color.main-heading {
  margin-bottom: 0 !important;
}


/* ==========================================================================
   contact form section
   ========================================================================== */
.contact-form-section {
  position: relative;
}

.contact-form-section:before {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  background: url('./assets/images/contact-shape.svg') no-repeat top right;
  background-size: contain;
  width: 100%;
  height: 100%;
  max-height: 250px;
  background-position: right top;
  background-repeat: no-repeat;
  z-index: -1;
}

.contact-form-section:after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 0;
  background: url('./assets/images/choose/bottom-dots.svg') no-repeat top left;
  background-size: contain;
  width: 100%;
  height: 100%;
  max-height: 180px;
  background-position: left top;
  background-repeat: no-repeat;
  z-index: -1;
}


/* ==========================================================================
   Final CTA Section
   ========================================================================== */
.final-cta-section:before {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  background: url('./assets/images/choose/bottom-dots.svg') no-repeat top right;
  background-size: contain;
  width: 100%;
  height: 100%;
  max-height: 250px;
  background-position: right top;
  background-repeat: no-repeat;
  z-index: -1;
}

/* ==========================================================================
   Core HRMS Section
   ========================================================================== */
.shape-red {
  position: absolute;
  top: 0;
  z-index: -1;
}

.hrms-row {
  padding-left: 20%;
}

.shape-dots {
  position: absolute;
  bottom: 0;
  right: 0;
}

.core-hrms-section {
  min-height: 520px;
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */
.final-cta-section {
  background: url('./assets/images/management/Illustration-bg.svg') no-repeat center right;
}

/* ==========================================================================
   Support Section  
   ========================================================================== */
.hr-section {
  background: #FFF8F8;
  position: relative;
  padding: 60px 40px;
  font-family: 'Inter', sans-serif;
  border-radius: 25px;
}
.hr-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 1px;
  background: linear-gradient(270deg, rgba(231, 29, 54, 0.6) 0%, rgba(231, 29, 54, 0) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.subtitle {
  color: #2EC4B6;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 15px;
}

.main-title {
  color: #FF5A5F;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #333;
}

.right-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hr-vino-text {
  position: absolute;
  right: -20px;
  top: 20px;
  color: #FF5A5F;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  transform: rotate(15deg);
  z-index: 2;
}

.geometric-logo {
  width: 120px;
  height: 120px;
  position: relative;
  z-index: 1;
}

.logo-shape {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.shape-1 {
  background: #2EC4B6;
  top: 0;
  left: 40px;
  transform: rotate(45deg);
}

.shape-2 {
  background: #FF5A5F;
  top: 40px;
  right: 0;
  transform: rotate(45deg);
}

.shape-3 {
  background: #FFD23F;
  bottom: 0;
  left: 40px;
  transform: rotate(45deg);
}

.shape-4 {
  background: #6C5CE7;
  top: 40px;
  left: 0;
  transform: rotate(45deg);
}

.decorative-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(46, 196, 182, 0.1);
  border-radius: 50%;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  z-index: 0;
}

@media (max-width: 768px) {
  .hr-section {
    padding: 40px 20px;
  }

  .main-title {
    font-size: 32px;
  }

  .right-graphic {
    margin-top: 40px;
  }

  .decorative-circle {
    width: 200px;
    height: 200px;
    right: -30px;
  }
}


/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: var(--gradient-color);
  color: var(--text-color);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

footer .text-muted {
  color: #5a6268 !important;
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
  color: var(--text-color);
}

footer a:hover {
  color: var(--primary-color) !important;
}

.latest-news-item .news-date {
  font-size: 0.85rem;
}

footer .list-unstyled li {
  margin-bottom: 0.5rem;
}
/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .main-heading {
    font-weight: 700;
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 20px !important;
  }

  .blog-title {
    font-size: 20px;
    line-height: 30px;
  }

  .blog-description {
    font-size: 16px;
    line-height: 1.5;
  }

  .blog-card-image {
    max-width: unset;
  }

  div#playButton,
  div#playButton img {
    max-width: 50px;
  }

  .video-container iframe {
    height: 100%;
    min-height: 300px;
  }

  .time-unit {
    background: #FFFFFF20;
    min-width: 60px;
    min-height: 60px;
    border-radius: 8px;
  }

  .power-feature-card {
    min-height: 300px;
  }

  .why-choose-section .mt--5,
  .why-choose-section .feature-card.mt-5 {
    margin-top: 0 !important;
  }

  .countdown-timer.gap-4 {
    gap: 10px !important;
  }

  .pricing-section .container > div,
  .statistics-section .container > div {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .btn.px-5.py-3 {
    padding: 0 !important;
    min-height: 45px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pricing-section:before,
  .statistics-section:before {
    max-height: 50px;
    top: 10px !important;
  }

  .hrms-row {
    padding-left: 0;
  }

  .shape-red {
    filter: blur(50px);
  }

  .latest-news-item {
    display: block !important;
  }

  .latest-news-item img {
    max-width: unset;
    width: 100%;
    margin: 0 0 10px 0 !important;
  }

  .final-cta-section {
    background: url(./assets/images/management/Illustration-bg.svg) no-repeat bottom;
  }
  .testimonial-card  {
    margin-bottom: 24px !important;
  }

  br {
    display: none;
  }

  .pricing-section.min-h-590,
  .pricing-section .container .min-h-590 {
    min-height: unset !important;
  }
  .main-heading.heading-color.mb-5 {
    margin-bottom: 20px !important;
  }
  .time-label {
      font-size: 12px;
  }
  .mb-5 {
    margin-bottom: 2rem !important;
  }
  .mb-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-3 {
    margin-bottom: 1rem !important;
  }
  .py-6 {
      padding-top: 2rem !important;
      padding-bottom: 2rem !important;
  }
  .py-5 {
    padding-top: 1.5rem!important;
    padding-bottom: 1.5rem !important;
  }
  .py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .contact-form-section img, .final-cta-section .cta-img-wrapper {
      display: none !important;
  }
  .final-cta-section .min-h-590 {
      min-height: unset;
  }
  .final-cta-section {
    background: unset !important;
  }
  .fs-sm-26 {
    font-size: 26px !important;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .feature-bg-shape img {
      display: block;
      width: 100%;
  }
  .gray-card {
      display: block !important;
  }
  .gray-card .feature-icon {
      margin-bottom: 10px;
  }
  .contact-form-section img, .final-cta-section .cta-img-wrapper {
    display: none !important;
  }
  .final-cta-section .min-h-590 {
      min-height: unset;
  }
  .final-cta-section {
    background: unset !important;
  }
}
@media (min-width: 992px) and (max-width: 1023px) {
  .container, .container-lg, .container-md, .container-sm {
      max-width: 990px;
  }
}
.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown > .dropdown-toggle:active {
  /* Prevent the dropdown toggle from staying "active" after being clicked */
  pointer-events: none;
}
.blockMsg {    border: transparent !important;    background-color: transparent !important;}