/* General Settings
--------------------------------------------------------------*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
}

img {
    border: none;
}

.img {
    border: none;
    margin: 0 10px 5px 0;
    float: left;
}

.main {
    margin: 0 auto;
    max-width: 1130px;
    padding: 0 15px;
}

/* Toppeer
--------------------------------------------------------------*/
#topper {
    width: 100%;
    padding: 6px 0;
    background: #efefef;
    border-bottom: 1px #ccc solid;
}

.top {
    width: 100%;
    display: inline-block;
}

/* Header
--------------------------------------------------------------*/
.header {
    height: 140px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.02);
}

.header__logo-link {
    text-decoration: none;
    border-radius: 2px;
    padding-right: 20px;
    border-right: 1px solid #e7e7e7;
    display: flex;
    align-items: center;
}

.header__logo-link:hover,
.header__logo-link:active {
    text-decoration: none;
    outline: none;
}

.header__logo-link h1 {
    font-size: 30px;
    color: #000;
    padding: 0;
    margin-bottom: 5px;
}

.header__logo {
    display: block;
    height: 90px;
    margin-right: 12px;
}

.header__logo-text {
    font-size: 14px;
    color: #267A1A;
    font-weight: 500;
}

/* NAV LIST (Desktop) */
.header-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    column-gap: 25px;
}

.header-nav__list li a:active,
.header-nav__list li a:focus,
.header-nav__list li a:focus-visible {
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

/* HEADER NAV LINK (Desktop) */
.header-nav__link:link,
.header-nav__link:visited {
    text-decoration: none;
    color: #444;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: color 0.3s ease-in-out;
}

.header-nav__link [name="home-outline"] {
    font-size: 20px;
}

.header-nav__link:hover,
.header-nav__link:active {
    color: #407334;
}

.header-nav__item {
    position: relative;
}

.dropdown__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    /* Keep this */
    top: 60px;
    /* CHANGE THIS VALUE! Start with 7rem and increase if needed. */
    left: 0;
    /* Keep this to align with the parent nav item */
    min-width: 160px;
    z-index: 9999;
    /* Ensure it's above other content */
    background-color: #fff;
    /* Good idea to explicitly set a background color */

    /* Hide by default (desktop) */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    /* This initial transform will push it down a bit further */
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0.3s;
}

.dropdown__menu li a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    display: block;
    padding: 10px 15px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    white-space: nowrap;
}

.dropdown__menu li a:hover,
.dropdown__menu li a:active {
    color: #333;
}

/* Ensure the hover effect brings it to the correct position */
.header-nav__item:hover > .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-login-link {
    text-decoration: none;
    border-radius: 3px;
    background-color: #9F0909;
    transition: all 0.3s;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    display: inline-block;
}

.header-login-link:hover {
    background-color: #3c599b;
}

/* BTN Mobile NAV (Hamburger/Close button) */
.btn-mobile-nav {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: none;
    /* Hidden on desktop by default */
}

.btn-mobile-nav [name="close-outline"] {
    display: none;
}

/* Icon Mobile NAV styling */
.icon-mobile-nav {
    height: 38px;
    width: 38px;
    color: #333;
}

.header__email-box {
    display: flex;
    align-items: stretch;
    color: #333;
    font-size: 14px;
    padding-left: 20px;
    border-left: 1px solid #e7e7e7;
    align-self: center;
}

.header-email__icon-box {
    font-size: 45px;
    color: #ddd;
    margin-left: 10px;
}

.header-email__text-box {
    text-align: right;
}

.header-email__text-box span {
    display: block;
}

.email-inquiry {
    margin-bottom: 5px;
    font-size: 15px;
}

.email-address {
    font-size: 17px;
    color: #333;
}


/* Header
--------------------------------------------------------------*/
/*#header {
    width: 100%;
    padding: 20px 0;
    background: #fff;
}

.header {
    width: 100%;
    display: inline-block;
}

.logo a {
    float: left;
    display: flex;
    align-items: center;
    font-size: 30px;
    color: #267A1A;
    font-weight: 500;
    text-decoration: none;
}

.logo a img {
    display: block;
    height: 90px;
    margin-right: 15px;
}

.header-right {
    float: right;
    margin-top: 20px;
}

.top {
    float: right;
}

.top i {
    color: #666;
    margin-left: 8px;
    font-size: 52px;
    float: right;
}

.top_mail {
    float: right;
    padding: 0;
    text-align: right;
    margin-top: 4px;
}

.top_mail span {
    font-size: 18px;
    font-weight: 600;
}

.header-menu {
    margin-top: 12px;
}

.header-menu ul {
    float: right;
    list-style: none;
    border: 1px #ccc solid;
    border-right: none;
    border-radius: 5px;
    margin: 0;
    padding: 0;
}

.header-menu ul li {
    float: left;
    border-right: 1px #ccc solid;
}

.header-menu ul li a {
    font-weight: 500;
    text-align: center;
    font-size: 14px;
    padding: 5px 17px;
    color: #777;
    text-decoration: none;
    display: block;
    transition: .5s;
}

.header-menu ul li a:hover {
    color: #eee;
    background: #333;
}*/

/* Menu Section
----------------------------*/
/*#menu {
    width: 100%;
    background: #1b1b1b;
    float: left;
}

#menu2 {
    width: 100%;
    float: left;
}

.menu {
    width: 100%;
    float: left;
    border-left: 1px #005929 solid;
    border-right: 1px #005929 solid;
}

.navbar2 {
    width: 100%;
}

.navbar-inner2 {
    margin: 0 auto;
    height: 100%;

}

.nav2,
.nav2 ul,
.nav2 li,
.nav2 a {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.nav2 {
    position: relative;
    z-index: 50;
}

.nav2 li {
    position: relative;
    list-style: none;
    float: left;
    display: block;
}

.nav2 li a {
    position: relative;
    padding: 10px 22px;
    display: block;
    border-right: 1px solid #005929;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    transition: .4s;
}

.nav2 li:first-child a {
    border-left: none;
}

.nav2 li:last-child a {
    border-right: none;
}

.nav2 li:hover > a {
    color: #fff;
    background: #005929;
    display: block;
}

!* Sub navigation *!
.nav2 ul {
    position: absolute;
    z-index: 100;
    top: 38px;
    left: 0;
    background: #fff;
    margin-left: -1px;

    border: 1px #005929 solid;
    border-bottom: 6px #005929 solid;
    opacity: 0;
    border-top: none;
}

.nav2 li:hover ul {
    opacity: 0.9;
}

.nav2 ul li {
    height: 0;
    overflow: hidden;
    padding: 0;

    -webkit-transition: height .10s ease-in-out .0s;
    -moz-transition: height .10s ease-in-out .0s;
    -o-transition: height .10s ease-in-out .0s;
    -ms-transition: height .10s ease-in-out .0s;
    transition: height .10s ease-in-out .0s;
}

.nav2 li:hover > ul li {
    height: 35px;
    overflow: visible;
    padding: 0;
}

.nav2 ul li a {
    width: 200px;
    padding: 8px 0 9px 10px;
    margin: 0;
    font-weight: normal;
    border: none;
    border-bottom: 1px solid #ccc;
    color: #000;
    text-transform: capitalize;
    transition: .4s;
    border-radius: 2px;
}

.nav2 ul li a:hover {
    color: #fff;
    background: #005929;
    border-top: none;
}

.nav2 ul li:last-child a {
    border: none;
}*/

/*  About Us
--------------------------------------------------------------*/
#about-us {
    float: left;
    width: 100%;
    padding: 80px 0;
    position: relative;
    background-image: linear-gradient(to bottom, rgba(227, 227, 227, 0.05), rgba(191, 191, 191, 0.4));
}

.about-us__overlay img {
    position: absolute;
    top: 20%;
    left: 0;
    z-index: -1;
}

.about-us-top-box {
    display: flex;
    color: #444;
}

.heading-secondary {
    margin: 0;
    padding: 0;
    font-size: 40px;
    color: #1a1a1a;
    text-transform: uppercase;
    font-weight: 600;
}

.about-us-top-left h2 {
    position: relative;
    margin-bottom: 10px;
}

.about-us-top-left h2::before {
    position: absolute;
    content: "";
    width: 85px;
    height: 2px;
    left: -100px;
    background: #333;
    top: 20px;
    overflow: hidden;
}

.about-us-top-left {
    flex: 0 0 40%;
    padding-right: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.about-us-top-left a {
    font-size: 14px;
}

.about-us-top-right {
    flex: 0 0 60%;
}

.about-us-top-right-img {
    position: relative;
    height: 450px;
    width: 50%;
    border-radius: 3px;
    background-size: cover;
    object-fit: cover;
}

.about-us-top-right-text-box {
    font-size: 38px;
    z-index: 200;
    position: absolute;
    top: 28%;
    left: 36%;
    font-weight: 300;
}

.about-us-top-right-text-box span {
    display: block;
    color: #d1d1d1;
    text-align: left;
    font-size: 32px;
}

.about-us-top-right-text-box span:not(:last-child) {
    margin-bottom: 15px;
}

.about-message {
    font-size: 70px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.about-us-bottom-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.about-us-bottom-left {
    flex: 0 0 50%;
    display: flex;
    justify-content: end;
    margin-top: -60px;
}

.about-us-bottom-left-img {
    height: 450px;
    width: 60%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 3px;
}

.about-us-bottom-right {
    flex: 0 0 40%;
    font-size: 30px;
    color: #000;
    text-align: center;
}

.about-us-bottom-right i {
    color: #333;
}

/* Slider
--------------------------------------------------------------*/
.slider {
    float: left;
    width: 100%;
    height: 95vh;
    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: 55%;
    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: 3rem;
    width: 3rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.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;
}

/* Section Page Header
--------------------------------------------------------------*/
.section-page-header {
    height: 45vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.page-header__wrapper {
    font-size: 18px;
}

.page-header__wrapper h2 {
    font-size: 40px;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.page-header__content {
    width: 80%;
    margin: 0 auto;
    font-size: 16px;
    color: #f7f7f7;
    font-weight: 300;
    line-height: 1.6;
}

.page-header__content h1 {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Page Title
--------------------------------------------------------------*/
#page-title {
    width: 100%;
    float: left;
    background: url(../images/background-images/global-page-header-banner.webp) top center;
    background-size: cover;
}

#page-title-top {
    width: 100%;
    float: left;
    padding: 40px 0 55px;
}

.page-title-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    float: left;
    padding: 100px 0 120px;
    text-align: center;
}

.page-title h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 45px;
}

#page-title i {
    margin-right: 3px;
}


/* Container Section
----------------------------*/
#container {
    width: 100%;
    padding: 50px 0;
    float: left;
}

#container2 {
    float: left;
    width: 100%;
    padding: 80px 0;
}

#container2 i {
    margin-right: 5px;
}

.contain {
    float: left;
    width: 100%;
    font-size: 16px;
    line-height: 25px;
    color: #222;
}

.contain h3 {
    padding: 0 0 11px 0;
    margin: 0 0 10px;
    border-bottom: 1px #ccc dashed;
}

.about {
    text-align: justify;
}

.about ul {
    margin-left: 20px;
    padding: 0;
    list-style: none;
}

.about ul li {
    margin-bottom: 10px;
}

.welcome {
    float: left;
    width: 100%;
    text-align: center;
    padding: 40px 0 0;
    font-size: 18px;
}

.welcome h2 {
    padding: 0 0 13px 0;
    margin: 0 0 13px;
    border-bottom: 1px #ccc dashed;
    font-size: 36px;
    text-transform: uppercase;
}

.welcome-image {
    padding: 30px 0 40px 45px;
    width: 100%;
    float: left;
}

.welcome-img-box-1 {
    float: left;
    width: 320px;
    height: 320px;
    background: url(../images/home-box-1.jpg) center center no-repeat;
    margin-right: 20px;
    margin-bottom: 20px;
}

.welcome-img-box-2 {
    float: left;
    width: 320px;
    height: 320px;
    background: url(../images/home-box-2.jpg) center center no-repeat;
    margin-right: 20px;
    margin-bottom: 20px;
}

.welcome-img-box-3 {
    float: left;
    width: 320px;
    height: 320px;
    background: url(../images/home-box-3.jpg) center center no-repeat;
    margin-bottom: 20px;
}

.welcome-img-icon {
    width: 200px;
    height: 200px;
    margin: 60px auto 0;
    text-align: center;
    background: rgba(255, 255, 255, .8);
    transition: .4s;
}

.welcome-img-icon:hover {
    background: #fff;
    cursor: move;
}

.welcome-img-icon h4 {
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 27px;
    color: #444;
}

.welcome-img-icon img {
    margin-top: 20px;
}

.sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 7px;
}

.sidebar ul li a {
    padding: 8px 17px;
    background: #222;
    text-decoration: none;
    color: #eee;
    display: block;
    transition: .4s;
    border-radius: 3px;
}

.sidebar ul li a:hover {
    color: #222;
    background: #cdcdcd;
}

/*  Section Parent Page Products
--------------------------------------------------------------*/
.section-home-products {
    padding: 80px 0;
    float: left;
    width: 100%;
}

.section-home-products h2 {
    margin-bottom: 15px;
    text-align: center;
}

.home-page-products p {
    width: 70%;
    font-size: 15px;
    color: #333;
    margin: 0 auto;
    text-align: center;
}

.home-page-products__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.home-products__content__item:nth-child(even) {
    margin-top: 30px;
}

.home-products__content__item {
    position: relative;
}

.home-products__content__item a {
    text-decoration: none;
    transition: all .4s ease-out;
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid #f7f7f7;
}

.home-products__content__item a:hover {
    transform: translateY(-2px);
}

.home-product__img-box {
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.home-product__img-box img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease-out;
}

.parent-products__link-box a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    border-radius: 3px;
    border: 1px solid #4E9B40;
    /*border: 1px solid #ccc;*/
    margin-top: 70px;
    padding: 8px 20px;
    transition: all 0.3s ease-in;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.parent-products__link-box {
    text-align: center;
}

.parent-products__link-box a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #333;
    transition: left 0.4s ease-in-out;
    z-index: -1;
}

.parent-products__link-box a:hover::before {
    left: 0;
}

.parent-products__link-box a:hover {
    color: #fff;
    border-color: #333;
}

/* Before & After Effect */
.home-product__img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

.home-products__content__item a:hover .home-product__img-box::before {
    opacity: 1;
}

.home-products__content__item a:hover .home-product__img-box img {
    transform: scale(1.1);
}

/* Optional: Add a subtle border on hover */
.home-products__content__item a:hover .home-product__img-box {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Optional: add a grayscale before hover, and color on hover. */
.home-product__img-box img {
    filter: grayscale(10%);
    transition: filter 0.4s ease-out, transform 0.4s ease-out;
}

.home-products__content__item a:hover .home-product__img-box img {
    filter: grayscale(0%);
}

.home-products__content__item a:hover .home-product__img-box img {
    transform: scale(1.2) rotate(2deg); /* Zoom and rotate */
}

/* Products Filtering
--------------------------------------------------------------*/
.product-filters {
    padding: 0;
    margin-bottom: 40px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-btn {
    border: 1px solid #ddd;
    background-color: #f7f7f7;
    padding: 8px 18px;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #1b1b1b;
    color: #fff;
}

/* Section Products
--------------------------------------------------------------*/
.section-products {
    padding: 80px 0;
    background-color: #fafafa;
    float: left;
    width: 100%;
}

.product-card__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 30px;
}

.product-card__item {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    transition: all .4s ease-out;
}

.product-card__item a {
    display: block;
    position: relative;
    height: 280px;
    border-radius: 3px;
    border: 1px solid #ececec;
}

.product-card__item img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.product-card__item:hover img {
    filter: brightness(0.7);
}

.product-card__item {
    transition: all .4s ease-out;
}

.product-card__item:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
    transform: translateY(-10px);
}

.product-card__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card__item:hover .product-card__icon {
    opacity: 1;
}

.product-card__icon img {
    height: 45px;
}

/* Why-us Section
----------------------------*/
#why-us {
    width: 100%;
    float: left;
    height: 60vh;
    background: url(../images/bg-2.jpg) center center fixed;
    background-size: cover;
}

.why-us-overlay {
    width: 100%;
    background: rgba(0, 0, 0, .5);
    float: left;
    height: 100%;
}

.why-us {
    float: left;
    width: 100%;
    font-size: 16px;
    line-height: 25px;
    color: #ddd;
    text-align: center;
}

.why-us h2 {
    color: #fff;
    font-size: 36px;
    padding-bottom: 35px;
    text-transform: uppercase;
}

.why-us-image {
    padding: 0 0 0 45px;
    width: 100%;
    float: left;
}

.why-us-table2 {
    background: none;
    border-bottom: 1px #ccc solid;
    border-left: 1px #ccc solid;

}

.why-us-table {
    width: 100%;
    border-bottom: 1px #ccc solid;
    border-left: 1px #ccc solid;
    color: #000;
    font-size: 17px;
    background: rgba(255, 255, 255, .8);
}

.why-us-table td {
    padding: 10px 20px;
    border-top: 1px #ccc solid;
    border-right: 1px #ccc solid;
}

.why-us-box-1 {
    float: left;
    width: 320px;
    height: 320px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.why-us-box-2 {
    float: left;
    width: 320px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.why-us-box-3 {
    float: left;
    width: 320px;
    height: 320px;
    margin-bottom: 20px;
}

.why-us-icon {
    width: 200px;
    margin: 40px auto 0;
    padding: 15px 0;
    text-align: center;
    background: #fff;

    transition: .4s;
}

.why-us-icon:hover {
    background: #fff;
    cursor: move;
}

.why-us-icon img {
    height: 140px;
}


.why-us-list {
    float: left;
    width: 100%;
    text-align: center;

}

.why-us-list ul {
    margin: 30px 0 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px #999 dotted;
}

.why-us-list ul li {
    padding: 10px 0;
    border-bottom: 1px #999 dotted;
}

/* Section Quote
--------------------------------------------------------------*/
.section-quote {
    float: left;
    width: 100%;
    padding: 40px 0;
    background-color: #ec1d23;
    background-size: cover;
    background-position: center;
}

.quote__wrapper {
    text-align: center;
    color: #ffffff;
}

.quote__wrapper h1 {
    font-family: "Dancing Script", serif;
    font-size: 60px;
}


/* Product Section
----------------------------*/
#product {
    width: 100%;
    float: left;
    padding: 100px 0;

}

.product {
    float: left;
    width: 100%;
    font-size: 16px;
    line-height: 25px;
    color: #444;
    text-align: center;
}

.product h2 {
    color: #444;
    font-size: 36px;
    padding: 0;
    margin: 0 0 40px;
    text-transform: uppercase;
}

.product-image img {
    width: 100%;
    height: 330px;
    padding: 5px;
}

.product-box {
    float: left;
    margin-bottom: 20px;
    border: 1px #eee solid;
}

.product-box-overlay {
    position: absolute;
    width: 100%;
    height: 50px;
    bottom: -100%;

    transition: .4s;
    text-align: center;
}

.product-box-1:hover .product-box-overlay {
    bottom: 0;
    height: 50px;
    text-align: center;
    background: rgba(0, 0, 0, .7);
}

.product-box-2:hover .product-box-overlay {
    bottom: 0;
    height: 50px;
    text-align: center;
    background: rgba(0, 0, 0, .7);
}

.product-box-overlay a {
    color: #ddd;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 49px;
}

.product-icon {
    width: 200px;
    margin: 55px auto 0;
    padding: 15px 0;
    text-align: center;
    background: rgba(255, 255, 255, .8);

    transition: .4s;
}

/*  Quality
--------------------------------------------------------------*/
#section-quality {
    padding: 100px 0;
    width: 100%;
    float: left;
    background-color: #f7f7f7;
}

.section-quality {
    max-width: 100%;
    width: 100%;
}

.quality-box {
    max-width: 100%;
    width: 100%;
}

.content input {
    display: none;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content .list {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 20%;
    margin-right: 50px;
}

.list label {
    cursor: pointer;
    height: 50px;
    line-height: 50px;
    font-weight: 600;
    font-size: 30px;
    color: #B0B0B0;
    text-transform: uppercase;
    transition: all 0.5s ease;
    z-index: 10;
}

#quality:checked ~ .list label.quality,
#innovation:checked ~ .list label.innovation,
#compliance:checked ~ .list label.compliance {
    color: #000;
}

.content .slider {
    position: absolute;
    left: 0;
    top: 0;
    height: 60px;
    width: 100%;
    border-radius: 12px;
    transition: all 0.5s ease;
}

#quality:checked ~ .list .slider {
    top: 0;
}

#innovation:checked ~ .list .slider {
    top: 60px;
}

#compliance:checked ~ .list .slider {
    top: 120px;
}

.content .text-content {
    width: 80%;
    height: 100%;
    color: #000;
}

.text {
    display: none;
}

.quality {
    display: block;
}

#quality:checked ~ .text-content .quality,
#innovation:checked ~ .text-content .innovation,
#compliance:checked ~ .text-content .compliance {
    display: block;
}

#innovation:checked ~ .text-content .quality,
#compliance:checked ~ .text-content .quality {
    display: none;
}

.text-content-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-content-img {
    flex: 0 0 42%;
    background-color: #87e2c1;
}

.text-content-img img {
    width: 100%;
    transform: rotate(352deg);
    height: 470px;
}

.text-content-text-box {
    flex: 0 0 50%;
    text-align: justify;
    font-size: 17px;
    line-height: 25px;
    color: #737373;
}

.text-content-text-box p {
    padding: 0;
    margin-bottom: 10px;
}

/* Footer
--------------------------------------------------------------*/
#footer {
    float: left;
    width: 100%;
    padding: 40px 0;
    background-color: #1b1b1b;
    border-top: 4px solid #09754D;
}

.footer__wrapper {
    color: #ddd;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer__left {
    flex: 0 0 48%;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 300;
}

.footer__left h3 a {
    text-decoration: none;
    color: #fff;
}

.footer__left h3 {
    font-size: 29px;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer__left span {
    font-size: 14px;
    margin-top: 8px;
    color: #ddd;
    display: flex;
    align-items: center;
}

.footer__left a {
    text-decoration: none;
    color: #fff;
    transition: all 0.5s ease;
}

.footer__left a:hover,
.footer__left a:focus {
    color: #ddd;
    text-decoration: underline;
}

.footer-icon__code-outline {
    margin-right: 3px;
    font-size: 15px;
}

.footer-icon__heart-outline {
    margin: 0 3px;
    font-size: 15px;
}

.footer__right {
    flex: 0 0 48%;
}

.footer__icon {
    font-size: 18px;
    min-width: 20px;
    margin: 0 6px 0 0;
}

.footer__right ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__right ul li {
    font-size: 15px;
    display: flex;
    align-items: flex-start;
}

.footer__right ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer__right h3 {
    font-size: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #09754D;
    padding-left: 10px;
}

/* Product Img
*/
.product-img {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.product-img-last {
    float: left;
    margin-bottom: 20px;
}

.product img {
    float: left;
    width: 255px;
    height: 300px;
    border: 1px solid #ddd;
}

.product-img img,
.product-img-last img {
    padding: 7px;
}

.contact_table {
    height: 220px;
}

.contact_table i {
    width: 30px;
    border: 1px #ccc solid;
    padding: 5px;
    text-align: center;
}

.contact_table tr i {
    margin-right: 10px;
}

.contact input {
    margin-bottom: 6px;
    padding: 20px 10px;
}

.contact textarea {
    margin-bottom: 8px;
    margin-top: 10px;
}

.company-profile-table {
    width: 100%;
    border-bottom: 1px #eee solid;
    border-left: 1px #eee solid;
    color: #000;
    font-size: 17px;
}

.company-profile-table td {
    padding: 10px 20px;
    border-top: 1px #eee solid;
    border-right: 1px #eee solid;
}

.gallery {
    float: left;
    width: 217px;
    height: 150px;
    margin: 20px 0 10px;
    border: 1px #ccc solid;
    overflow: hidden;
    position: relative;
}

.gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -100%;

    transition: .4s;
    text-align: center;
}

.gallery:hover .gallery-overlay {
    bottom: 0;
    height: 150px;
    text-align: center;
    background: rgba(0, 0, 0, .7);
    font-size: 15px;
    line-height: 130px;
}

.gallery-overlay a {
    color: #fff;
    text-decoration: none;
    line-height: 149px;
    font-size: 40px;
}

.gallery img {
    width: 100%;
    height: 100%;
}


/* Factory IMG
--------------------------------------------------------------*/
.factory-img {
    float: left;
    width: 200px;
    height: 150px;
    border: 1px solid #ccc;
    margin-right: 14px;
    margin-bottom: 20px;
}

.factory-img-last {
    float: left;
    width: 200px;
    height: 150px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

.factory-img img,
.factory-img-last img {
    padding: 5px;
}


.certificate-img img {
    margin-right: 20px;
    margin-bottom: 20px;
    height: 80px;
}

.buyer-img img {
    margin-right: 40px;
    margin-bottom: 40px;
    height: 70px;
}