/*************************** COPYRIGHT ******************************
This website Developed by UNITECH BD SOFTWARE
Corporate Office: Plot #87, BNS Center (4th floor), Suite No. 507/A,
Sector #07, Uttara Model Town, Dhaka-1230, Bangladesh.
Phone: +88 02 7911423.
Cell: +88 01782 656 388, +88 01977 773 283, +88 01977 773 290.
Email: info@unitechbdsoft.com | admin@unitechbdsoft.com
Website: www.unitechbdsoft.com
*********************************************************************/

/* Normalize CSS
----------------------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html, body {
    overflow-x: hidden;
}

html {
    box-sizing: border-box;
}

body {
    font-family: "Sarabun", sans-serif;
    color: #4f5559;
    font-weight: 400;

}

ul {
    list-style: none inside none;
    margin: 0;
    padding: 0;
}

img {
    border: none;
}

/* Global Classes
----------------------------------------------------------------------------- */
.img {
    border: none;
    margin: 0 10px 5px 0;
    float: left;
}

.img3 {
    border: none;
    margin: 6px 10px 10px 0;
    float: left;
}

.main {
    margin: 0 auto;
    max-width: 1200px;
    display: block;
}

@media screen and ( max-width: 1210px ) {
    .main {
        padding: 0 15px;
    }
}

/* Header
--------------------------------------------------------------*/
#header {
    float: left;
    width: 100%;
    margin: 0;
}

.logo {
    margin-right: 40px;
    flex: 0 0 10%;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo a:active,
.logo a:visited {
    text-decoration: none;
}

.logo img {
    height: 50px;
}

.header__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

/* HEADER NAVIGATION */
.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 55%;
}

.header-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.header-nav-list li a i {
    color: #333;
    font-weight: 300;
    font-size: 21px;
}

.header-nav-list li:not(:last-child) {
    margin-right: 12px;
}

.header-nav-list li a:link,
.header-nav-list li a:visited {
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    color: #444;
    font-weight: 500;
    text-transform: uppercase;
    padding: 2px 10px;

    text-align: center;
    position: relative;
    transition: color .4s ease-in-out;
}

.header-nav-list li a:active,
.header-nav-list li a:hover {
    color: #333;
    border-bottom: none;
    outline: none;
}

.header-nav-list li a:before, .header-nav-list li a:after {
    content: "";
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 0;
    left: 50%;
    transition: all 0.3s ease 0s;
}

.header-nav-list li a:after {
    top: auto;
    bottom: 0;
}

.header-nav-list li a:hover:before, .header-nav-list li a:hover:after {
    width: 100%;
    left: 0;
}

.header-contact-box {
    display: flex;
    justify-content: flex-end;
    font-size: 18px;
    font-weight: 600;
    flex: 0 0 20%;
}

.header-contact-box i {
    font-size: 20px;
    margin: 4px 8px 0 0;
}

.header-contact-box a {
    text-decoration: none;
    color: #333;
    padding: 7px 12px 5px;
    border: 1px #ccc solid;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
}

.menu-icon {
    font-size: 22px;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu a {
    color: #fff;
    background-color: #1b1b1b;
    font-size: 15px;
    font-weight: 300;
    padding: 7px 20px;
    position: relative;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-mobile-nav {
    border: none;
    background: 0 0;
    cursor: pointer;
    display: none;
}

.icon-mobile-nav {
    height: 40px;
    width: 40px;
    color: #333;
}

.icon-mobile-nav[name=close-outline] {
    display: none;
}

/* Slider
----------------------------------------------------------------------------- */
.slider {
    float: left;
    width: 100%;
    height: 85vh;
    margin: 0 auto;
    position: relative;

    /* IN THE END */
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background-size: cover;
    background-position: center;

    /* THIS creates the animation! */
    transition: transform 1s;
}

.slide__wrapper {
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.09), rgba(0, 0, 0, 0.4));
}

.slide__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.5;
}

.slide__text-box h1 {
    margin-bottom: 1rem;
    display: inline-block;
    font-size: 50px;
    font-weight: 300;
    color: #ffffff;
}

.slide__text-box h1 span {
    font-weight: 500;
}

/*.slider__btn {
    position: absolute;
    top: 50%;
    z-index: 10;
    border: none;
    background: rgba(255, 255, 255, 0.7);
    color: #333;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    font-size: 25px;
    cursor: pointer;
    line-height: 1;
}*/

.slider__btn {
    position: absolute;
    top: 50%;
    z-index: 10;
    border: none;
    background: rgba(255, 255, 255, 0.7);
    color: #1b1b1b;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    font-size: 35px;
    cursor: pointer;
    line-height: 1;
    padding: 0; /* remove UA default padding */
    margin: 0; /* some browsers also add margin */
    font-family: inherit; /* use Sarabun's arrow glyph, not the OS UI font */
    display: flex; /* now actually center the glyph in the circle */
    align-items: center;
    justify-content: center;
}

.slider__btn--left {
    left: 6%;
    transform: translate(-50%, -50%);
}

.slider__btn--right {
    right: 6%;
    transform: translate(50%, -50%);
}

.dots {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dots__dot {
    border: none;
    background-color: #b9b9b9;
    opacity: 0.7;
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    margin-right: 1.75rem;
    cursor: pointer;
    transition: all 0.5s;
    box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.7);
}

.dots__dot:last-child {
    margin: 0;
}

.dots__dot--active {
    background-color: #f7f7f7;
    opacity: 1;
}

/* Display Center Intro
----------------------------------------------------------------------------- */
.display-intro {
    padding: 80px 0;
    float: left;
    width: 100%;
    background: #fff;
}

.display-intro__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.display-intro__content {
    max-width: 550px;
}

.display-intro__content h2 {
    margin: 0 0 25px;
    max-width: 550px;
    font-size: clamp(35px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.15;
    color: #182026;
    font-family: "Marcellus", serif;
}

.display-intro__content > p {
    margin: 0 0 16px;
    color: #3f464d;
    font-size: 16px;
    line-height: 1.7;
}

.display-intro__image {
    overflow: hidden;
    border-radius: 6px;
}

.display-intro__image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.2 / 0.8;
    object-fit: cover;
}

.display-intro__tag {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.display-intro__tag span {
    display: block;
    width: 35px;
    height: 2px;
    background: #008f4c;
}

.display-intro__tag em {
    color: #006f3a;
    font-size: 17px;
}

/* SHOWROOM EXPERIENCE
----------------------------------------------------------------------------- */
.showroom-experience {
    float: left;
    width: 100%;
    padding: 80px 0;
    background: #fafafa;
}

.showroom-experience .section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.showroom-experience .section-label {
    justify-content: center;
}

.showroom-experience .section-heading h2 {
    margin: 0 0 15px;
    font-size: clamp(35px, 4vw, 46px);
    font-weight: 500;
    line-height: 1.2;
    color: #172027;
    font-family: "Marcellus", serif;
}

.showroom-experience .section-heading > p {
    margin: 0;
    color: #68727c;
    font-size: 16px;
    line-height: 1.7;
}

/* SHOWROOM FEATURES */
.showroom-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
}

.showroom-feature {
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 7px 13px rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    border: 1px solid #eaeaea;
}

.showroom-feature__icon {
    display: grid;
    justify-content: center;
    place-items: center;
    margin: 20px;
}

.showroom-feature__icon img {
    height: 60px;
    filter: opacity(.8);
}

.showroom-feature h3 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 500;
    color: #20272d;
}

.showroom-feature p {
    color: #68727c;
    font-size: 15px;
    line-height: 1.7;
}

/* =================================
   TABLET
================================= */
@media (max-width: 1000px) {

    .display-intro__wrapper {
        gap: 40px;
    }

    .showroom-feature {
        padding: 20px 25px;
    }

}


/* =================================
   MOBILE
================================= */
@media (max-width: 700px) {

    .display-intro {
        padding: 60px 0;
    }

    .display-intro__wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .display-intro__content {
        max-width: none;
    }

    .display-intro__content h2 {
        font-size: 35px;
    }

    .showroom-experience {
        padding: 60px 0;
    }

    .showroom-experience .section-heading {
        margin-bottom: 35px;
    }

    .showroom-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .showroom-feature {
        padding: 0 20px 30px;
    }

    .showroom-feature + .showroom-feature {
        padding-top: 30px;
        border-top: 1px solid #ddd;
        border-left: 0;
    }

}

/* =================================
   SMALL MOBILE
================================= */
@media (max-width: 480px) {

    .display-intro__content h2,
    .showroom-experience .section-heading h2 {
        font-size: 28px;
    }

    .display-intro__tag {
        margin-top: 24px;
    }

}

/* About Intro
----------------------------------------------------------------------------- */
.about-intro {
    background: #fff;
    float: left;
    width: 100%;
    padding: 80px 0;
}

.about-intro__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.about-intro__image {
    overflow: hidden;
    border-radius: 5px;
}

.about-intro__image img {
    width: 100%;
    aspect-ratio: 1.1 / 0.85;
    object-fit: cover;
}

.about-intro__content h2 {
    font-family: "Marcellus", serif;
    font-size: 38px;
    line-height: 1.15;
    color: #182026;
    margin-bottom: 25px;
}

.about-intro__content > p {
    color: #3f464d;
    font-size: 16px;
    margin-bottom: 16px;
}

.about-intro__tag {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.about-intro__tag span {
    width: 35px;
    height: 2px;
    background: #008f4c;
}

.about-intro__tag em {
    color: #006f3a;
    font-size: 17px;
}

/* Why Us
----------------------------------------------------------------------------- */
.why-us {
    background: #f7f7f7;
    padding: 80px 0;
    float: left;
    width: 100%;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2 {
    font-size: 38px;
    line-height: 1.2;
    font-family: "Marcellus", serif;
    margin-bottom: 15px;
    color: #172027;
}

.section-heading > p {
    color: #68727c;
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
}

.feature-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    padding: 40px 25px;
    text-align: center;
    transition: transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-card__icon {
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__icon img {
    height: 60px;
    filter: opacity(.8);
}

.feature-card h3 {
    font-size: 23px;
    margin-bottom: 13px;
    color: #20272d;
    font-weight: 400;
}

.feature-card p {
    font-size: 15px;
    color: #68727c;
    line-height: 1.7;
}

/* =================================
   RESPONSIVE
================================= */
@media (max-width: 1000px) {
    .about-intro__wrapper {
        gap: 40px;
    }
}

@media (max-width: 700px) {
    .about-intro__wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-intro__content h2 {
        font-size: 28px;
    }
}

/* Section Display Center
----------------------------------------------------------------------------- */
.section-display-center {
    float: left;
    width: 100%;
    padding: 80px 0;
}

.display-center__wrapper {
    display: grid;
    gap: 70px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.display-center__visual img {
    display: block;
    width: 100%;
    border-radius: 3px;
}

#about-us {
    float: left;
    width: 100%;
    padding: 60px 0 90px;
}

.about-us {
    float: left;
    width: 100%;
}

.about-us-header {
    float: left;
    width: 100%;
    padding: 0 0 30px;
    font-size: 17px;
}

.about-us-header h2 {
    font-size: 35px;
    color: #000000;
    font-weight: 600;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.about-us-header a button {
    text-decoration: none;
    padding: 8px 12px;
    color: #000;
    border: none;
}

.about-us-header a button:hover {
    background: #02C945;
    color: #fff;
}

.about-header__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.about-us-button {
    float: right;
    font-size: 16px;
}

.about-us-button a {
    text-decoration: none;
    border: none;
}

/* HOME PRODUCTS
----------------------------------------------------------------------------- */
#home_products {
    float: left;
    width: 100%;
    padding: 80px 0;
    background-color: #f7f7f7;
}

#home_products .section-header-title-box {
    display: grid;
    grid-template-columns: max-content minmax(0, 55%);
    gap: 20px;
    color: #333;
    margin-bottom: 50px;
    align-items: end;
}

#home_products .section-header-title-box h2 {
    margin: 0;
    padding: 0;
    font-size: 38px;
    color: #333;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Marcellus", serif;
}

.header-desctiption {
    border-left: 1px solid #ddd;
    padding-left: 30px;
    margin-left: 30px;
}

.header-desctiption p {
    margin: 0;
    padding: 0;
}

.home_products {
    width: 100%;
    box-shadow: 2px 4px 9px 0 rgba(0, 0, 0, 0.12);
    margin: 0 0 35px;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
}

.home_products img {
    transition: filter .3s ease-in-out;
}

.home_products:hover img {
    filter: brightness(1.1) saturate(1.19);
}

.home_product_img img {
    width: 100%;
    height: 180px;
    transition: 0.3s;
}

.home_product_name {
    font-size: 16px;
    font-weight: 600;
    color: #d80621;
    text-align: left;
    text-wrap: wrap;
}

.home_product_name a {
    padding: 15px 20px;
    display: block;
    text-wrap: wrap;
    text-decoration: none;
    background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #ddd 50%);
    background-size: 220%;
    background-position: 100% 0;
    transition: all .4s ease-in-out;
    color: #333;
}

.home_products:hover .home_product_name a {
    background-position: 0 0;
    color: #333;
}

.home_product_img a {
    display: block;
}

.home_product_name img {
    height: 40px;
    text-align: center;
    margin-top: 20px;
}

.related-slider .tns-controls button {
    position: absolute;
    top: 40%;
    background: #fff;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
}

.related-slider .tns-controls button[data-controls="prev"] {
    left: -10px;
}

.related-slider .tns-controls button[data-controls="next"] {
    right: -10px;
}

.who {
    text-align: left;
    padding: 30px 0;
    float: left;
}

.container h3 {
    padding: 0 0 15px 0;
    margin: 0;
    font-size: 23px;
    color: #222;
}

.container h5 {
    padding: 10px 0 15px 0;
    margin: 0;
    font-size: 20px;
    color: #222;
    font-weight: 600;
    text-align: left;
}

.container h5 i {
    padding-right: 3px;
}

.img2 {
    float: right;
    padding: 0 0 10px 10px;
}

/* Section Global Grid
----------------------------------------------------------------------------- */
.section-global-grid {
    float: left;
    width: 100%;
    padding: 100px 0;
    background-color: #f7f7f7;
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.global-item {
    position: relative;
    display: block;
    height: 280px;
    border-radius: 3px;
    overflow: hidden;
    background: #e5e5e5;
    text-decoration: none;
    cursor: pointer;
}

.global-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    will-change: transform;
}

.global-item:hover .global-item-img {
    transform: scale(1.02);
}

.global-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.global-item:hover::before {
    height: 60%;
}

.global-item-overlay {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    padding: 7px 16px;
    text-align: center;
    width: 100%;
    z-index: 1;
    color: #fff;
}

.global-item-title {
    margin: 0;
    font-size: 25px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 2px rgb(0 0 0 / 0.82);
    font-family: "Marcellus", serif;
}

.global-item-text {
    margin: 4px 0 0;
    font-size: 13px;
    color: #f0f0f0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .section-global-grid {
        padding: 60px 0;
    }
}

@media (max-width: 600px) {
    .global-item-title {
        font-size: 23px;
    }
}

/* Section Advertise
----------------------------------------------------------------------------- */
.section-advertise {
    float: left;
    width: 100%;
}

.advertise__wrapper a {
    display: block;
    width: 100%;
    height: 400px;
}

.advertise__wrapper a img {
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .advertise__wrapper a {
        height: auto;
    }
}

/* Section Single Product Meta Info
--------------------------------------------------------------*/
.single-product-meta-info {
    padding-top: 50px;
}

.single-product-meta-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    font-size: 15px;
    color: #1b1b1b;
}

.single-product-meta-info ul li span {
    font-weight: 600;
    color: #333;
}

.single-product-meta-info ul li:not(:last-child) {
    margin-bottom: 10px;
}

/* Page Title
--------------------------------------------------------------*/
#page_title {
    width: 100%;
    float: left;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    border-bottom: 3px #f14e54 solid;
    overflow: hidden;
}

.page_title {
    width: 100%;
    float: left;
    color: #eee;
    padding: 100px 0;
    font-size: 16px;
    text-align: center;
}

.page_title h1 {
    font-size: 50px;
    text-shadow: 1px 1px 1px #444;
    text-transform: uppercase;
    text-align: center;
    font-family: "Marcellus", serif;
}

.page_title p {
    margin: 10px 0 0;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    padding: 4px 20px;
}


.product_img img {
    width: 100%;
    height: 250px;
    border: 1px solid #ddd;
    box-shadow: 0 0 2px #bbb;
    border-bottom: 1px solid #02C945;
}

.product_img2 img {
    width: 100%;
    box-shadow: 0 0 2px #bbb;
}

.products_box {
    width: 100%;
    box-shadow: 2px 4px 9px 0 rgba(0, 0, 0, 0.12);
    margin: 0 0 20px;
    background: #fff;
}

.product_name {
    padding: 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #ed1c24;
    text-align: center;
    background: #fff;
    border-top: none;
    border-bottom: 4px solid #02C945;
}

.product_name a {
    color: #111;
}

.product_details h3 {
    color: #02C945;
    font-weight: 600;
}

.product_name img {
    height: 40px;
    text-align: center;
    margin-top: 20px;
}

.list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.list li {
    list-style: none;
    margin-bottom: 5px;
}

.list i {
    color: #555;
    margin-right: 3px;
}

.list2 {
    padding: 0;
    margin: 0 0 20px 20px;
    list-style: none;
}

.list2 li {
    list-style: none;
    margin-bottom: 4px;
    text-align: left;
}

.list2 i {
    color: #555;
    margin-right: 3px;
}

.index_img {
    float: right;
    width: 80%;
}

#container {
    float: left;
    width: 100%;
    padding: 60px 0;
    background: #fff;
}

.container {
    width: 100%;
    text-align: justify;
    font-size: 15px;
    float: left;
    color: #222;
}

/* Footer Top
--------------------------------------------------------------*/
#footer-top {
    width: 100%;
    overflow: hidden;
    padding: 50px 0 30px;
    background: #1b1b1b;
}

#footer {
    width: 100%;
    overflow: hidden;
    background: #1b1b1b;
    background-size: cover;
}

.footer_main {
    margin: 0 auto;
    max-width: 1200px;
    color: #bbb;
}

.fotter-right img {
    height: 25px;
    margin-right: 3px;
}

.fotter-right p:not(:last-child) {
    margin-bottom: 7px;
}

.fotter-right i {
    color: #bbb;
    margin-right: 3px;
}

.footer_main h3 {
    font-size: 24px;
    margin-bottom: 20px;
    padding: 0;
    color: #eee;
    font-weight: 500;
}

.footer {
    float: left;
    width: 100%;
    font-size: 15px;
}

.footer i {
    color: #bbb;
}

.footer-center i {
    margin-right: 5px;
}

.footer-right p i {
    margin-right: 8px;
}

.footer a {
    font-weight: normal;
    color: #bbb;
    text-decoration: none;
    margin: 0 2px;
}

.footer a:hover {
    color: #fff;
    text-decoration: none;
}

.footer_list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.footer_list li {
    padding: 0;
    margin-bottom: 7px;
}

/* FOOTER SOCIAL */
.footer_social {
    float: left;
    font-size: 15px;
    font-weight: 500;
    color: #bbb;
    margin: 28px 0 0;
}

/* COPYRIGHT */
.copyright {
    font-size: 13px;
    float: left;
    text-align: center;
    width: 100%;
    background: #141212;
    padding: 10px 15px;
}

.copyright a {
    color: #ccc;
    text-decoration: none;
}

.footer_address {
    line-height: 24px;
}

.footer-left {
    padding: 0 20px 0 0;
}

.footer-center {
    padding-left: 20px;
}

.footer-center ul {
    float: left;
}

.footer-bottom {
    margin-top: 50px;
    width: 100%;
    border-top: 1px #3b3b3b solid;
    padding: 30px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.footer-bottom p {
    margin: 0;
    padding: 0;
}

/* =========================================================
   LARGE TABLET
========================================================= */

@media screen and (max-width: 991px) {

    #footer-top {
        padding: 60px 0 30px;
    }

    .footer-left {
        padding-right: 15px;
    }

    .footer-center {
        padding-left: 10px;
    }

    .footer_main h3 {
        font-size: 22px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 767px) {

    #footer-top {
        padding: 50px 0 40px;
    }

    .footer_main {
        padding: 0 25px;
    }

    .footer-left,
    .footer-center,
    .fotter-right {
        padding: 0;
        margin-bottom: 35px;
    }

    .footer_main h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .footer-left p {
        line-height: 1.7;
    }

    .footer-center ul {
        float: none;
    }

    .footer_list li {
        margin-bottom: 10px;
    }

    .fotter-right p {
        line-height: 1.7;
        margin-bottom: 10px;
    }

    .footer-bottom {
        margin-top: 0;
        padding: 0;
    }

    .footer-bottom p {
        font-size: 14px;
    }

    .footer-bottom > p:first-child {
        padding-top: 14px;
        line-height: 1.5;
    }

    .fotter-right p:not(:last-child) {
        margin-bottom: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 480px) {

    .footer_main {
        padding: 0 20px;
    }

    .footer-left,
    .footer-center,
    .fotter-right {
        margin-bottom: 30px;
    }

    .footer_main h3 {
        font-size: 20px;
    }

    .footer {
        font-size: 14px;
    }

    .footer-left p {
        font-size: 14px;
        line-height: 1.5;
    }

    .footer_list li {
        margin-bottom: 7px;
    }

    .fotter-right p {
        font-size: 14px;
        line-height: 1.8;
        word-break: break-word;
    }

    .footer-bottom {
        margin-top: 0;
        padding-top: 20px;
        line-height: 1;
    }

    .footer-bottom p {
        font-size: 13px;
    }

}

#wrapper {
    margin: 0;
    padding: 70px 0 100px;
    width: 100%;
    float: left;
}

.about-us h2 {
    font-size: 35px;
}

.about-us h4 {
    letter-spacing: 7px;
}

.about-us-img {
    float: left;
    width: 100%;
}

.about-us-img img {
    float: left;
    width: 100%;
    height: 270px;
}

.main_body {
    margin: 0 auto;
    max-width: 1170px;
    display: block;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.8);
}

.main_body h3 {
    font-size: 26px;
    margin-bottom: 20px;
    padding: 0;
    color: #157700;
    font-weight: 600;
}

/* Commitment
--------------------------------------------------------------*/
#commitment {
    float: left;
    width: 100%;
    display: flex;
}

.commitment-left {
    width: 50%;
    background: #02C945;
    padding: 50px 40px 50px 100px;
    color: #fff;
    font-size: 15px;
}

.commitment-left h2 {
    font-size: 35px;
    font-weight: 600;
    padding-bottom: 20px;
    font-family: "Marcellus", serif;
}

.commitment-left ul {
    float: left;
    margin: 0;
    padding: 0;
}

.commitment-left ul li {
    list-style: none;
    font-size: 18px;
    margin-bottom: 15px;
}

.commitment-left ul li i {
    margin-right: 20px;
}

.commitment-right {
    width: 50%;
    height: 400px;
    background-size: cover;
}

/* About Hero
--------------------------------------------------------------*/
.about-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    height: 100vh;
    text-align: center;
    color: #fff;
}

.about-hero h3 {
    font-size: 55px;
}

.about-hero p {
    padding: 15px 150px;
    font-size: 27px;
}

#about-hero-bottom {
    display: flex;
    width: 100%;
    background: #02C945;
    padding: 50px 0;
    font-size: 30px;
    text-align: center;
    color: #fff;
}

#about-details {
    display: flex;
}

.about-details-left {
    width: 50%;
    padding: 40px 40px 40px 100px;
    background: #eee;
    text-align: justify;
}

.about-details-left h3 {
    font-size: 35px;
    line-height: 1.5;
    /* line-height: 55px; */
    padding-bottom: 20px;
    text-align: left;
}

.about-details-left p {
    font-size: 16px;
}

.about-details-right {
    width: 50%;
}

.about-details-right img {
    width: 100%;
    min-height: 520px;
}

#our-promise {
    float: left;
    width: 100%;
    padding-top: 300px;
    background-size: cover;
}

.our-promise {
    float: right;
    width: 70%;
    padding: 60px;
    background: #02C945;
    color: #fff;
}

.our-promise h3 {
    font-size: 41px;
    padding-bottom: 20px;
}

.our-promise ul {
    float: left;
    margin: 0;
    padding: 0;
}

.our-promise ul li {
    list-style: none;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.our-promise ul li i {
    margin-right: 10px;
}

/* Single Product
----------------------------------------------------------------------------- */
.section-single-product {
    padding: 80px 0;
    float: left;
    width: 100%;
}

.product-gallery {
    display: grid;
    gap: 12px;
    margin-bottom: 40px;
}

.product-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    display: block;
    transition: transform 0.3s ease;
}

.product-gallery a {
    overflow: hidden;
    border-radius: 6px;
    display: block;
}

.product-gallery a:hover img {
    transform: scale(1.04);
}

/* Default grid template area setup */
.product-gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
}

.product-gallery a:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

/* ===== 5 images (full layout, like Vinno Jogot) ===== */
.product-gallery[data-count="5"] a:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.product-gallery[data-count="5"] a:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.product-gallery[data-count="5"] a:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.product-gallery[data-count="5"] a:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.product-gallery[data-count="5"] a:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* ===== 4 images (drop one small tile, still balanced) ===== */
.product-gallery[data-count="4"] {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
}

.product-gallery[data-count="4"] a:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.product-gallery[data-count="4"] a:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.product-gallery[data-count="4"] a:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.product-gallery[data-count="4"] a:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}

/* ===== 3 images (big + 2 stacked) ===== */
.product-gallery[data-count="3"] {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 220px);
}

.product-gallery[data-count="3"] a:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.product-gallery[data-count="3"] a:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.product-gallery[data-count="3"] a:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* ===== 2 images (side by side, equal) ===== */
.product-gallery[data-count="2"] {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 320px;
}

.product-gallery[data-count="2"] a:nth-child(1),
.product-gallery[data-count="2"] a:nth-child(2) {
    grid-column: span 1;
    grid-row: 1 / 2;
}

/* ===== 1 image (single full-width hero) ===== */
.product-gallery[data-count="1"] {
    grid-template-columns: 1fr;
    grid-template-rows: 400px;
}

.product-gallery[data-count="1"] a:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

/* ===== 6+ images: fallback to a clean uniform grid, wraps naturally ===== */
.product-gallery[data-count="6"],
.product-gallery.overflow {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: unset;
    grid-auto-rows: 220px;
}

.product-gallery.overflow a {
    grid-column: unset !important;
    grid-row: unset !important;
}

@media (max-width: 768px) {
    .product-gallery,
    .product-gallery[data-count] {
        grid-template-columns: 1fr !important;
        grid-template-rows: unset !important;
        grid-auto-rows: 240px;
    }

    .product-gallery a,
    .product-gallery[data-count] a {
        grid-column: 1 / 2 !important;
        grid-row: unset !important;
    }
}

.single-product__text-box {
    font-size: 16px;
    line-height: 1.6;
}

.single-product__text-box p:not(:last-child) {
    margin-bottom: 10px;
}

.single-product__text-box h2 {
    color: #333;
}

.single-product__text-box h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    border-left: 4px solid #b8895f;
    padding-left: 12px;
}

/* Specs Table */
.single-product__text-box table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.single-product__text-box thead {
    background-color: #1a1a1a;
}

.single-product__text-box thead th {
    color: #fff;
    text-align: left;
    padding: 14px 18px;
    font-size: 14px;
    text-transform: uppercase;
}

.single-product__text-box tbody tr {
    border-bottom: 1px solid #eee;
}

.single-product__text-box tbody tr:nth-child(even) {
    background-color: #f9f7f5;
}

.single-product__text-box tbody tr:hover {
    background-color: #f1ece6;
}

.single-product__text-box td {
    padding: 14px 18px;
    font-size: 15px;
    color: #333;
}

.single-product__text-box td:first-child {
    font-weight: 600;
    color: #555;
    width: 30%;
}

/* Feature List — targets plain <ul> inside the text box */
.single-product__text-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.single-product__text-box ul li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.single-product__text-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #b8895f;
    font-weight: bold;
    font-size: 16px;
}

@media (max-width: 600px) {
    .single-product__text-box ul {
        grid-template-columns: 1fr;
    }

    .single-product__text-box td:first-child {
        width: 40%;
    }
}

/* Section Product Related
----------------------------------------------------------------------------- */
.single-product-related {
    width: 100%;
    float: left;
    padding: 80px 0;
    background-color: #f7f7f7;
}

.single-product-related__title {
    margin: 0 0 35px;
    color: #333;
    font-size: 29px;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
}

.single-product-related__carousel {
    position: relative;
    width: 100%;
}

.single-product-related__viewport {
    width: 100%;
    overflow: hidden;
}

.single-product-related__track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.single-product-related__slide {
    flex: 0 0 25%;
    padding: 0 10px;
    box-sizing: border-box;
}

.single-product-related__card {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.single-product-related__card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.single-product-related__image {
    width: 100%;
    overflow: hidden;
}

.single-product-related__image a {
    display: block;
}

.single-product-related__image img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.single-product-related__name {
    display: flex;
    align-items: flex-start;
    padding: 16px 24px;
    box-sizing: border-box;
}

.single-product-related__name a {
    display: block;
    color: #111;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
}

.single-product-related__name a:hover {
    color: #333;
}

.single-product-related__btn {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.single-product-related__btn:hover {
    background-color: #f2f2f2;
    border-color: #ccc;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.single-product-related__btn:focus-visible {
    outline: 2px solid #333;
    outline-offset: 3px;
}

.single-product-related__btn--prev {
    left: -20px;
}

.single-product-related__btn--next {
    right: -20px;
}


/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 992px) {

    .single-product-related {
        padding: 70px 0;
    }

    .single-product-related__title {
        margin-bottom: 30px;
        font-size: 27px;
    }

    .single-product-related__slide {
        flex: 0 0 50%;
    }

    .single-product-related__btn--prev {
        left: -15px;
    }

    .single-product-related__btn--next {
        right: -15px;
    }
}


/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 600px) {

    .single-product-related {
        padding: 60px 0;
    }

    .single-product-related__title {
        margin-bottom: 25px;
        font-size: 24px;
    }

    .single-product-related__slide {
        flex: 0 0 100%;
        padding: 0 5px;
    }

    .single-product-related__image img {
        height: 220px;
    }

    .single-product-related__name {
        min-height: 75px;
        padding: 16px 20px;
    }

    .single-product-related__name a {
        font-size: 17px;
    }

    /*
     * Keep navigation buttons inside the section
     * on smaller screens.
     */
    .single-product-related__btn--prev {
        left: 10px;
    }

    .single-product-related__btn--next {
        right: 10px;
    }
}

/* ==========================================================================
   Small Mobile
   ========================================================================== */
@media (max-width: 400px) {
    .single-product-related {
        padding: 50px 0;
    }

    .single-product-related__title {
        font-size: 22px;
    }

    .single-product-related__image img {
        height: 200px;
    }

    .single-product-related__name {
        min-height: 75px;
        padding: 15px 18px;
    }

    .single-product-related__name a {
        font-size: 16px;
    }

    .single-product-related__btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
}

/* Section Contact
----------------------------------------------------------------------------- */
.section-contact {
    float: left;
    width: 100%;
    padding: 80px 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 60px;
}

.contact__content {
    background-color: #f7f7f7;
    padding: 20px 30px;
    border-radius: 3px;
    font-size: 16px;
}

.contact__content h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "Marcellus", serif;
    color: #333;
}

.intro-line {
    font-size: 15px;
    margin-bottom: 40px;
}

.contact__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns:38px 1fr;
    row-gap: 16px;
    column-gap: 26px;
}

.contact__list li {
    display: contents;
}

.contact__icon {
    height: 40px;
    width: 40px;
    border-radius: 5px;
    background-color: #bd333933;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #262626;
}

.contact__icon ion-icon {
    font-size: 23px;
}

.contact__copy {
    line-height: 1.1;
}

.contact__label {
    color: #6e6e6e;
    font-size: 15px;
    text-wrap: wrap;
    margin: 0 0 5px 0;
}

.contact__value {
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}
