/* desktop */

:root {
    --color-primary: #ae8b49;
    --color-secondary: #05172b;
}

body {
    color: #05172b;
    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;
}

/* menu */

#main_index .navbar_ecommerceDropdown {
    height: 0;
    z-index: 1;
}

.navbar_ecommerceDropdown {
    padding: 0;
    background-color: var(--color-secondary);
}

.navbar_ecommerceDropdown .container.d-flex.justify-content-between {
    padding: 0;
    align-items: center;
    max-width: 80vw;
}

.nav_logo {
    padding: 1vw;
}

.nav_logo a {
    display: flex;
}

.navbar_ecommerceDropdown .nav_logo img {
    max-height: 5vw;
}

.navbar_ecommerceDropdown .nav_search {
    padding: 1vw;
    justify-content: flex-end;
}

.nav_bottom {
    background-color: transparent;
}

.nav_bottom .container.p-0 {
    max-width: 100%;
}

.nav_bottom .menu {
    gap: 3.25vw;
}

.nav_bottom .menu .nav_item:hover {
    background-color: transparent;
}

.nav_bottom .menu .nav_item .dropdown a {
    padding: 0 5px;
    color: #ffffff;
    font-size: 1vw;
}

.nav_bottom .menu .nav_item .dropdown a:after {
    content: '';
    background-color: var(--color-primary);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.50s;
    opacity: 0;
}

.nav_bottom .menu .nav_item:hover .dropdown a:after {
    opacity: 1;
    height: 2.5px;
}

.nav_bottom .menu .nav_item .dropdown a strong {
    font-weight: normal;
}

/* banner */

.slider_banner .slick-arrow {
    display: none !important;
}

.slider_banner .banner_content {
    overflow: hidden;
}

.hp_banner_content {
    gap: 1vw;
    font-size: 1vw;
}

.hp_banner_content h3 {
    font-size: 1.3vw;
    line-height: normal;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.325vw;
}

.hp_banner_content h3 span {
    font-size: 0.65vw;
}

.hp_banner_content h2 {
    font-size: 3vw;
    line-height: normal;
}

.hp_banner_content h2 em {
    color: var(--color-primary);
}

.hp_banner_button {
    gap: 1vw;
}

.hp_banner_button p a button {
    transition: all 0.50s;
    border: 1px solid var(--color-primary);
    background-color: transparent;
    padding: 0.325vw 1.65vw;
    display: flex;
    align-items: center;
    gap: 0.325vw;
}

.hp_banner_button p:first-child a button {
    background-color: var(--color-primary);
    color: #ffffff;
}

.hp_banner_button p:first-child a:hover button {
    background-color: transparent;
    color: var(--color-primary);
}

.hp_banner_button p:last-child a button {
    color: var(--color-primary);
}

.hp_banner_button p:last-child a:hover button {
    background-color: var(--color-primary);
    color: #ffffff;;
}

.hp_banner_button p:last-child a button i {
    color: #25D366;
}

.hp_banner_arrow {
    gap: 1vw;
}

.hp_banner_arrow div i {
    font-size: 1.65vw;
    cursor: pointer;
    border-radius: 100%;
    padding: 1.65vw;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    transition: all 0.50s;
}

.hp_banner_arrow div:first-child i {
    background-color: var(--color-primary);
    color: #ffffff;
}

.hp_banner_arrow div:first-child i:hover {
    background-color: #ffffff;
    color: var(--color-primary);
}

.hp_banner_arrow div:last-child i {
    background-color: #ffffff;
    color: var(--color-primary);
}

.hp_banner_arrow div:last-child i:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

/* why */

.index_wrapper_3 {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f8f8f8;
}

.index_wrapper_3 #index_3 {
    padding-right: 0;
    padding-left: 0;
}

.hp_why {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hp_why_box {
    padding: 15px;
    gap: 15px;
}

.hp_why_box:before {
    content: '';
    background-color: var(--color-secondary);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: calc(100% - 75px);
}

.hp_why_box:first-child:before {
    display: none;
}

.hp_why_box div {
    max-width: 65px;
}

.hp_why_box h3 {
    font-size: 20px;
    line-height: normal;
    color: var(--color-primary);
}

.hp_why_box:nth-child(3) p {
    margin-top: auto;
}

/* service */

.index_wrapper_4 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.index_wrapper_4 #index_4 {
    padding-right: 0;
    padding-left: 0;
}

.hp_service {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.hp_service_content {
    gap: 15px;
}

.hp_subtitle {
    font-size: 20px;
    line-height: normal;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.hp_subtitle span {
    font-size: 10px;
}

.hp_title {
    font-size: 25px;
    line-height: normal;
}

.hp_title em {
    font-size: 35px;
    color: var(--color-primary);
}

.hp_service_content p {
    max-width: calc(100% - 55px);
}

.hp_button p a button {
    transition: all 0.50s;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 5px 25px;
    border: 1px solid transparent;
}

.hp_button p a:hover button {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.hp_service_box {
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(5, 23, 43, 0.15);
}

.hp_service_box div:first-child img {
    transform: scale(1.05);
}

.hp_service_box_content {
    padding: 25px;
    gap: 15px;
}

.hp_service_box_content div {
    max-width: 50px;
}

.hp_service_box:hover .hp_service_box_content img {
    animation: 1s linear swing infinite;
}

.hp_service_box_content h3 {
    font-size: 20px;
    line-height: normal;
    color: var(--color-primary);
}

/* project */

.index_wrapper_5 {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--color-secondary);
}

.index_wrapper_5 #index_5 {
    padding-right: 0;
    padding-left: 0;
}

.hp_project {
    gap: 30px;
}

.hp_project_content {
    gap: 15px;
}

.hp_project .hp_button p a button {
    background-color: transparent;
    border-color: #ffffff;
}

.hp_project .hp_button p a:hover button {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.hp_photoGallerySliderWithTitle {
    background-color: transparent;
}

.hp_photoGallerySliderWithTitle .col-12 {
    padding: 0;
}

.hp_photoGallerySliderWithTitle .photo-0-gallery {
    margin-bottom: 0;
}

.hp_photoGallerySliderWithTitle .slick-slide {
    min-height: auto;
}

.hp_photoGallerySliderWithTitle .photo-gallery .slick-arrow {
    display: none !important;
}

.hp_photoGallerySliderWithTitle .photo-gallery {
    padding: 0;
}

.hp_photoGallerySliderWithTitle .photo-gallery .outline_box {
    opacity: 1 !important;
    transform: none !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hp_photoGallerySliderWithTitle .photo-gallery .outline_box .gallery_box {
    height: auto;
    padding-top: 0;
    aspect-ratio: 3 / 2;
}

.hp_photoGallerySliderWithTitle .photo-gallery .outline_box p {
    color: #ffffff;
    margin-bottom: 0;
}

.hp_photoGallerySliderWithTitle .slick-dots {
    padding: 15px;
    bottom: 0;
    display: flex;
    justify-content: center;
}

.hp_photoGallerySliderWithTitle .slick-dots li {
    width: 100%;
    height: auto;
    margin: 0;
}

.hp_photoGallerySliderWithTitle .slick-dots li button {
    width: 100%;
    height: 5px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.75);
    transition: all 0.50s;
}

.hp_photoGallerySliderWithTitle .slick-dots li button:hover,
.hp_photoGallerySliderWithTitle .slick-dots li.slick-active button {
    background-color: var(--color-primary);
}

.hp_photoGallerySliderWithTitle .slick-dots li button:before {
    display: none;
}

/* about */

.index_wrapper_6 {
    padding-top: 50px;
    padding-bottom: 50px;
    background: url(https://cdn1.npcdn.net/userfiles/16899/image/E_Background.jpg)
                center / cover no-repeat;
}

.index_wrapper_6 #index_6 {
    padding-right: 0;
    padding-left: 0;
}

.hp_about {
    gap: 50px;
}

.hp_about_content {
    gap: 15px;
}

.hp_about_content .hp_title {
    color: var(--color-secondary);
}

.hp_about_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.hp_about_box {
    gap: 15px;
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.50s;
}

.hp_about_box:hover {
    background-color: var(--color-primary);
}

.hp_about_box div {
    max-width: 50px;
}

.hp_about_box img {
    transition: all 0.50s;
}

.hp_about_box:hover img {
    filter: brightness(0) invert(1);
    animation: 1s linear pulse infinite;
}

.hp_about_box h3 {
    font-size: 16px;
    line-height: normal;
    color: var(--color-primary);
    transition: all 0.50s;
}

.hp_about_box:hover h3 {
    color: #ffffff;
}

/* partner */

.index_wrapper_7 {
    padding-top: 50px;
    padding-bottom: 50px;
    background: url(https://cdn1.npcdn.net/userfiles/16899/image/G_Background.jpg)
                center / cover no-repeat;
}

.index_wrapper_7 #index_7 {
    padding-right: 0;
    padding-left: 0;
}

.hp_partner_content {
    gap: 15px;
}

.hp_partner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* contact */

.index_wrapper_8 {
    padding-top: 50px;
    padding-bottom: 50px;
    background: url(https://cdn1.npcdn.net/userfiles/16899/image/H_Background.jpg)
                center / cover no-repeat;
}

.index_wrapper_8 #index_8 {
    padding-right: 0;
    padding-left: 0;
}

.hp_contact {
    gap: 30px;
}

.hp_contact_content {
    gap: 15px;
}

.hp_contact_content ul {
    gap: 15px;
}

.hp_contact_content ul li {
    gap: 15px;
}

.hp_contact_content ul li i {
    font-size: 25px;
    width: 25px;
}

.hp_contact_content ul li:first-child i {
    transform: rotate(-45deg);
}

.hp_contact_content ul li:last-child p {
    max-width: calc(100% - 40%);
}

.hp_contact_running_content {
    width: max-content;
    animation: hp-running 15s linear infinite;
}

@keyframes hp-running {
    from {
        transform: translateX(-50%);
    }
    
    to {
        transform: translateX(0);
    }
}

.hp_contact_running_content h3 {
    font-size: 35px;
    line-height: normal;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-left: 50px;
}

.hp_contact_running_content h3 strong {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* footer */

.footer_type6 {
    background-color: var(--color-secondary);
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}

.footer_type6 .logo {
    padding-top: 0;
    height: auto;
}

.footer_type6 .logo img {
    position: static;
    transform: none;
    width: calc(100% - 75%);
    max-height: 100%;
}

.footer_type6 p {
    margin-bottom: 0;
}

.footer_type6 .w-100.mb-3.text-left.p-0 {
    margin-bottom: 0 !important;
    margin-top: 15px;
}

.footer_type6 .npfooter_languagebar .text-muted {
    color: #ffffff !important;
}

.footer_type6 .title {
    min-height: auto;
}

.footer_type6 .title h5 {
    font-weight: bold;
    line-height: normal;
    text-transform: uppercase;
    color: var(--color-primary);
}

.footer_type6 ul {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer_type6 a:hover {
    color: var(--color-primary);
}

.footer_type6 ul li a p {
    margin-bottom: 0 !important;
}

.footer_type6 .input-container {
    height: auto;
    display: flex;
    align-items: center;
}

.footer_type6 .input-container input, .footer_type6 .input-container label {
    height: auto;
}

.footer_type6 .input-container input {
    border-color: #ffffff;
    position: static;
    padding: 15px 0;
    border-radius: 0;
}

.footer_type6 .input-container label {
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    margin-bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.footer_type6 .input-container label:hover {
    font-size: 0;
}

.footer_type6 .input-container .moveUp {
    display: none;
}

.footer_type6 .input-container .submit {
    position: static;
    border-radius: 0;
    transition: all 0.50s;
    border-bottom: 1px solid #ffffff;
    padding: 15px 0;
    color: var(--color-primary);
}

.footer_type6 .input-container .submit:hover {
    color: #ffffff;
}

.footer_type6 .col-12:nth-child(5) {
    padding: 15px;
}

.footer_type6 .line {
    background-color: #ffffff;
    margin-bottom: 0;
    padding: 0;
    position: relative;
}

.footer_type6 .line:before, .footer_type6 .line:after {
    content: '';
    background-color: #ffffff;
    position: absolute;
    top: 0;
    width: 100%;
    height: 1px;
}

.footer_type6 .line:before {
    left: -100%;
}

.footer_type6 .line:after {
    right: -100%;
}

.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;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.footer_type6 .social_media a {
    margin-left: 0;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    padding: 15px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
}

.footer_type6 .social_media a:hover {
    background-color: #ffffff;
    color: var(--color-primary);
}

.footer_type6 .social_media a i {
    line-height: normal;
    font-size: 16px;
}

.footer_type6 .social_media a .icon_s {
    bottom: 0;
}

/*
.footer_type6 .social_media a .icon_s img {
    filter: brightness(0);
    height: 16px;
}
*/

/*
.footer_type6 .social_media a:hover .icon_s img {
    filter: brightness(100);
}
*/

/* page */

.page_title {
    text-align: center !important;
}

.page_title b {
    font-size: 35px;
    color: var(--color-secondary);
    font-weight: bold;
}

.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) {

/* service */

.hp_service_box_content h3 {
    font-size: 16px;
}

}

/* */

/* mobile */

@media (max-width: 767px) {

/* menu */

.navbar_mobile {
    background-color: var(--color-secondary);
    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: #ffffff;
    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: #ffffff;
    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: var(--color-secondary);
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.side_menu input {
    border-radius: 100px;
    height: auto;
    padding: 5px 15px;
    border: none;
    background-color: #ffffff;
    color: var(--color-secondary);
}

.side_menu input::placeholder {
    color: var(--color-secondary) !important;
}

.side_menu button {
    right: 15px !important;
    font-size: 16px !important;
    padding: 0;
    color: var(--color-secondary) !important;
    transition: all 0.50s;
}

.side_menu button:hover {
    color: var(--color-primary) !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;
}

.side_menu .list-group .list-group-item a:hover {
    color: var(--color-primary);
}

.side_menu .social_media a {
    color: #ffffff;
}

.side_menu .social_media a:hover {
    color: var(--color-primary);
}

.m_default_member a:hover, .m_default_languagebar a:hover {
    color: var(--color-primary);
}

/* banner */

.slider_banner .item > img {
    height: 550px !important;
    object-fit: cover;
}

.hp_table > div {
    flex-direction: column;
}

.hp_banner_content {
    font-size: 16px;
    gap: 15px;
    width: 100% !important;
}

.hp_banner_content h3 {
    font-size: 16px;
}

.hp_banner_content h3 span {
    font-size: 10px;
}

.hp_banner_content h2 {
    font-size: 30px;
}

.hp_banner_content h2 br {
    display: none;
}

.hp_banner_button {
    flex-direction: column;
    gap: 15px;
}

.hp_banner_arrow {
    margin-left: auto;
}

.hp_banner_arrow div i {
    font-size: 25px;
    padding: 25px;
}

/* why */

.hp_why {
    grid-template-columns: auto;
}

.hp_why_box:before {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: calc(100% - 75px);
    height: 1px;
}

.hp_why_box h3 strong br {
    display: none;
}

/* service */

.hp_service {
    grid-template-columns: auto;
}

.hp_service_content p {
    max-width: calc(100% - 0px);
}

/* project */

.hp_project {
    align-items: flex-start !important;
    flex-direction: column;
}

/* about */

.hp_about {
    flex-direction: column;
}

.hp_about_image, .hp_about_content {
    width: 100% !important;
}

.hp_about_list {
    grid-template-columns: repeat(2, 1fr);
}

/* partner */

.hp_partner {
    grid-template-columns: repeat(2, 1fr);
}

/* contact */

.hp_contact {
    flex-direction: column;
}

.hp_contact_content ul li:last-child p {
    max-width: 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: 50px;
}

}

/* */