:root {
  --default-font: system-ui, -apple-system, BlinkMacSystemFont;
  --secondary-font: 'Segoe UI', Roboto, Oxygen, sans-serif;
  --tertiary-font: Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  --nav-font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  scroll-behavior: smooth;
  
  /* Theme Colors */ 
  --background-color: #f9fafb;
  --surface-color: #ffffff;
  --default-color: #1f2937;
  --heading-color: #111827;
  --accent-color: #3b82f6;
  --contrast-color: #ffffff;
  
  /* Navigation Colors */
  --nav-color: rgba(255, 255, 255, 0.7);
  --nav-hover-color: #2563eb;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #1f2937;
  --nav-dropdown-hover-color: #3b82f6;
}

.light-background {
  --background-color: #f9fafb;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #111827;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1f2937;
  --contrast-color: #ffffff;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  color: var(--default-color);
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
}

a {
  font-family: var(--secondary-font);
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.95rem;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color) 75%, transparent 25%);
  text-decoration: none;
}

p {
  font-family: var(--tertiary-font);
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

li {
  font-family: var(--secondary-font);
  font-size: 0.95rem;
}
.container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.fontsM {
  font-size: 1rem; 
}

/* Contact Form Messages */
#Error_Message {
    padding: 12px 15px;
    border-radius: 5px;
    margin: 10px 0;
    font-weight: 500;
    display: none;
    width: 100%;
    box-sizing: border-box;
}

#Error_Message.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#Error_Message.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Field Validation */
.input-text.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.input-text.success {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

.field-error {
    color: #dc3545 !important;
    font-size: 12px !important;
    display: block !important;
    margin-top: 5px !important;
    font-weight: normal !important;
}

/* Loading state for submit button */
button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Mobile menu styles */
.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: block;
}

body.menu-open {
    overflow: hidden;
}
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  padding-top: 50px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  height: 50px;
  object-fit: cover;
  width: 100%;
}

.scrolled .header {
  background-color: var(--background-color);
  box-shadow: -8px 5px 18px rgba(0, 0, 0, 0.1);
  padding: 15px 0px;
}

@media (min-width: 1200px) {
  .navmenu {
    display: flex;
    gap: 15px;
    align-items: center;
  }
  
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 3px;
  }
  
  .navmenu li {
    position: relative;
  }
  
  .navmenu a,
  .navmenu a:focus {
    color: var(--default-color);
    font-size: 0.95rem;
    font-family: var(--nav-font);
    font-weight: 500;
    align-items: center;
    display: flex;
    gap: 8px;
    border-radius: 8px;
    padding: 10px 20px;
    transition: 0.3s;
  }
  
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  
  .navmenu li:hover > a {
    color: #006bb4;
    background-color: #fff;
    border: 1px solid #006bb4;
    border-radius: 8px;
    padding: 10px 20px;
  }
  
  .navmenu li:hover > a img {
    filter: invert(29%) sepia(36%) saturate(4040%) hue-rotate(185deg) brightness(91%) contrast(101%);
  }
  
  .navmenu li.active > a,
  .navmenu li > a.active,
  .navmenu .active:focus {
    color: #fff !important;
    background-color: #006bb4 !important;
    border-radius: 8px;
    gap: 8px;
    padding: 10px 20px;
  }
  
  .navmenu li > a.active img {
    filter: invert(100%) sepia(0%) saturate(7492%) hue-rotate(229deg) brightness(105%) contrast(102%);
  }
  
  .navmenu .dropdown ul {
    margin: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 1rem;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--accent-color);
    font-size: 35px;
    line-height: 0;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    padding: 10px 0;
    margin: 0;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    width:85%;
    height: 100%;
  } 
  
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: start;
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 17px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: 0.3s;
    background: #efefef;
    border: 1px solid #ccc;
  }
  
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px;
    width: 100%;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid rgba(31, 41, 55, 0.1);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  
  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .header {
    padding: 15px !important;
  }
}

@media screen and (max-width: 768px) {
  .markaa-home-slider-container {
    min-height:200px  !important;
  }
  .markaa-home-slider-arrow{
  top: 20%  !important;
  }
  .markaa-home-slide img {
    width: 100%;
    height: 200px !important;
  }
  .header {
    padding: 15px !important;
  }
  
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  
  .header .logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
  }
  
  .barcode-section p {
    padding: 15px !important;
  }
  
  .markaa-parallax-slide,
  .markaa-parallax-banner {
    height: 250px !important;
  }
  
  .markaa-products img {
    height: 150px !important;
  }
  
  .markaa-items {
    padding: 25px 15px !important;
  }
  
  .markaa-items img {
    width: auto;
    height: 150px;
    object-fit: scale-down;
  }
  
  .ed-top {
    display: none !important;
    z-index: 0;
    background: none;
  }
  
  .barcode-section p {
    font-size: 15px !important;
  }
  
  .py-4.type-section {
    padding: 10px;
  }
  
  #choose-us p {
    font-size: 0.92rem;
    line-height: 1.5;
  }
  
  #choose-us h3 {
    font-size: 1rem;
  }
  
  .highlights li,
  .fontsM {
    font-size: 0.95rem;
  }
  
  .brick {
    height: auto !important;
  }
}

.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: rgba(249, 250, 251, 0.5);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(31, 41, 55, 0.5);
}

section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section, .section {
    scroll-margin-top: 66px;
  }
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
  text-align: justify;
  line-height: 30px;
}

.hero {
  background: url(https://www.markaa.in/images/Banner_2.jpg) no-repeat center center;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero:before {
  content: "";
  background: rgba(249, 250, 251, 0.7);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: rgba(255, 255, 255, 0.7);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .download-btn {
  color: var(--contrast-color);
  background: rgba(255, 255, 255, 0.1);
  font-family: var(--nav-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 30px 10px 30px;
  border-radius: 3px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .download-btn + .download-btn {
  margin-left: 20px;
}

.hero .download-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

.hero .hero-img {
  position: relative;
  min-height: 600px;
}

.hero .hero-img .phone-1 {
  margin-top: 20px;
  position: absolute;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  width: 250px;
}

.hero .hero-img .phone-2 {
  position: absolute;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  width: 250px;
  margin-top: 70px;
  margin-left: 100px;
}

@media screen and (max-width: 992px) {
  .hero .hero-img {
    text-align: center;
    overflow: hidden;
    min-height: 600px;
  }
  
  .hero .hero-img .phone-1,
  .hero .hero-img .phone-2 {
    left: 50%;
    transform: translateX(-50%);
  }
}

.testimonials {
  background-image: url('https://www.markaa.in/img/review-banner.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: clamp(16px, 2vw, 24px);
  padding: 10px 0px;
  margin-bottom: 0;
  color: var(--default-color);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #000;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(31, 41, 55, 0.15);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .testimonial-item p {
  text-align: center;
}

.faq .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  border: 1px solid rgba(14, 14, 14, 0.388);
  border-radius: 5px;
  overflow: hidden;
  max-width: 900px;
  margin: auto;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-item {
  background: #fff;
  border: 1px solid rgba(4, 107, 130, 0.15);
  border-radius: 12px;
  margin-bottom: 18px;
  padding: 20px 25px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  color: #046b82;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin: 0;
  line-height: 1.6;
  color: #555;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: rgba(59, 130, 246, 0.03);
  border-color: rgba(59, 130, 246, 0.2);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq .faq-container .faq-active h3 {
  color: #046b82;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.contact .info-item + .info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: rgba(59, 130, 246, 0.08);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact-info {
  gap: 12px;
}

.client {
  font-size: 36px !important;
  display: inline-block;
  padding: 15px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50px;
  align-content: center;
  color: #fff;
}

.cl-1 { background: #768948; }
.cl-2 { background: #D7263D; }
.cl-3 { background: #077B8A; }
.cl-4 { background: #5C5470; }
.cl-5 { background: #F4A261; }
.cl-6 { background: #2A9D8F; }
.cl-7 { background: #E76F51; }
.cl-8 { background: #264653; }
.cl-9 { background: #E9C46A; }
.cl-10 { background: #8D99AE; }
.cl-11 { background: #EF476F; }
.cl-12 { background: #06D6A0; }
.cl-13 { background: #118AB2; }
.cl-14 { background: #FFD166; }
.cl-15 { background: #8338EC; }
.cl-16 { background: #FF006E; }

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #fff;
  padding: 10px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 30s linear infinite;
}

.client-single-items {
  flex: 0 0 auto;
  align-content: center;
  margin: 0 30px;
}

.client-single-items img {
  height: auto;
  width: 150px;
  object-fit: cover;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.h-m {
  font-size: 3.5rem;
}

.text-justify {
  text-align: justify;
}

.markaa-products img {
  width: auto;
  height: 150px;
  object-fit: cover;
}

.markaa-btn {
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.markaa-btn.filled {
  background-color: #006ab1;
  color: #f1f1f1;
  border: none;
  text-align:center;
  border-radius: 8px;
  font-weight: 500;
}

.markaa-btn.filled a {
  color: #fff;
}

.markaa-btn.filled:hover {
  background-color: rgba(0, 0, 0, 0.73);
}

.btn-mrk {
  margin-bottom: 0px !important;
}

.bg {
  background: #f9f9f9;
}

form label {
  margin-bottom: 15px;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  background: #F0F0F0;
}

.features {
  display: block;
  background: #f3f3e7;
  background-image: url('../../img/icon/dot.jpg');
  background-repeat: repeat;
  background-position: left top;
  border-style: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  border-radius: 0px;
  width: 100%;
  height: auto;
  position: relative;
}

.color-overlay {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  height: auto;
  width: 100%;
}

.highlights {
  padding-left: 0px;
  list-style: none;
}

.highlights li {
  text-align: start;
  background-image: url('https://www.markaa.in/img/icon/check.png');
  background-repeat: no-repeat;
  background-position: 0 0px;
  padding-left: 30px;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.col-md-4 .card {
  padding: 15px;
  border-radius: 20px;
  justify-content: space-between;
}

.ed-top {
  background: linear-gradient(180deg, #0284c9, #004778);
  position: relative;
  z-index: 9999;
  padding: 6px 0;
  font-family: Arial, sans-serif;
}

.ed-com-t1-left ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
}

.ed-com-t1-left ul li {
  font-size: 14px;
  color: #fff;
}

.ed-com-t1-left ul li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size:0.8rem;
  transition: color 0.3s ease;
}

.ed-com-t1-left ul li a:hover {
  color: #afd0ff;
}

.ed-com-t1-social ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 12px;
  justify-content: end;
}

.ed-com-t1-social ul li a {
  color: #fff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.ed-com-t1-social ul li a:hover {
  background: #fff;
  color: #0077a5;
}

.type-section {
  background-color: rgba(255, 222, 93, 0.58);
  width: 100%;
  padding: 40px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.type-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    opacity: 0;
    left: -75%;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: 125%;
  }
}

.brick {
  background: #ffff;
  border: 1px solid #006bb4;
  border-radius: 1rem;
  padding: 15px;
}

.barcode-section p {
  text-align: justify;
  line-height: 1.5;
  margin-bottom: 0;
  font-size: 1rem;
}

#barcodeHighlights {
  color: #ff0d0d;
  font-weight: 500;
}

#Error_Message {
  display: none;
  text-align: center;
  padding: 10px 15px;
  border: 1px dashed #204508;
  background: #d7ffd7;
  border-radius: 6px;
  margin-top: 10px;
  color: #007500;
}

.chat-button {
  position: fixed;
  right: 1em;
  bottom: 1em;
  z-index: 9999;
  width: 46px;
  height: 46px;
  object-fit: cover;
  opacity: 1;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #0077a5;
  border-radius: 8px;
  border: 3px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #005f7f;
  transform: scale(1.05);
}

::-webkit-scrollbar-track {
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-horizontal {
  height: 8px;
}

::-webkit-scrollbar-thumb:horizontal {
  background-color: #0077a5;
}

.badge-with-notification {
border-radius: 8px;
display: inline-block;
padding: 10px;
background-color: #fdc9c5;
color: #ff0000;
font-weight: 500;
font-size: 13px;
position: relative;
transition: all 0.3s ease;
}

.badge-with-notification::after {
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  width: 10px;
  height: 10px;
  background-color: rgb(255, 3, 3);
  border-radius: 50%;
  animation: blink 1s infinite alternate;
}

@keyframes blink {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

.product-card,
.product-card-1 {
  background-color: #f4f4f4;
  border-radius: 1rem;
  display: flex;
  height: auto;
  flex-direction: column;
  gap: 10px;
}

.product-card img,
.product-card-1 img {
  height: 170px;
  mix-blend-mode: darken;
  width: 100%;
  object-fit: scale-down;
}

.icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  list-style: none;
  align-items: center;
}

.icon-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-text {
  font-size: 16px;
  color: #333;
}

.product-card h2,
.product-card-1 h2,
.p3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}

.product-card-1 h2 {
  color: #000;
}

.product-card-1 {
  border-top: 3px solid #DB4437;
  border-right: 3px solid #F4B400;
  border-bottom: 3px solid #0F9D58;
  border-left: 3px solid #4285F4;
  padding: 1rem;
  border-radius: 1rem;
  background-color: transparent;
}

.breadcrumb-wrapper,
.product-heading {
  margin-bottom: 15px;
  position: relative;
  z-index: 9;
}

.product-heading {
  font-size: 1.1rem;
  color: #ffff;
  display: inline-block;
  text-transform: lowercase;
  padding: 8px 24px;
  background: #037dc0;
  position: relative;
  box-shadow: 0 4px 15px rgba(15, 84, 158, 0.2);
  clip-path: polygon(0% 0%, 100% 0%, 95% 50%, 100% 100%, 0% 100%, 5% 50%);
  text-align: center;
}

.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 500;
}

.breadcrumb a {
  color: #006bb4;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}
.pro-d > div:first-child {
        font-size: 1.2rem;
    } 
.separator {
  margin: 0 8px;
}

.breadcrumb .current {
  font-weight: 600;
}
.overview p{
    padding-bottom:0px !important;
}

.product-specs.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(139, 139, 139, 0.2);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  overflow: hidden;
}

.product-specs.table thead th {
  background-color: rgba(0, 107, 180, 0.84);
  font-weight: 500;
  color: #fff;
}

.list-inline {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-inline li {
  display: inline-block;
  margin: 0 8px;
  position: relative;
}

.list-inline li:not(:first-child)::before {
  content: '|';
  position: absolute;
  left: -20px;
  color: #868686;
  padding: 0 5px;
}

.p-bottom {
  color: #000;
}

.p-bottom li {
  padding-bottom: calc(15px / 2);
  border-bottom: 1px solid #004777;
}

.p-bottom li:last-child {
  border-bottom: none;
}

.markaa-footer {
  background: #151414;
  position: relative;
}

.markaa-single-cta {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.markaa-single-cta i {
  color: #01acee;
  font-size: 20px;
}

.markaa-cta-text {
  padding-left: 15px;
  display: inline-block;
}

.markaa-cta-text h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}

.markaa-cta-text span,
.markaa-cta-text a {
  color: #a3a3a3;
  font-size:0.9rem;
}

.markaa-footer-content {
  position: relative;
  z-index: 2;
}

.markaa-footer-logo {
  margin-bottom: 30px;
}

.markaa-footer-logo img {
  max-width: 200px;
  border-radius: 7px;
}

.markaa-footer-text p {
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: #a3a3a3;
  line-height: 28px;
}

.markaa-footer-social span {
  color: #ffff;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.markaa-footer-content h3,
.subscribe-widget h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.f-link li a img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(39%) saturate(3541%) hue-rotate(161deg) brightness(93%) contrast(103%);
  margin-right: 10px;
}
.f-link{
    padding-left:0px;
}

.markaa-footer-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #01acee;
}

.markaa-footer-widget ul li{
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}

.markaa-footer-widget ul li a {
  color: #a3a3a3;
  text-transform: capitalize;
  font-size:0.9rem;
}

.markaa-footer-widget ul li a:hover {
  color: #006bb4;
}

.markaa-footer-bottom {
  background: #202020;
  padding: 25px 0;
}

.markaa-footer-copy p {
  margin: 0;
  font-size: 14px;
  color: #878787;
  text-align: center;
}

.markaa-footer-copy p a {
  color: #01acee;
}

.markaa-scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: #006bb4;
  border-radius: 50%;
  color: white;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  transition: 0.4s;
}

.markaa-scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.markaa-chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.markaa-chat-button img {
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.markaa-footer-social .ed-com-t1-social li {
  margin: 0px;
  width: auto;
}

.markaa-footer-social .ed-com-t1-social ul {
  display: flex;
  justify-content: start;
  gap: 15px;
}

.vm1 {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 10px;
  background-color: var(--clr);
  color: #fff;
  border-radius: 10rem;
  font-weight: 500;
  padding-right: 15px !important;
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.vm1__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--clr);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.vm1:hover {
  background-color: #000;
}

.vm1:hover .vm1__icon-wrapper {
  color: #000;
}

.vm1__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.vm1:hover .vm1__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.vm1:hover .vm1__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

.dropdown-products {
  width: auto;
  transform: translate(-50%, 10px);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.tab-container {
  display: flex;
  width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.tab-menu {
  display: flex;
  flex-direction: column;
  background: #efefef;
  padding: 15px;
  border-radius: 8px;
}

.tab-menu button {
  padding: 10px 15px;
  border: none;
  font-weight: 600;
  background-color: transparent !important;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 8px;
}

.tab-menu button:hover {
  background-color: #f7f7f7;
  color: #006bb4;
}

.tab-menu button.active {
  color: #fff !important;
  background-color: #006bb4 !important;
  border: 1px solid #005c99;
  font-weight: 500;
}

.tab-link.active:focus {
  color: #006bb4;
}

.tab-content {
  flex: 1;
  padding: 20px;
}

.tab-content .tab-pane {
  background-color: transparent !important;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.links-column a {
  display: block;
  padding: 8px 12px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.links-column a:hover {
  background-color: #efefef;
  color: #006bb4;
  border-radius: 8px;
}

.v2 {
  color: #fff !important;
}

.tab-pane img.img-fluid {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media screen and (max-width: 992px) {
  .dropdown-products,
  .tab-container {
    width: 100% !important;
    transform: translate(0, 0);
    flex-wrap: wrap;
    margin: 0px !important;
  }
  
  .tab-menu {
    width: 100%;
    flex-direction: row;
    overflow-x: scroll;
    scroll-behavior: smooth;
    flex-wrap: nowrap;
    padding:10px;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
  }
  
  .tab-menu button {
    flex: 1 0 auto;
    text-align: start;
    font-size: 14px;
    padding: 10px;
  }
  
  .tab-content {
    width: 100%;
    padding: 10px;
  }
  
  .vm1 {
    padding: 0.5rem 1rem;
    font-size: 14px;
    gap: 0.5rem;
  }
  
  .vm1__icon-wrapper {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 576px) {
  .tab-menu button {
    font-size: 14px;
    padding: 10px;
  }
  
  .vm1 {
    font-size: 12px;
    padding: 0.4rem 0.8rem;
    gap: 0.4rem;
  }
  
  .vm1__icon-wrapper {
    width: 18px;
    height: 18px;
  }
}
.video-main-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.video-main-heading i {
  color: #FF0000;
  font-size: 2.5rem;
}

.video-section {
  display: flex;
  flex-wrap: wrap;
  gap:10px;
}

.video-container {
  position: relative;
  max-width: 100%;
  background: #fff;
  padding: 15px;
  border-radius: 1rem;
  border: 1px solid #cdcdcc;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.video-container h3 {
  color: #222;
  margin-bottom: 15px;
}

.video-container p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.video-thumbnail {
  width: 100%;
  border-radius: 1rem;
  height: 300px;
  object-fit: cover;
  cursor: pointer;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FF0000;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  z-index: 2;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.play-button i {
  color: #fff;
  font-size: 24px;
}

#about {
  background: linear-gradient(135deg, rgba(161, 196, 253, 0.08), rgba(224, 224, 224, 0.74));
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-content h1 {
  font-size: 2rem;
  font-weight: 500;
  color: #0e0e0e;
}

.about-content p {
  color: #111010;
  margin-bottom: 20px;
  background: rgba(0, 107, 180, 0.82);
  padding: 15px;
  border-radius: 8px;
}

.info-card {
  padding: 15px;
  border-radius: 12px;
  border: 2px solid rgba(0, 107, 180, 0.82);
}

.info-card h6 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: rgba(0, 107, 180, 0.82);
  font-weight: 500;
}

.info-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.info-card ul li {
  margin-bottom: 8px;
  padding-left: 23px;
  position: relative;
  font-size: 0.9rem;
  color: #444;
}

.info-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #107f2a;
  font-size: 0.95rem;
}

.choose-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:5px;
  justify-content: center;
}

.choose-box {
  background: #ffff;
  padding: 10px;
  border-radius: 1rem;
  border: 1px solid #ccc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.choose-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.choose-box .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: rgba(0, 107, 180, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

.choose-box h3 {
  font-size: 1rem;
  color: #222;
  text-align: center;
}

.choose-box p {
  color: #555;
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
  background: #fff;
  padding: 5px 0px;
  padding-bottom:0px;
}

.card2 p {
  padding: 0;
  background: transparent;
  margin-bottom: 0;
}

.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.6s ease-out;
}

.bg-texture {
  padding: 20px;
  border-radius: 1rem;
  background: rgba(229, 231, 235, 0.42);
  border: 1px dashed #004778;
}

.brand-carousel .card {
  border: none;
  border-radius: 15px;
  border: 1px solid #ccc;
}

.swiper-button-next,
.swiper-button-prev {
  width: 38px;
  height: 38px;
  line-height: 38px;
  background: #efefef;
  color: #000;
  padding: 0;
  text-align: center;
  border-radius: 10px;
  display: flex;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-ltr .swiper-button-next:after {
  font-size: 20px;
  font-weight: 700;
}

.markaa-btn {
  background: #fff;
  border: none;
  border-radius: 5px;
  padding: 6px 14px;
  font-weight: 500;
}

.markaa-btn a {
  text-decoration: none;
  color: #000;
}

.product h4 {
  font-size: 1.5rem;
  margin-bottom: 0px;
  font-weight: 500;
}

.brand-carousel h5 {
  border-bottom: 1px dashed #181616;
  padding-bottom: 15px;
  text-align: center;
}

.brand-carousel img {
  height: 180px;
  width: auto;
  object-fit: contain;
}

.btn-bottom a {
  color: #fff;
}

@keyframes markaa-fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hbtn {
  height: 40px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.search-nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #555;
  border-radius: 50%;
  transition: all 0.3s ease;
}

#navSearchBtn .fa-search:before {
  color: #555;
  font-size: 20px;
  padding-right:5px;
}

.search-container .fa-magnifying-glass:before,
.fa-search:before {
  color: #006bb4;
}

.markaa-home-slider-container {
  width: 100%;
  min-height: 550px;
  overflow: hidden;
  margin-top: 75px;
}

.markaa-home-slider-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.markaa-home-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.markaa-home-slide.active {
  opacity: 1;
  z-index: 1;
}

.markaa-home-slide img {
  width: 100%;
  height: 550px;
  display: block;
}

/* Arrows */
.markaa-home-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 0 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  user-select: none;
  transition: all 0.3s ease;
}

.markaa-home-slider-arrow.prev {
  left: 20px;
}

.markaa-home-slider-arrow.next {
  right: 20px;
}

.markaa-home-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.6);
  color: #000;
}

/* Dot indicators */
.markaa-home-slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.markaa-home-slider-indicators button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.markaa-home-slider-indicators button.active {
  background: #fff;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .video-container {
    flex: 1 1 100%;
  }
  
  .hero h2 {
    font-size: 28px;
    line-height: 36px;
  }
  
  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  
  .hero .download-btn {
    font-size: 14px;
    padding: 8px 20px 10px 20px;
  }
  
  .markaa-home-slider-arrow {
    font-size: 1.5rem;
    padding: 8px;
  }
  
  .mt-m {
    margin-top: 25px;
  }
  
  .video-thumbnail {
    height: auto;
  }
  
  #content {
    padding: 15px;
  }
  
  .video-main-heading {
    font-size: 1.5rem;
  }
  
  .video-container {
    padding: 15px;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .choose-container {
    margin-top: 20px;
  }
  
  .type-section p {
    padding: 0px !important;
  }
  
  #about {
    padding-top: 15px;
  }
  
  #about h1 {
    font-size: 1.5rem;
  }
  
  .choose-box {
    padding: 10px;
  }
  
  .client-single-items img {
    width: 110px;
  }
  
  .pro-d {
    flex-direction: column;
    gap: 15px;
    align-items: start !important;
    justify-content: start;
      }

  .product-card h2,
  .product-card-1 h2,
  .p3,
  .video-container h3 {
    font-size: 1.2rem;
  }
  
  .play-button {
    top: 65%;
  }
  
  .breadcrumb li,
  .breadcrumb a {
    font-size: 0.8rem;
  }
  
  section .banner {
    height: 150px;
  }
  
  .product-heading {
    font-size: 1.2rem;
  }
  
  .search-modal-header {
    margin-top: 30px;
  }
  
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background: transparent;
  }
  
  .navmenu a i,
  .navmenu a:focus i {
    background: transparent;
    border: none;
  }
  
  .product h4 {
    font-size: 1.2rem;
  }
  
  .search-nav-item a {
    width: 45px;
    height: 45px;
  }
  
  .navmenu {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .markaa-footer-social{
     margin-bottom:15px;
  }
}

@media (max-width: 480px) {
  .markaa-card {
    width: 150px;
    height: 100px;
  }
  
  .markaa-nav-btn {
    width: 40px;
    height: 40px;
  }
}