.mdl-list-parent-container {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
.mdl-list-flex-wrapper {
  display: flex;
  padding-bottom: 20px;
}
.mdl-list-content-container {
  flex: 10;
  box-sizing: border-box;
  padding: 20px 0px 0px 0px;
}

.mdl-list-container {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  gap: 20px;
}

.mdl-list-filters {
  flex: 2;
}

.mdl-list-cards {
  flex: 6;
  padding: 0px 0px 0px 20px;
}

.mdl-list-float-btns {
  flex: 1;
}

@media (max-width: 860px) {
  .mdl-list-container {
    flex-direction: column;
  }
  .mdl-list-content-container {
    margin: 0px;
    padding: 0px 25px;
  }
  .mdl-list-cards {
    padding: 0px;
  }
  .mdl-list-flex-wrapper {
    flex-direction: column;
  }
}

/* model cards  */
.mdl-content-card {
  background-color: #fff;
  border-width: 1px;
  border-radius: 1px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0px 2px 1px rgba(0, 0, 0, 0.1);
  transition: scale 0.3s ease;
  cursor: pointer;
}

.mdl-content-card:hover {
  scale: 1.05;
}

.mdl-content-card-image {
  width: 100%;
  height: 160px;
  object-fit: contain;
  object-position: center top;
  background-color: #f5f5f5;
  aspect-ratio: 16/9;
}

.mdl-content-card-body {
  padding: 0.8rem;
  flex-grow: 1;
}

.mdl-content-card-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  min-height: 60px;
}

.mdl-content-card-type {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  margin-bottom: 0.5rem;
}
.mdl-content-card-description {
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin: 0.5rem 0;
  color: rgb(71 81 93);
  font-weight: 400;
  min-height: 3.3rem;
  overflow: hidden;
}

.mdl-content-card-domain {
  font-size: 0.85rem;
  color: #333;
  min-height: 2rem;
  align-self: flex-end;
}

.mdl-content-tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: 0.75rem;
  border-radius: 12px;
  margin-bottom: 10px;
  line-height: 1rem;
  font-weight: 600;
}

.mdl-content-tag.type {
  background-color: #f5f5f5;
  color: #171717;
}

.mdl-content-tag.domain {
  color: #171717;
  margin-right: 3px;
  border: 1px solid #a8a8a8;
}

.mdl-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 250px));
  gap: 1.2rem;
}

@media (max-width: 480px) {
  .mdl-content-card-title {
    font-size: 1rem;
  }

  .mdl-content-card-body {
    padding: 0.75rem;
  }
}

@media (max-width: 860px) {
  .mdl-content-card-image {
    width: 100%;
    height: 180px;
  }

  .mdl-content-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .mdl-content-header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }

  .mdl-content-header p {
    font-size: 0.95rem;
  }

  .mdl-filter-toggle-btn {
    width: 100%;
    font-size: 0.95rem;
  }

  .mdl-filter-toggle-btn img {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
  }

  .mdl-content-card-title {
    font-size: 1rem;
  }

  .mdl-content-card-description {
    font-size: 0.85rem;
    min-height: auto;
  }
}

@media (min-width: 860px) and (max-width: 1200px) {
  .mdl-content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1200px) and (max-width: 1500px) {
  .mdl-content-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1500px) and (max-width: 1800px) {
  .mdl-content-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1800px) and (max-width: 2500px) {
  .mdl-content-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  .mdl-list-content-container {
    padding: 0px;
  }
}

@media (min-width: 2500px) and (max-width: 3000px) {
  .mdl-content-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
  .mdl-list-content-container {
    padding: 0px;
  }
}

@media (min-width: 3000px) and (max-width: 3600px) {
  .mdl-content-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
  }
  .mdl-list-content-container {
    padding: 0px;
  }
}

@media (min-width: 3600px) and (max-width: 4300px) {
  .mdl-content-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
  }
  .mdl-list-content-container {
    padding: 0px;
  }
}

/* model filters */
.filter-panel-mdl {
  width: 95%;
  background: #fff;
  padding: 1rem;
  margin-top: 0.5rem;
  box-shadow: 0 0 5px rgba(15, 15, 15, 0.1);
  border: 1px solid #dadada;
  margin-right: auto;
  margin-left: auto;
}

.filter-title-mdl {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.filter-lable-mdl {
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.25rem;
}
.filter-lable-mdl .search {
  font-size: 0.85rem;
  font-weight: 600;
}

.search-box-mdl {
  width: 90%;
  margin-bottom: 1rem;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 1px;
  display: block;
}

.filter-group-mdl {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.filter-heading-mdl {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.25rem;
}
.filter-checkbox-mdl {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-right: 0.5rem;
  height: 1.1rem;
  width: 1.1rem;
  border: 1px solid #0a8276;
  background-color: white;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
}

.filter-checkbox-mdl:checked::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(/static/media/tick.a9494ee108d4009adc95.svg);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.dropdown-group-mdl {
  margin-bottom: 1.2rem;
}

.dropdown-group-mdl summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-group-mdl summary::after {
  content: '';
  height: 1.2rem;
  width: 1.2rem;
  display: inline-block;
  margin-right: 0.15rem;
  background-image: url(/static/media/down_arrow.03384a524f11b79287ae.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}

.dropdown-group-mdl[open] summary::after {
  transform: rotate(180deg);
}

.dropdown-group-mdl .filter-group-mdl {
  margin-top: 0.4rem;
  margin-bottom: 0.5rem;
}

.dropdown-group-mdl .filter-checkbox-mdl {
  margin-right: 0.5rem;
}

.clear-btn-mdl {
  width: 100%;
  padding: 0.5rem;
  border: none;
  background-color: #f3f3f3;
  cursor: pointer;
  transition: background-color 0.2s;
  font-size: 0.85rem;
}

.clear-btn-mdl:hover {
  background-color: #808686;
}

.bg-gray-mdl {
  background-color: #f3f3f3;
}
.bg-green-mdl {
  background-color: #0a8276;
}

.mdl-filter-toggle-btn {
  padding: 0.5rem;
  background-color: #ffffff;
  font-size: 0.9rem;
  transition: background-color 0.2s;
  text-align: center;
  border: 1px solid #e5e5e5;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
}

.mdl-filter-toggle-btn:hover {
  background-color: #0a8276;
  color: #fff;
}

@media (max-width: 860px) {
  .filter-panel-mdl {
    max-width: 100%;
    padding: 0.5rem;
  }
}

@media (min-width: 1440px) {
  .filter-panel-mdl {
    /* width: 78%;
    margin-left: 1.3rem; */
    padding: 1rem;
  }
}

/* models content  */

.mdl-content-header {
  margin-bottom: 0.8rem;
}

.mdl-content-header > p {
  color: rgb(75 85 99);
  margin-top: 1rem;
}
.mdl-content-title {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 500;
  color: rgb(75 85 99);
}

.hidden {
  display: none;
}

/* keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  25% {
    opacity: 0.25;
    transform: translateY(10px);
  }
  50% {
    opacity: 0.5;
    transform: translateY(5px);
  }
  75% {
    opacity: 0.75;
    transform: translateY(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.mdl-details-container {
  display: flex;
  gap: 30px;
  margin-top: 15px;
}
.mdl-details-container-ele {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.mdl-details-card {
  border-radius: 1px;
  border: 1px solid #e5e5e5;
  padding: 1.5rem;
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: #737373;
}

.mdl-details-card-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;

  margin-bottom: 0.75rem;
  color: #0a0a0a;
}

.mdl-details-card-title-parameters {
  font-size: 1.125rem;
}

.mdl-details-card-description {
  margin-top: 0.5rem;
  line-height: 1.4rem;
  font-size: 0.95rem;
  text-align: justify;
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  border-radius: 15px;
  margin-bottom: 7px;
  line-height: 1rem;
  font-weight: 600;
  border: 0.12rem solid #f5f5f5;
  color: #0a0a0a;
  background-color: #fff;
  margin-right: 5px;
  align-self: flex-start;
}

.mdl-details-parent-container {
  padding: 10px;
  margin: 0px 9.5vw;
  animation: fadeInUp 0.2s;
}

.mdl-type {
  background-color: #f5f5f5;
  color: #171717;
  font-size: 0.95rem;
}

.mdl-type-poweredby {
  font-size: 0.8rem;
  color: #918b8b;
  font-weight: 600;
  line-height: 1rem;
}
.mdl-details-overview-type {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 5px;
}

.mdl-details-metrics-card {
  min-width: 30%;
  color: #111827;
  font-size: 1.125rem;
  background-color: #f9fafb;
  border: none;
  font-weight: 600;
}

.mdl-details-metrics-card-title {
  color: #4b5563;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.mdl-details-metrics-card-subcontent {
  color: #4b5563;
  font-size: 0.875rem;
  margin-top: 10px;
  font-weight: 400;
  line-height: 1rem;
}

.mdl-details-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mdl-flex-1 {
  flex: 1;
}

.mdl-flex-2 {
  flex: 2;
}

.mdl-detail-overview {
  display: flex;
  gap: 5px;
}

.mdl-deatils-overview-content {
  flex: 2;
  padding: 24px;
  padding-right: 5px;
}

.mdl-details-overview-img {
  flex: 1;
  box-sizing: border-box;
  padding: 1px;
}

.mdl-details-overview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.mdl-details-links {
  display: grid;
  row-gap: 12px;
  margin-top: 5px;
}

.mdl-details-links-card {
  border: 2px dashed #e5e5e5;
}

.mdl-details-link-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  font-size: 0.95rem;
  line-height: 1.5;
}

.mdl-details-link-item a {
  color: #0a8276;
  text-decoration: none;
  word-break: break-all;
}

.mdl-details-link-item a:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .mdl-details-parent-container {
    margin: 0px 4vw;
  }
  .mdl-details-container {
    flex-direction: column;
  }

  .mdl-details-grid-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
  .mdl-detail-overview {
    flex-direction: column-reverse;
  }
  .mdl-deatils-overview-content > h2 {
    font-size: 1.3rem !important;
  }
  .badge {
    font-size: 0.79rem;
  }
  /* .mdl-details-overview-type {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-right: 5px;
    gap: 0px;
  } */
}
@media (min-width: 861px) and (max-width: 1200px) {
  .mdl-deatils-overview-content {
    flex: 3;
  }

  .mdl-details-overview-img {
    flex: 2;
  }
}

/* model details link card */
.mdl-details-links-card-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.mld-details-links-card-description {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mdl-links-btn {
  padding: 0.7rem;
  background-color: #0a8276;
  font-size: 0.85rem;
  transition: background-color 0.2s;
  margin-top: 0.75rem;
  text-align: center;
  border: 1px solid #e5e5e5;
  font-family: inherit;
  font-weight: 500;
  color: #fff;
  display: flex;
  justify-content: stretch;
  min-width: 135px;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  text-decoration: none;
}

.mdl-links-btn:hover {
  background-color: #03776a;
}

.mdl-details-links-description-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.mdl-details-links-label {
  color: #0a0a0a;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
}

.mdl-customer {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

@media (max-width: 860px) {
  .mdl-details-links-card-container {
    gap: 10px;
  }
  .mdl-links-btn {
    min-width: 90px;
  }
  /* .mdl-customer{
    justify-content: center;
  } */
}

/* braeadcrumbs style start */
.breadcrumbs {
  font-family: inherit;
  font-size: 0.875rem;
  color: #1d1d1d;
}

.breadcrumb-link {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 0.5px;
  color: #1d1d1d;
}

.breadcrumb-link:hover {
  color: #0a8276;
}

.separator {
  font-size: 1rem;
  margin: 0 5px;
}

/* breadcrubms style end */

/* hero styel start */
.hero-container {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 1.5rem;
  gap: 10px;
}
.hero-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 4;
  text-align: justify;
}

.hero-title {
  color: #1d1d1d;
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: 600;
  text-align: left;
}
.hero-subtitle {
  color: #2c2a2a;
  font-size: 0.95rem;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.5rem;
}
.hero-image-container {
  flex: 3;
}
.hero-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/10;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 7.5% 69%);
}

.hero-subdescription-list {
  margin-left: 1em;
}

.hero-subdescription-item {
  color: #2c2a2a;
  font-size: 0.95rem;
  margin-top: 0.3rem;
  font-weight: 400;
}

@media (max-width: 990px) {
  .hero-container {
    flex-direction: column-reverse;
    align-items: center;
  }
  .hero-title {
    font-size: 1.4rem;
    line-height: 2rem;
  }

  .hero-image-container {
    width: 100%;
  }
  .hero-image {
    clip-path: polygon(0 0, 100% 0, 100% 61%, 39% 100%, 0 61%, 0 100%);
  }
}
@media (min-width: 2200px) {
  hero-title {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .hero-subtitle {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .hero-subdescription-item {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
/* hero style end */

* {
  margin: 0;
  padding: 0;
}
body {
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    Segoe UI Symbol,
    'Noto Color Emoji';
  box-sizing: border-box;
  min-height: 100vh;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  gap: 20px;
  color: white;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: '1rem';
}

.header-title {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
  cursor: pointer;
}
.header-heading {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
  color: #0a8276;
}

.header-img {
  max-width: 100px;
  height: auto;
  object-fit: contian;
  margin-left: 1rem;
  cursor: pointer;
}

@media (max-width: 400px) {
  .header-title {
    margin-left: 0.5rem;
  }
}

/* loader css */
.loaderContainer {
  margin: 3rem 0px 0.5rem;
  color: #47515d;
}

.loaderContent {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.25rem;
  text-align: center;
}

/* floating btns */
.float-btn {
  position: fixed;
  bottom: 10px;
  right: 15px;
  background-color: #479a92;
  color: rgba(215, 215, 215, 0.865);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 2.5rem;
  cursor: pointer;
  display: none;
  z-index: 10;
  text-align: center;
  line-height: 62px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.float-btn:hover {
  background-color: #0a8276;
}

/* spinner  */
.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 2rem;
  height: 2rem;
  border: 4px solid rgba(0, 0, 0, 0.345);
  border-top: 4px solid #0a8276;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* notfound */
.notFoundContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
  min-width: 70vw;
  border-radius: 2px;
  box-shadow: 0px 0px 2px 0px rgba(52, 51, 51, 0.75);
  -webkit-box-shadow: 0px 0px 2px 0px rgba(52, 51, 51, 0.75);
  -moz-box-shadow: 0px 0px 2px 0px rgba(52, 51, 51, 0.75);
  padding: 2rem;
  font-family: inherit;
  background-color: #f9f9f9;
  color: #333;
}

.noModelsContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  margin-top: 28px;
  border: 1px solid black;
  padding: 24px;
  border-radius: 5px;
}

.notFoundHeader {
  font-size: 6rem;
  margin: 0;
  color: #0a8276;
}

.notFoundContent {
  font-size: 2rem;
  margin: 1rem 0;
}

.notFoundLink {
  margin-top: 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  color: white;
  background-color: #0a8276;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.notFoundLink:hover {
  background-color: #09665e;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.flex-start {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.mt-vh-15 {
  margin-top: 15vh;
}

/* footer styles start */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  box-sizing: border-box;
  background-color: #0a8276;
  font-size: 0.85rem;
  margin-top: 3rem;
  color: white;
}

.footer-link {
  color: white;
  text-decoration: none;
  margin-right: 0.5rem;
  cursor: pointer;
}

.footer-seperator {
  opacity: 0.5;
}

.footer-copyright-spearator {
  display: inline;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer-copyright-spearator {
    display: none;
  }

  .footer-container {
    padding: 2.5rem 1rem;
  }
}
/* footer styles end */

.flex-1 {
  flex: 1;
}

/* about page style start */
.about-page-container {
  margin: 0px 8vw;
}

.about-page-font {
  font-size: 1rem;
  line-height: 1.7rem;
  color: #2c2a2a;
  font-weight: 400;
  margin-bottom: 1.25rem;
  text-align: justify;
}

.about-image-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  margin-top: 6vh;
}
.about-image {
  height: 55px;
  object-fit: contain;
  cursor: pointer;
}

@media (max-width: 600px) {
  .about-image-container {
    padding: 0px;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .about-image {
    height: 50px;
  }
}

@media (min-width: 1800px) {
  .about-image {
    height: 60px;
  }
  .about-image-container {
    gap: 20px;
    margin-top: 6vh;
  }
}

/* about page style end */


/*# sourceMappingURL=main.b79fb1d7fe2566bc2537.css.map*/