@font-face {
  font-family: Poppins;
  src: url("../../fonts/Poppins/Poppins-Regular.ttf");
}
@font-face {
  font-family: Noto Sans;
  src: url("../../fonts/NotoSans-Regular.ttf");
}
@keyframes pulse-dot {
  0% {
    width: 3px;
    height: 3px;
    opacity: 0;
    transform: scale(1);
  }
  50% {
    width: 10px;
    height: 10px;
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    width: 3px;
    height: 3px;
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes connect-line {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}
body {
  transition: all 0.25s ease-in-out;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100vw;
}

* {
  font-family: "Poppins";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans", sans-serif;
}

@media all and (max-width: 992px) {
  h2 {
    font-size: 1.4rem;
  }
}
a:focus {
  outline-width: inherit;
  outline-color: transparent;
}

.btn-outline-primary {
  border: 1px solid #46a0c3 !important;
  background-color: transparent;
  color: #46a0c3;
}
.btn-outline-primary:hover {
  background-color: #46a0c3;
  color: white;
}
.btn-outline-primary:active, .btn-outline-primary:focus, .btn-outline-primary:focus-visible {
  background-color: #46a0c3 !important;
  color: white;
}

.pagination .page-item .page-link {
  margin-left: 3px;
  padding: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 10%;
  text-align: center;
  color: #46a0c3;
}
.pagination .page-item .page-link:hover {
  background-color: #93c8dc;
}
.pagination .page-item:active .page-link, .pagination .page-item.active .page-link {
  color: #fff;
  background-color: #46a0c3 !important;
  border-color: #46a0c3;
}

.back-to-top {
  position: fixed;
  bottom: 8%;
  right: 0;
  z-index: 10;
  margin: 25px;
  display: none;
  transition: all 300ms cubic-bezier(0.9, 0, 0.33, 1);
}
.back-to-top .btn-back-top {
  border-radius: 8px;
  border: 1px solid #46a0c3;
  background-color: white;
  color: #46a0c3;
  min-height: 45px;
  min-width: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.whatsapp-button {
  position:fixed;
  margin: 25px;
  bottom: 0;
  right: 0;
  z-index:9999;
  background-color: white;
  padding: 10px 15px;
  box-shadow: 0 0 2px rgba(0,0,0,0.5);
  border-radius: 10px;
}

@media screen and (max-width: 768.93px) {
  .whatsapp-button {
    font-size: 14px;
  }
}

.go-to-cart {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 99;
  margin-bottom: 78px;
  margin-right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.go-to-cart .outer-btn {
  position: relative;
  top: 0;
  right: 0;
}
.go-to-cart .outer-btn .btn {
  width: auto;
  position: relative;
  background-color: white;
  display: flex;
  align-items: center;
  min-width: 45px;
  min-height: 45px;
  display: flex;
  justify-content: center;
}
.go-to-cart .outer-btn .btn .badge {
  position: absolute;
  top: -10px;
  right: -10px;
}
.go-to-cart .outer-btn .btn .text {
  width: 0;
  text-wrap: nowrap;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.9, 0, 0.33, 1);
}
@media all and (max-width: 758px) {
  .go-to-cart .outer-btn .btn .text {
    display: none;
  }
}
.go-to-cart .outer-btn .btn:focus, .go-to-cart .outer-btn .btn:hover {
  background-color: #46a0c3;
}
.go-to-cart .outer-btn .btn:hover .text {
  width: 100%;
  margin-right: 0.725rem;
}

.btn-primary {
  display: inline-block;
  white-space: nowrap;
  border: 1px solid #46a0c3;
  background-color: #46a0c3;
  color: #fff;
}
.btn-primary:focus-visible, .btn-primary:active, .btn-primary:hover {
  background-color: #3483a2 !important;
  border: 1px solid #46a0c3;
  color: #fff;
}

#plexus-nav {
  position: absolute;
  width: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 1.2rem 3rem;
  z-index: 999;
  max-width: 100vw;
  position: fixed;
  top: 0;
  transition: all 0.4s ease-in-out;
}
#plexus-nav.none-home-page {
  background-color: #fff;
}
@media all and (max-width: 768.93px) {
  #plexus-nav {
    padding: 1.2rem 1rem;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
}
#plexus-nav .logo {
  position: absolute;
  width: auto;
  height: 45px;
  top: 50%;
  transform: translate(0, -50%);
}
@media all and (max-width: 992.98px) {
  #plexus-nav .logo {
    position: absolute;
    width: auto;
    height: 35px;
    top: 50%;
    transform: translate(0, -50%);
  }
}
#plexus-nav.fixed-nav {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  position: fixed;
}
#plexus-nav .nav {
  flex-wrap: nowrap;
  justify-content: flex-start;
  position: relative;
}
#plexus-nav .nav a {
  color: black;
}

.function-area {
  display: flex;
}
.function-area .btn {
  position: relative;
  height: 45px;
  width: 45px;
  border-radius: 10%;
  border-color: #46a0c3;
  background-color: transparent !important;
  color: #46a0c3;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  margin-left: 20px;
  font-size: 16px;
}
.function-area .btn:hover {
  color: white !important;
  background-color: #46a0c3 !important;
}

.custom-nav {
  display: flex;
  align-items: center;
}
.custom-nav .nav-item .nav-link {
  font-size: 16px;
  position: relative;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}
.custom-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  bottom: 0;
  left: 1.1rem;
  height: 3px;
  background-color: #46a0c3;
}
.custom-nav .nav-item .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0.99rem;
  height: 0;
  width: 0;
  border-radius: 100%;
  background-color: #46a0c3;
}
.custom-nav .nav-item.active {
  font-weight: bold;
}
.custom-nav .nav-item:hover .nav-link::after {
  width: calc(100% - 2.2rem);
  background-color: #46a0c3;
  transition: 0.2s all linear;
}
.custom-nav .nav-item:hover .nav-link::before {
  height: 3px;
  width: 3px;
  transition: 0.2s all linear;
}

.mega-menu {
  background-color: #fff;
  position: fixed;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s all ease-in-out;
  padding-bottom: 3rem;
}
.mega-menu .title {
  position: relative;
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 1.11111rem;
  padding-bottom: 0.25rem;
  font-family: "Noto Sans", sans-serif;
}
.mega-menu .title:after {
  content: "";
  position: absolute;
  width: 0%;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: #46a0c3;
}
.mega-menu .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -1.5px;
  height: 0;
  width: 0;
  border-radius: 100%;
  background-color: #46a0c3;
}
.mega-menu .title:hover::after {
  width: 100%;
  background-color: #46a0c3;
  transition: 0.2s all linear;
}
.mega-menu .title:hover::before {
  height: 3px;
  width: 3px;
  transition: 0.2s all linear;
}
.mega-menu .line {
  position: relative;
}
.mega-menu .line:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #e0e0e0;
  width: 100%;
}
.mega-menu .list-item {
  padding: 0.25rem 0;
}
.mega-menu .list-item .list-item-link {
  padding: 0.2rem 0;
  color: #333;
  line-height: 1.5;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
}
.mega-menu .list-item .list-item-link:after {
  content: "";
  position: absolute;
  width: 0%;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: #46a0c3;
}
.mega-menu .list-item .list-item-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -1.5px;
  height: 0;
  width: 0;
  border-radius: 100%;
  background-color: #46a0c3;
}
.mega-menu .list-item .list-item-link:hover::after {
  width: 100%;
  background-color: #46a0c3;
  transition: 0.2s all linear;
}
.mega-menu .list-item .list-item-link:hover::before {
  height: 3px;
  width: 3px;
  transition: 0.2s all linear;
}
.mega-menu.open {
  visibility: visible;
  opacity: 1;
}
.mega-menu .product-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}
.mega-menu .product-card .product-img-frame {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 100%;
  padding-top: 100%;
  background-color: white;
}
.mega-menu .product-card .product-img-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mega-menu .product-card .product-img-frame .main-img {
  z-index: 1;
}
.mega-menu .product-card .product-img-frame .sub-img {
  z-index: -1;
}
.mega-menu .product-card .content .des {
  color: #7b7e80;
  font-size: 14px;
}
.mega-menu .product-card:hover .product-img-frame .sub-img {
  z-index: 3;
  transform: translateZ(0);
  transition: all 0.2s ease-in-out;
}
.mega-menu .product-card a {
  text-decoration: none;
}
.mega-menu .product-card .title {
  font-size: 1.1rem;
  font-weight: 400;
  color: black;
}
.mega-menu .product-card .title:after {
  height: 0;
}
.mega-menu .product-card .title:before {
  height: 0;
}
.mega-menu .product-card .category {
  margin-bottom: 1rem;
  font-size: 12px;
  text-transform: uppercase;
}
.mega-menu .product-card .line {
  height: 1px;
  background-color: #eee;
  width: 100%;
  margin-bottom: 0.5rem;
}
.mega-menu .product-card .price {
  font-size: 1rem;
  color: #2ac3ff;
  font-weight: 600;
}

.search-box {
  width: 100%;
  transition: 0.2s all linear;
  visibility: hidden;
  height: 0px;
}
.search-box .search-input {
  position: relative;
}
.search-box .search-input input {
  padding-left: 2.5rem;
  padding-right: 80px;
  border-radius: 6px !important;
}
.search-box .search-input::after {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-weight: 600;
  left: 1rem;
  top: 50%;
  z-index: 10;
  transform: translate(0, -50%);
  color: #6c757d;
}
.search-box .search-btn {
  position: absolute;
  right: 0;
  z-index: 10;
  border-radius: 6px;
  color: #46a0c3;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  color: white !important;
  background-color: #46a0c3 !important;
  border-color: #46a0c3 !important;
  font-size: 16px;
}
.search-box .search-btn:hover {
  color: #46a0c3 !important;
  background-color: white !important;
}
.search-box.open {
  margin-top: 1rem;
  height: 100%;
  visibility: visible;
}

.lock-body {
  overflow: hidden !important;
  max-width: 100vw;
  max-height: 100vh;
}

.mobile-nav {
  position: relative;
  transition: all 300ms cubic-bezier(0.8, 0, 0.33, 1);
}
.mobile-nav .menu-btn {
  display: inline-block;
  cursor: pointer;
}
.mobile-nav .menu-btn .bar1,
.mobile-nav .menu-btn .bar2,
.mobile-nav .menu-btn .bar3 {
  width: 35px;
  height: 5px;
  background-color: #333;
  margin: 6px 0;
  transition: 0.4s;
  border-radius: 10px;
}
.mobile-nav .menu-btn.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}
.mobile-nav .menu-btn.change .bar2 {
  opacity: 0;
}
.mobile-nav .menu-btn.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

.mobile-menu {
  transition: all 300ms cubic-bezier(0.8, 0, 0.33, 1);
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 99;
  transform: translateX(100vw);
  background-color: #f5f5f7;
  width: 100%;
  padding-top: 85px;
  display: none;
}
.mobile-menu .nav-links {
  display: flex;
  flex-direction: column;
  align-items: left;
  padding: 1.2rem 1.5rem;
  opacity: 1;
  transition: all 900ms cubic-bezier(0.9, 0, 0.33, 1);
  width: 100%;
}
.mobile-menu .nav-links .link {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid #f5f5f7;
  text-decoration: none;
  color: black;
  font-weight: 400;
  font-size: 1.2rem;
  transition: all 300ms cubic-bezier(0.9, 0, 0.33, 1);
}
.mobile-menu .nav-links .link:hover {
  color: #46a0c3;
}
.mobile-menu .mobile-sub-menu {
  position: fixed;
  top: 0;
  right: 0;
  padding-top: 85px;
  background-color: #f5f5f7;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  transform: translateX(100vw);
  transition: all 300ms cubic-bezier(0.9, 0, 0.33, 1);
}
.mobile-menu .mobile-sub-menu.open {
  transform: translateX(0);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.mobile-menu .mobile-sub-menu .nav-main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu .mobile-sub-menu .nav-main .link {
  flex-grow: 1;
}
.mobile-menu .mobile-sub-menu .nav-main .nav-links {
  padding-top: 0;
}
.mobile-menu .mobile-sub-menu .back {
  cursor: pointer;
  font-size: 20px;
  padding: 1.5rem 0;
}
.mobile-menu .mobile-sub-menu .expand-btn {
  cursor: pointer;
  font-size: 19px;
  flex-grow: 1;
  text-align: end;
}
.mobile-menu .mobile-sub-menu .mobile-sub-sub-menu {
  position: fixed;
  top: 0;
  right: 0;
  padding-top: 85px;
  background-color: #f5f5f7;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  transform: translateX(100vw);
  transition: all 300ms cubic-bezier(0.9, 0, 0.33, 1);
}
.mobile-menu .mobile-sub-menu .mobile-sub-sub-menu.open {
  transform: translateX(0);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.mobile-menu .mobile-sub-menu,
.mobile-menu .mobile-sub-sub-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.mobile-menu .nav-links,
.mobile-menu .menu-outer {
  width: 100%;
}
@media all and (min-width: 576px) {
  .mobile-menu .nav-links,
  .mobile-menu .menu-outer {
    max-width: 540px;
  }
}
@media all and (min-width: 768.93px) {
  .mobile-menu .nav-links,
  .mobile-menu .menu-outer {
    max-width: 720px;
  }
}
@media all and (min-width: 992px) {
  .mobile-menu .nav-links,
  .mobile-menu .menu-outer {
    max-width: 960px;
  }
}
@media all and (min-width: 1200px) {
  .mobile-menu .nav-links,
  .mobile-menu .menu-outer {
    max-width: 1140px;
  }
}
@media all and (min-width: 1400px) {
  .mobile-menu .nav-links,
  .mobile-menu .menu-outer {
    max-width: 1320px;
  }
}
.mobile-menu.open {
  transform: translateX(0);
}
@media all and (max-width: 992px) {
  .mobile-menu {
    display: flex;
    justify-content: center;
  }
}

.footer {
  padding-top: 3rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
  background-color: #f5f5f7;
  color: #1e1e1e;
}
@media screen and (max-width: 768.93px) {
  .footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.footer .footer-row {
  display: flex;
  flex-direction: row;
}
.footer .footer-row .company-info {
  flex-grow: 3;
  font-size: 12px;
  color: #1e1e1e;
  text-transform: capitalize;
  padding-right: 3rem;
}
@media all and (max-width: 768.93px) {
  .footer .footer-row .company-info {
    padding-right: 0.525rem;
  }
}
.footer .footer-row .company-info .company-logo {
  max-width: 214px;
  margin-bottom: 1rem;
}
.footer .footer-row .company-info .company-short-des {
  font-size: 12px;
  margin-bottom: 1rem;
}
.footer .footer-row .footer-col {
  flex: 0 1 auto;
  padding-right: 3rem;
}
.footer .footer-row .footer-col:last-child {
  padding-right: 0;
}
.footer .footer-row .footer-col .contact-area {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer .footer-row .footer-col .contact-area a {
  color: black;
}
.footer .footer-row .footer-col .contact-area .icon {
  font-size: 25px;
  padding: 10px 10px 10px 0;
}
.footer .footer-row .footer-col .contact-area .title {
  font-size: 13px;
  margin: 0 0 5px;
  font-weight: 500;
  color: #afb2c0;
}
.footer .footer-row .footer-col .contact-area .content {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-wrap: nowrap;
}
.footer .footer-row .footer-link li,
.footer .footer-row .footer-link a {
  color: #1e1e1e;
  padding-bottom: 0.7rem;
}
.footer .footer-row .footer-link li a {
  position: relative;
}
.footer .footer-row .footer-link li a::after {
  content: "";
  position: absolute;
  width: 0%;
  left: 0;
  bottom: 0.5rem;
  height: 3px;
  background-color: #46a0c3;
}
.footer .footer-row .footer-link li a:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  height: 0;
  width: 0;
  border-radius: 100%;
  background-color: #46a0c3;
}
.footer .footer-row .footer-link li a:hover::after {
  width: 100%;
  background-color: #46a0c3;
  transition: 0.2s all linear;
}
.footer .footer-row .footer-link li a:hover::before {
  height: 3px;
  width: 3px;
  transition: 0.2s all linear;
}
@media all and (max-width: 992px) {
  .footer .footer-row {
    flex-wrap: wrap;
  }
  .footer .footer-row .company-info,
  .footer .footer-row .footer-col {
    margin-bottom: 1rem;
  }
  .footer .footer-row .footer-col {
    flex: 0 1 100%;
  }
}
.footer .subscribe .form-control {
  border: none;
}
.footer .subscribe .form-control:focus {
  border-color: #6db4cf;
  box-shadow: 0 0 0 0.25rem rgba(109, 180, 207, 0.25);
}
.footer .subscribe .btn-primary {
  border: 1px solid #46a0c3;
  background-color: white;
  color: #46a0c3;
}
.footer .subscribe .btn-primary:hover {
  background-color: #46a0c3;
  color: white;
}
.footer .social-media-area {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  transition: all 0.3s;
  height: 1rem;
}
.footer .social-media-area .icon {
  border-radius: 10%;
  background-color: transparent;
  display: inline-flex;
  position: relative;
  width: 2.45rem;
  margin-right: 0.25rem;
}
.footer .social-media-area .icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #1e1e1e;
}
.footer .social-media-area .icon .shopee-icon {
  height: 17px;
  width: auto;
  transition: filter 0.1s ease;
  filter: brightness(10) invert(1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer .social-media-area .icon:hover i {
  color: #46a0c3;
}
.footer .social-media-area .icon:hover .shopee-icon {
  filter: brightness(1) invert(0);
}
@media all and (max-width: 768.93px) {
  .footer .social-media-area {
    justify-content: flex-start;
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
}
.footer .line {
  width: 100%;
  height: 1px;
  background-color: #46a0c3;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.footer .footer-header {
  color: #46a0c3;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 18px;
  font-family: "Noto Sans", sans-serif;
  text-transform: uppercase;
}
.footer .contact {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.footer .contact .list {
  flex: 0 1 33%;
  display: flex;
  flex-direction: row;
  padding-right: 1rem;
}
.footer .contact .list .icon {
  font-size: 14px;
  margin-right: 0.25rem;
}
.footer .contact .list a {
  color: black;
}
@media all and (max-width: 769px) {
  .footer .contact .list {
    flex: 0 1 100%;
  }
}
.footer .footer-text-primary {
  color: #1e1e1e;
}
.footer .footer-text-primary:hover {
  color: #46a0c3 !important;
}
.footer a {
  text-decoration: none;
}
.footer a:hover {
  color: #46a0c3 !important;
}

.bg-primary {
  background-color: #46a0c3 !important;
  color: white;
}

.banner {
  position: relative;
  background-position: 50%;
  background-size: cover;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}
.banner .home-banner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 3rem;
  padding-right: 3rem;
  min-height: 400px;
}
.banner .home-banner .text-area {
  z-index: 10;
  width: 60%;
}
@media all and (min-width: 992px) {
  .banner .home-banner .text-area {
    padding: 0 1rem;
  }
}
.banner .home-banner .text-area .title {
  font-family: "Noto Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
}
.banner .home-banner .text-area .des {
  font-size: 16px;
}
.banner .home-banner .img-frame {
  overflow: hidden;
  position: relative;
  width: 40%;
  padding-top: 40%;
}
.banner .home-banner .img-frame img {
  width: 100%;
  border-radius: 1.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
@media all and (max-width: 768.93px) {
  .banner .home-banner {
    min-height: 550px;
    flex-direction: column-reverse;
  }
  .banner .home-banner .img-frame,
  .banner .home-banner .text-area {
    width: 100%;
  }
  .banner .home-banner .img-frame {
    padding-top: 100%;
  }
  .banner .home-banner .text-area .title {
    font-size: 1.5rem;
  }
}

.home-banner-2 {
  position: relative;
  overflow: hidden;
}
.home-banner-2 .swiper-slide {
  min-height: 40vh;
  position: relative;
  height: unset;
}
.home-banner-2 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.home-banner-2 .custom-shape-divider-bottom-1721642517 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 2;
}
.home-banner-2 .custom-shape-divider-bottom-1721642517 svg {
  position: relative;
  display: block;
  width: calc(185% + 1.3px);
  height: 50px;
  transform: rotateY(180deg);
}
.home-banner-2 .custom-shape-divider-bottom-1721642517 .shape-fill {
  fill: #ffffff;
}
.home-banner-2 .swiper-pagination {
  position: absolute;
  text-align: left;
  padding-left: 3rem;
  bottom: 60px !important;
}
.home-banner-2 .swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 5px;
  border-radius: 3px;
}
.home-banner-2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #c7c7c7 !important;
}
.home-banner-2 .container {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-banner-2 .container .title {
  font-size: 2.88rem;
  color: #fff;
}
.home-banner-2 .container .des {
  color: #fff;
}
.home-banner-2 .swiper-button-next,
.home-banner-2 .swiper-button-prev {
  color: #c7c7c7;
  top: 50%;
}
@media all and (max-width: 789.92px) {
  .home-banner-2 .swiper-slide {
    min-height: 25vh;
    position: relative;
    height: unset;
  }
  .home-banner-2 .swiper-button-next,
  .home-banner-2 .swiper-button-prev {
    display: none;
  }
  .home-banner-2 .container {
    display: none;
  }
}

.mobile-home-banner {
  margin: 1rem 0;
}
.mobile-home-banner .title {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1rem;
}
@media all and (min-width: 789.92px) {
  .mobile-home-banner {
    display: none;
  }
}

.banner-outer-wrap .home-banner {
  position: relative;
  padding-top: 45%;
  overflow-x: hidden;
  margin-bottom: 3rem;
}
.banner-outer-wrap .home-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-outer-wrap .home-banner .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
  color: #fff;
}
.banner-outer-wrap .home-banner .content .title {
  font-size: 2.88rem;
  color: #fff;
}
.banner-outer-wrap .home-banner .custom-shape-divider-bottom-1717044412 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.banner-outer-wrap .home-banner .custom-shape-divider-bottom-1717044412 svg {
  position: relative;
  display: block;
  width: calc(160% + 1.3px);
  height: 90px;
}
.banner-outer-wrap .home-banner .custom-shape-divider-bottom-1717044412 .shape-fill {
  fill: #ffffff;
}
@media all and (max-width: 768.93px) {
  .banner-outer-wrap .home-banner {
    padding-top: calc(100vw + 20px);
  }
  .banner-outer-wrap .home-banner img {
    width: calc(100vw + 100%) !important;
    left: -100vw;
    max-width: none;
  }
  .banner-outer-wrap .home-banner .content {
    max-width: 100%;
  }
}
.banner-outer-wrap .home-content .title {
  font-size: 2.88rem;
}

.slideInDown {
  animation-name: slideInDown;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes slideInDown {
  0% {
    transform: translateY(-150%);
    visibility: visible;
  }
  100% {
    transform: translateY(0);
  }
}
.home-category-card .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.home-category-card .cat-text {
  font-size: 15px;
  color: #7b7e80;
}

.category-list {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 180px;
  background-color: #f7fbfc;
  padding-top: 150px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}
.category-list .img-frame {
  position: absolute;
  overflow: hidden;
  padding-top: 56.67%;
  width: 100%;
  top: -3px;
  z-index: -5;
  left: 0;
}
.category-list .img-frame img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.category-list .img-frame iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.category-list .category-card {
  border-radius: 1.5rem;
  padding: 3rem;
  background-color: #fff;
  height: 100%;
  border: 1px solid #efefef;
}
.category-list .category-card .title {
  font-size: 18px;
  font-weight: 600;
  color: black;
}
.category-list .category-card .cat-text {
  font-size: 15px;
  color: #7b7e80;
}
@media all and (max-width: 992.98px) {
  .category-list .category-card {
    padding: 1.5rem;
  }
}
.category-list .cat-arrow-area {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.category-list .cat-arrow-area span {
  overflow: hidden;
  width: 69px;
  height: 69px;
  border-top-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  display: block;
  position: relative;
}
.category-list .cat-arrow-area span::after {
  content: "\f061";
  font-size: 30px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  position: absolute;
  left: -100%;
  top: 50%;
  height: 30px;
  transform: translate(-50%, -50%);
  z-index: 5;
  transition: all 0.8s ease-in-out;
  z-index: 3;
  line-height: 1;
  color: #fff;
}
.category-list .cat-arrow-area span::before {
  content: "";
  width: 200%;
  height: 100%;
  background: #46a0c3;
  display: block;
  position: absolute;
  top: 0;
  left: -200%;
  transition: all 0.5s ease-in-out;
  border-radius: 1.5rem;
  z-index: 2;
}
@media all and (max-width: 992.98px) {
  .category-list .cat-arrow-area span {
    width: 49px;
    height: 49px;
  }
  .category-list .cat-arrow-area span::after {
    font-size: 25px;
    height: 25px;
  }
}
.category-list:hover .cat-arrow-area span::after {
  left: 50%;
}
.category-list:hover .cat-arrow-area span::before {
  left: 50%;
  transform: translate(-50%, 0%);
}

.product-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
  height: 100%;
}
.product-card .product-img-frame {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 100%;
  padding-top: 100%;
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
}
.product-card .product-img-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-card .product-img-frame .main-img {
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
.product-card .product-img-frame .sub-img {
  opacity: 0;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
.product-card .product-img-frame .new {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  background-color: #46a0c3;
  color: white;
  padding: 5px 10px;
  border-radius: 0 0 0 1.5rem;
  font-size: 12px;
  z-index: 3;
}
.product-card .content {
  display: flex;
  flex-direction: column;
}
.product-card .content .des {
  color: #7b7e80;
  font-size: 14px;
}
.product-card:hover .product-img-frame .sub-img {
  opacity: 1;
  transform: translateZ(0);
  transition: all 0.25s ease-in-out;
}
.product-card a {
  text-decoration: none;
}
.product-card .title {
  font-size: 1.1rem;
  font-weight: 400;
  color: black;
}
.product-card .category {
  margin-bottom: 1rem;
  font-size: 12px;
  text-transform: uppercase;
}
.product-card .line {
  height: 1px;
  background-color: #eee;
  width: 100%;
  margin-bottom: 0.5rem;
  margin-top: auto;
}
.product-card .price {
  font-size: 1rem;
  color: #2ac3ff;
  font-weight: 600;
}

.service-wrap {
  background-color: #46a0c3;
  color: white;
  padding: 2rem 0;
}
.service-wrap .icon-area {
  font-size: 40px;
  flex: 0 1 20%;
}
.service-wrap .text-area {
  flex: 0 1 80%;
  padding: 0 1rem;
}

.brand-wrap .brand-card {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-top: 120px;
}
.brand-wrap .brand-card img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.map-list .title {
  font-family: "Noto Sans", sans-serif;
}
.map-list .sub-content {
  font-size: 12px;
}
.map-list .map {
  border-radius: 6px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}
.map-list .btn-primary {
  border: 1px solid #46a0c3;
  background-color: white;
  color: #46a0c3;
}
.map-list .btn-primary:hover {
  background-color: #46a0c3;
  color: white;
}
.map-list .address-des {
  display: flex;
  justify-content: center;
  align-items: center;
}
.map-list .address-des .des {
  width: 80%;
}
@media all and (max-width: 768.93px) {
  .map-list .address-des .des {
    width: 100%;
  }
}
.map-list .btn-wa {
  border: 1px solid #25d366;
  background-color: white;
  color: #25d366;
}
.map-list .btn-wa:hover {
  background-color: #25d366;
  color: white;
}
@media all and (min-width: 768.93px) {
  .map-list .md-reverse-row {
    flex-direction: row-reverse !important;
  }
}

.breadcrumb {
  display: flex;
  margin: 0;
  padding: 15px 0;
}
.breadcrumb li {
  position: relative;
}
.breadcrumb li a {
  text-decoration: none;
  color: #6c757d;
}
.breadcrumb li::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding: 0 7px;
  color: #6c757d;
}
.breadcrumb li:last-child::after {
  display: none;
}

.page-top-banner .bg {
  position: relative;
  width: 100%;
  padding-top: 500px;
  height: 0;
  overflow: hidden;
  z-index: -1;
}
.page-top-banner .bg .banner-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-top-banner .des-card {
  position: relative;
  box-shadow: 0 1px 3px rgba(70, 160, 195, 0.7);
  border-radius: 1.5rem;
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  margin-top: -100px;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  overflow: hidden;
}
.page-top-banner .des-card .title {
  font-size: 2.9rem;
  color: #1e1e1e;
}
.page-top-banner .des-card .des-text {
  color: #4f4f4f;
}
.page-top-banner .des-card .btn-primary {
  border: 1px solid #46a0c3;
  background-color: transparent;
  color: #46a0c3;
}
.page-top-banner .des-card .btn-primary:hover {
  background-color: #46a0c3;
  color: #fff;
}
@media all and (max-width: 574.99px) {
  .page-top-banner {
    width: calc(100vw + 1rem) !important;
    margin-left: -1rem;
    margin-right: 0rem;
  }
  .page-top-banner .container {
    margin-left: 0 !important;
    padding-left: 1rem;
    padding-right: 1.5rem;
  }
  .page-top-banner .bg {
    padding-top: 185px;
  }
  .page-top-banner .des-card {
    padding: 1.5rem;
    margin-top: -105px;
  }
  .page-top-banner .des-card .title {
    font-size: 1.4rem;
  }
  .page-top-banner .des-card .des-text {
    font-size: 14px;
  }
}

.category-menu .title {
  color: #333;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
}
.category-menu .title a {
  font-weight: 600;
}
.category-menu .title .expand-btn {
  cursor: pointer;
  padding: 0.5rem;
}
.category-menu .title .expand-btn[aria-expanded=true] {
  transform: rotate(180deg);
}
.category-menu a {
  color: #6c757d;
  text-decoration: none;
  position: relative;
}
.category-menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  left: 0;
  bottom: 0rem;
  height: 3px;
  background-color: #46a0c3;
}
.category-menu a:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0rem;
  height: 0;
  width: 0;
  border-radius: 100%;
  background-color: #46a0c3;
}
.category-menu a:hover::after {
  width: 100%;
  background-color: #46a0c3;
  transition: 0.2s all linear;
}
.category-menu a:hover::before {
  height: 3px;
  width: 3px;
  transition: 0.2s all linear;
}
.category-menu .sub-menu li {
  padding: 1rem 0 1rem 1rem;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 0;
}
.category-menu .sub-menu .active {
  font-weight: 600;
}
.category-menu .sub-menu .active a {
  color: #46a0c3;
}

.mobile-more-category-btn {
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 5px 10px;
  text-align: center;
  cursor: pointer;
}

.product-filter-area {
  display: flex;
  justify-content: flex-end;
}
@media all and (max-width: 992px) {
  .product-filter-area {
    justify-content: flex-start;
  }
}
.product-filter-area .change-view-btn {
  cursor: pointer;
  padding: 0.5rem 1rem;
  border: 1px solid #46a0c3;
  border-radius: 0.25rem;
  color: #46a0c3;
}
.product-filter-area .change-view-btn:hover {
  background-color: #46a0c3;
  color: #fff;
}
.product-filter-area .change-view-btn.active {
  background-color: #46a0c3;
  color: #fff;
}
.product-filter-area .change-view-btn.active:hover {
  background-color: #3483a2;
}

.product-list .sub-category-title {
  margin-bottom: 1rem;
  color: black;
  font-size: 1.1rem;
}
.product-list .product-col {
  flex: 0 0 auto;
  width: 33.33333333%;
  max-width: 100%;
  margin-bottom: 1rem;
}
@media all and (max-width: 992px) {
  .product-list .product-col {
    width: 50%;
  }
}
.product-list.four-row .product-col {
  flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
  margin-bottom: 1rem;
}
@media all and (max-width: 992px) {
  .product-list.four-row .product-col {
    width: 50%;
  }
}

.product-detail .product-swiper {
  position: relative;
}
.product-detail .product-swiper .button-prev,
.product-detail .product-swiper .button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
  font-size: 30px;
}
.product-detail .product-swiper .button-next {
  padding-right: 10px;
  right: 0;
}
.product-detail .product-swiper .swiper-button-disabled {
  opacity: 0.7;
}
.product-detail .product-swiper .button-prev {
  padding-left: 10px;
  left: 0;
}
.product-detail .product-swiper .swiper-pagination {
  transform-origin: center;
  background-color: #ebebeb;
  width: auto !important;
  border-radius: 15px;
  padding: 4px 8px;
  left: 50% !important;
  transform: translate(-50%, 0);
  opacity: 0.2;
  transition: all 300ms cubic-bezier(0.8, 0, 0.33, 1);
}
.product-detail .product-swiper .swiper-pagination .swiper-pagination-bullet {
  height: 0.7rem;
  width: 0.7rem;
}
.product-detail .product-swiper:hover .swiper-pagination {
  opacity: 1;
}
.product-detail .product-title {
  margin-bottom: 1.1rem;
  color: #222529;
  font-size: 2.2222rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.product-detail .brand-logo {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
}
.product-detail .brand-logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.product-detail .short-des {
  font-size: 1.22222rem;
  line-height: 1.61111rem;
  font-weight: 700;
}
.product-detail .product-des {
  color: #7b7e80;
}
.product-detail .product-navigation-outer-bar .product-navigation-bar {
  position: relative;
}
.product-detail .product-navigation-outer-bar .product-navigation-bar .inner-wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  position: relative;
  padding: 1rem 0rem;
  min-width: 100%;
  width: 100%;
}
.product-detail .product-navigation-outer-bar .product-navigation-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 100vw;
  background-color: #e8e8e8;
}
.product-detail .product-navigation-outer-bar .product-navigation-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 100vw;
  background-color: #e8e8e8;
}
.product-detail .product-navigation-outer-bar .product-navigation-bar .nav-item {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: #1e1e1e;
  text-align: center;
  color: #6c757d;
  position: relative;
  margin-right: 1.5rem;
}
.product-detail .product-navigation-outer-bar .product-navigation-bar .nav-item:last-child {
  margin-right: 0;
}
.product-detail .product-navigation-outer-bar .product-navigation-bar .nav-item::after {
  content: "";
  position: absolute;
  width: 0%;
  left: 0;
  bottom: 0rem;
  height: 3px;
  background-color: #46a0c3;
}
.product-detail .product-navigation-outer-bar .product-navigation-bar .nav-item:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0rem;
  height: 0;
  width: 0;
  border-radius: 100%;
  background-color: #46a0c3;
}
.product-detail .product-navigation-outer-bar .product-navigation-bar .nav-item:hover::after {
  width: 100%;
  background-color: #46a0c3;
  transition: 0.2s all linear;
}
.product-detail .product-navigation-outer-bar .product-navigation-bar .nav-item:hover::before {
  height: 3px;
  width: 3px;
  transition: 0.2s all linear;
}
.product-detail .product-navigation-outer-bar .product-navigation-bar .nav-item.no-btm-line:hover::after {
  width: 0;
}
.product-detail .product-navigation-outer-bar .product-navigation-bar .nav-item.no-btm-line:hover::before {
  width: 0;
}
@media all and (max-width: 1080px) {
  .product-detail .product-navigation-outer-bar .product-navigation-bar .inner-wrap {
    overflow-x: scroll;
  }
  .product-detail .product-navigation-outer-bar .product-navigation-bar::after, .product-detail .product-navigation-outer-bar .product-navigation-bar::before {
    width: 100vw;
  }
  .product-detail .product-navigation-outer-bar .product-navigation-bar .nav-item {
    width: 100%;
    white-space: nowrap;
    margin: 0 1rem;
  }
}
.product-detail .product-navigation-outer-bar .product-navigation-bar .btn-primary {
  display: inline-block;
  white-space: nowrap;
  border: 1px solid #46a0c3;
  background-color: #46a0c3;
  color: #fff;
}
.product-detail .product-navigation-outer-bar .product-navigation-bar .btn-primary:hover {
  background-color: #3483a2;
  color: #fff;
}
.product-detail .product-navigation-outer-bar .product-navigation-bar .btn-outline-primary {
  border: 1px solid #46a0c3;
  background-color: transparent;
  color: #46a0c3;
}
.product-detail .product-navigation-outer-bar .product-navigation-bar .btn-outline-primary:hover {
  background-color: #46a0c3;
  color: #fff;
}
.product-detail .product-navigation-outer-bar.fixed {
  position: fixed;
  top: 100px;
  z-index: 90;
  background-color: white;
  width: 100vw;
  left: 0;
}
.product-detail .product-navigation-outer-bar.fixed .inner-wrap {
  max-width: 100%;
  margin: 0;
  min-width: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media all and (min-width: 576px) {
  .product-detail .product-navigation-outer-bar.fixed .inner-wrap {
    max-width: 540px;
  }
}
@media all and (min-width: 768.93px) {
  .product-detail .product-navigation-outer-bar.fixed .inner-wrap {
    max-width: 720px;
  }
}
@media all and (min-width: 992px) {
  .product-detail .product-navigation-outer-bar.fixed .inner-wrap {
    max-width: 960px;
  }
}
@media all and (min-width: 1200px) {
  .product-detail .product-navigation-outer-bar.fixed .inner-wrap {
    max-width: 1140px;
  }
}
@media all and (min-width: 1400px) {
  .product-detail .product-navigation-outer-bar.fixed .inner-wrap {
    max-width: 1320px;
  }
}
.product-detail .area-title {
  font-weight: 600;
  font-size: 1.888rem;
}
.product-detail .area-sub-title {
  font-weight: 600;
  font-size: 1.2rem;
}
.product-detail .add-to-cart-area {
  display: flex;
  flex-direction: row;
}
.product-detail .add-to-cart-area .img-frame {
  width: 25%;
}
.product-detail .add-to-cart-area .content-area {
  width: 75%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.product-detail .add-to-cart-area .content-area .product-title {
  margin-bottom: 1.1rem;
  color: #222529;
  font-size: 1.8888rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.product-detail .add-to-cart-area .content-area .btn-primary {
  display: inline-block;
  white-space: nowrap;
  border: 1px solid #46a0c3;
  background-color: #46a0c3;
  color: #fff;
}
.product-detail .add-to-cart-area .content-area .btn-primary:hover {
  background-color: #3483a2;
  color: #fff;
}
@media all and (max-width: 768.93px) {
  .product-detail .add-to-cart-area {
    flex-wrap: wrap;
  }
  .product-detail .add-to-cart-area .img-frame {
    width: 100%;
  }
  .product-detail .add-to-cart-area .content-area {
    width: 100%;
    margin-top: 1rem;
    width: 100%;
  }
}
.product-detail .add-to-cart-area .product-img {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 100%;
  padding-top: 100%;
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
}
.product-detail .add-to-cart-area .product-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail .add-to-cart-area .product-img .main-img {
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
.product-detail .add-to-cart-area .product-img .sub-img {
  opacity: 0;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
.product-detail .add-to-cart-area .product-img .new {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  background-color: #46a0c3;
  color: white;
  padding: 5px 10px;
  border-radius: 0 0 0 1.5rem;
  font-size: 12px;
  z-index: 3;
}
.product-detail .add-to-cart-area .product-img:hover .sub-img {
  opacity: 1;
  z-index: 3;
  transform: translateZ(0);
  transition: all 0.2s ease-in-out;
}
.product-detail .add-to-cart-area .price-box .product-price {
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  vertical-align: middle;
  line-height: 0.8;
  color: #46a0c3;
}
.product-detail .add-to-cart-area .price-box .ori-price {
  text-decoration: line-through;
  color: #7b7e80;
}
.product-detail .add-to-cart-area .cart-function {
  display: flex;
  flex-direction: row;
}
.product-detail .add-to-cart-area .cart-function .quantity-area {
  flex-direction: row;
  display: inline-flex;
  margin-right: 1rem;
}
.product-detail .add-to-cart-area .cart-function .quantity-area .qty-input {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 137px;
  border: 1px solid #46a0c3;
  border-radius: 4px;
  overflow: hidden;
}
.product-detail .add-to-cart-area .cart-function .quantity-area .qty-input .plus,
.product-detail .add-to-cart-area .cart-function .quantity-area .qty-input .minus {
  cursor: pointer;
  top: 0;
  padding: 5px 10px;
  border-radius: 4px;
  background-color: #fff;
  color: #46a0c3;
}
.product-detail .add-to-cart-area .cart-function .quantity-area .qty-input .plus:hover, .product-detail .add-to-cart-area .cart-function .quantity-area .qty-input .plus:focus,
.product-detail .add-to-cart-area .cart-function .quantity-area .qty-input .minus:hover,
.product-detail .add-to-cart-area .cart-function .quantity-area .qty-input .minus:focus {
  background-color: #46a0c3;
  color: #fff;
}
.product-detail .add-to-cart-area .cart-function .quantity-area .qty-input input {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  background: transparent;
  border: 0;
  box-shadow: none;
  flex: 1 1 auto;
  font-size: 1em;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  min-width: 40px;
  padding: 0.4em 0;
  text-align: center;
  vertical-align: middle;
}
.product-detail .add-to-cart-area .cart-function .quantity-area .qty-input input:focus, .product-detail .add-to-cart-area .cart-function .quantity-area .qty-input input:focus-visible {
  border: none;
  box-shadow: inset 0 0 1px 1px rgba(109, 180, 207, 0.25);
  outline: none;
}
.product-detail .download-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.9, 0, 0.33, 1);
}
.product-detail .download-card .cat-text {
  color: #7b7e80;
  font-size: 12px;
}
.product-detail .download-card .icon {
  font-size: 1.888rem;
  opacity: 0;
}
.product-detail .download-card:hover {
  background-color: #f9f9f9;
}
.product-detail .download-card:hover .icon {
  opacity: 1;
}
.product-detail .content-card {
  display: block;
  position: relative;
  width: 100%;
  height: 90%;
  min-height: 180px;
  background-color: #f7fbfc;
  padding-top: 50%;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}
.product-detail .content-card:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.product-detail .content-card .img-frame {
  position: absolute;
  overflow: hidden;
  padding-top: 100%;
  width: 100%;
  top: -3px;
  z-index: -5;
  left: 0;
}
.product-detail .content-card .img-frame img {
  position: absolute;
  width: 100%;
  height: 60%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -85%);
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail .content-card .img-frame iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail .content-card .title {
  font-size: 18px;
  color: #1e1e1e;
  font-weight: 500 !important;
}
.product-detail .content-card .sub-title {
  font-size: 16px;
  color: #46a0c3;
}
.product-detail .content-card .text {
  font-size: 14px;
  color: #7b7e80;
}
.product-detail .content-card .content-area {
  border-radius: 1.5rem;
  padding: 2rem;
  background-color: #fff;
  height: 100%;
  border: 1px solid #efefef;
}
.product-detail .content-card.no-image {
  padding-top: 0;
}
.product-detail .content-card.video {
  padding-top: 49.25%;
  cursor: pointer;
}
.product-detail .content-card.video .img-frame {
  position: absolute;
  overflow: hidden;
  padding-top: 56.25%;
  width: 100%;
  top: -3px;
  z-index: -5;
  left: 0;
}
.product-detail .content-card.video .img-frame::after {
  position: absolute;
  content: "\f144";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  margin-left: 4px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  color: #fff;
  text-shadow: 0 0 3px #1e1e1e;
}
.product-detail .content-card .border-line {
  border-bottom: 1px solid #e5e7eb;
}
@media all and (max-width: 768.93px) {
  .product-detail .content-card {
    height: 100%;
    padding-top: 30%;
  }
  .product-detail .content-card .img-frame {
    padding-top: 56.25%;
  }
  .product-detail .content-card .content-area {
    padding: 1rem;
  }
}
.product-detail .product-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.product-detail .product-tags .tag {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid #46a0c3;
  background-color: transparent;
  color: #46a0c3;
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
}
.product-detail .product-tags .tag:hover {
  background-color: #46a0c3;
  color: #fff;
}
.product-detail .product-tags .tag::after {
  position: relative;
  content: "\f02b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 4px;
}
.product-detail .product-variants {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.product-detail .product-variants .variant-frame {
  height: 40px;
  width: auto;
  position: relative;
  padding: 0.5rem;
  padding-left: 2.5rem;
  padding-right: 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 2px;
  cursor: pointer;
  text-align: left;
  word-break: break-word;
  margin: 8px 8px 0 0;
  transition: 0.2s all;
}
.product-detail .product-variants .variant-frame .img {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translate(0%, -50%);
}
.product-detail .product-variants .variant-frame .img-frame {
  position: relative;
  width: 24px;
  padding-top: 24px;
  height: 0;
  overflow: hidden;
  background-color: white;
}
.product-detail .product-variants .variant-frame .img-frame img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translate(-50%, -50%);
}
.product-detail .product-variants .variant-frame.selected, .product-detail .product-variants .variant-frame:hover {
  border: 1px solid #46a0c3;
  color: #46a0c3;
}
.product-detail .product-variants .variant-frame.selected::after {
  content: "\f00c";
  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 8px;
  background-color: #46a0c3;
  padding: 1px 3px;
}
.product-detail .product-variants .variant-frame.disabled {
  cursor: not-allowed;
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.26);
}
.product-detail .product-variants .variant-frame.disabled:hover {
  border: 1px solid rgba(0, 0, 0, 0.09);
  color: rgba(0, 0, 0, 0.26);
}
.product-detail .fix-bottom-buy-now {
  display: none;
  opacity: 0;
}
@media all and (max-width: 992.98px) {
  .product-detail .product-title {
    font-size: 2rem;
  }
  .product-detail .short-des {
    font-size: 1rem;
  }
  .product-detail .fix-bottom-buy-now {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding: 0;
    display: flex;
    opacity: 1;
  }
  .product-detail .fix-bottom-buy-now .buy-now {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 1rem;
  }
}

.video-modal .close {
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 2rem;
  z-index: 10;
  cursor: pointer;
}
.video-modal .video-frame {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  width: 100%;
}
.video-modal .video-frame iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.last-mb-none .mb-3:last-child {
  margin-bottom: 0 !important;
}

.contact-page {
  overflow-x: hidden;
}
.contact-page .sub-title {
  color: #46a0c3;
}
.contact-page .content {
  text-decoration: none;
  color: #7b7e80;
}
.contact-page .bigger-content {
  font-size: 1.222rem;
}

.cart-page .product-item {
  display: flex;
  flex-direction: row;
  padding: 2rem 0rem;
  border-bottom: 1px solid #efefef;
}
.cart-page .product-item .outer-frame {
  max-width: 200px;
  width: 25vw;
  border: 1px solid #efefef;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}
.cart-page .product-item .outer-frame .product-img-frame {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
.cart-page .product-item .outer-frame .product-img-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart-page .product-item .product-content {
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
}
.cart-page .product-item .product-content .product-name {
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.25rem;
  text-decoration: none;
  color: #1e1e1e;
  margin-bottom: 0.5rem;
}
.cart-page .product-item .product-content .variant {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  color: #7b7e80;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0.25rem;
}
.cart-page .product-item .product-content .product-price {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.cart-page .product-item .product-function-area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.cart-page .product-item .product-function-area .quantity select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' width='10' height='6'%3E<path d='M0 0h10L5 6 0 0z' fill='%23CCC'/%3E%3C/svg%3E") no-repeat #fff;
  background-position: right 10px center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
  max-height: 40px;
}
.cart-page .product-item .product-function-area .quantity select:focus {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' width='10' height='6' style='rotate:3.1416rad'%3E<path d='M0 0h10L5 6 0 0z' fill='%23CCC'/%3E%3C/svg%3E") no-repeat #fff;
  background-position: right 10px center;
  border: 1px solid rgb(90, 90, 90);
  color: #000;
}
.cart-page .product-item .product-function-area .remove-product {
  cursor: pointer;
  padding: 0 1rem;
}
.cart-page .product-item .product-function-area .remove-product i {
  font-size: 1.2rem;
}
.cart-page .product-item .product-function-area .remove-product i:hover {
  color: #46a0c3;
}
@media all and (max-width: 768.93px) {
  .cart-page .product-item .product-function-area {
    flex-direction: column;
  }
}
.cart-page .summary-area {
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 1rem;
}
.cart-page .summary-area .title {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.cart-page .summary-area .summary-item {
  width: 100%;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  display: inline-flex;
  justify-content: space-between;
}
.cart-page .summary-area .summary-item .price {
  color: #1e1e1e;
  font-weight: 500;
}
.cart-page .summary-area .summary {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  width: 100%;
}
.cart-page .summary-area .summary .final-price {
  font-size: 1.2rem;
  font-weight: 500;
}
@media all and (max-width: 768.93px) {
  .cart-page .summary-area {
    padding: 1rem 0;
  }
}

.login-page {
  min-height: calc(100vh - 550px - 84px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-page .login-card {
  display: flex;
  flex-direction: row;
  width: auto;
  height: auto;
  margin: auto auto;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 2px 6px -1px rgba(0, 0, 0, 0.12);
}
.login-page .login-card .left-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.login-page .login-card .left-area .logo-frame {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
.login-page .login-card .left-area .logo-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.login-page .login-card label {
  font-size: 12.5px;
  color: #000;
  opacity: 0.8;
  font-weight: 400;
}
.login-page .login-card form {
  padding: 40px 30px;
  background: #fefefe;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 20px;
  width: 380px;
}
.login-page .login-card form h4 {
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.5);
}
.login-page .login-card form h4 span {
  color: black;
  font-weight: 700;
}
.login-page .login-card form p {
  line-height: 155%;
  margin-bottom: 5px;
  font-size: 14px;
  color: #000;
  opacity: 0.65;
  font-weight: 400;
  max-width: 300px;
  margin-bottom: 40px;
}
.login-page .login-card a.discrete {
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  border-bottom: solid 1px rgba(0, 0, 0, 0);
  padding-bottom: 4px;
  margin-left: auto;
  font-weight: 300;
  transition: all 0.3s ease;
  margin-top: 40px;
}
.login-page .login-card a.discrete:hover {
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}
.login-page .login-card button {
  -webkit-appearance: none;
  width: auto;
  min-width: 100px;
  border-radius: 6px;
  text-align: center;
  padding: 15px 40px;
  margin-top: 5px;
  background-color: #21b0e8;
  color: #fff;
  font-size: 14px;
  margin-left: auto;
  font-weight: 500;
  box-shadow: 0px 2px 6px -1px rgba(0, 0, 0, 0.13);
  border: none;
  transition: all 0.3s ease;
  outline: 0;
}
.login-page .login-card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 6px -1px rgba(70, 160, 195, 0.65);
}
.login-page .login-card button:hover:active {
  transform: scale(0.99);
}
.login-page .login-card input {
  font-size: 16px;
  padding: 20px 0px;
  height: 56px;
  border: none;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  background: #fff;
  width: 280px;
  box-sizing: border-box;
  transition: all 0.3s linear;
  color: #000;
  font-weight: 400;
  -webkit-appearance: none;
}
.login-page .login-card input:focus {
  border-bottom: solid 1px #46a0c3;
  outline: 0;
  box-shadow: 0 2px 6px -8px rgba(70, 160, 195, 0.45);
}
.login-page .login-card .floating-label {
  position: relative;
  margin-bottom: 10px;
  width: 100%;
}
.login-page .login-card .floating-label label {
  position: absolute;
  top: calc(50% - 7px);
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  padding-left: 44px;
}
.login-page .login-card .floating-label input {
  width: calc(100% - 44px);
  margin-left: auto;
  display: flex;
}
.login-page .login-card .floating-label .icon {
  position: absolute;
  top: 0;
  left: 0;
  height: 56px;
  width: 44px;
  display: flex;
}
.login-page .login-card .floating-label .icon svg {
  height: 30px;
  width: 30px;
  margin: auto;
  opacity: 0.15;
  transition: all 0.3s ease;
}
.login-page .login-card .floating-label .icon svg path {
  transition: all 0.3s ease;
}
.login-page .login-card .floating-label input:not(:-moz-placeholder-shown) {
  padding: 28px 0px 12px 0px;
}
.login-page .login-card .floating-label input:not(:placeholder-shown) {
  padding: 28px 0px 12px 0px;
}
.login-page .login-card .floating-label input:not(:-moz-placeholder-shown) + label {
  transform: translateY(-10px);
  opacity: 0.7;
}
.login-page .login-card .floating-label input:not(:placeholder-shown) + label {
  transform: translateY(-10px);
  opacity: 0.7;
}
.login-page .login-card .floating-label input:valid:not(:-moz-placeholder-shown) + label + .icon svg {
  opacity: 1;
}
.login-page .login-card .floating-label input:valid:not(:placeholder-shown) + label + .icon svg {
  opacity: 1;
}
.login-page .login-card .floating-label input:valid:not(:-moz-placeholder-shown) + label + .icon svg path {
  fill: #46a0c3;
}
.login-page .login-card .floating-label input:valid:not(:placeholder-shown) + label + .icon svg path {
  fill: #46a0c3;
}
.login-page .login-card .floating-label input:not(:valid):not(:focus) + label + .icon {
  animation-name: shake-shake;
  animation-duration: 0.3s;
}
@keyframes shake-shake {
  0% {
    transform: translateX(-3px);
  }
  20% {
    transform: translateX(3px);
  }
  40% {
    transform: translateX(-3px);
  }
  60% {
    transform: translateX(3px);
  }
  80% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0px);
  }
}

.about-page .img-frame {
  position: relative;
  width: 100%;
  padding-top: 56.67%;
  overflow: hidden;
  border-radius: 1.5rem;
}
.about-page .img-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-page .content-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 1.5rem;
  padding: 3rem;
  border: 1px solid #efefef;
}
.about-page .content-card .title {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.88rem;
}
.about-page .content-card .content {
  color: #7b7e80;
  margin-bottom: 0;
}
@media all and (max-width: 768.93px) {
  .about-page .content-card {
    padding: 2rem;
  }
}
.about-page .about-area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.about-page .about-area .about-img-1,
.about-page .about-area .content-area {
  flex: 0 1 50%;
  max-width: 50%;
  margin-bottom: 1rem;
}
@media all and (max-width: 768.93px) {
  .about-page .about-area .about-img-1,
  .about-page .about-area .content-area {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.about-page .about-area .content-area {
  padding: 1rem 0;
}
.about-page .about-area .content-area .title {
  font-size: 1.888rem;
  margin-bottom: 1.5rem;
}
.about-page .about-area .content-area p {
  color: #7b7e80;
  max-width: 80%;
}
.about-page .about-area .image-area {
  margin-bottom: 1rem;
  flex: 0 1 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.about-page .about-area .image-area .about-img-2,
.about-page .about-area .image-area .about-img-4 {
  flex-grow: 1;
}
.about-page .about-area .image-area .about-img-2 {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.about-page .about-area .image-area .about-img-3 {
  flex-grow: 3;
}
.about-page .about-area .image-area .about-img-2,
.about-page .about-area .image-area .about-img-3 {
  margin-right: 2rem;
}
.about-page .about-area .image-area .about-img-1 .img-frame,
.about-page .about-area .image-area .about-img-2 .img-frame,
.about-page .about-area .image-area .about-img-3 .img-frame,
.about-page .about-area .image-area .about-img-4 .img-frame {
  position: relative;
  width: 100%;
  padding-top: 56.67%; /* Default aspect ratio for images */
  overflow: hidden;
  border-radius: 1.5rem;
}
.about-page .about-area .image-area .about-img-1 .img-frame img,
.about-page .about-area .image-area .about-img-2 .img-frame img,
.about-page .about-area .image-area .about-img-3 .img-frame img,
.about-page .about-area .image-area .about-img-4 .img-frame img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.about-page .about-area .image-area .about-img-2 .img-frame {
  position: relative;
  width: 100%;
  padding-top: 56.67%; /* Default aspect ratio for images */
  overflow: hidden;
  border-radius: 0 1.5rem 1.5rem 0;
}
.about-page .about-area .image-area .about-img-2 .img-frame img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.about-page .about-area .image-area .about-img-2 .img-frame {
  padding-top: 100%;
}
.about-page .about-area .image-area .about-img-4 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.about-page .about-area .image-area .about-img-4 .img-frame {
  padding-top: 100%;
}
@media all and (max-width: 768.93px) {
  .about-page .about-area .about-img-1 {
    order: 2;
  }
  .about-page .about-area .content-area {
    order: 1;
  }
  .about-page .about-area .content-area p {
    max-width: 100%;
  }
  .about-page .about-area .image-area {
    order: 3;
  }
  .about-page .about-area .about-img-2 {
    display: none !important;
  }
}
.about-page .about-brands-area {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
}
.about-page .about-brands-area .brand-col {
  flex: 0 1 15%;
}
.about-page .about-brands-area .brand-col .brand-card {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-top: 120px;
}
.about-page .about-brands-area .brand-col .brand-card img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media all and (max-width: 992px) {
  .about-page .about-brands-area {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .about-page .about-brands-area .brand-col {
    flex: 0 1 150px;
    margin-bottom: 1rem;
  }
}
.about-page .timeline-area {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  position: relative;
  flex-wrap: wrap;
}
.about-page .timeline-area .time-col {
  flex: 0 1 25%;
  position: relative;
  margin-bottom: 1rem;
}
.about-page .timeline-area .time-col .time {
  position: relative;
}
.about-page .timeline-area .time-col .time .date {
  background-color: white;
  z-index: 1;
  padding: 0 1.5rem;
  color: #46a0c3;
}
.about-page .timeline-area .time-col .time::before {
  content: "\f192";
  color: #6db4cf;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 8px;
}
.about-page .timeline-area .time-col .time::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  z-index: -1;
  background-color: #b9b9b9;
  width: calc(100% - 2rem);
  transform: translateY(-50%);
}
.about-page .timeline-area .time-col .content-area {
  padding: 0.5rem 1rem;
}
.about-page .timeline-area .time-col .content-area .title {
  font-weight: 500;
  font-size: 1.2rem;
}
.about-page .timeline-area .time-col .content-area .content {
  color: #7b7e80;
  font-size: 14px;
}
@media all and (min-width: 992.98px) {
  .about-page .timeline-area .time-col:nth-child(4n)::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 0;
    height: calc(100% + 15px);
    width: 1px;
    z-index: -1;
    background-color: #b9b9b9;
    transform: translateX(-50%);
  }
  .about-page .timeline-area .time-col:nth-child(5) {
    order: 4;
  }
  .about-page .timeline-area .time-col:nth-child(6) {
    order: 3;
  }
  .about-page .timeline-area .time-col:nth-child(7) {
    order: 2;
  }
  .about-page .timeline-area .time-col:nth-child(8) {
    order: 1;
  }
  .about-page .timeline-area .time-col:nth-child(9) {
    order: 8;
  }
  .about-page .timeline-area .time-col:nth-child(10) {
    order: 9;
  }
  .about-page .timeline-area .time-col:nth-child(11) {
    order: 10;
  }
  .about-page .timeline-area .time-col:nth-child(12) {
    order: 11;
  }
  .about-page .timeline-area .time-col:nth-child(8)::after {
    right: 99%;
  }
}
.about-page .timeline-area .time-col:last-child::after {
  display: none;
}
@media all and (max-width: 992.98px) {
  .about-page .timeline-area {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .about-page .timeline-area .time-col {
    flex: 0 1 100%;
  }
  .about-page .timeline-area .time-col::after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 3px;
    z-index: -1;
    background-color: #b9b9b9;
  }
  .about-page .timeline-area .time-col:last-child::after {
    display: none;
  }
}
.about-page .timeline-area-1 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  position: relative;
  flex-wrap: wrap;
  overflow: hidden;
}
.about-page .timeline-area-1 .time-col {
  flex: 0 1 45%;
  position: relative;
  margin-bottom: 1rem;
}
.about-page .timeline-area-1 .time-col .time .date {
  transition: all 300ms cubic-bezier(0.9, 0, 0.33, 1);
  background-color: white;
  z-index: 1;
  color: #46a0c3;
  position: absolute;
  top: 50%;
  transform: translate(-5%, -50%);
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  border-radius: 40px;
}
.about-page .timeline-area-1 .time-col .content-area {
  padding: 3rem;
  border-radius: 1.5rem;
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.about-page .timeline-area-1 .time-col .content-area .title {
  font-weight: 500;
  font-size: 1.2rem;
  color: #46a0c3;
}
.about-page .timeline-area-1 .time-col .content-area .content {
  color: #7b7e80;
  font-size: 14px;
}
.about-page .timeline-area-1 .time-col:nth-child(odd) .date {
  left: 105%;
}
.about-page .timeline-area-1 .time-col:nth-child(2n) {
  margin-left: 55%;
  transform: translateX(0px);
}
@media all and (max-width: 1280px) {
  .about-page .timeline-area-1 .time-col:nth-child(2n) {
    margin-left: 50%;
    transform: translateX(60px);
  }
}
.about-page .timeline-area-1 .time-col:nth-child(2n) .date {
  background-color: white;
  z-index: 1;
  color: #46a0c3;
  position: absolute;
  top: 50%;
  right: 105%;
  transform: translate(5%, -50%);
}
.about-page .timeline-area-1 .time-col.in-view .date {
  background-color: #46a0c3;
  color: #fff;
}
.about-page .timeline-area-1 .timeline {
  position: absolute;
  width: 2px;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  background-color: #ececec;
  height: calc(100% - 220px);
}
.about-page .timeline-area-1 .timeline .scroll-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  background-color: #46a0c3;
}
@media all and (max-width: 992.98px) {
  .about-page .timeline-area-1 {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .about-page .timeline-area-1 .time-col {
    flex: 0 1 80%;
    margin-left: 20% !important;
    transform: translateX(0px) !important;
  }
  .about-page .timeline-area-1 .time-col .date {
    left: unset !important;
    right: 103% !important;
    transform: translate(5%, -50%) !important;
  }
  .about-page .timeline-area-1 .timeline {
    position: absolute;
    left: calc(13% + 5px);
  }
}
@media all and (max-width: 768.93px) {
  .about-page .timeline-area-1 .timeline {
    position: absolute;
    left: 12%;
  }
}