@charset "UTF-8";
.custom-select {
  position: relative;
}
.custom-select .custom-select-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 450px;
  max-height: 250px;
  padding: 8px;
  display: none;
  overflow: auto;
  z-index: 9;
  background-color: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 24px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1215686275);
}
.custom-select .custom-select-list li {
  display: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.custom-select .custom-select-list li span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom-select .custom-select-list li span::before {
  content: "";
  background-image: url(../images/icons/search.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  width: 13px;
  height: 13px;
  display: block;
}
.custom-select .custom-select-list li:hover {
  background-color: #f2f2f2;
}
.custom-select .custom-select-empty {
  cursor: default;
}

/* MODAL SECTION STYLE */
.trigger:hover {
  background: #555;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
.modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 20px;
}
.modal .close-button {
  float: right;
  width: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
}
.modal input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-pagination {
  bottom: 40px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .swiper-pagination {
    bottom: 20px !important;
  }
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #FFFFFF;
  opacity: 50%;
}
@media (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

.swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  background-color: #FFFFFF;
  opacity: 100%;
  border: 3px solid rgba(255, 255, 255, 0.2392156863);
}
@media (max-width: 768px) {
  .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
  }
}

.logo-carousel .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.thumb-slider {
  border: 1px solid #E5E5E5;
  border-radius: 24px;
  box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.0784313725);
}
.thumb-slider .swiper-button-next,
.thumb-slider .swiper-button-prev {
  background-color: #FFFFFF;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.thumb-slider .swiper-button-next::after,
.thumb-slider .swiper-button-prev::after {
  content: "";
  background-image: url(../images/icons/prev.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  width: 24px;
  height: 24px;
  display: block;
}
.thumb-slider .swiper-button-prev::after {
  transform: rotate(180deg);
}
.thumb-slider .swiper-slide {
  height: auto;
}
.thumb-slider .swiper-slide img {
  height: 100%;
}

.gallery-slider .swiper-slide {
  opacity: 60%;
  border: 1px solid #0075BF;
  border-radius: 4px;
  cursor: pointer;
}
.gallery-slider .swiper-slide img {
  height: 104px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .gallery-slider .swiper-slide img {
    height: 80px;
  }
}
.gallery-slider .swiper-slide.swiper-slide-thumb-active {
  opacity: 100%;
}

.breadcrumb {
  margin-top: 48px;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 16px;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  opacity: 70%;
}
.breadcrumb-item:not(:last-child)::after {
  content: "";
  background-image: url(../images/icons/DropDown.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center right;
  width: 20px;
  height: 20px;
  display: block;
  margin: 0 5px;
}
.breadcrumb-item.active {
  color: #0075BF;
  opacity: 100%;
}
.breadcrumb-item a {
  text-transform: capitalize;
}

.viewall {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s all ease-in-out;
}
.viewall::after {
  content: "";
  background-image: url(../images/icons/view-all.svg);
  background-repeat: no-repeat;
  background-position: right;
  display: block;
  width: 20px;
  height: 20px;
}
.viewall:hover {
  color: #0075BF;
  transition: 0.3s all ease-in-out;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #C8C8C8;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

:root {
  --color-brand-blue: #0075bf;
  --color-brand-black: #000000;
}

/* CSS RESET  */
body {
  margin: 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: inherit;
  font-family: "Lora";
}

section {
  max-width: 100vw;
}

label {
  margin: 0;
  padding: 0;
}

button:focus {
  outline: none;
}

ul,
li {
  padding: 0;
  list-style: none;
  margin: 0px;
}

/* RESET CONTAINER WIDTH */
.container-fit {
  width: 100%;
  margin: 0 auto;
  padding: 0 8px;
}
@media (min-width: 578px) {
  .container-fit {
    width: calc(100% - 40px);
  }
}
@media (min-width: 992px) {
  .container-fit {
    width: calc(100% - 150px);
  }
}
@media (min-width: 1200px) {
  .container-fit {
    width: calc(100% - 180px);
  }
}
@media (min-width: 1600px) {
  .container-fit {
    width: calc(100% - 376px);
  }
}

/* TEXT HOVER STYLE GOES HERE */
.hover-text {
  transition: 0.3s all ease-in-out;
}
.hover-text img {
  transition: 0.3s all ease-in-out;
}
.hover-text:hover {
  color: var(--color-brand-blue);
  transition: 0.3s all ease-in-out;
}
.hover-text:hover img {
  filter: brightness(0) saturate(100%) invert(31%) sepia(93%) saturate(1028%) hue-rotate(175deg) brightness(94%) contrast(108%);
  transition: 0.3s all ease-in-out;
}

/* SECTION TITLE STYLES GOES HERE */
.section-title h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #1D1E28;
  font-family: "Lora";
}
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 24px;
  }
}

/* HEADER STYLE GOES HERE */
.header .header-menu li a::after {
  content: "";
  background-image: url(../images/DropDown.svg);
  background-repeat: no-repeat;
  background-position: right;
  display: block;
  width: 20px;
  height: 20px;
}
.header .dropdown-list {
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.12);
  border: 1px solid #E5E5E5;
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  border-radius: 8px;
  min-width: 340px;
  z-index: 50;
  background-color: #ffffff;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.header .dropdown-list::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}
.header .dropdown-list ul li.see-more a {
  color: #0075BF;
}
.header .dropdown-list ul li.see-more img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(86%) saturate(2557%) hue-rotate(187deg) brightness(94%) contrast(102%);
}
.header .dropdown-list ul li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.6980392157);
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 12px 20px;
  transition: background-color 0.2s ease;
}
.header .dropdown-list ul li a img {
  width: 16px;
  height: 16px;
}
.header .dropdown-list ul li a:hover {
  background-color: #F3F3F3;
}
.header .group:hover .dropdown-list {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.header .mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow-y: auto;
}
@media (max-width: 578px) {
  .header .mobile-menu {
    max-width: 100%;
    width: 100%;
  }
}
.header .mobile-menu.active {
  right: 0;
}
.header .mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}
.header .mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}
.header .mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}
.header .mobile-dropdown-content ul li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.6980392157);
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 12px 20px;
  transition: background-color 0.2s ease;
}
.header .mobile-dropdown-content ul li a img {
  width: 16px;
  height: 16px;
}
.header .mobile-dropdown-content ul li a:hover {
  background-color: #F3F3F3;
}
.header .mobile-dropdown-content.active {
  max-height: 500px;
  opacity: 1;
}
.header .mobile-dropdown-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .mobile-dropdown-icon.rotated {
  transform: rotate(180deg);
}

/* FOOTER SECTION STYLE GOES HERE */
.footer {
  background-color: #1D1E28;
  padding-top: 64px;
  padding-bottom: 32px;
  border-radius: 48px 48px 0 0;
  /* ≤1024px */
}
@media (max-width: 1024px) {
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer {
  /* ≤768px */
}
@media (max-width: 768px) {
  .footer {
    border-radius: 32px 32px 0 0;
    padding-top: 40px;
  }
}
.footer .footer-logo img {
  max-width: 250px;
}
@media (max-width: 768px) {
  .footer .footer-logo img {
    max-width: 150px;
  }
}
.footer .footer-top {
  display: flex;
  gap: 100px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(0, 117, 191, 0.3);
}
@media (max-width: 1024px) {
  .footer .footer-top {
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer .footer-top {
    flex-direction: column;
    gap: 32px;
  }
}
.footer .footer-social-links {
  display: flex;
  align-items: center;
  gap: 40px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1536px) {
  .footer .footer-social-links {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .footer .footer-social-links {
    gap: 20px;
  }
}
.footer .footer-social-links li {
  transition: all 0.3s ease-in-out;
}
.footer .footer-social-links li:hover {
  transform: rotate(380deg);
}
@media (max-width: 1536px) {
  .footer .footer-social-links li img {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 768px) {
  .footer .footer-social-links li img {
    width: 26px;
    height: 26px;
  }
}
.footer .footer-col {
  flex: 1;
}
.footer .footer-col:nth-child(1) {
  flex: 0 0 391px;
}
@media (max-width: 1024px) {
  .footer .footer-col:nth-child(1) {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .footer .footer-col {
    width: 100%;
  }
}
.footer .footer-col h4 {
  font-family: "RotisSansSerif";
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #fff;
  border-bottom: 1px solid rgba(0, 117, 191, 0.3);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .footer .footer-col h4 {
    padding-bottom: 12px;
    margin-bottom: 16px;
  }
}
.footer .footer-col .footer-menu li {
  font-size: 16px;
  line-height: 25px;
  color: #fff;
}
.footer .footer-col .footer-menu li:not(:last-child) {
  margin-bottom: 16px;
}
.footer .footer-col .footer-menu li a {
  transition: all 0.3s ease-in-out;
}
.footer .footer-col .footer-menu li:hover a {
  color: var(--color-brand-blue);
}
.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.footer .footer-bottom p {
  font-size: 16px;
  line-height: 25px;
  color: #fff;
}

.category-wrapper {
  display: flex;
  gap: 32px;
}
@media (max-width: 1024px) {
  .category-wrapper {
    flex-direction: column;
  }
}
.category-list {
  border-width: 1px;
  border-style: solid;
  border-color: #E5E5E5;
  border-radius: 20px;
  padding-top: 16px;
  width: 22.4%;
  height: max-content;
}
@media (max-width: 1024px) {
  .category-list {
    width: 100%;
  }
}
.category-list ul {
  margin-top: 16px;
}
.category-list ul li {
  font-weight: 500;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6980392157);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.category-list ul li span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.category-list ul li.active {
  background-color: #F3F3F3;
  transition: 0.3s all ease-in-out;
}
.category-list ul li::before {
  content: "";
  
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
  display: block;
}
.category-list ul li::after {
  content: "";
  background-image: url(../images/icons/DropDown.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  display: block;
  margin-left: auto;
  transform: rotate(90deg);
  transition: 0.3s all ease-in-out;
  flex-shrink: 0;
}
.category-list ul li:hover {
  background-color: #F3F3F3;
  transition: 0.3s all ease-in-out;
}
.category-list ul li:hover::after {
  transform: rotate(0deg);
  transition: 0.3s all ease-in-out;
}
.category-detail {
  display: flex;
  flex-direction: column;
  width: 57%;
}
@media (max-width: 1024px) {
  .category-detail {
    width: 100%;
  }
}
.category-detail .content-block {
  padding: 24px;
}
.category-detail .content-block:nth-child(even) {
  border: 1px solid #E5E5E5;
  border-radius: 24px;
}
.category-detail .content-block:not(:last-child) {
  margin-bottom: 64px;
}
.category-detail .content-block .content-block-flex {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 1280px) {
  .category-detail .content-block .content-block-flex {
    flex-direction: column;
  }
}
.category-detail .content-block .content-block-img {
  max-width: 240px;
  width: 100%;
  border: 1px solid #E5E5E5;
  border-radius: 20px;
}
.category-detail .content-block .content-block-img img {
  height: 100%;
  border-radius: 20px;
  padding: 20px;
}
.category-detail .content-block p {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #000000;
  flex: 1;
  max-width: 600px;
  width: 100%;
}
@media (max-width: 1280px) {
  .category-detail .content-block p {
    max-width: 100%;
    font-size: 16px;
    line-height: 28px;
  }
}
.category-detail .content-block .content-block-slider {
  background-color: #FAFAFA;
  padding: 24px;
  border-radius: 16px;
  margin-top: 24px;
}
.category-detail .content-block .content-block-slider .swiper-button-next,
.category-detail .content-block .content-block-slider .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 117, 191, 0.0784313725);
  border: 1px solid #0075BF;
}
.category-detail .content-block .content-block-slider .swiper-button-next::before,
.category-detail .content-block .content-block-slider .swiper-button-prev::before {
  content: "";
  background-image: url(../images/icons/DropDownBlue.svg);
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: block;
}
.category-detail .content-block .content-block-slider .swiper-button-prev {
  transform: rotate(180deg);
}
.category-file {
  background-color: #F3F3F3;
  border: 1px solid #E5E5E5;
  border-radius: 24px;
  padding: 16px 8px 8px 8px;
  flex: 1;
  height: max-content;
}
.category-file .file-block {
  background-color: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 24px;
}
.category-file .file-block img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  padding: 10px;
}
.category-file .file-block p {
  font-weight: 500;
  font-size: 16px;
  color: #0075BF;
  padding: 16px;
  border-top: 1px solid #E5E5E5;
}

.products .card {
  border: 1px solid #E5E5E5;
  border-radius: 24px;
}
.products .card-image img {
  border-radius: 24px 24px 0 0;
  padding: 24px;
}
.products .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #E5E5E5;
}
.products .card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.products .card-info p {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  opacity: 70%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.products .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products .card-header h3 {
  font-weight: 500;
  font-family: "Lora";
  font-size: 16px;
  line-height: 100%;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: 192px;
  width: 100%;
}
.products .card-header span {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 24px;
  color: #22C55E;
  display: inline-block;
  white-space: nowrap;
}
.products .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products .card-footer span {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: #000000;
}
.products .card-footer button {
  border: none;
  background: #0075BF;
  color: #fff;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  border-radius: 40px;
}
.products .card-footer a {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #0075BF;
  display: none;
}
.products.listView .card {
  display: flex;
}
.products.listView .card-image {
  display: none;
}
.products.listView .card-image img {
  border-radius: 24px 0px 0 24px;
  height: 100%;
}
.products.listView .card-body {
  width: 100%;
  border-top: 0;
}
.products.listView .card-footer {
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
.products.listView .card-footer a {
  display: block;
}

.manufacturers .card {
  border: 1px solid #E5E5E5;
  border-radius: 24px;
  padding: 24px;
}
.manufacturers .card-head {
  display: flex;
  align-items: center;
  gap: 20px;
}
.manufacturers .card-head img {
  width: 80px;
  height: 80px;
  border: 1px solid #E5E5E5;
  border-radius: 16px;
}
.manufacturers .card-head h3 {
  font-family: "Lora";
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #000000;
}
.manufacturers .card-body p {
  margin-top: 16px;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  opacity: 70%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.manufacturers .card-footer {
  border-top: 1px solid #E5E5E5;
  padding-top: 16px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.manufacturers .card-footer img {
  width: 40px;
  height: 40px;
}
.manufacturers .card-footer h3 {
  font-weight: 500;
  font-size: 14px;
  color: #000;
  font-family: "Lora";
}
.manufacturers .card-footer h3 span {
  font-weight: 700;
  font-family: "Lora";
}

.product-card {
  border: 1px solid #E5E5E5;
  border-radius: 24px;
  position: relative;
}
.product-card-discount {
  display: flex;
  align-items: center;
  box-shadow: 0px 4px 8px 1px rgba(0, 0, 0, 0.1215686275);
  padding: 7.5px 16px;
  background-color: #0075BF;
  color: #fff;
  border-radius: 60px;
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  position: absolute;
  top: 16px;
  right: 16px;
}
.product-card-image img {
  border-radius: 24px 24px 0 0;
  width: 100%;
  height: 100%;
}
.product-card-body {
  padding: 16px;
  border-top: 1px solid #E5E5E5;
}
.product-card-body p {
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  max-width: 252px;
  width: 100%;
}

.catelogue-card {
  border: 1px solid #E5E5E5;
  border-radius: 24px;
}
.catelogue-card-image img {
  border-radius: 24px 24px 0 0;
}
.catelogue-card-content {
  padding: 16px;
  background-color: #0075BF;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #fff;
  border-radius: 0 0 24px 24px;
}
.catelogue-card-content p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.tab_wrapper {
  display: flex;
  gap: 32px;
}
@media (max-width: 991px) {
  .tab_wrapper {
    flex-direction: column;
  }
}
.tab_nav {
  max-width: 340px;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: #E5E5E5;
  border-radius: 24px;
  height: max-content;
  padding-bottom: 200px;
}
@media (max-width: 991px) {
  .tab_nav {
    max-width: 100%;
  }
}
.tab_panel {
  flex: 1;
}
.tab_item {
  padding: 12px 20px;
  position: relative;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  display: flex;
  align-items: center;
}
.tab_item::after {
  content: "";
  background-image: url(../images/icons/arrow-down.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto;
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
  margin-left: auto;
  transition: 0.3s all ease-in-out;
}
.tab_item span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-weight: 500;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6980392157);
}
.tab_item:hover {
  background-color: #F3F3F3;
  transition: 0.3s all ease-in-out;
}
.tab_item:hover::after {
  transform: rotate(-90deg);
  transition: 0.3s all ease-in-out;
}
.tab_item:first-child {
  border-radius: 24px 24px 0 0;
}
.tab_item:last-child {
  border-radius: 0 0 24px 24px;
}

.tabBtn.active {
  background-color: #F3F3F3;
  transition: 0.3s all ease-in-out;
}
.tabBtn.active::after {
  transform: rotate(0deg);
  transition: 0.3s all ease-in-out;
}

.tabContent {
  display: none;
}
.tabContent.active {
  display: block;
}

.parent {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
}
@media (max-width: 1040px) {
  .parent {
    gap: 24px;
  }
}
.parent .div2,
.parent .div3,
.parent .div4,
.parent .div5 {
  height: 400px;
}
.parent div {
  border: 1px solid #E5E5E5;
  border-radius: 24px;
  box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.0784313725);
}
.parent div img {
  border-radius: 24px;
  height: 100%;
}
.parent .div1 {
  grid-column: span 2/span 2;
  grid-row: span 6/span 6;
}
@media (max-width: 1040px) {
  .parent .div1 {
    grid-column: span 6/span 6;
    grid-row: span 2/span 2;
  }
}
.parent .div2 {
  grid-column: span 2/span 2;
  grid-row: span 3/span 3;
  grid-column-start: 3;
}
@media (max-width: 1040px) {
  .parent .div2 {
    grid-column: span 3/span 3;
    grid-row: span 2/span 2;
    grid-row-start: 3;
  }
}
.parent .div3 {
  grid-column: span 2/span 2;
  grid-row: span 3/span 3;
  grid-column-start: 5;
}
@media (max-width: 1040px) {
  .parent .div3 {
    grid-column: span 3/span 3;
    grid-row: span 2/span 2;
    grid-column-start: 4;
    grid-row-start: 3;
  }
}
.parent .div4 {
  grid-column: span 2/span 2;
  grid-row: span 3/span 3;
  grid-column-start: 3;
  grid-row-start: 4;
}
@media (max-width: 1040px) {
  .parent .div4 {
    grid-column: span 3/span 3;
    grid-row: span 2/span 2;
    grid-row-start: 5;
  }
}
.parent .div5 {
  grid-column: span 2/span 2;
  grid-row: span 3/span 3;
  grid-column-start: 5;
  grid-row-start: 4;
}
@media (max-width: 1040px) {
  .parent .div5 {
    grid-column: span 3/span 3;
    grid-row: span 2/span 2;
    grid-column-start: 4;
    grid-row-start: 5;
  }
}

/*# sourceMappingURL=style.css.map */
