@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.product-detail-banner {
  background: linear-gradient(90deg, #00525C 5%, #00BFD6 100%);
  padding: 60px 0 50px 0;
  margin-top: 90px;
}
@media only screen and (max-width: 675px) {
  .product-detail-banner {
    padding: 40px 0 50px 0;
    margin-top: 65px;
  }
}
.product-detail-banner .flex-box {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media only screen and (max-width: 991px) {
  .product-detail-banner .flex-box {
    flex-direction: column;
    gap: 30px;
  }
}
.product-detail-banner .flex-box .col {
  flex: 0 1 50%;
}
.product-detail-banner .flex-box .col .breadcrumb {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 991px) {
  .product-detail-banner .flex-box .col .breadcrumb {
    justify-content: center;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-banner .flex-box .col .breadcrumb {
    gap: 8px;
  }
}
.product-detail-banner .flex-box .col .breadcrumb li a {
  color: rgba(255, 255, 255, 0.6980392157);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.product-detail-banner .flex-box .col .breadcrumb li a.active {
  color: var(--white);
  font-weight: 500;
}
@media only screen and (max-width: 540px) {
  .product-detail-banner .flex-box .col .breadcrumb li a {
    font-size: 10px;
  }
}
.product-detail-banner .flex-box .col .breadcrumb span {
  color: var(--white);
}
.product-detail-banner .flex-box .col h1 {
  font-weight: 700;
  font-size: 36px;
  line-height: 26px;
  color: var(--white);
  margin: 80px 0 20px 0;
  line-height: 1.2;
}
@media only screen and (max-width: 991px) {
  .product-detail-banner .flex-box .col h1 {
    text-align: center;
    margin: 30px auto 20px auto;
  }
}
@media only screen and (max-width: 768px) {
  .product-detail-banner .flex-box .col h1 {
    font-size: 28px;
  }
}
.product-detail-banner .flex-box .col p {
  font-family: Lato;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  margin: 0 0 30px 0;
  max-width: 487px;
  text-align: justify;
  letter-spacing: 0.6px;
}
@media only screen and (max-width: 991px) {
  .product-detail-banner .flex-box .col p {
    margin: 0 auto 30px auto;
    text-align: center;
  }
}
.product-detail-banner .flex-box .col .flex {
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .product-detail-banner .flex-box .col .flex {
    justify-content: center;
  }
}
.product-detail-banner .flex-box .col:last-child figure {
  height: 330px;
  border-radius: 12.66px;
  background: var(--white);
  overflow: hidden;
  padding: 10px 0;
}
@media only screen and (max-width: 540px) {
  .product-detail-banner .flex-box .col:last-child figure {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.product-detail-banner .flex-box .col:last-child figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detail-banner .flex-box .col:last-child .grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
  display: none;
}
@media only screen and (max-width: 540px) {
  .product-detail-banner .flex-box .col:last-child .grid-box {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
}
.product-detail-banner .flex-box .col:last-child .grid-box .grid-box-item {
  width: 196px;
  height: 141px;
  border-radius: 10px;
  background: var(--white);
  padding: 20px 0;
  opacity: 0.7;
  transition: 0.5s ease;
  cursor: pointer;
}
.product-detail-banner .flex-box .col:last-child .grid-box .grid-box-item.active {
  opacity: 1;
}
.product-detail-banner .flex-box .col:last-child .grid-box .grid-box-item img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 991px) {
  .product-detail-banner .flex-box .col:last-child .grid-box .grid-box-item {
    width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-banner .flex-box .col:last-child .grid-box .grid-box-item:last-child {
    grid-column: span 2;
  }
}

.prodcut-detail-secA {
  padding: 60px 0 0px 0;
}
@media only screen and (max-width: 768px) {
  .prodcut-detail-secA {
    padding: 40px 0;
  }
}
.prodcut-detail-secA h2, .prodcut-detail-secA p {
  text-align: center;
  margin-bottom: 30px;
}
.prodcut-detail-secA h3, .prodcut-detail-secA h4, .prodcut-detail-secA h5, .prodcut-detail-secA h6 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}
.prodcut-detail-secA table {
  border-collapse: collapse;
  width: 100%;
  max-width: 859px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 40px;
}
.prodcut-detail-secA table .text-center {
  text-align: center;
}
.prodcut-detail-secA table thead tr th {
  background-color: #F0F0F0;
  width: 38%;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}
.prodcut-detail-secA table th, .prodcut-detail-secA table td {
  padding: 12px 10px 12px 40px;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  text-align: left;
  vertical-align: middle;
  font-weight: 700;
  font-size: 16px;
}
@media only screen and (max-width: 540px) {
  .prodcut-detail-secA table th, .prodcut-detail-secA table td {
    padding: 12px;
  }
}
.prodcut-detail-secA table tbody tr td:nth-child(1) {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
}
.prodcut-detail-secA table tbody tr td:nth-child(2) {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text);
}
.prodcut-detail-secA table tbody tr td:nth-child(3) {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text);
}
.prodcut-detail-secA table tbody tr td:nth-child(4) {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text);
}
.prodcut-detail-secA table tbody tr td:nth-child(5) {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text);
}
.prodcut-detail-secA table tbody tr td:nth-child(6) {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text);
}
.prodcut-detail-secA table tbody tr td:has(strong) {
  font-weight: normal !important;
}

.product-detail-secB {
  padding: 50px 0;
  background: linear-gradient(90deg, #00525C 5%, #00BFD6 100%);
}
.product-detail-secB h2 {
  text-align: center;
  color: var(--white);
}
.product-detail-secB p {
  max-width: 473px;
  color: rgba(255, 255, 255, 0.6980392157);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: 10px auto 0;
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .product-detail-secB .container {
    padding-right: 0;
  }
}
.product-detail-secB .Features-slider {
  position: relative;
}
.product-detail-secB .Features-slider .swiper-nav {
  top: 56%;
  width: 102%;
  max-width: 102%;
}
.product-detail-secB .Features-slider .swiper-nav .swiper-button-disabled {
  opacity: 0;
}
.product-detail-secB .swiper {
  max-width: 1264px;
  padding: 50px 0 10px 0;
}
@media only screen and (max-width: 540px) {
  .product-detail-secB .swiper {
    padding: 35px 0 10px 0;
  }
}
.product-detail-secB .swiper .swiper-wrapper .swiper-slide {
  border: 0.78px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 24.31px;
  padding: 30px;
}
@media only screen and (max-width: 768px) {
  .product-detail-secB .swiper .swiper-wrapper .swiper-slide {
    padding: 20px;
  }
}
.product-detail-secB .swiper .swiper-wrapper .swiper-slide span {
  font-weight: 800;
  font-size: 25.93px;
  text-transform: capitalize;
  border-radius: 15px;
  padding: 16.42px;
  width: 51px;
  height: 51px;
  border: 1px solid var(--white);
  color: var(--white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.product-detail-secB .swiper .swiper-wrapper .swiper-slide h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 21.07px;
  color: var(--white);
  margin: 25px 0 15px 0;
}
.product-detail-secB .swiper .swiper-wrapper .swiper-slide p {
  text-align: justify;
  line-height: 1.5;
}

.product-detail-secC {
  padding: 50px 0;
}
.product-detail-secC h2 {
  text-align: center;
}
.product-detail-secC .pd-wrapper {
  position: relative;
}
.product-detail-secC .pd-wrapper .swiper-nav .swiper-button-disabled {
  opacity: 0;
}
@media only screen and (max-width: 540px) {
  .product-detail-secC .container {
    padding-right: 0;
  }
}
.product-detail-secC .swiper {
  max-width: 1233px;
}
.product-detail-secC .swiper .swiper-wrapper {
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .product-detail-secC .swiper .swiper-wrapper {
    padding: 35px 0;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-secC .swiper .swiper-wrapper {
    padding: 20px 0;
  }
}
.product-detail-secC .swiper .swiper-wrapper .swiper-slide {
  padding: 20px;
  border: 1px solid rgba(100, 100, 111, 0.2);
}
@media only screen and (max-width: 540px) {
  .product-detail-secC .swiper .swiper-wrapper .swiper-slide {
    padding: 10px;
  }
}
.product-detail-secC .swiper .swiper-wrapper .swiper-slide:hover img {
  scale: 1.1;
}
.product-detail-secC .swiper .swiper-wrapper .swiper-slide figure {
  height: 248px;
  background: #F8F8F8;
  padding: 40px 0;
}
.product-detail-secC .swiper .swiper-wrapper .swiper-slide figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s ease;
}
.product-detail-secC .swiper .swiper-wrapper .swiper-slide figcaption {
  padding: 20px 20px 20px 0;
}
.product-detail-secC .swiper .swiper-wrapper .swiper-slide figcaption h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: var(--black);
  margin-bottom: 5px;
}
.product-detail-secC .swiper .swiper-wrapper .swiper-slide figcaption p {
  font-weight: 400;
  font-size: 14px;
  color: var(--text);
}
.product-detail-secC .swiper .swiper-wrapper .swiper-slide figcaption button {
  margin-top: 20px;
}/*# sourceMappingURL=product-detail.css.map */