/* desktop */

body {
    color: #000000;
    line-height: 1.75;
}

a {
    text-decoration: none !important;
    transition: all 0.50s;
}

.all_functional_page {
    padding-top: 50px;
    padding-bottom: 50px !important;
    min-height: auto;
    font-size: 1rem;
}

#main_index {
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0 !important;
}

/* header */

.hp_header {
    background-color: #000000;
}

.hp_header_content {
    font-size: 1vw;
    gap: 3.25vw;
}

.hp_header_content div {
    gap: 1vw;
}

.hp_header_content div i {
    background-color: #ff3d00;
    color: #ffffff;
    padding: 1vw;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
}

.hp_header_content div:last-child {
    background-color: #ff3d00;
    padding: 0.65vw 3.25vw;
    clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 5% 50%);
}

.hp_header_content div:last-child i {
    background-color: #ffffff;
    color: #ff3d00;
}

/* menu */

.navbar_ecommerceDropdown {
    padding: 0;
}

.navbar_ecommerceDropdown .container.d-flex.justify-content-between {
    padding: 0;
    align-items: center;
}

.nav_logo {
    padding: 1vw;
}

.nav_logo a {
    display: flex;
}

.navbar_ecommerceDropdown .nav_logo img {
    max-height: 3.25vw;
}

.navbar_ecommerceDropdown .nav_search {
    padding: 1vw;
    justify-content: flex-end;
}

.nav_bottom .menu {
    gap: 1.65vw;
}

.nav_bottom .menu .nav_item:hover {
    background-color: transparent;
}

.nav_bottom .menu .nav_item .dropdown a {
    padding: 0;
    color: #000000;
    text-transform: uppercase;
    font-size: 1vw;
}

.nav_bottom .menu .nav_item:hover .dropdown .title {
    color: #ff3d00;
}

.nav_bottom .menu .nav_item .dropdown a strong {
    font-weight: 600;
}

/* dropdown */

.nav_bottom .menu .nav_item .dropdown .dropdown_menu {
    top: 100%;
    border-top: 0;
    max-width: 100%;
}

.nav_bottom .menu .nav_item .dropdown .dropdown_menu .dropdown_body {
    box-shadow: none;
    padding: 1vw;
    border: 1px solid #000000;
}

.nav_bottom .menu .nav_item .dropdown .dropdown_menu .dropdown_body ul li a {
    padding: 0 !important;
    font-weight: 600;
}

.nav_bottom .menu .nav_item .dropdown .dropdown_menu .dropdown_body ul li a:hover {
    color: #ff3d00;
}

/* banner */

.slider_banner .banner_content {
    overflow: hidden;
    opacity: 1 !important;
}

.hp_banner_content {
    gap: 1.65vw;
}

.hp_banner_content h4 {
    font-size: clamp(12px, 1.5vw, 20px);
    line-height: normal;
    font-family: "Rajdhani", sans-serif;
}

.hp_banner_content h4 strong {
    font-weight: 600;
}

.hp_banner_content h4 strong span {
    color: #ff3d00;
}

.hp_banner_content h2 {
    font-size: clamp(30px, 5vw, 75px);
    line-height: 1;
    font-family: "Rajdhani", sans-serif;
}

.hp_banner_content h3 {
    font-size: clamp(16px, 2.7vw, 41.5px);
    line-height: normal;
    font-family: "Rajdhani", sans-serif;
    color: #ff3d00;
}

.hp_banner_content h3 strong {
    font-weight: 600;
}

.hp_banner_content p {
    font-size: clamp(12px, 1vw, 16px);
}

.hp_banner_content img {
    max-width: clamp(15%, 30%, 30%);
}

.hp_banner_button {
    gap: 15px;
}

.hp_banner_button div a button {
    font-size: clamp(12px, 1vw, 16px);
    transition: all 0.50s;
    color: #ffffff;
    padding: 0.325vw 1.65vw;
    border: 1.5px solid transparent;
}

.hp_banner_button div:first-child a button {
    background-color: #ff3d00;
}

.hp_banner_button div:first-child a:hover button {
    background-color: transparent;
    border-color: #ffffff;
}

.hp_banner_button div:last-child a button {
    background-color: transparent;
    border-color: #ffffff;
}

.hp_banner_button div:last-child a:hover button {
    background-color: #ff3d00;
    border-color: transparent;
}

.hp_banner_button div a button b {
    font-weight: 600;
}

/* product */

.index_wrapper_3 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.index_wrapper_3 #index_3 {
    padding-right: 0;
    padding-left: 0;
}

.hp_product_content {
    gap: 15px;
}

.hp_title {
    font-size: 45px;
    line-height: normal;
    font-family: "Rajdhani", sans-serif;
    color: #ff3d00;
}

.hp_line {
    background-color: #ff3d00;
    width: 150px;
    height: 2.5px;
}

.hp_button a button {
    transition: all 0.50s;
    color: #ffffff;
    padding: 5px 25px;
    border: 1.5px solid transparent;
    background-color: #ff3d00;
}

.hp_button a:hover button {
    background-color: transparent;
    border-color: #ff3d00;
    color: #ff3d00;
}

.hp_button a button b {
    font-weight: 600;
}

.hp_product_box {
    border: 1.5px solid #ff3d00;
    transition: all 0.50s;
}

.hp_product_box:hover {
    border-color: transparent;
}

.hp_product_box:before {
    content: '';
    background: linear-gradient(#ff3d00, #ffd100);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 15px;
    height: 75%;
    transition: all 0.50s;
}

.hp_product_box:hover:before {
    height: 100%;
}

.hp_product_box_content {
    top: 0;
    left: 0;
    gap: 25px;
}

.hp_product_box_content h3 {
    font-size: 20px;
    line-height: normal;
}

.hp_product_box_content h3 strong {
    font-weight: 600;
}

.hp_product_box_content img {
    max-width: calc(100% - 50%);
}

.hp_product_box_content .hp_button a button {
    background-color: transparent;
    border-color: #000000;
    color: #000000;
}

.hp_product_box_content .hp_button a:hover button {
    background-color: #ff3d00;
    border-color: transparent;
    color: #ffffff;
}

/* about */

.index_wrapper_4 {
    padding-top: 50px;
    background-color: #e6e6e6;
    position: relative;
    z-index: 0;
}

.index_wrapper_4:after {
    content: '';
    background-color: #ffffff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: -1;
}

.index_wrapper_4 #index_4 {
    padding-right: 0;
    padding-left: 0;
}

.hp_about_image {
    margin-right: -100px;
    margin-left: 50px;
    margin-top: 100px;
    z-index: 1;
}

.hp_about_box {
    background: url(https://cdn1.npcdn.net/userfiles/23034/image/about_1.jpg)
                center / cover no-repeat;
    padding: 50px 150px;
    z-index: 0;
}

.hp_about_box:before {
    content: '';
    background-color: rgba(0, 0, 0, 0.85);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hp_about_box_content {
    gap: 25px;
}

.hp_about_box_content h1 {
    font-size: 25px;
    line-height: 1.25;
    color: #ff3d00;
}

.hp_about_box_content h3 strong {
    font-weight: 600;
}

.hp_about_box_content .hp_button a button {
    background-color: transparent;
    border-color: #ffffff;
}

.hp_about_box_content .hp_button a:hover button {
    background-color: #ff3d00;
    border-color: transparent;
    color: #ffffff;
}

/* brand */

.index_wrapper_5 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.index_wrapper_5 #index_5 {
    padding-right: 0;
    padding-left: 0;
}

.hp_brand_content {
    background: linear-gradient(to right, #ff3d00, #ffd100);
    width: fit-content;
    padding: 0 50px;
}

.hp_brand {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.hp_brand_item {
    padding: 15px;
}

/* why */

.index_wrapper_6 {
    padding-top: 50px;
    padding-bottom: 50px;
    background: url(https://cdn1.npcdn.net/userfiles/23034/image/E-Background.jpg)
                center / cover no-repeat;
}

.index_wrapper_6 #index_6 {
    padding-right: 0;
    padding-left: 0;
}

.hp_why_content {
    gap: 25px;
}

.hp_why {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.hp_why_box {
    background-color: rgba(255, 255, 255, 0.80);
    padding: 50px 15px;
    gap: 25px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
}

.hp_why_box img {
    max-width: calc(100% - 75%);
    max-height: calc(100% - 75%);
    margin: 0 auto;
}

.hp_why_box:hover img {
    animation: 1s linear swing infinite;
}

.hp_why_box h3 {
    font-size: 20px;
    line-height: normal;
    font-family: "Rajdhani", sans-serif;
    color: #ff3d00;
}

.hp_why_box h3 strong {
    font-weight: 600;
}

/* footer */

.footer_type6 {
    background-color: #000000;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}

.footer_type6 .logo {
    padding-top: 0;
    height: 50px;
}

.footer_type6 .logo img {
    position: static;
    transform: none;
    max-height: 100%;
}

.footer_type6 .title {
    min-height: auto;
}

.footer_type6 p {
    margin-bottom: 0;
}

.footer_type6 .title h5 {
    font-weight: bold;
    line-height: normal;
    text-transform: uppercase;
    color: #ff3d00;
}

.footer_type6 a:hover {
    color: #ff3d00;
}

.footer_type6 ul li a p {
    margin-bottom: 0 !important;
}

.footer_type6 ul.list-unstyled {
    margin-bottom: 0 !important;
}

.footer_type6 .input-container {
    height: auto;
}

.footer_type6 .input-container input {
    height: auto;
    transition: all 0.50s;
    padding: 15px 0;
    border-radius: 0;
    border-color: rgba(255, 255, 255, 0.25);
}

.footer_type6 .input-container label {
    height: auto;
    top: 15px;
    padding-right: 0;
    margin-bottom: 0;
    z-index: 1;
    pointer-events: none;
    width: fit-content;
}

.footer_type6 .input-container .moveUp {
    font-size: 0;
    top: 0;
}

.footer_type6 .input-container .submit {
    bottom: -27.5px;
    transform: translateY(50%);
    padding: 0;
    transition: all 0.50s;
}

.footer_type6 .input-container .submit:hover {
    color: #ff3d00;
}

.footer_type6 .col-12:nth-child(5) {
    padding: 15px;
}

.footer_type6 .line {
    padding: 0;
    background-color: transparent;
    margin-bottom: 0;
    height: 0;
    position: relative;
}

.footer_type6 .line:before, .footer_type6 .line:after {
    content: '';
    background-color: rgba(255, 255, 255, 0.25);
    position: absolute;
    top: 0;
    width: 100%;
    height: 1px;
}

.footer_type6 .line:before {
    left: 0;
    transform: translate(-50%, 0);
}

.footer_type6 .line:after {
    right: 0;
    transform: translate(50%, 0);
}

.footer_type6 .col-12.col-md-7 {
    padding: 15px;
}

.footer_type6 .copy_right.text-left .d-flex {
    gap: 15px;
}

.footer_type6 .copy_right.text-left .d-flex p {
    margin-right: 0 !important;
}

.footer_type6 .col-12.col-md-5.py-3.pb-md-0 {
    padding: 15px !important;
}

.footer_type6 .social_media {
    padding-right: 0 !important;
}

.footer_type6 .social_media a {
    margin-left: 0;
    display: flex;
    justify-content: flex-end;
}

.footer_type6 .social_media a:hover {
    color: #ff3d00;
}

.footer_type6 .social_media a i {
    line-height: normal;
}

.footer_type6 .social_media a .icon_s {
    bottom: 0;
}

/* page */

.page_title {
    text-align: center !important;
}

.page_title b {
    font-size: 35px;
    color: #ff3d00;
    font-weight: bold;
    font-family: "Rajdhani", sans-serif;
    text-transform: uppercase;
}

.wspages {
    padding: 50px 0;
    min-height: auto !important;
    font-size: 1rem;
}

#main_contactus {
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 1rem;
}

#main_contactus #contactus_1_1 .ws_contact {
    display: flex;
    flex-direction: column-reverse;
}

#main_contactus #contactus_1_1 .col-12.col-md-4.ws_contact {
    margin-bottom: 15px !important;
}

#main_contactus #contactus_1_1 .ws_contact .col-12.p-0.contact_map.mb_10 {
    display: flex;
    margin-bottom: 0;
}

#main_contactus #contactus_1_1 .ws_contact .col-12.p-0.contact_map.mb_10 iframe {
    height: 500px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 15px;
}

/* */

/* tablet */

@media (min-width:768px) and (max-width:1140px) {

/* product */

.hp_product_box_content h3 {
    font-size: 16px;
}

.hp_product_box_content img {
    max-width: calc(100% - 60%);
}

/* about */

.hp_about_box {
    padding: 50px 15px 50px 150px;
}

/* why */

.hp_why {
    grid-template-columns: repeat(2, 1fr);
}

.hp_why_box img {
    max-height: calc(100% - 0%);
}

/* footer */

.footer_type6 .input-container label {
    font-size: 10px;
    top: 17.5px;
}

}

/* */

/* mobile */

@media (max-width: 767px) {

/* header */

.hp_header {
    display: none;
}

/* menu */

.navbar_mobile {
    background-color: #ffffff;
    border-bottom: 0;
    height: auto;
}

.navbar_mobile .row_1 {
    flex-direction: row-reverse;
    margin-bottom: 0;
    padding-top: 0 !important;
}

.navbar_mobile .row_1 .col.pl-4 {
    padding: 15px !important;
    justify-content: flex-end;
}

.navbar_mobile .btn-outline-light {
    border-radius: 0 !important;
    border: 0;
    font-size: 16px !important;
    padding: 0;
    line-height: normal;
    display: flex;
}

.navbar_mobile .btn-outline-light:hover {
    color: #ff3d00;
    background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active, .show>.btn-outline-light.dropdown-toggle {
    color: transparent;
    background-color: transparent;
    border-color: transparent;
}

.navbar_mobile .row_1 .col.text-center {
    padding: 15px;
}

/*
.navbar_mobile .logo_img {
    max-height: 35px;
}
*/

.navbar_mobile .row_1 .col {
    padding: 15px;
}

.side_menu {
    background-color: #000000;
}

.side_menu input {
    border-radius: 0;
    height: auto;
    padding: 5px 15px;
    border: none;
    background-color: #ffffff;
    color: #000000;
}

.side_menu input::placeholder {
    color: #000000 !important;
}

.side_menu button {
    right: 15px !important;
    font-size: 16px !important;
    padding: 0;
    color: #000000 !important;
    transition: all 0.50s;
}

.side_menu button:hover {
    color: #ff3d00 !important;
}

.side_menu .list-group .list-group-item {
    border-color: rgba(255, 255, 255, 0.25);
}

.side_menu .list-group .list-group-item a {
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
}

.side_menu .list-group .list-group-item a:hover {
    color: #ff3d00;
}

.side_menu .social_media a {
    color: #ffffff;
}

.side_menu .social_media a:hover {
    color: #ff3d00;
}

.m_default_member a:hover, .m_default_languagebar a:hover {
    color: #ff3d00;
}

/* banner */

.slider_banner .item img {
    height: 300px !important;
    object-fit: cover;
    object-position: 40%;
}

.hp_banner_content {
    width: 100% !important;
}

.hp_banner_content p {
    width: 75%;
}

.hp_banner_content p br {
    display: none;
}

/* about */

.hp_about {
    flex-direction: column;
}

.hp_about_image {
    margin-right: auto;
    margin-left: auto;
    margin-top: 0;
    margin-bottom: -50px;
    max-width: 50%;
}

.hp_about_box {
    padding: 50px 15px;
}

.hp_about_box_content h1 strong br {
    display: none;
}

/* brand */

.hp_brand {
    grid-template-columns: repeat(2, 1fr);
}

/* why */

.hp_why_content p br {
    display: none;
}

.hp_why {
    grid-template-columns: repeat(1, auto);
}

.hp_why_box img {
    max-height: calc(100% - 0%);
}

/* footer */

.footer_type6 .col-12.col-md-3.mb-1.mb-md-0.p-3 {
    margin-bottom: 0 !important;
}

.footer_type6 .line {
    margin-top: 100px;
}

}

/* */