:root {
    --red: #c90202;
    --bg1: #ebebeb;
    --cream: #fcf4e9;
    --white: #FFFFFF;
    --white2: #f2f2f2;
    --white3: #f5f5f5;
    --white4: #838383;
    --gray: #888888;
    --dark-gray: #333333;
    --line-color: #00d30f;
    --main-color: #27a752;
    --main-color-rgba: rgba(39, 167, 82, 0.6);
    --box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.25);
    --box-shadow2: 1px 1px 6px rgba(0, 0, 0, 0.25);
}

* {
    box-sizing: border-box;
}

:focus {
    outline: none;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: Prompt;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    max-width: 100%;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    font-family: Prompt;
}

.line-one {
    white-space: nowrap;
}

.text-align {
    text-align: center;
}

.underline {
    position: relative;
}

.underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--main-color);
}

/*=================Hover Underline Animation=================*/

.hover-underline-animation {
    position: relative;
    color:var(--white2);
}

.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--white2);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/*=================TEXT SIZE=================*/

.text-small1 {
    font-size: 0.1em;
}

.text-small2 {
    font-size: 0.2em;
}

.text-small3 {
    font-size: 0.3em;
}

.text-small4 {
    font-size: 0.4em;
}

.text-small5 {
    font-size: 0.5em;
}

.text-small6 {
    font-size: 0.6em;
}

.text-small7 {
    font-size: 0.7em;
}

.text-small8 {
    font-size: 0.8em;
}

.text-small9 {
    font-size: 0.9em;
}

.text-big1 {
    font-size: 1.1em;
}

.text-big2 {
    font-size: 1.2em;
}

.text-big3 {
    font-size: 1.3em;
}

.text-big4 {
    font-size: 1.4em;
}

.text-big5 {
    font-size: 1.5em;
}

.text-big6 {
    font-size: 1.6em;
}

.text-big7 {
    font-size: 1.7em;
}

.text-big8 {
    font-size: 1.8em;
}

.text-big9 {
    font-size: 1.9em;
}

.bg_image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cursorPointer {
    cursor: pointer;
}

.menu .mobile .contact {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    padding: 0 8px;
}
.menu .mobile .contact > div:nth-child(1) {
    width: 70px;
}

.menu .mobile .contact > div:nth-child(2) {
    font-size: 1.5em;
}

.menu .mobile .header_list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    display: none;
    z-index: 2;
}

.menu .mobile .header_list .header_wrap {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);;
    color: #F2F2F2;
    font-size: 1.2em;
    text-align: left;
    padding: 20px 15px 0 15px;
}

.menu .mobile .header_list .header_wrap>li {
    padding: 5px 0;
}

@media only screen and (min-width: 768px) {
    .menu .mobile .header_list .header_wrap {
        width: 300px;
    }
}

@media only screen and (min-width: 1366px) {
    .menu .mobile {
        display: none;
    }
}

.menu .desktop {
    display: none;
    background-color: var(--white);
}

.menu .desktop .menu_wrap {
    position: relative;
    max-width: 1920px;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu .desktop .menu_wrap .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    padding: 0 8px;
    font-size: 1.3em;
    width: 100%;
    max-width: 1300px;
}

.menu .desktop .menu_wrap .content > div > div {
    padding: 8px 14px;
}

.menu .desktop .menu_wrap .content > div:nth-child(2) > div.active,
.menu .desktop .menu_wrap .content > div:nth-child(2) > div:hover {
    background-color: var(--main-color);
    color: var(--white2);
    border-radius: 5px;
}

.menu .desktop .menu_wrap .content > div:nth-child(1) a {
    display: block;
    width: 200px;
}

@media only screen and (min-width: 1366px) {
    

    .menu .desktop .menu_wrap .content > div:nth-child(1) a {
        width: 130px;
        display: flex;
        padding: 10px 0;
    }

    .menu .desktop .menu_wrap .content > div:nth-child(2) {
        display: flex;
    }

    .menu .desktop .menu_wrap .content > div:nth-child(2) > div {
        margin: 0 3px;
    }

    .menu .desktop {
        display: block;
    }
}

.header_contact {
    background-color: var(--white2);
    padding: 3px 0;
}

.icon_circle {
    padding: 5px;
    background-color: var(--main-color);
    color: var(--white);
    border-radius: 50%;
    margin-right: 3px;
}

.header_contact .content_wrap > div {
    text-align: center;
    padding: 3px 0;
}

@media only screen and (min-width: 768px) {
    .header_contact {
        font-size: 1.3em;
    }

    .header_contact .content_wrap {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header_contact .content_wrap > div {
        margin: 0 5px;
        padding: 10px 0;
    }

    .icon_circle {
        margin-right: 8px;
    }
}

.btn {
    padding: 8px 12px;
    border-radius: 5px;
    background-color: #f2f2f2;
    color: var(--dark-gray);
    box-shadow: var(--box-shadow);
}


.btn_about {
    text-align: right;
}

.btn_about .btn {
    background-color: #f2f2f2;
    color: var(--dark-gray);
    border: none;
    font-size: 1em;
}

/*=================Content=================*/
.content_wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
}

.content1 {
    padding: 30px 0;
}

.content_home1 {
    
}
.content_home1 > div {
    
}

.content_home1 > .l {
    display: flex;
}

.content_home1 > .r {
    padding: 10px 10px 20px 10px;
    background-color: var(--main-color);
    color: var(--white2);
}

@media only screen and (min-width: 768px) {

    .content_home1 {
        display: flex;
    }

    .content_home1 > div {
        width: 50%;
    }

    .content_home1 > .r {
        padding: 10px;
    }

}

.content_home2 {
    background-color: #000000;
    color: var(--white2);
    text-align: center;
    padding: 20px;
    font-size: 1.5em;
}

.content_home3 .header > span {
    font-size: 1.3em;
    position: relative;
}

.content_home3 .header > span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--main-color);
}

.wrap_home_product {
    padding: 20px;
    margin-bottom: 20px;
}

.wrap_home_product > div {
    box-shadow: var(--box-shadow2);
    padding: 25px 15px;
    border-radius: 5px;
}

.wrap_home_product > div .img, 
.wrap_home_product > div .detail {
    width: 300px;
    margin: 0 auto;
}

.wrap_home_product > div .detail {
    margin-top: 5px;
}

.wrap_home_product > div .detail .title {
    padding-bottom: 10px;
}

.wrap_home_product > div .detail .title > span {
    font-weight: 700;
    position: relative;
}

.wrap_home_product > div .detail .title > span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: var(--main-color);
}

.content_home5 {
    background-color: var(--white3);
    padding: 50px 0;
}

.content_home5 .content_wrap {
    text-align: center;
    font-size: 1.5em;
}

@media only screen and (min-width: 768px) {
    .content_home5 .content_wrap {
        max-width: 1000px;
    }
}

.wrap_home_category {
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 100%;
    column-gap: 5px;
    row-gap: 5px;
    justify-content: center;
}

@media only screen and (min-width: 768px) {
    /* .content_home4 {
        display: flex;
        justify-content: start;
    } */

    .wrap_home_category {
        grid-template-columns: 50% 50%;
        column-gap: 10px;
        row-gap: 10px;
    }
}

@media only screen and (min-width: 1366px) {
    .wrap_home_category {
        grid-template-columns: 33.33% 33.33% 33.33%;
    }
}

.wrap_home_category > div {
    box-shadow: var(--box-shadow2);
    padding-bottom: 20px;
    border-radius: 5px;
}

.wrap_home_category > div .img {
    display: flex;
}

.wrap_home_category > div .title {
    text-align: center;
    font-size: 1.3em;
    margin: 20px 0;
    max-height: 60px;
    height: 60px;
    overflow: hidden;
    font-weight: 700;
}

.wrap_home_category > div .btn_category {
    text-align: center;
}

.wrap_home_category > div .btn_category .btn {
    background-color: var(--main-color);
    color: var(--white);
    border: none;
    font-size: 1.3em;
}

.content_banner {
    display: flex;
    position: relative;
}

.content_banner .banner_overlay {
    background-color: var(--main-color-rgba);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.content_banner .banner_overlay_text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white2);
}

@media only screen and (min-width: 768px) {
    .content_banner .banner_overlay_text>div:nth-child(1) {
        font-size: 1.2em;
    }

    .content_banner .banner_overlay_text>div:nth-child(2) {
        font-size: 2.8em;
    }
}

@media only screen and (min-width: 1366px) {
    .content_banner .banner_overlay_text>div:nth-child(1) {
        font-size: 1.2em;
    }

    .content_banner .banner_overlay_text>div:nth-child(2) {
        font-size: 4.8em;
    }
}

.wrap_gallery {
    display: grid;
    grid-template-columns: 100%;
    column-gap: 5px;
    row-gap: 5px;
    justify-content: center;
}

.wrap_gallery > div img {
    border-radius: 5px;
}
@media only screen and (min-width: 768px) {
    .wrap_gallery {
        grid-template-columns: 50% 50%;
        column-gap: 10px;
        row-gap: 10px;
    }

}
@media only screen and (min-width: 1366px) {
    .wrap_gallery {
        grid-template-columns: 33.33% 33.33% 33.33%;
    }
}

@media only screen and (min-width: 768px) {
    .content_performance {
        padding: 100px 50px;
    }
}

@media only screen and (min-width: 1366px) {
    .content_contact {
        padding: 100px 50px;
    }
}

/*=================Footer=================*/
footer {
    background-color: var(--main-color);
}

footer .content_wrap {
    padding: 0;
}

.footer_content .contact {
    color: var(--white);
    padding: 30px 10px 10px 10px;
}

.footer_content .contact .l .header {
    margin-bottom: 20px;
    text-align: center;
}

.footer_content .contact .l .header > div:nth-child(1) {
    font-size: 1.35em;
    font-weight: 700;
}

.footer_content .contact .l ul li {
    display: flex;
    align-items: center;
    padding: 3px 0;
}

.footer_content .contact .l ul li > div:nth-child(1) {
    margin: 5px 10px;
}

.footer_content .contact .r ul {
    padding-left: 10px;
}

.footer_content .contact .r ul li:nth-child(1) {
    font-size: 1.35em;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer_content .contact .r ul li:not(:nth-child(1)) {
    padding-left: 10px;
    margin: 5px 0;
}

.footer_content .map > iframe{
    width: 100% !important;
    display: flex;
}

@media only screen and (min-width: 1366px) {
    .footer_content {
        display: flex;
        padding: 80px 10px 80px 10px;
    }

    .footer_content .contact,
    .footer_content .map {
        width: 50%;
    }

    .footer_content .contact {
        
        display: flex;
    }

    .footer_content .contact .l {
        width: 60%;
    }

    .footer_content .contact .r {
        width: 40%;
    }

    .footer_content .map {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer_content .map > iframe{
        width: 500px !important;
        height: 400px !important;
    }
}

/*=================About=================*/
.wrap_about .l {
    padding-bottom: 10px;
}

.wrap_about .r {
    color: #333333;
}

.btn_about {
    padding: 8px 12px;
    border-radius: 5px;
    color: var(--white2);
    background-color: var(--main-color);
    border: none;
    font-size: 1em;
}

.wrap_about_gallery {
    display: grid;
    grid-template-columns: 100%;
    column-gap: 5px;
    row-gap: 5px;
    justify-content: center;
}

.wrap_about_gallery > div img {
    border-radius: 5px;
}
@media only screen and (min-width: 768px) {
    .wrap_about_gallery {
        grid-template-columns: 50% 50%;
        column-gap: 10px;
        row-gap: 10px;
    }
}
@media only screen and (min-width: 1366px) {
    .wrap_about {
        display: flex;
    }

    .wrap_about_gallery {
        grid-template-columns: 250px 250px;
    }

    .wrap_about .r {
        padding: 50px 0 0 35px;
    }
}

/*=================Product=================*/
.product_banner {
    background-color: var(--white3);
}

.product_banner .content_wrap {

}

.product_banner .content_wrap .detail {
    text-align: center;
    padding: 10px 0;
}

.product_banner .content_wrap .detail > div:nth-child(2) {
    color: var(--main-color);
    font-weight: 700;
    margin: 10px 0;
}

@media only screen and (min-width: 768px) {
    .product_banner .content_wrap {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .product_banner .content_wrap .image {
        width: 50%;
    }
    
    .product_banner .content_wrap .image > img {
        display: flex;
    }

    .product_banner .content_wrap .detail {
        width: 50%;
    }

    .product_banner .content_wrap .detail > .title {
        font-size: 2.5em;
    }

    .product_banner .content_wrap .detail > .detail {
        text-align: center;
        width: 100%;
    }
}

.wrap_product_content {

}

.wrap_product_content .img img {
    display: flex;
}

.wrap_product_content > .detail {
    padding: 10px;
}

.wrap_product_content .detail > div > .title {
    font-weight: 700;
    padding-bottom: 10px;
}

.wrap_product_content .detail > div > .detail {
    color: var(--white4);
}

.wrap_product_content .detail > div > div:nth-child(3) {
    text-align: right;
    padding: 10px 0;
}

@media only screen and (min-width: 768px) {
    .wrap_product_content:nth-child(odd) {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-areas: 'img detail';
    }

    .wrap_product_content:nth-child(odd) > .img {
        grid-area: img;
    }

    .wrap_product_content:nth-child(odd) > .detail {
        grid-area: detail;
        display: flex;
        align-items: center;
    }

    .wrap_product_content:nth-child(even) {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-areas: 'detail img';
    }

    .wrap_product_content:nth-child(even) > .img {
        grid-area: img;
        display: flex;
        justify-content: start;
    }

    .wrap_product_content:nth-child(even) > .detail {
        grid-area: detail;
        display: flex;
        align-items: center;
    }
}

@media only screen and (min-width: 1300px) {
    .wrap_product_content:nth-child(odd) > .img {
        display: flex;
        justify-content: end;
    }
    
    .wrap_product_content:nth-child(odd) > .img img {
        width: 500px;
    }

    .wrap_product_content:nth-child(odd) > .detail {
        padding: 0 140px 0 50px;
    }

    .wrap_product_content:nth-child(even) > .img {
        display: flex;
        justify-content: start;
    }

    .wrap_product_content:nth-child(even) > .img img {
        width: 500px;
    }

    .wrap_product_content:nth-child(even) > .detail {
        padding: 0 50px 0 140px;
    }
}

/*=================Product Gallery=================*/
.wrap_product_gallery {

}

.wrap_product_gallery .title_gallery {
    text-align: center;
    font-weight: 700;
    padding: 20px 0;
}

.wrap_gallery_list {
    padding: 10px;
}

.wrap_gallery_list > div > img {
    border-radius: 5px;

}

.owl-product_gallery .owl-nav.disabled+.owl-dots {
    bottom: -30px;
}

/*=================Contact=================*/
.wrap_contact {
        
}

.wrap_contact .detail {
    padding: 10px;
}

.wrap_contact .detail > div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.wrap_contact .detail > div > .icon {
    width: 35px;
}

.wrap_contact .detail > div > .text {
    width: 90%;
    padding-left: 20px;
}

.wrap_contact .detail > div > .text > div {
    color: var(--main-color);
}

.wrap_contact .detail > div > .text > div > span {
    color: var(--dark-gray);
}

@media only screen and (min-width: 768px) {
    .wrap_contact .detail > div {
        margin-bottom: 20px;
    }
}
@media only screen and (min-width: 1366px) {
    .wrap_contact {
        display: flex;
    }
    .wrap_contact .detail > div {
        margin-bottom: 40px;
    }
}

.wrap_contact .map {
    display: flex;
}
