body > br {
    display: none;
}

.toggle_btn {
    right: 4%;
}

.toggle_btn .whatsapp {
    right: 39%;
    height: 100px;
    width: 100px;
}

.toggle_btn .whatsapp i {
    font-size: 55px;
}

@media (max-width: 1200.5px) {
    .toggle_btn {
        right: 8%;
    }
}

@media (max-width: 767.5px) {
    .toggle_btn {
        right: 12%;
    }
}

#main_index {
    overflow: hidden;
    padding-bottom: 0 !important;
}

#main_index a:hover {
    text-decoration: none;
}

#main_index button:focus {
    outline: none;
}


/*top space*/
.top_space {
    background-image: linear-gradient(to left, #448834, #448834);
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.top_space_box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    gap: 2.5rem;
}

.top_space_box a, .top_space_box a:hover {
    color: #fff;
    text-decoration: none;
}

.top_space_social {
    font-size: 19px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top_space_social a:hover {
    animation: 1s jello;
}

.top_space_slogan {
    width: 100%;
}

.top_space_title {
    font-size: 1.05vw;
    margin-bottom: 0;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
}

.top_space_title::after {
    content: "";
    width: 100%;
    height: .8px;
    background-color: #fff;
}


/*navigation bar*/

#main_index .navbar_type8 {
    background-color: transparent;
}

.navbar_type8 {
    height: 140px;
    background-color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease-in-out;
    padding: 0 4vw;
}

#main_index .navbar_type8 {
    border-bottom: none;
}

.dark_nav {
    height: 100px;
    background-color: rgb(0,0,0,0.8) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15) !important;
}

.navbar_type8 .logo {
    margin-left: 0;
    flex: 0 1 15%;
}

.navbar_type8 .nav_tab {
    padding-right: 0;
    flex: 0 1 82%;
    gap: .3vw;
}

.navbar_type8 .nav_tab .nav_item {
    text-transform: unset;
    padding: 7px 0;
}

.navbar_type8 .logo img {
    width: 100%;
    padding: 5px 0;
    object-position: left;
    transition: all 0.25s ease-in-out;
}

.navbar_type8.dark_nav .logo img {
    padding: 5px 0;
}

.navbar_type8 .nav_tab .nav_item a {
    color: #fff;
    font-size: .95vw;
    padding: 15px .8vw;
    transition: all 0.35s ease-in-out;
}

.navbar_type8 .nav_tab .nav_item:hover a {
    color: #fff;
}

.navbar_type8 .nav_tab .nav_item::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 0;
    width: 0;
    border-bottom: none;
    transition: all 0.35s ease-in-out;
    opacity: 1;
    height: 100%;
    border-radius: 30px;
    background-image: linear-gradient(to left, #448834, #448834);
    transform: translate(-50%, 0);
    z-index: -1;
}

.navbar_type8 .nav_tab .nav_item:hover::before {
    width: 100%;
}

.navbar_mobile {
    background-color: #448834;
}

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


@media (max-width: 1200.5px) {
    .navbar_type8 {
        height: 100px;
    }
    
    .navbar_type8 {
        padding: 0 2vw;
    }
}

@media (max-width: 991.5px) {
    
}

@media (max-width: 767.5px) {
    
}


/*setting*/

.hp-small {
    font-size: 1.1vw;
}

.hp-big {
    font-size: 2.2vw;
    font-weight: 900;
    color: #448834;
}

.hp-content {
    font-size: 1.05vw;
    line-height: 1.8;
    color: #4d4d4d;
}

.white-wording {
    color: #fff!important;
}

.hp-button {
    background-color: #4b4c4a;
    color: #fff;
    padding: 13px 1.8vw 13px 3.3vw; /* extra left space for icon */
    border-radius: 10px 0 10px 0;
    display: inline-block;
    transition: background-color .5s ease;
    font-size: .9vw;
    position: relative;
    overflow: hidden;
}

.green-button {
    background-color: #448834;
}

/* Arrow icon */
.hp-button::before {
    content: "";
    position: absolute;
    left: 1.8vw;
    top: 50%;
    transform: translateY(-50%) translateX(-5px);
    width: 20px;
    height: 20px;
    background: url("https://cdn1.npcdn.net/images/arrow_2yvxgb_1767750942.png?md5id=9f74ae56b5c09dc7de09bf4bc0d808a1&type=4") no-repeat center;
    background-size: contain;
    opacity: 1;
    transition: all .4s ease;
}

/* Hover effects */
.hp-button:hover {
    background-color: #000;
    color: #fff;
}

.hp-button:hover::before {
    transform: translateY(-50%) translateX(3px);
}


@media (max-width: 1200.5px) {
    
    .hp-small {
        font-size: 1.4vw;
    }
    
    .hp-big {
        font-size: 2.5vw;
    }
    
    .hp-content {
        font-size: 1.3vw;
    }
    
    .hp-button {
        font-size: 1.2vw;
        padding: 13px 1.8vw 13px 4vw;
    }
}

@media (max-width: 991.5px) {
    
}

@media (max-width: 767.5px) {
    
    .hp-small {
        font-size: 14px;
    }
    
    .hp-big {
        font-size: 27px;
    }
    
    .hp-content {
        font-size: 14px;
    }
    
    .hp-button {
        font-size: 12px;
        padding: 13px 4.5vw 13px 8vw;
    }
    
    .hp-button::before {
        width: 15px;
        height: 15px;
        left: 3.8vw;
    }  
    
}



/*banner*/

.index_wrapper_2 {
    margin-top: -140px;
}

.slider_banner .banner_content {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hp-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 7%;
}

.hp-banner-left {
    width: 35%;
    position: absolute;
    left: 8vw;
    z-index: 1;
}

.hp-banner-right {
    width: 57%;
    position: absolute;
    right: 6vw;
    bottom: 3%;
}

.hp-banner-line {
    width: 150px;
    height: .25rem;
    background-color: #fff;
    margin-bottom: 1.5rem;
}

.hp-banner-box {
    background-image: url('https://cdn1.npcdn.net/images/banner_title_box_24dtmy_1767750942.png?md5id=9f74ae56b5c09dc7de09bf4bc0d808a1&type=4');
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    background-color: #448834;
    padding: 2.5vw 4vw;
    border-radius: 20px;
}

.hp-banner-big {
    color: #fff;
    font-weight: 900;
    font-size: 3vw;
    padding-right: 7vw;
}

.hp-banner .hp-content {
    font-size: 1.2vw;
}

.hp-banner-button {
    gap: 1rem;
    display: flex;
    margin: -20px 0 0 2vw;
}


@media (max-width: 1200.5px) {
    .hp-banner-big {
        font-size: 3.3vw;
    }
    
    .hp-banner .hp-content {
        font-size: 1.5vw;
    }
    
    .index_wrapper_2 {
        margin-top: -100px;
    }
    
    .hp-banner-left {
        width: 43%;
        left: 3vw;
    }
    
    .hp-banner-right {
        right: 3vw;
    }
}

@media (max-width: 991.5px) {
    .index_wrapper_2 {
        margin-top: 0px;
    }
}

@media (max-width: 767.5px) {
    
    .index_wrapper_2 .item>img{
    	min-height:150vw!important;
    	object-fit:cover;
    }
    
    .slider_banner .banner_content {
        display: unset;
    }
    
    .hp-banner {
        /*padding: 1rem;*/
        display: unset;
    }
    
    .hp-banner-box {
        padding: 6.5vw 6vw;
    }
    
    .hp-banner-left {
        position: unset;
        padding: 3rem 1rem 2rem;
        
        width: 100%;
        left: 0;
        bottom: unset;
    }
    
    .hp-banner-right {
        position: unset;
        padding: 0 1rem;
        
      width: 100%;
      right: 0;
      bottom: 0;
    }
    
    .hp-banner-big {
        font-size: 28px;
        padding-right: 0;
    }
    
    .hp-banner .hp-content {
        font-size: 14px;
    }
}

@media (max-width: 400.5px) {
    .index_wrapper_2 .item>img{
    	min-height:600px!important;
    }
}


/*homepage why*/
.hp_why {
    padding: 3rem 7% 5rem;
}



.hp_why_left_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
    width: 95%;
}

.hp_why_point {
    background-color: #448834;
    padding: 1.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}

.hp_why_point.why-pic {
    padding: 0;
    background-color: transparent;
}

.hp-why-left-pic {
    width: 100%;
    height: 100%;
}

.hp-why-left-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 25px;
}


.hp_why_point.light-box {
    background-color: #ededed;
}



.hp_why_point:hover {
    /*background-color: #0A4D68;*/
    transform: translateY(-10px);
}

.hp_why_icon {
    width: fit-content;
    /*padding: 15px;*/
    /*background-color: rgba(255, 255, 255, 0.3);*/
    border-radius: 20px;
}

.hp_why_point:hover .hp_why_icon {
    animation: 1s jello;
}

.hp_why_icon img {
    max-width: 70px;
}

.hp_why_title {
    font-size: 18px;
    color: #fff;
    font-weight: 800;
    margin: 15px 0;
}

.hp_why_point.light-box .hp_why_title{
    color: #000;
}

.hp_why_keyword {
    font-size: 12px;
    color: #fff;
    margin-bottom: 0;
}

.hp_why_point.light-box .hp_why_keyword{
    color: #4d4d4d;
}

.hp_why_right_box {
    padding-top: 1.5rem;
}

.hp_big_title {
    font-size: 3vw;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #0A4D68;
    letter-spacing: -1px;
}


.hp_why_group {
    position: relative;
    margin-top: 2rem;
}

.hp_why_img {
    border-radius: 25px;
    overflow: hidden;
}


@media (max-width: 1200.5px) {
    .hp_why {
        padding: 4rem 1vw;
    }
    .hp_why_left_box {
        width: 100%;
    }
    .hp_why_point {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    .hp-why-left-pic img {
        border-radius: 20px;
    }
    .hp_why_title {
        margin: 20px 0 10px;
        font-size: 18px;
    }
    .hp_why_group {
        margin-top: 1.5rem;
    }
}

@media (max-width: 991.5px) {
    .hp_count_point {
        font-size: 30px;
    }
    .running_word {
        font-size: 20px;
    }
    .hp_why_right {
        display: flex;
        align-items: center;
    }
    .hp_why_right_box {
      padding-top: 0;
    }
}

@media (max-width: 767.5px) {
    
    
    .hp_why_img img {
        min-height: 250px;
        object-fit: cover;
    }
    .hp_why_count {
        padding: 1.5rem;
        border-radius: 20px;
        gap: 20px;
        position: relative;
        flex-direction: column;
        width: 80%;
        right: 0;
        top: unset;
        transform: unset;
        margin-top: -3rem;
        margin-left: auto;
    }
    .hp_count_point {
        font-size: 35px;
    }
    .running_word {
        font-size: 25px;
    }
    .hp_why_count_point::before {
        width: 40px;
    }
    .hp_why_count_point:hover::before {
        width: 60px;
    }
    .hp_why_left_box {
        margin-top: 2.5rem;
        gap: 20px;
        grid-template-columns: 1fr;
    }
    .hp_why_point {
        padding: 25px;
    }
}


/*hp-about*/

.hp-about {
    position: relative;
    z-index: 1;
}

.hp-about-spacing {
    padding: 0;
}

.hp-about-right {
    padding: 0 7rem 0 2rem;
    margin-top: -6rem;
}

.hp-about-icon {
    width: 6%;
    margin-bottom: 1rem;
}

.hp-about-logo {
    width: 80%;
    margin-top: 1rem;
    margin-left: -1rem;
}

@media (max-width: 1200.5px) {
    .hp-about-right {
        padding: 0 4VW 0 1VW;
        margin-top: -10rem;
    }
}

@media (max-width: 991.5px) {
    
}

@media (max-width: 767.5px) {
    .hp-about-right {
        padding: 0rem 6vw 1rem;
        margin-top: 0;
    }
    
    .hp-about-icon {
        width: 9%;
    }
    
    .hp-about-left {
        width: 95%;
    }
    
    .hp-about-logo {
        width: 90%;
        margin: 1.5rem 0;
    }
}


/*hp-services*/

.hp-services {
    background-image: url('https://cdn1.npcdn.net/images/our_service_bg_j93xrb_1767750942.jpg?md5id=9f74ae56b5c09dc7de09bf4bc0d808a1&type=4');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    padding: 9rem 8% 8rem;
    margin-top: -4rem;
}

.hp-services-top {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}
.productSlider-1{
    padding:0 8% 4rem;
}

.hp-services-box {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 25vw;
}

.n_cateBox {
    border: 1px solid rgb(0, 0, 0, 1);
    padding: 0.5rem;
    position: relative;
    width: 100%;
    background-color: #fff;
}

.n_cateBox:hover .n_cateBtn {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.n_cateBox:hover img {
    opacity: 1;
}

.n_cateBox img {
    width: 100%;
}

.n_cateContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.n_cateBtn {
    color: #000;
    font-size: 1.2vw;
    font-weight: 800;
    /*text-transform: uppercase;*/
    border: 1px solid rgba(77, 77, 77, 0.5);
    border-radius: 4px;
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    background-color: #fff;
    transition: all 0.4s ease-in-out;
    /*visibility: hidden;*/
    /*opacity: 0;*/
    /*transform: scale(0);*/
}

.n_cateBtn:hover,
.n_cateBtn:active {
    border: 1px solid transparent!important;
    color: #fff;
    background-color: #448834;
}

.productSlider-1{
    margin-top:-7rem;
}
.productSlider-1 .product_img .product_box h6{
    color:#000;
}
.productSlider-1 .product_img .product_box a:hover{
text-decoration: none; 
}
.productSlider-1 .product_img .product_box .content > p{
    display: none;
}

.productSlider-1 .product_img .slick-prev{
    left: -30px;
}
.productSlider-1 .product_img .slick-next{
    right: -30px;
}
.productSlider-1 .product_img .slick-prev::before{
    background-image:url("https://cdn1.npcdn.net/images/arrow_2yvxgb_1767750942_12awd4_1770177863.png?md5id=9f74ae56b5c09dc7de09bf4bc0d808a1&type=4");
    background-size:70%;
    background-position:center;
    background-repeat:no-repeat;
    text-shadow:unset;
    content:"";
    height:1vw;
    width:1vw;
    filter:brightness(0);
} 
.productSlider-1 .product_img .slick-next::before{
    background-image:url("https://cdn1.npcdn.net/images/arrow_2yvxgb_1767750942.png?md5id=9f74ae56b5c09dc7de09bf4bc0d808a1&type=4");
    background-size:70%;
    background-position:center;
    background-repeat:no-repeat;
    text-shadow:unset;
    content:"";
    height:1vw;
    width:1vw;
    filter:brightness(0);
}

@media screen and (max-width: 767.5px){
    .productSlider-1 .product_img .slick-prev::before,
    .productSlider-1 .product_img .slick-next::before{
        background-size:80%;
    }
    .productSlider-1 .product_img .slick-prev{
        left: -18px;
    }
    .productSlider-1 .product_img .slick-next{
        right: -20px;
    }
    .productSlider-1 .product_img .product_box h6{
        font-size:12px;
    }
}


@media (max-width: 1200.5px) {
    
    .hp-services {
        background-size: 160%;
        padding: 9rem 2vw 4rem;
    }
    
    .n_cateBox {
        padding: 0.5rem;
    }

    .n_cateBtn {
        font-size: 1.5vw;
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 991.5px) {
    /*.n_cateBox {*/
    /*    padding: 0.5rem;*/
    /*}*/

    /*.n_cateBtn {*/
    /*    font-size: 1rem;*/
    /*    padding: 0.5rem 1rem;*/
    /*}*/
}

@media (max-width: 767.5px) {
    
    .hp-services {
        background-size: 500%;
    }
    
    .n_cateBox {
        padding: 0.5rem;
    }

    .n_cateBtn {
        font-size: 16px;
        padding: 0.75rem 1.25rem;
    }
}


/*hp-partner*/

.hp-partner {
    padding: 0 11% 4rem;
}

.hp_brand_img {
    margin: 0 2vw;
}

@media (max-width: 1200.5px) {
    .hp-partner {
        padding: 0 3VW 4rem;
    }
}

@media (max-width: 991.5px) {
    
}

@media (max-width: 767.5px) {
    
}


/*.hp-news*/

.hp-news {
    padding: 0 0% 1rem;
}

#main_index .hp_latest_news_modern {
    padding: 0 4% 2rem 11%;
}

#main_index .hp_latest_news_modern .news_content_wrapper {
    background: #ededed;
    /*margin-left: 0px;*/
    margin-top: 8%;
}
#main_index .latest_new_type4{
    padding:0 1rem;
}



@media (max-width: 1200.5px) {
    .hp-news {
        padding: 0 0vw 1rem;
    }
    
    #main_index .hp_latest_news_modern {
        padding: 0 0vw 2rem 5vw;
    }
    
    
}

@media (max-width: 991.5px) {
    #main_index .hp_latest_news_modern .news_content_wrapper {
        /*margin-left: 0px;*/
    }
}

@media (max-width: 767.5px) {
    #main_index .hp_latest_news_modern .news_content_wrapper {
        padding: 20px;
        margin-top: 0;
        margin-left: 0px;
    }
    
    #main_index .hp_latest_news_modern {
        padding: 0 5vw 2rem;
    }
}

/*hp-form*/

.hp-form-spacing {
    padding: 0;
}

.hp-form-title {
    position: absolute;
    top: 5vw;
    right: 24.7vw;
}

#main_index .hp_contactform_header {
    display: none;
}

#main_index .ex_hpcontact_formonly {
    padding: 7rem 8rem 5rem 5rem;
}


@media (max-width: 1200.5px) {
    
    .hp-form-title {
        right: 22.3vw;
        top: 0;
    }
    
    #main_index .ex_hpcontact_formonly {
      padding: 1rem 3rem 1rem 3rem;
    }
    
    .hp-form-pic img {
        min-height: 550px;
        object-fit: cover;
        border-radius: 0 20px 20px 0;
        object-position: left;
    }
}

@media (max-width: 991.5px) {
    
    
    
}

@media (max-width: 767.5px) {
      .hp-form-title {
        left: unset;
        right: unset;
        top: unset;
        position: relative;
        
        padding: 4rem 15px 0 15px;
      }
      
     #index_8_1 {
        order: 2;
    }
    #index_8_2 {
        order: 1;
    }
    #index_8_3 {
        order: 3;
    }
      
      #main_index .ex_hpcontact_formonly {
          margin: 0 0 4rem;
      }
      
      .hp-form-pic img {
          min-height: auto;
      }
}

.hp-contact {
    padding-bottom: 4rem;
    padding-left: 8%;
}

.hp-contact-box {
    display: flex;
    gap: 1rem;
}

.hp-contact-info-box {
    /*display: flex;*/
    /*gap: 1rem;*/
}

.contentBox {
    margin-top: -30px;
    background: #4c4c4a;
    padding: 3% 8% 3% 5%;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
.contentBox i {
    font-size: 30px;
    color: #fff;
}
.contentBox .fa-map-marker-alt {
    font-size: 40px;
}
.contentBox i:before {
    vertical-align: sub;
}
.contactTitle {
    font-size: 20px;
    color: #fff;
    font-weight: 800;
}
.contactDetails {
    font-size: 14px;
    letter-spacing: 1px;
    /*line-height: 1.8;*/
    color: #eee;
    font-weight: 300;
    margin-bottom: 1rem;
}

.contact-bold {
    color: #fff;
    font-weight: bold;
    display: block;
}



@media (max-width: 1200.5px) {
    .hp-contact {
        padding-left: 4vw;
    }
    
    .contentBox {
        padding: 3% 3% 3% 3%;
    }
}

@media (max-width: 991.5px) {
    
}

@media (max-width: 767.5px) {
    .contentBox {
        padding: 8% 4%;
        margin-top: 0;
    }
      
    .hp-contact-info-box {
        display: flex;
        flex-direction: column;
        
    }
    
    .hp-contact-box {
        margin-bottom: 1.5rem;
    }
    
    
    
    
}


.footer_type6 {
    background-color: #448834;
}

.footer_type6 .logo {
    min-height: 120px;
}

.footer_type6 .logo img {
    max-height: 120px;
}

.footer_type6 .title h5 {
    text-transform: uppercase;
    font-weight: 800;
}


#main_photoalbum .ws_gallery-2 .img_frame img,
#main_photoalbum .gallerycategory .img_frame img{
    object-fit: contain;
}




.page_title b {
    color: #448834;
}


#main_faq .faq_details .card-header[aria-expanded="true"] {
    background-image: linear-gradient(to left, #448834, #448834);
}

#main_faq .faq_details .card-header .btn {
    color: #448834;
}

#main_faq .faq_details .card-header[aria-expanded="true"] .btn {
    color: #fff;
}

#main_services .service_category .service_box .text_area p {
    display: none;
}

