<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --primary: #c9262e;
  --grey: #717679;
  --white: #fff;
  --black: #000;
}
.services-banner .title {
  opacity: 0; /* Start invisible */
  transform: translateX(-100%); /* Start off-screen */
  animation: slide-left 1s ease-out forwards; /* Trigger animation */
}
@keyframes slide-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.services-banner .content {
  opacity: 0; /* Start invisible */
  transform: translateX(100%); /* Start off-screen to the right */
  animation: slide-right 1s ease-out forwards; /* Trigger animation */
}
@keyframes slide-right {
  0% {
    opacity: 0;
    transform: translateX(100%); /* Start off-screen to the right */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* End at original position */
  }
}

.services-banner {
  height: 73vh;
  overflow: hidden;
  position: relative;
  /* background-image: url(../images/services-banner.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0px -135px; */
}

.services-banner .bg-block {
  top: -135%;
  display: block;
  background-color: #f5f5f5;
  width: 300px;
  height: 330%;
  position: absolute;
  left: 43%;
  transform: rotate(75deg);
}
.services-banner h1 {
  font-size: 64px;
  font-weight: 400;
}
.services-banner h1 span {
  color: var(--primary);
  font-style: italic;
}
.grey-border {
  margin-top: 20px;
  display: block;
  height: 4px;
  width: 47%;
  background-color: #9a9999;
}
.services-banner .title {
  margin-top: 60px;
}
.services-banner .content p {
  font-size: 14px;
}
.services-banner .content h3 {
  line-height: 38px;
  font-size: 24px;
  font-weight: 400;
}
.services-banner .content {
  margin-top: 50px;
}
.tab-content {
  /* max-height: 750px; */
  /* height: max-content; */
  overflow-y: auto;
  padding: 1rem;
  /* margin-right: 100px; */
}
.nav-pills {
  border-right: 1px solid #ddd;
}
.nav-pills .nav-link {
  width: 360px;
  border-radius: 0;
  padding: 20px !important;
  color: var(--black);
  border-bottom: 1px solid #9a9999;
}

.nav-pills h1 {
  margin-top: 20px;
  font-size: 32px;
  font-weight: 500;
  margin-left: 80px;
}
.services-tab {
  display: flex;
  border-top: 1px solid #ddd;
  align-items: start;
}
.nav-pills .nav-link.active {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 0;
  font-weight: normal;
  height: max-content;
}
.nav-pills .nav-link span {
  text-align: left;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: space-between;
  margin-left: 60px;
}
.nav-pills .nav-link:focus-visible {
  outline: none !important;
  border-radius: 0 !important;
}
.nav-pills .nav-link:hover span {
  transform: translateX(10px); /* Move 10px to the right */
  transition: transform 0.3s ease; /* Smooth transition */
}
.nav-pills .nav-link:hover {
  background-color: var(--primary);
  color: var(--white);
}

.red-border {
  display: block;
  background-color: var(--primary);
  height: 2px;
  width: 100px;
  margin-bottom: 10px;
}
.services-tab .tab-content p {
  font-size: 14px;
}
.types {
  margin: 40px 0;
  display: flex;
  justify-content: start;
}
.types img {
  margin-right: 20px;
}
.types h5 {
  font-size: 20px;
  font-weight: 400;
}
.types h5 i {
  color: var(--primary);
  margin-right: 10px;
}
.types ul {
  font-size: 14px;
  padding-left: 10px;
  padding-left: 23px;
}
.types ul li {
  line-height: 27px;
}
.types .content {
  width: max-content;
}
.tab-pane h4 {
  padding-bottom: 10px;
  border-bottom: 1px solid #9a9999;
}
/* .tab-pane .row:last-child p {
  margin: 20px 0;
} */

.brand-tabs .nav-link {
  padding: 10px 20px !important;
  border: none;
}
.brand-tabs .nav-item {
  margin: 0 15px !important;
}

.brand-tabs {
  background-color: #f5f5f5;
  padding-top: 10px;
  border: none;
  justify-content: space-around;
}
.brand-tabs .nav-link.active {
  color: var(--primary);
  font-weight: 500;
  text-transform: uppercase;
}

.brand-tabs .nav-link {
  color: #252424;
  text-transform: uppercase;
}
.list-unstyled li i {
  margin-right: 20px;
}
.list-unstyled li {
  margin: 20px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px 60px;
}
.feature-item {
  padding: 10px;
  border-radius: 8px;
}
.feature-item h4 {
  border: none;
  font-size: 13px;
  font-weight: bold;
  padding-bottom: 0;
}
.feature-item p {
  margin: 0;
  font-size: 13px !important;
  color: #555;
}
.brand-feature {
  background-color: #f5f5f5;
  padding: 30px;
}

/* products */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.cards-container .card {
  background: #f5f5f5;
  padding: 20px;
  flex-direction: row;
  border: none;
  border-radius: 0px;
  width: 260px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cards-container .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.cards-container .card-title {
  font-size: 15px;
  color: #333;
  max-width: 70%;
}
.cards-container .arrow-btn {
  background-color: #d01818;
  color: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.productSection h2 {
  display: none;
}
.tab-pane h6 {
  font-size: 20px;
  font-weight: 500;
  /* margin-top: 60px; */
}
.tab-pane p {
  margin-top: 20px;
}
.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: #888;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.product-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.product-details {
  flex: 1;
}

.product-image img {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
}

.catalog-section {
  margin-top: 30px;
}

.catalog-card {
  background-color: #f5f5f5;
  padding: 20px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 387px;
}

.catalog-text p {
  margin: 0;
  font-size: 14px;
}

.catalog-text small {
  color: #666;
  font-size: 12px;
}

.download-button {
  background-color: #d32f2f;
  color: white;
  padding: 10px;
  border-radius: 8px;
  font-size: 20px;
  text-decoration: none;
}

.download-button:hover {
  background-color: #b71c1c;
}

.back-button {
  /* margin-top: 40px; */
  padding: 10px 20px;
  color: var(--primary);
  border: none;
  margin-bottom: 20px;
  border-radius: 5px;
  cursor: pointer;
  background: none;
  padding-left: 0 !important;
}

.back-button:hover {
  /* background: #bbb; */
}
#product-name {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
}

#product-description {
  width: 70%;
  margin: 20px 0;
}
.catalog-section h2 {
  color: var(--primary);
  font-weight: 500;
  font-size: 20px;
}
.sub-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.scrollable-menu {
  max-height: 800px; /* adjust height as needed */
  overflow-y: auto;
  /* padding-right: 10px; */
}
.ogs-scrollable-menu {
  max-height: 380px !important;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .services-tab {
    display: block;
  }
  .tab-content {
    margin-right: 0px;
  }
  .services-sub-img {
    margin: 0 auto;
    text-align: center;
  }
  .services-sub-content {
    margin-top: 20px;
  }
  .services-banner h1 {
    font-size: 48px;
  }
  .nav-pills .nav-link {
    width: 100%;
  }
  .nav-pills .nav-link span {
    margin-left: 25px;
  }

  .nav-pills h1 {
    margin-left: 5px;
  }
  .scrollable-menu {
    max-height: 280px;
  }
  .sub-cards-container {
    justify-content: center;
  }
  .cards-container .card {
    margin: 0 auto;
  }

  .nav-pills {
    border: transparent;
  }

  .brand-section {
    flex-direction: column;

    margin-bottom: 20px;
  }
  .services-banner .title {
    font-size: 48px;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .tab-content {
    margin-right: 0px;
  }
}

.services-sub-content ul li {
  font-size: 15px;
  line-height: 27px;
}
</pre></body></html>