@font-face {
    font-family: "MyHelvetica";
    src: url("../webfonts/HELVETICANOWDISPLAY-REGULAR.TTF");
    font-weight: 400;
}

@font-face {
    font-family: "MyHelvetica";
    src: url("../webfonts/HELVETICANOWDISPLAY-EXTRABOLD.TTF");
    font-weight: 700;
}

@font-face {
    font-family: "MyHelvetica";
    src: url("../webfonts/HELVETICA\ NEUE\ MEDIUM\ EXTENDED.TTF");
    font-weight: 500;
}

body {
    font-family: "MyHelvetica", sans-serif;
    font-size: 1em;
    line-height: 1.5;
    font-weight: 400;
    color: black;
}

select,
button,
a {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    text-decoration: none;
}

a:hover {
    color: #43b670;
}

/*-----------------------------------------
    LAYOUT STYLE
-------------------------------------------*/
.container-main {
    max-width: 1596px;
}

.pdfaq {
    padding: 50px 50px 50px 150px;
}

.rounded20 {
    border-radius: 20px;
}

.homeSec1pd {
    padding: 50px;
}

.container-fluidPD {
    padding-right: 0;
    padding-left: 175px;
}

.imgL-login {
    height: calc(100vh - 11px);
    object-fit: cover;
    width: 100%;
}

.pd-warranty {
    padding: 50px;
}

.box-warranty {
    margin-top: -120px;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #43b670;
}

.ratio-5x1 {
    aspect-ratio: 10/2;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .page-title {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: bold;
  }
  
  .page-subtitle {
    font-size: 1.1rem;
    color: #666;
    background-color: #fff3cd;
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    border-left: 4px solid #f0ad4e;
  }
  
  .directory-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .person-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr 120px;
    gap: 2rem;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #2c5530;
  }
  
  .person-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .info-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .info-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    padding: 0.3rem 0;
  }
  
  .info-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
  }
  
  .info-value {
    color: #333;
    font-size: 0.9rem;
  }
  
  .photo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .person-photo {
    width: 100px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
    border: 3px solid #e9ecef;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  
  .department-badge {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(220, 53, 69, 0.3);
  }
  
  .department-badge.engineers {
    background: linear-gradient(135deg, #28a745, #218838);
    box-shadow: 0 2px 5px rgba(40, 167, 69, 0.3);
  }
  
  .card {
              border: none;
              transition: all 0.3s ease;
              border-radius: 12px;
          }
  
          .card:hover {
              box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
          }
  
          .hover-lift:hover {
              transform: translateY(-2px);
          }
  
          .question-card {
              border-left: 4px solid transparent;
              transition: all 0.3s ease;
          }
  
          .question-card:hover {
              border-left-color: #2c5530;
              box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
          }

/*-----------------------------------------
    FONT STYLE
-------------------------------------------*/
.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.related-h3 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-p {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.text-green {
    color: #43b670;
}

.text-gray {
    color: #727272;
}

.head-title {
    text-transform: uppercase;
    text-align: center;
    color: white;
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    width: 90%;
}

/*-----------------------------------------
    BACKGROUND STYLE
-------------------------------------------*/
.bg-section01 {
    background-image: url("../images/bg-homesec1.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-section02 {
    background-image: url("../images/bg-section03.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.bg-lightG {
    background-color: #f1f2f1;
}

.head-warranty {
    background-image: url("../images/head-warranty.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 380px;
    position: relative;
}

.bg-section01W {
    background-color: white;
    background-image: url("../images/bg-warranty.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.head-product {
    background-image: url("../images/bg_footer.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 380px;
    position: relative;
}

/*-----------------------------------------
    Form STYLE
-------------------------------------------*/
.input-group input {
    height: 64px;
    font-size: 20px;
    border: 0;
}

.input-group .input-group-text {
    font-size: 24px;
    line-height: 20px;
    padding-right: 5px;
    color: #cacaca;
    border: 0;
    background-color: #fff;
}

.input-group button {
    border: 0;
    background-color: white;
    color: black;
    font-size: 30px;
    line-height: 26px;
}

.input-group button:hover {
    background-color: white;
    color: #43b670;
}

.field-icon {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    line-height: 14px;
}

.form-check-input:checked {
    background-color: #43b670;
    border-color: #43b670;
}

/*-----------------------------------------
    Breadcrumb STYLE
-------------------------------------------*/

/*-----------------------------------------
    BADGE STYLE
-------------------------------------------*/

/*-----------------------------------------
    BUTTON STYLE
-------------------------------------------*/
.btn:focus {
    outline: 0;
}

.btn-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-wicon {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}

.btn-wicon svg,
.btn-wicon i {
    margin-right: 10px;
    line-height: 1;
}

.btn-square {
    height: 38px;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
    line-height: 18px;
}

.btn-outline-white {
    color: #fff;
    border-color: #fff;
}

.btn-outline-white:hover {
    color: #000;
    background-color: #fff;
    border-color: #fff;
}

.btnpd1020 {
    padding: 10px 20px;
}

.btnpd14 {
    padding: 14px;
}

.btnlogin {
    width: 220px;
    height: 56px;
}

.btn-underline {
    border-radius: 0;
    padding: 10px 0;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 2px solid #418f6e;
    color: #000;
}

.btn-underline:hover {
    color: #43b670;
    border-bottom: 2px solid #418f6e;
}

.btn-circle {
    border: 1px solid #fff;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: transparent;
}

.btn-circle:hover {
    background-color: #fff;
    color: #43b670;
}

.btn-outline-gray {
    border-color: #ececec;
    color: black;
}

.btn-black {
    background-color: black;
    color: white;
}

.btn-black:hover {
    background-color: #1b1b1b;
}

/*-----------------------------------------
    NAVBAR STYLE
-------------------------------------------*/
.line-gradientG {
    background-image: linear-gradient(to right,
            #418f6e 0%,
            #6db589 54%,
            #77f775 94%);
    width: 100%;
    height: 11px;
}

.head-top {
    background-color: #ffffff;
    padding: 30px 0;
}

.head-bottom {
    background-color: #f1f2f1;
}

.navbar-toggler {
    padding: 14px;
    line-height: 20px;
    border: 1px solid #ececec;
    border-radius: 0.375rem;
    margin-right: 5px;
}

.navbar-toggler-icon {
    padding-top: 5px;
}

#menu .nav-item.active .nav-link {
    color: #43b670;
}

/*-----------------------------------------
    Footer STYLE
-------------------------------------------*/
.bg-footer {
    background-image: url("../images/bg_footer.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-bottom .row {
    border-top: 1px solid #d3d3d3;
    padding: 20px 0 20px;
}

.box-icon {
    background-color: #43b670;
    border-radius: 4px;
    width: 34px;
    height: 34px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 34px;
    margin-bottom: 75px;
    z-index: 2;
}

.card-footer {
    background-color: white;
    position: relative;
    overflow: hidden;
    z-index: 0;
    width: 165px;
}

.card-footer:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 1rem;
    left: 1rem;
    background: #43b670;
    height: 34px;
    width: 34px;
    border-radius: 100%;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.6s ease-in-out;
}

.card-footer:hover:before {
    transform: scale(21);
}

.card-footer a {
    color: black;
    transition: color 0.6s ease-in-out;
}

.card-footer:hover a {
    color: white;
}

/*-----------------------------------------
    Accordion
-------------------------------------------*/
#accordionFlushFAQ .accordion-button:not(.collapsed) {
    color: black !important;
    background-color: transparent;
    box-shadow: none !important;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#accordionFlushFAQ .accordion-button {
    padding-left: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#accordionFlushFAQ .accordion-body {
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 2.5rem;
}

#accordionFlushFAQ.accordion {
    --bs-accordion-bg: transparent;
}

#accordionFlushFAQ .accordion-item {
    border: var(--bs-accordion-border-width) solid rgba(0, 0, 0, 0.4);
}

#accordionFlushFAQ.accordion-flush>.accordion-item {
    border-right: 0;
    border-left: 0;
    border-top: 0;
    border-radius: 0;
}

#accordionFlushFAQ .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-minus'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
    transform: rotate(-180deg);
}

#accordionFlushFAQ .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-plus'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5v14'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

/* ACC Filter Products */

#accordion-filter .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-minus'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
    transform: rotate(-180deg);
}

#accordion-filter .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-plus'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5v14'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

#accordion-filter .accordion-item {
    border: 0;
}

#accordion-filter .accordion-button {
    border-bottom: 1px solid #f1f2f1;
}

#accordion-filter .accordion-button:not(.collapsed) {
    color: #43b670;
    background-color: transparent;
    box-shadow: none;
}

#accordion-filter .accordion-button:focus {
    box-shadow: none;
}

/* ACC FAQ Products */

#accordion-faq.accordion {
    max-width: 920px;
    margin: 0 auto;
}

#accordion-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-minus'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
    transform: rotate(-180deg);
}

#accordion-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-plus'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5v14'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

#accordion-faq .accordion-item {
    border: 0;
}

#accordion-faq .accordion-button {
    border-bottom: 1px solid #f1f2f1;
}

#accordion-faq .accordion-button:not(.collapsed) {
    color: #43b670;
    background-color: transparent;
    box-shadow: none;
}

#accordion-faq .accordion-button:focus {
    box-shadow: none;
}

#accordion-course .accordion-button {
    background-color: #F5F5F5;
}

#accordion-course .accordion-button:not(.collapsed) {
    color: #43b670;
    box-shadow: none;
}

#accordion-course .accordion-button::after,
#accordion-course .accordion-button:not(.collapsed)::after {
    background-image: none;
    margin-left: 0;
}

/*-----------------------------------------
    CARD
-------------------------------------------*/
.card-benefit {
    padding: 20px;
    border-radius: 6px;
    height: 100%;
}

.card-benefit .boxicon-bnf {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    background-color: #43b670;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-benefit .boxicon-bnf svg {
    width: 40px;
    height: 40px;
    stroke-width: 1px;
}

.card-benefit .title-benefit {
    margin-top: 50px;
    margin-bottom: 30px;
    padding-right: 35px;
    min-height: 58px;
    color: black;
}

.card-benefit .detail-benefit {
    margin-bottom: 10px;
    min-height: 135px;
    color: black;
}

.card-benefit:hover {
    background-color: #43b670;
    transition: all 0.4s ease-in-out;
}

.card-benefit:hover .boxicon-bnf {
    background-color: #fff;
    color: #43b670;
    transition: all 0.4s ease-in-out;
}

.card-benefit:hover .text-green {
    color: white;
    transition: all 0.4s ease-in-out;
}

.card-benefit:hover .title-benefit {
    color: white;
    transition: all 0.4s ease-in-out;
}

.card-benefit:hover .detail-benefit {
    color: white;
    transition: all 0.4s ease-in-out;
}

.card-news .card-image {
    position: relative;
    overflow: hidden;
}

.card-news .card-image img {
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.4s ease-in-out;
}

.card-news:hover .card-image img {
    transform: scale(1.1);
    transition: transform 0.4s ease-in-out;
}

.card-news .box-date {
    color: white;
    position: absolute;
    top: 15px;
    left: 15px;
    border-radius: 8px;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 5px 15px;
}

.card-news .card-title {
    font-weight: 400;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 48px;
    margin: 10px 0;
}

.card-news:hover .btn-underline {
    color: #43b670;
    transition: color 0.3s ease-in-out;
}

.box-button {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.box-button img {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
    object-fit: cover;
    width: 100%;
}

.box-button:before {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.box-button .box-button-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 60px;
}

.box-button:hover img {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.box-button:hover:before {
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

.box-product {
    position: relative;
}

.box-product:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

.box-pdContent {
    background-color: #f1f2f1;
    border-radius: 5px;
    padding: 140px 30px 30px;
    margin-top: -100px;
}

.box-product img {
    height: 190px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.box-pdContent h4 {
    text-transform: uppercase;
}

/*-----------------------------------------
    Slide
-------------------------------------------*/
#homeSlide .item {
    position: relative;
}

#homeSlide .item img {
    height: 820px;
    object-fit: cover;
    width: 100%;
}

#homeSlide .content-slide {
    position: absolute;
    width: 80%;
    color: white;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#homeSlide .owl-dots {
    text-align: right;
    -webkit-tap-highlight-color: transparent;
    padding: 15px;
    width: auto;
    margin-top: 0;
    z-index: 2;
    position: absolute;
    bottom: 5%;
    right: 10%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    display: flex;
}

#homeSlide .owl-dots .owl-dot span {
    width: 5px;
    height: 5px;
    margin: 5px 7px;
    background: rgba(255, 255, 255, 0.6);
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 0.2sease;
    border-radius: 30px;
}

#homeSlide .owl-dots .owl-dot.active span,
#homeSlide .owl-dots .owl-dot:hover span {
    background: rgba(255, 255, 255, 1);
}

#newsSlide .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    margin-top: 0;
    z-index: 2;
    position: absolute;
    bottom: -10%;
    right: 0%;
    padding-left: 0;
}

#newsSlide .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 5px;
    background: #e0e0e0;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 0.2sease;
    border-radius: 30px;
}

#newsSlide .owl-dots .owl-dot.active span {
    background: #666666;
    width: 30px;
}

#newsSlide .owl-dots .owl-dot:hover span {
    background: #666666;
}

#productSlide .owl-nav {
    right: 10%;
    position: absolute;
    top: -26%;
}

#productSlide .owl-prev {
    right: 50px;
    left: auto;
}

#productSlide .owl-next {
    right: 0;
}

#productSlide .owl-prev,
#productSlide .owl-next {
    width: 40px;
    height: 40px;
    top: 0%;
    transform: translateY(0%);
}

#productSlide .owl-prev i,
#productSlide .owl-next i {
    transform: scale(1);
    color: #000;
    font-size: 32px;
}

/*-----------------------------------------
    PAGINATION STYLE
-------------------------------------------*/
.pagination {
    --bs-pagination-border-width: 0;
    --bs-pagination-color: #000;
    --bs-pagination-bg: #fff;
}

.active>.page-link,
.page-link.active {
    background-color: #43b670;
    border-color: #43b670;
}

/*-----------------------------------------
    FOLDER STYLE
-------------------------------------------*/
.folder {
    background-color: #43b670;
    border-radius: 5px;
    aspect-ratio: 4/3;
    width: 100%;
    position: relative;
}

.folder::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: #77f775;
    border-radius: 5px;
    z-index: -2;
    clip-path: polygon(38% 0, 46% 9%, 100% 9%, 100% 100%, 0 100%, 0 0);
}

.folder::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 100%;
    background-color: #fff;
    border-radius: 1px;
    z-index: -1;
}

.folder:hover::after {
    transform: translate(-50%, -5px);
    transition: all 0.3s ease-in-out;
}

/*-----------------------------------------
    RESPONSIVE
-------------------------------------------*/
@media screen and (max-width: 767px) {
    .pdfaq {
        padding: 20px;
    }

    .logo {
        width: 100px;
    }

    .head-top {
        padding: 10px 0;
    }

    #homeSlide .content-slide {
        width: 95%;
    }

    #homeSlide .item img {
        height: 620px;
    }

    .navbar-toggler {
        padding: 10px 14px;
    }

    .btnpd14 {
        padding: 10px 14px;
    }

    .homeSec1pd {
        padding: 20px 15px;
    }

    .container-fluidPD {
        padding-right: 0;
        padding-left: 15px;
    }

    #productSlide .owl-nav {
        right: 0%;
    }

    .box-button .box-button-content {
        padding: 0 30px;
    }

    .btn-circle {
        width: 40px;
        height: 40px;
    }

    .imgL-login {
        height: 400px;
        margin-bottom: 80px;
    }

    #loginF .w-75 {
        width: 90% !important;
    }

    .btnlogin {
        margin: 50px 0;
    }

    .pd-warranty {
        padding: 20px;
    }

}

@media screen and (max-width: 1023px) {
    .head-product {
        min-height: 380px;
        height: 100%;
        padding: 50px 0;
        text-align: center;
    }
}

@media screen and (min-width: 1024px) {
    .navbar-toggler {
        display: none;
    }
}

@media screen and (min-width: 320px) and (max-width: 374px) {}

@media screen and (min-width: 375px) and (max-width: 413px) {}

@media screen and (min-width: 414px) and (max-width: 424px) {}

@media screen and (min-width: 425px) and (max-width: 767px) {}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    #homeSlide .content-slide {
        width: 95%;
    }

    .homeSec1pd {
        padding: 20px 10px 0;
    }

    .container-fluidPD {
        padding-right: 0;
        padding-left: 15px;
    }

    #productSlide .owl-nav {
        right: 0%;
    }

    .pdfaq {
        padding: 50px 50px 50px 100px;
    }

    .box-button .box-button-content {
        padding: 0 20px;
    }

    .btn-circle {
        width: 45px;
        height: 45px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .pdfaq {
        padding: 50px 50px 50px 100px;
    }

    .container-fluidPD {
        padding-right: 0;
        padding-left: 15px;
    }

    .homeSec1pd {
        padding: 10px 20px 0;
    }

    .box-button .box-button-content {
        padding: 0 20px;
    }

    .btn-circle {
        width: 45px;
        height: 45px;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1359px) {
    .container-main {
        max-width: 1140px;
    }

    #productSlide .owl-nav {
        right: 5%;
    }

    .container-fluidPD {
        padding-left: 75px;
    }
}

@media screen and (min-width: 1360px) and (max-width: 1439px) {
    .container-main {
        max-width: 1140px;
    }

    .container-fluidPD {
        padding-left: 113px;
    }
}

@media screen and (min-width: 1440px) and (max-width: 1599px) {
    .container-main {
        max-width: 1320px;
    }

    .container-fluidPD {
        padding-left: 63px;
    }

    #productSlide .owl-nav {
        right: 5%;
    }
}

@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .container-main {
        max-width: 1320px;
    }

    .container-fluidPD {
        padding-left: 143px;
    }

    #productSlide .owl-nav {
        right: 10%;
    }
}

@media screen and (min-width: 1920px) and (max-width: 2559px) {}

@media screen and (min-width: 2560px) {}
