

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      line-height: 1.5;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
    }

    /* Navbar */

    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      padding: 1rem;
      background: black;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      z-index: 1000;
      transition: 1s;
    }
    
    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 70px;
    }
    
    .nav-logo {
      font-size: 2rem;
      margin-left: -4.5rem;
      font-weight: bold;
      color: white;
      cursor: pointer;
    }
    
    .nav-menu {
      margin-left: 3rem;
      display: flex;
      list-style: none;
      gap: 30px;
    }
    
    .nav-link {
      color: white;
      font-weight: 600;
      font-size: 1.2rem;
      transition: 1s;
      position: relative;
    }
    
    .nav-link:hover {
      color: #b8860b;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #b8860b;
      transition: 1s;
    }
    
    .nav-link:hover::after {
      width: 100%;
    }
    
    .nav-button {
      background: #b8860b;
      color: white;
      font-size: 1rem;
      margin-right: -5rem;
      padding: 1rem 2rem;
      border-radius: .5rem;
      font-weight: 600;
      transition: 1s;
      border: none;
      cursor: pointer;
    }
    
    .nav-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px #b8860b;
    }
    
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 5px;
    }
    
    .hamburger span {
      width: 25px;
      height: 3px;
      background: #b8860b;
      margin: 3px 0;
      transition: 0.3s;
      border-radius: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 7px);
    }
    
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -8px);
    }
    
    .mobile-button-container {
      display: none;
    }
    
    /* Mobile Styles */
    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }
    
      .nav-button:not(.mobile-nav-button) {
        display: none;
      }
    
      .mobile-button-container {
        display: none;
      }
    
      .nav-logo {
        margin-left: .5rem;
      }
    
      .nav-button {
        margin-right: 0;
      }
    
      .nav-menu {
        display: none; /* Hides by default */
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        flex-direction: column;
        color: white;
        background: black;
        width: 110%;
        margin-left: -1rem;
        text-align: center;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
        z-index: 999;
      }
    
      .nav-menu.active {
        display: flex; /* Shows when active */
      }
    
      .nav-menu.active .mobile-button-container {
        display: block;
      }
    
      .nav-menu li {
        padding: 15px 0;
      }
    
      .mobile-nav-button {
        margin: 10px 20px;
      }
    
      .nav-container {
        padding: 0 15px;
      }
    }
    

    /* Header Styles */

    .header {
      position: relative;
      height: 100vh;
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/law10.jpg');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      margin-top: 70px;
    }

    .header-content h1 {
      font-size: 3.5rem;
      margin-top: -10rem;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .header-content p {
      font-size: 1.5rem;
      max-width: 600px;
      margin: 0 auto 2rem;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    }

    @media (max-width:768px) {
      .header-content h1 {
        font-size: 2.5rem;
        margin-left: 2rem;
        margin-right: 2rem;
      }
      .header-content p {
        font-size: 1.2rem;
        margin-left: 1.5rem;
        margin-right: 2.5rem;
      }
    }


    /* Stats */

    .stats-section {
      position: relative;
      margin-top: 3rem;
      z-index: 10;
    }
    
    .stats-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      background-color: white;
      border-radius: .5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      padding: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    
    .stat-icon {
      font-size: 2.5rem;
      color: #c59d5f; 
      margin-bottom: 0.75rem;
      display: block;
    }
    
    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 1.5rem 1rem;
    }
    
    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      margin: 0.5rem 0;
    }
    
    .stat-label {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: .5rem;
      color: #c59d5f; 
    }
    
    .stat-item:hover {
      transform: translateY(-5px);
    }
    
    

    @media (max-width: 768px) {    
      .stats-container {
        margin-top: 2rem;
        flex-wrap: wrap;
        padding: 20px;
      }
      
      .stat-item {
        flex-basis: 50%;
        margin-bottom: 20px;
      }
    }
    
    @media (max-width: 480px) {
      .stats-section {
        margin-top: -30px;
      }
      
      .stat-item {
        flex-basis: 100%;
      }
    }
    

    
 .main-content {
  padding: 80px 5%;
}

.section {
  margin-bottom: 100px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 50px;
  text-align: center;
  color: #333;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #b8860b;
}

.about-text {
 
  font-size: 1.2rem;
}


.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
  margin-top: 2rem;
  min-width: 300px;
}

.about-image {
  flex: 1;
  margin-top: 3rem;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width:768px) {
  .about-text {
   margin-top: -.5rem;
  }
  .about-image {
    margin-top: -1rem;
  }
}

.expertise-title {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 4rem;
}

.expertise-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}


.expertise-row {
  display: flex;
  margin-bottom: 50px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}


.expertise-image {
  flex: 1.2;
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.expertise-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: 1s;
}

.expertise-row:hover .expertise-image img {
  transform: scale(1.05);
}

.expertise-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 1rem;
}

.expertise-content h3 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.expertise-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #b8860b;
}

.expertise-content p {
  font-size: 16px;
  color: black;
  margin-bottom: 20px;
}

.expertise-content ul {
  list-style-type: none;
  margin-bottom: 20px;
}

.expertise-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 16px;
  color: black;
}

.expertise-content ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: #b8860b;;
  border-radius: 50%;
}

.expertise-content .btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #b8860b;;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s;
  align-self: flex-start;
}

.expertise-content .btn:hover {
  background-color: #2980b9;
}


.expertise-row:nth-child(even) {
  flex-direction: row-reverse;
}


@media (max-width: 768px) {
  .expertise-row {
      flex-direction: column;
  }

  .expertise-row:nth-child(even) {
      flex-direction: column;
  }

  .expertise-image {
      min-height: 250px;
  }

  .container {
    padding: 40px 15px;
}

.expertise-content p {
  text-align: start;
}

.expertise-family-title{
  text-align: start;
}

.expertise-corporate-title {
  text-align: start;
}

.expertise-injury-title {
  text-align: start;
}

.expertise-estate-title {
  text-align: start;
}

.expertise-title p {
  font-size: 1.2rem;
}


.expertise-title h2 {
    font-size: 2rem;
}

.expertise-row {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px 20px;
}

.expertise-row:nth-child(even) {
    flex-direction: column;
}

.expertise-image {
    max-width: 100%;
}

.expertise-image img {
    height: 250px;
}

.expertise-content {
    padding: 0;
    margin-left: .5rem;
    text-align: center;
}

.expertise-content .family-list {
  margin-left: -1px;
}

.expertise-content .estate-list {
  margin-left: -1px;
}


.expertise-content h3 {
    font-size: 1.5rem;
}

.expertise-content ul {
    text-align: left;
    max-width: 300px;
    margin: 25px auto;
 }
}

.process-section {
  padding: 6rem 0;
  background-color: #f9fafc;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: black;
}

.section-header p {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 1.5rem auto 0;
}

.process-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.process-step {
  background: white;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 5px 15px #b8860b;
}

.step-icon {
  font-size: 3rem;
  color: black;
  margin-bottom: 1.5rem;
  transition: 1s;
}

.process-step:hover .step-icon {
  transform: scale(1.1);
}

.step-title {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.step-description {
  color: #7f8c8d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.learn-more {
  color: #b8860b;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: #222;
}

.learn-more i {
  margin-left: 5px;
  font-size: 0.9rem;
}

.cta-button {
  margin-top: 4rem;
  margin-left: 27rem;
  text-align: center;
  background: #c59d5f; 
  color: black;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 1;
  text-decoration: none;
  display: inline-block;
}


.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  z-index: 0;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background-color: maroon;
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background-color: maroon;
  bottom: -50px;
  left: -50px;
}



@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .process-container {
    gap: 3rem;
  }
  
  .process-step {
    padding: 2rem 1.5rem;
  }
  .process-cta {
    margin-left: 15rem;
    }
}

.testimonials-section {
  margin-top: 5rem;
  padding: 5rem 0;
  background-color: #f8f9fa;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.testimonials-container {
  display: flex;
  margin-top: 1rem;
  transition: 1s;
}

.testimonial {
  min-width: 100%;
  padding: 2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-content {
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  font-style: italic;
}

.quote-icon {
  color: #3498db;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.client-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 3px solid #3498db;
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-name {
  font-weight: 600;
  font-size: 1.2rem;
  color: #2c3e50;
}

.client-position {
  color: #7f8c8d;
  font-size: 0.9rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #3498db;
}

.slider-arrows {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 2;
}

.arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow:hover {
  background-color: #3498db;
  color: white;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .testimonial {
    padding: 1.5rem;
  }

  .slider-arrows {
    display: none;
 
  }
}


/* Team */

#team {
  margin-top: 5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 20px;
}

.team-name {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team-role {
  color: #b8860b;
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.team-social a {
  color: #555;
  transition: all 0.3s ease;
}

.team-social a:hover {
  color: #b8860b;
}



    /* Contact Section Styles */

    .contact-section {
      padding: 80px 20px;
      background: #f8f9fa;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-header h2 {
      font-size: 2.5rem;
      color: #2c3e50;
      margin-bottom: 1rem;
    }

    .section-header p {
      font-size: 1.1rem;
      color: #333;
    }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .contact-info {
      background: white;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .info-title {
      font-size: 1.5rem;
      color: #2c3e50;
      margin-bottom: 30px;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
    }

    .info-icon {
      background: #b8860b;
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .info-content h4 {
      color: #2c3e50;
      margin-bottom: 5px;
    }

    .info-content p {
      color: #333;
      margin: 2px 0;
    }

    .info-content a {
      color: black;
      text-decoration: none;
    }

    .info-content a:hover {
      text-decoration: underline;
    }

    .office-hours {
      margin: 40px 0;
    }

    .hours-table {
      width: 100%;
      border-collapse: collapse;
    }

    .hours-table td {
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }

    .day {
      font-weight: 600;
      color: #2c3e50;
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 30px;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      background: #b8860b;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      text-decoration: none;
      transition: 1s;
    }

    .social-links a:hover {
      background: #b8860b;
      transform: translateY(-3px);
    }

    .contact-map {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .contact-map iframe {
      width: 100%;
      height: 100%;
      min-height: 500px;
    }


/* Footer Styles */

.footer {
  background-color: black;
  margin-bottom: -5rem;
  color: #f5f5f5;
  padding: 60px 0 30px; 
  width: 100vw; 
  margin-left: calc(-50vw + 50%);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  padding: 0 5%; 
}


.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #b8860b;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #b8860b;
  padding-left: 5px;
}

.footer-title-quicklinks {
  margin-left: 5rem;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title-quicklinks:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #b8860b;
}

.footer-links-quicklinks {
   margin-left: 3rem;
   list-style: none;
}

.footer-links-quicklinks li a {
  color: #ccc;
  text-decoration: none;
  transition: 1s;
  margin-left: 2rem;
}

.footer-links-quicklinks li a:hover {
  color: #c6961c;
  padding-left: 5px;
}


.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 1s;
}

.social-links a:hover {
  background-color: #b8860b;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
}

.form-group {
  margin-bottom: 1rem;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #1c1c1c;
  color: #f0f0f0;
  margin-top: 1rem;
  font-size: 1rem;
  outline: none;
  transition: 1s;
}

.form-input::placeholder {
  color: #aaa;
}

.form-input:focus {
  border-color:  #b8860b;
}

.submit-btn {
  width: 100%;
  padding: 12px 16px;
  background-color:  #b8860b;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 1s
}

.submit-btn:hover {
  background-color: #009cb3;
}

@media (max-width:768px) {
  .footer-title-quicklinks {
   margin-left: -1px;
  }
  
  .footer-title-quicklinks:after {
    margin-left: -1px;
  }
  
  .footer-links-quicklinks {
    margin-left: -1px;
  }
  
  .footer-links-quicklinks li a {
    margin-left: -1px;
  }
}




