@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    /* Color */
    --primary-blue: #0972DB;
    --dark-blue: #395A7F;
    --mid-blue: #6E9FC1;
    --light-blue: #A3CAE9;
    --light-gray: #E9ECEE;
    --secondary-blue: #E7F0FA;
    --dark-gray: #ACACAC;
    --text-gray: #797979;
    --white: #fff;
    --black: #000;

    /* Font Size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 3rem;

    /* Font Weight */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Border Radius */
    --border-radius-s: 8px;
    --border-radius-m: 25px;
    --border-radius-circle: 50%;

    /* Site Max Width */
    --site-max-width: 1300px;

    /* Chinese Font */
    --chinese-font: 'Noto Sans TC', 'Microsoft YaHei', 'SimHei', sans-serif;
}

[lang="zh"] {
    font-family: var(--chinese-font);
}

/* Apply Chinese fonts to specific elements when language is Chinese */
html[lang="zh"] body {
    font-family: var(--chinese-font);
}

html {
    scroll-behavior: smooth;
}

/* Style for whole site */
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    width: 100%;
}

.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

.section-title {
    text-align: center;
    padding: 60px 0 60px;
    text-transform: uppercase;
    font-size: var(--font-size-l);
    letter-spacing: 3px;
}

.section-title::after{
    content: "";
    width: 100px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--primary-blue);
}

.fade-in {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-content .element-1 {
    transition-delay: 0.2s;
}

.section-content .element-2 {
    transition-delay: 0.4s;
}

.section-content .element-3 {
    transition-delay: 0.6s;
}

.section-content .element-4 {
    transition-delay: 0.8s;
}

/* Navbar styling */
header {
    position: fixed;
    width: 100%;
    z-index: 5;
    background: var(--white);
}

header .navbar {
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-logo {
    width: 150px;
}

.navbar .nav-menu {
    display: flex;
    gap: 40px;
}

.navbar .nav-menu .language-switcher-wrapper {
  position: relative;
  display: inline-block;
}

#languageIcon {
  font-size: var(--font-size-l);
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: var(--black);
    font-size: var(--font-size-n);
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
    justify-content: center;
}

.language-toggle:hover {
    color: var(--primary-blue);
}

.language-toggle i {
    font-size: 1.2em;
}

.lang-text {
    display: inline-block;
    min-width: 25px;
    text-align: center;
}

.language-switcher-wrapper i {
  cursor: pointer;
}

.navbar .nav-menu .nav-link {
    color: var(--black);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-normal);
    position: relative;
}

.navbar .nav-menu .nav-link::after{
    content: '';
    height: 3px;
    width: 0;
    background: var(--primary-blue);
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
    border-radius: var(--border-radius-s);
}

.navbar .nav-menu .nav-link:hover:after{
    width: 100%;
}

.navbar :where(#menu-close-button, #menu-open-button) {
    display: none;
}

/* Hero-section styling */
.hero-section {
    min-height: 100vh;
    background: var(--secondary-blue);
    padding-top: 30px;
}

.hero-section .section-content {
    display: flex;
    align-items: center;
    min-height: 100vh;
    justify-content: space-between;
}

.hero-section .hero-details .title {
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(90deg, #0972DB 10%, #00A8E8 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}

.hero-section .hero-details .subtitle{
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    color: var(--text-gray);
    margin-top: 15px;
    max-width: 70%;
    line-height: 1.5;
}

.hero-section .hero-details .hero-bnts{
    display: flex;
    gap: 23px;
    margin-top: 50px;
}

.hero-section .hero-details .bnt {
    padding: 10px 26px;
    color: var(--white);
    border: 2px solid transparent;
    border-radius: var(--border-radius-m);
    background: var(--primary-blue);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
}

.hero-section .hero-details .latest-product:hover,
.hero-section .hero-details .contact,
.hero-section .hero-details .latest-product.hovered{
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    background: transparent;
}

.hero-section .hero-details .contact:hover, 
.hero-section .hero-details .contact.hovered {
    color: var(--white);
    border-color: transparent;
    background: var(--primary-blue);
}

.hero-section .hero-img-wrapper {
    max-width: 500px;
    margin-right: 30px;
    filter: brightness(1.12) contrast(1.05) 
}

/* About-section styling */
.about-section {
    padding: 120px 0;
    background: var(--white);
}

.about-section .section-content {
    display: flex;
    gap: 50px;
    align-items: center;
    /* set to justify-content if there's a image */
    justify-content: center;
}

/* .about-section .about-img-wrapper .about-img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
} */

.about-section .about-details {
    max-width: 70%;
}

.about-section .about-details .text {
    line-height: 30px;
    margin: 0 0 30px;
    text-align: justify;
    font-size: var(--font-size-m);
}

/* Product-section styling */
.product-section {
    width: 100%;
    height: 100vh;
    min-height: 750px;
    background: #fff;
    background-size: cover;
    position: relative;
    overflow: hidden;
    display: flex;
    padding-top: 80px;
}

.product-section .section-content {
    height: 600px;
    margin: auto;
    width: 100%;
    max-width: var(--site-max-width);
    display: flex;
    align-items: center;
    position: relative;
}

.bg-shape {
    height: 100%;
    background: #E7F0FA;
    /* box-shadow: 0px 30px 40px 0px rgba(10, 22, 31, 0.1); */
    border-radius: 30px;
    padding: 45px 40px;
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.next,
.prev {
    z-index: 22;
    display: inline-flex;
    border: none;
    width: 61px;
    height: 61px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    position: absolute;
    top: 50%;
    outline: none;
    cursor: pointer;
    background: var(--light-gray);
    color: var(--black);
}
.next.disabled,
.prev.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
.next:focus,
.prev:focus {
    outline: none;
}

.prev {
    left: -30%;
    transform: translate(-100%, -50%);
}

.next {
    right: 0;
    transform: translate(50%, -50%);
}
.product-slider {
    width: 75%;
    height: 85%;
    border-radius: 30px;
    box-shadow: 0px 30px 40px 0 rgba(10, 22, 31, 0.35);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.product-slider__wrp {
    height: 100%;
}
.product-slider__item {
    position: relative;
    height: 100%;
    width: 100%;
}

.product-slider__item.swiper-slide-active .product-slider__content > * {
    opacity: 1;
    transform: none;
}
.product-slider__item.swiper-slide-active
    .product-slider__content
    > *:nth-child(1) {
    transition-delay: 0s;
}
.product-slider__item.swiper-slide-active
    .product-slider__content
    > *:nth-child(2) {
    transition-delay: 0.2s;
}
.product-slider__item.swiper-slide-active
    .product-slider__content
    > *:nth-child(3) {
    transition-delay: 0.4s;
}
.product-slider__item.swiper-slide-active
    .product-slider__content
    > *:nth-child(4) {
    transition-delay: 0.6s;
}
.product-slider__item.swiper-slide-active
    .product-slider__content
    > *:nth-child(5) {
    transition-delay: 0.8s;
}
.product-slider__item.swiper-slide-active
    .product-slider__content
    > *:nth-child(6) {
    transition-delay: 1s;
}
.product-slider__item.swiper-slide-active
    .product-slider__content
    > *:nth-child(7) {
    transition-delay: 1.2s;
}
.product-slider__item.swiper-slide-active
    .product-slider__content
    > *:nth-child(8) {
    transition-delay: 1.4s;
}
.product-slider__item.swiper-slide-active
    .product-slider__content
    > *:nth-child(9) {
    transition-delay: 1.6s;
}
.product-slider__item.swiper-slide-active
    .product-slider__content
    > *:nth-child(10) {
    transition-delay: 1.8s;
}
.product-slider__item.swiper-slide-active
    .product-slider__content
    > *:nth-child(11) {
    transition-delay: 2s;
}
.product-slider__item.swiper-slide-active
    .product-slider__content
    > *:nth-child(12) {
    transition-delay: 2.2s;
}
.product-slider__item.swiper-slide-active
    .product-slider__content
    > *:nth-child(13) {
    transition-delay: 2.4s;
}
.product-slider__item.swiper-slide-active
    .product-slider__content
    > *:nth-child(14) {
    transition-delay: 2.6s;
}
.product-slider__item.swiper-slide-active
    .product-slider__content
    > *:nth-child(15) {
    transition-delay: 2.8s;
}
.product-slider__item.swiper-slide-active circle {
    animation: progress 1s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0.75;
}
.product-slider__card {
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    transition: all 0.5s;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
    background: #395A7F;
}

.product-slider__title {
    margin: 0;
    margin-bottom: 10px;
    font-weight: var(--font-weight-extrabold);
    font-size: var(--font-size-xxl);
    line-height: 1.2em;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(55px);
    transition: all 0.5s;
    position: relative;
    display: inline-block;
}

.product-slider__title::after {
    display: block;
    width: 60%;
    height: 6px;
    background: var(--primary-blue);
    opacity: 0.8;
    border-radius: var(--border-radius-s);
    margin-top: 20px;
    content: "";
}

.product-ctr {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    opacity: 0;
    transform: translateY(55px);
    transition: all 0.5s;
    margin-top: 40px;
}

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

.title-line {
    display: inline-block;
    width: auto;
    height: 3px;
    background: var(--white);
    opacity: 0.8;
    border-radius: var(--border-radius-s);
    margin-top: 20px;
}

.product-ctr .hr-vertical {
    width: 3px;
    /* height: 60px; */
    background: var(--white);
    align-self: stretch;
    /* margin: 0 35px; */
    flex-shrink: 0;
    opacity: 0.8;
    border-radius: var(--border-radius-s);
}

@keyframes progress {
    0% {
    stroke-dasharray: 0 100;
    }
}

.product-inf {
    text-align: center;
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
}

.product-inf__percent {
    font-weight: var(--font-weight-light);
    font-size: var(--font-size-m);
    letter-spacing: 1px;
    margin-bottom: 12px;
    position: relative;
}

.product-inf__percent circle {
    transform: rotate(180deg) scaleY(-1);
    transform-origin: 50%;
    border-radius: var(--border-radius-s);
}

.product-inf__percent-txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-inf__title {
    font-weight: var(--font-weight-semibold);
    letter-spacing: 2px;
    font-size: var(--font-size-l);
}

.product-inf__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 15px;
  height: 100%;
  max-height: 400px; /* Adjust this value based on your slider height */
  overflow-y: auto; /* Add scrolling if content exceeds height */
  margin-top: -30px;
}

.product-inf__box {
  background-color: rgba(9, 114, 219, 0.1);
  border-radius: 8px;
  padding: 15px;
  height: 100%;
}

.product-inf__text {
  color: var(--white);
}

.product-inf__text h3 {
  font-size: 1rem;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.product-inf__text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--mid-blue);
  text-align: left;
}

.product-inf__text li {
  font-size: 0.85rem;
  line-height: 1.3;
  margin-bottom: 4px;
  padding-left: 12px;
  position: relative;
}

.product-inf__text li:before {
  content: "•";
  position: absolute;
  left: 0;
}

.info-img-wrapper {
    width: 60%;
}

.product-img {
    position: absolute;
    z-index: 2;
    width: 500px;
    left: 25%;
    transform: translateX(-45%);
    max-height: 500px;
    height: 100%;
    pointer-events: none;
}

.product-img__item {
    display: flex;
    align-items: center;
    position: absolute;
    pointer-events: none;
    user-select: none;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(-130px);
    opacity: 0;
    transition: all 0.3s;
}
.product-img__item.active {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    transition-delay: 0.3s;
}
.product-img__item img {
    object-fit: contain;
    object-position: center right;
}

.product-slider__content {
    color: #fff;
    padding-top: 1px;
    position: relative;
    z-index: 2;
    width: 100%;
    padding-left: 250px;
    padding-right: 80px;
}

/* Team-section styling */
.team-section {
    padding: 50px 0 100px;
    background: var(--white);
}

.team-section .slider-wrapper {
    overflow: hidden;
    margin: 0 60px 0;
}

.team-section .teammate {
    user-select: none;
    display: flex;
    padding: 35px;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.team-section .teammate .teammate-img {
    width: auto;
    height: auto;
    max-height: 280px;
    background-color: var(--secondary-blue);
    object-fit: cover;
    margin-bottom: 50px;
}

.team-section .teammate .name {
    margin-bottom: 5px;
    font-size: var(--font-size-m);
}

.team-section .teammate .position {
    margin-bottom: 30px;
    font-size: var(--font-size-m)
}

.team-section .teammate .des {
    line-height: 25px;
}

.team-section .team-list {
    margin-bottom: 30px;
}

.team-section .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    background: var(--primary-blue);
}

.team-section .swiper-slide-button {
    color: var(--primary-blue);
    margin-top: -50px;
    transition: 0.3s ease;
}

.team-section .swiper-slide-button:hover {
    color: var(--dark-gray);
}

/* Contact-section styling */
.contact-section {
    padding: 50px 0 100px;
    background: var(--light-gray);
}

.contact-section .section-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-section .contact-info-list .contact-info {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    align-items: center;
}

.contact-section .contact-info-list .contact-info .small-logo {
    font-size: var(--font-size-m);
    width: 20px;
}

.contact-section .contact-info-list .contact-info p {
    font-size: var(--font-size-n);
}

.contact-section .contact-form {
    max-width: 50%;
}

.contact-section .contact-form .form-input {
    width: 100%;
    height: 50px;
    padding: 0 12px;
    outline: none;
    margin-bottom: 16px;
    background: var(--white);
    border-radius: var(--border-radius-s);
    border: 1px solid var(--dark-gray);
}

.contact-section .contact-form .form-input:focus {
    border: 2px solid var(--primary-blue);
}

.contact-section .contact-form textarea.form-input {
    height: 200px;
    padding: 12px;
    resize: vertical;
}

.contact-section .contact-form .submit-button {
    padding: 10px 26px;
    color: var(--white);
    margin-top: 40px;
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    background: var(--primary-blue);
    border-radius: var(--border-radius-m);
    border: 2px solid var(--primary-blue);
    transition: 0.3s ease;
}

.contact-section .contact-form .submit-button:hover {
    background: transparent;
    color: var(--primary-blue);
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    color: var(--black);
}

.form-status.error {
    display: block;
    color: #dc3545;
}

/* Footer styling */
.footer-section {
    padding: 20px 0;
    background: var(--dark-gray);
}

.footer-section .section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-section :where(.copyright, .policy-link) {
    color: var(--white);
}

.footer-section .policy-text .separator {
    color: var(--white);
    margin: 0 5px;
}

/* Job Section Styles */
.job-section {
  padding: 120px 0 80px;
  background-color: var(--secondary-blue);
}

/* .job-section .section-title {
  color: var(--primary-blue);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
} */

.job-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.job-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.job-title {
  color: var(--primary-blue);
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.job-section-content {
  margin-bottom: 30px;
}

.job-section-content h3 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.job-section-content ul {
  list-style: none;
  padding-left: 20px;
}

.job-section-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.job-section-content li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--black);
}

.job-section-content p {
  padding-left: 20px;
  line-height: 1.5;
}

/* Responsive for max-width 900px */
@media screen and (max-width: 900px) {
    :root {
        /* Font Size */
        --font-size-n: 1rem;
        --font-size-m: 1.12rem;
        --font-size-l: 1.5rem;
        --font-size-xl: 2rem;
        --font-size-xxl: 3rem;
    }

    body.show-mobile-menu header::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
    }

    .navbar :where(#menu-close-button, #menu-open-button) {
        display: block;
        font-size: var(--font-size-m);
    }

    .navbar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 42px;
    }

    .navbar #menu-open-button {
        color: var(--black);
    }

    .navbar .nav-menu {
        display: block;
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        flex-direction: column;
        padding-top: 100px;
        justify-items: center;
        background: var(--white);
        transition: left 0.2s ease;
    }
    
    .navbar .language-switcher-wrapper {
        margin-top: 20px;
    }

    /* Remove old dropdown styles */
    #languageSwitcher,
    #languageSwitcher.show {
        display: none;
    }

    .nav-menu .nav-item:last-child {
      margin-top: auto;
      padding: 15px 0;
    }

    body.show-mobile-menu .navbar .nav-menu {
        left: 0;
    }

    .navbar .nav-menu .nav-link {
        color: var(--black);
        display: block;
        margin-top: 18px;
        padding-top: 30px;
        font-size: var(--font-size-m);
        font-weight: var(--font-weight-normal);
    }

    .hero-section .section-content {
        gap: 50px;
        text-align: center;
        padding: 100px 20px 30px 20px;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .hero-section .hero-details .title {
        font-size: 2.5rem;
    }

    .hero-section .hero-details .subtitle, 
    .about-section .about-details, 
    .contact-section .contact-form {
        max-width: 100%;
    }

    .hero-section .hero-details .hero-bnts {
        justify-content: center;
    }

    .hero-section .hero-img-wrapper {
        max-width: 270px;
        margin-right: 0;
        padding: 0;
    }

    .about-section .section-content {
        gap: 70px;
        flex-direction: column;
    }

    .about-section .about-img-wrapper .about-img {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
    }

    .about-section .about-details .section-title {
        padding: 0 0 60px;
    }

    .product-inf {
        display: flex;
        flex-direction: column;
    }

    .contact-section .section-content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .contact-section .product-slider .prev,
    .contact-section .product-slider .next {
        top: 170px;
    }

    .contact-section .product-slider .prev {
        left: 0;
        transform: translate(-50%, -50%);
    }

    .contact-section .product-slider {
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
        height: auto;
        position: relative;
        top: 0;
        margin-top: 170px;
        margin-bottom: 100px;
    }

    /* .contact-section .product-slider br {
        display: none;
      } */
}

@media screen and (max-width: 640px) {
    .contact-section .section-content {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .product-section .bg-shape {
        height: 200px;
        padding: 30px;
    }

    .contact-section .product-slider .prev {
        transform: translate(20%, -50%);
    }

    .contact-section .product-slider .next {
        transform: translate(-20%, -50%);
    }

    .product-section .product-slider {
        width: 85%;
        margin-top: 130px;
    }

    .team-section .slider-wrapper {
        margin: 0 0 30px;
    }

    .team-section .swiper-slide-button {
        display: none;
    }

    .footer-section .section-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width: 992px) {
    .product-section {
      height: auto;
      min-height: 100vh;
    }
  }
  @media screen and (max-width: 1200px) {
    .product-section .section-content {
      max-width: 920px;
    }
  }
  @media screen and (max-width: 992px) {
    .product-section .section-content {
      max-width: 920px;
      margin-top: 100px;
      height: auto;
      min-height: 100vh;
    }
  }
  @media screen and (max-width: 767px) {
    .product-section .section-content {
      margin-top: 20px;
    }
    .product-slider__title::after {
        margin: 20px auto 0;
    }
  }
  @media screen and (max-width: 576px) {
    .product-section .section-content {
      margin-top: 20px;
      margin-bottom: 20px;
    }
  }
  
  @media screen and (max-width: 1200px) {
    .bg-shape {
      width: 45%;
    }
  }
  @media screen and (max-width: 992px) {
    .bg-shape {
      width: 90%;
      height: 290px;
      align-items: flex-start;
      padding: 50px;
      left: 50%;
      transform: translateX(-50%);
    }
  }
  @media screen and (max-width: 767px) {
    .bg-shape {
      padding: 30px;
      width: 95%;
      border-radius: 20px;
    }
  }
  @media screen and (max-width: 576px) {
    .bg-shape {
      height: 200px;
      padding: 30px;
    }
  }
  @media screen and (max-width: 1200px) {
    .bg-shape img {
      width: 430px;
      left: 10px;
    }
  }
  @media screen and (max-width: 992px) {
    .bg-shape img {
      transform: none;
      width: 100%;
      position: relative;
      left: auto;
      margin-left: auto;
      margin-right: auto;
      object-fit: contain;
      height: 100%;
      object-position: top center;
    }
  }
  @media screen and (max-width: 992px) {
    .next,
    .prev {
      top: 170px;
    }
  }
  
  @media screen and (max-width: 1200px) {
    .prev {
      left: -21%;
    }
  }
  @media screen and (max-width: 992px) {
    .prev {
      left: 0;
      transform: translate(-50%, -50%);
    }
  }
  @media screen and (max-width: 576px) {
    .prev {
      transform: translate(20%, -50%);
    }
  }
  @media screen and (max-width: 576px) {
    .next {
      transform: translate(-20%, -50%);
    }
  }
  
  @media screen and (max-width: 1200px) {
    .product-slider {
      width: 80%;
    }
  }
  @media screen and (max-width: 992px) {
    .product-slider {
      width: 80%;
      left: 50%;
      transform: translateX(-50%);
      height: auto;
      position: relative;
      top: 0;
      margin-top: 170px;
      margin-bottom: 100px;
    }
    /* .product-slider br {
      display: none;
    } */
  }
  @media screen and (max-width: 767px) {
    .product-slider {
      border-radius: 20px;
    }
  }
  @media screen and (max-width: 576px) {
    .product-slider {
      width: 85%;
      margin-top: 130px;
    }
  }
  @media screen and (max-width: 992px) {
    .product-slider__item {
      height: auto;
    }
  }
  
  @media screen and (max-width: 992px) {
    .product-slider__card {
      align-items: flex-start;
    }
  }
  @media screen and (max-width: 767px) {
    .product-slider__card {
      border-radius: 20px;
    }
  }

  @media screen and (max-width: 767px) {
    .product-slider__cover {
      border-radius: 20px;
    }
  }

  @media screen and (max-width: 1200px) {
    .product-slider__content {
      padding-left: 220px;
    }
  }
  @media screen and (max-width: 992px) {
    .product-slider__content {
      padding: 20px 60px 100px;
      padding-top: 280px;
      text-align: center;
    }
  }
  @media screen and (max-width: 767px) {
    .product-slider__content {
      padding: 20px 30px 50px;
      padding-top: 300px;
    }
  }
  @media screen and (max-width: 576px) {
    .product-slider__content {
      padding-top: 220px;
      padding-left: 15px;
      padding-right: 15px;
    }
  }
  
  @media screen and (max-width: 1200px) {
    .product-slider__title {
      font-size: 34px;
    }
  }
  @media screen and (max-width: 576px) {
    .product-slider__title {
      font-size: 24px;
    }
  }
  @media screen and (max-width: 1200px) {
    .product-slider__price {
      font-size: 36px;
    }
  }
  @media screen and (max-width: 576px) {
    .product-slider__price {
      font-size: 30px;
    }
  }
  @media screen and (max-width: 768px) {
    .product-slider__cart {
      margin-right: 30px;
    }
  }
  @media screen and (max-width: 576px) {
    .product-slider__cart {
      width: 100%;
      max-width: 300px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 50px;
    }
  }
  @media screen and (max-width: 992px) {
    .product-ctr {
      justify-content: center;
    }
  }
  @media screen and (max-width: 767px) {
    .product-ctr {
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 40px;
      display: flex;
      flex-direction: column;
    }

    .info_box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0px;
    }

    .product-inf {
        align-items: center;
        justify-content: center;
    }

    .product-ctr .hr-vertical {
      width: 100%;
      margin: 35px 0;
      height: 3px;
    }
  }
  @media screen and (max-width: 767px) {
    .product-labels {
      width: 100%;
    }
  }
  @media screen and (max-width: 992px) {
    .product-labels__group {
      justify-content: center;
    }
  }
  @media screen and (max-width: 767px) {
    .product-inf {
      width: 100%;
    }
  }
  @media screen and (max-width: 1200px) {
    .product-img {
      width: 430px;
      left: 20%;
    }
  }
  @media screen and (max-width: 992px) {
    .product-img {
      width: 430px;
      left: 50%;
      transform: translateX(-50%);
      top: 0;
      height: 350px;
    }
  }
  @media screen and (max-width: 767px) {
    .product-img {
      width: 100%;
      max-width: 400px;
      top: 30px;
      height: 390px;
    }
  }
  @media screen and (max-width: 576px) {
    .product-img {
      max-width: 300px;
      height: 300px;
    }
  }
  

