@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* desktop */

html {
  scroll-behavior: smooth;
}

body {
    color: #000000;
    font-size: 16px !important;
    line-height: 1.75;
    letter-spacing: 2.5px;
}

a {
    text-decoration: none !important;
    transition: all 0.50s !important;
}

.all_functional_page {
    padding-bottom: 100px !important;
}

#main_index {
    overflow: hidden;
    padding-bottom: 0 !important;
}

/* menu */

.navbar_type8 {
    height: 100px;
    max-width: 1240px;
    left: 50%;
    transform: translate(-50%, 0);
}

.navbar_type8 .logo {
    margin-left: 0;
}

.navbar_type8 .logo img {
    width: auto;
}

.navbar_type8 .nav_tab {
    padding-left: 0;
    padding-right: 15px;
    align-items: center;
    gap: 25px;
}

.navbar_type8 .nav_tab .nav_item {
    text-transform: capitalize;
}

.navbar_type8 .nav_tab .nav_item::before {
    display: none;
}
.navbar_type8 .nav_tab .dropdown .dropdown-menu{
    top:20px;
}

.navbar_type8 .nav_tab .nav_item a {
    padding: 0;
    font-size: 1vw;
}

.navbar_type8 .nav_tab .nav_item a:hover {
    color: #101097;
}

.dark_nav {
    background-color: transparent !important;
    height: 75px;
}
.navbar_type8 .nav_tab .dropdown .dropdown-menu .dropdown-item a:hover{
    color:#fff!important;
}

.dark_nav:before {
    content: '';
    background-color: #000000;
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.dark_nav:after {
    content: '';
    background-color: #000000;
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#top_spacing {
    background-color: #000000;
}

/* banner */

.index_wrapper_2 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.slider_banner .banner_content {
    overflow: hidden;
}

.hp_table {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 15px;
    height: 100%;
    color: #ffffff;
    gap: 150px;
}

.hp_content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hp_content h1 {
    font-size: 65px;
    font-weight: bold;
    line-height: normal;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 5px;
}

.hp_content p {
    font-size: 25px;
    max-width: 55%;
    margin: 0 auto;
}

.hp_banner_button a button {
    transition: all 0.50s;
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    padding: 15px 50px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.hp_banner_button a button:hover {
    border-color: #101097;
    background-color: #101097;
    border-radius: 5px;
}

.hp_click {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hp_mouse {
    border: 2.5px solid #ffffff;
    padding: 15px;
    margin: 0 auto;
    border-radius: 25px;
    display: flex;
    width: 25px;
    height: 50px;
    position: relative;
    cursor: pointer;
    transition: all 0.50s;
}

.hp_mouse:hover {
    border-color: #101097;
}

.hp_mouse a {
    display: flex;
    color: #ffffff;
    animation: 1s hp_move infinite alternate;
}

.hp_mouse:hover a {
    color: #101097;
}

@keyframes hp_move {
    0% {
        transform: translate(-50%, 10px);
    }
    
    100% {
        transform: translate(-50%, -10px);
    }
}

.hp_mouse a i {
    transform: rotate(90deg);
}

.hp_click p {
    text-transform: uppercase;
}

/* about */

.index_wrapper_3 {
    margin-top: -300px;
    padding-top: 300px;
    padding-bottom: 300px;
    color: #ffffff;
    position: relative;
}

.index_wrapper_3:before {
    content: '';
    background-image: url(https://cdn1.npcdn.net/userfiles/25583/image/2_AbtBG.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.index_wrapper_3 #index_3 {
    padding-right: 0;
    padding-left: 0;
}

.hp_title {
    font-size: 35px;
    font-weight: bold;
    line-height: normal;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 5px;
    position: relative;
}

.hp_title:before {
    content: '';
    background-image: url(https://cdn1.npcdn.net/userfiles/25583/image/2_TitleEllipse.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-35px, -50%);
    width: 75px;
    height: 75px;
    animation: 5s hp_rotate_left infinite alternate;
}

@keyframes hp_rotate_left {
    0% {
        transform: translate(-35px, -50%) rotate(0deg);
    }
    
    25% {
        transform: translate(-35px, -50%) rotate(5deg);
    }
    
    50% {
        transform: translate(-35px, -50%) rotate(0deg);
    }
    
    75% {
        transform: translate(-35px, -50%) rotate(-5deg);
    }
    
    100% {
        transform: translate(-35px, -50%) rotate(0deg);
    }
}

.index_wrapper_3 .hp_title {
    margin-left: -35px;
}

.hp_button a button {
    transition: all 0.50s;
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    padding: 15px 50px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.hp_button a button:hover {
    border-color: #101097;
    background-color: #101097;
    border-radius: 5px;
}

/* service */

.index_wrapper_4 {
    margin-top: -300px;
    padding-top: 300px;
    padding-bottom: 300px;
    color: #ffffff;
    position: relative;
}

.index_wrapper_4:before {
    content: '';
    background-image: url(https://cdn1.npcdn.net/userfiles/25583/image/3_ServiceBG.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.index_wrapper_4 #index_4 {
    padding-right: 0;
    padding-left: 0;
}

.hp_title_2 {
    font-size: 35px;
    font-weight: bold;
    line-height: normal;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 5px;
    position: relative;
}

.hp_title_2:before {
    content: '';
    background-image: url(https://cdn1.npcdn.net/userfiles/25583/image/2_TitleEllipse.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(35px, -50%) scale(-1);
    width: 75px;
    height: 75px;
    animation: 5s hp_rotate_right infinite alternate;
}

@keyframes hp_rotate_right {
    0% {
        transform: translate(35px, -50%) scale(-1) rotate(0deg);
    }
    
    25% {
        transform: translate(35px, -50%) scale(-1) rotate(-5deg);
    }
    
    50% {
        transform: translate(35px, -50%) scale(-1) rotate(0deg);
    }
    
    75% {
        transform: translate(35px, -50%) scale(-1) rotate(5deg);
    }
    
    100% {
        transform: translate(35px, -50%) scale(-1) rotate(0deg);
    }
}

.index_wrapper_4 .hp_title_2 {
    margin-right: -35px;
}

.hp_service {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hp_img {
    max-width: 100px;
    margin: 0 auto;
}

.hp_service:hover .hp_img {
    animation: 1s swing infinite alternate;
}

.hp_service p {
    text-transform: uppercase;
}

/* why */

.index_wrapper_5 {
    margin-top: -300px;
    padding-top: 300px;
    padding-bottom: 300px;
    color: #ffffff;
    position: relative;
}

.index_wrapper_5:before {
    content: '';
    background-image: url(https://cdn1.npcdn.net/userfiles/25583/image/4_WhyBG.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
}

.index_wrapper_5 #index_5 {
    padding-right: 0;
    padding-left: 0;
}

.index_wrapper_5 .hp_title {
    margin-left: -35px;
}

.index_wrapper_5 .hp_title:before {
    top: 25%;
}

.index_wrapper_5 .hp_title span {
    margin-left: 50px;
}

.hp_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hp_box_2 {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 125px 15px;
    transition: all 0.50s;
    position: relative;
    overflow: hidden;
}

.hp_box_2:hover {
    background-color: #ffffff;
}

.hp_box_2:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.hp_box_2:last-child {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hp_up {
    position: absolute;
    top: 65%;
    left: 0;
    transform: translate(0, -50%);
    padding: 15px 25px;
    transition: all 0.50s;
}

.hp_box_2:hover .hp_up {
    top: 25%;
}

.hp_icon {
    filter: invert(10);
    max-width: 75px;
    transition: all 0.50s;
}

.hp_box_2:hover .hp_icon {
    filter: invert(0);
    animation: 1s swing infinite alternate;
}

.hp_box_2 h1 {
    font-size: 16px;
    font-weight: bold;
    line-height: normal;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 2.5px;
    color: #ffffff;
    transition: all 0.50s;
}

.hp_box_2:hover h1 {
    color: #000000;
}

.hp_text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px 25px;
    transition: all 0.50s;
    opacity: 0;
}

.hp_box_2:hover .hp_text {
    opacity: 1;
    color: #000000;
}

/* client */

.index_wrapper_6 {
    margin-top: -300px;
    padding-top: 300px;
    padding-bottom: 300px;
    color: #ffffff;
    position: relative;
}

.index_wrapper_6:before {
    content: '';
    background-image: url(https://cdn1.npcdn.net/userfiles/25583/image/5_ClientBG.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
}

.index_wrapper_6 #index_6 {
    padding-right: 0;
    padding-left: 0;
}

.index_wrapper_6 .hp_title:before {
    display: none;
}

.index_wrapper_6 section p {
    max-width: 65%;
    margin: 0 auto;
}

.hp_slider .slick-arrow {
    z-index: 1;
}

.hp_slider .slick-prev {
    left: 0;
    transform: translate(-50%, -50%);
}

.hp_slider .slick-next {
    right: 0;
    transform: translate(50%, -50%);
}

.hp_slider .slick-prev::before, .hp_slider .slick-next::before {
    text-shadow: none;
    font-size: 25px;
    line-height: normal;
    opacity: 1;
    transition: all 0.50s;
}

.hp_slider .slick-prev:hover:before, .hp_slider .slick-next:hover:before {
    color: #101097;
}

.hp_slider .hp_item {
    padding: 15px;
}

.hp_slider .hp_item img {
    border-radius: 25px;
}

/* contact */

.index_wrapper_7 {
    margin-top: -200px;
    padding-top: 300px;
    padding-bottom: 100px;
    color: #ffffff;
    position: relative;
}

.index_wrapper_7:before {
    content: '';
    background-image: url(https://cdn1.npcdn.net/userfiles/25583/image/6_ContactBG.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
}

.index_wrapper_7 #index_7 {
    padding-right: 0;
    padding-left: 0;
}

.index_wrapper_7 .hp_title_2 {
    margin-right: -35px;
}

/* footer */

.footer_type3 .col-12 {
    padding: 15px;
}

.footer_type3 p {
    font-size: 16px;
    margin-bottom: 0 !important;
}

.footer_type3 p small {
    font-size: 16px;
    font-weight: normal;
}

.footer_type3 .col-12 .text-left.d-flex.mb-2 {
    margin-bottom: 0 !important;
    align-items: center;
}

.footer_type3 .col-12 .text-left.d-flex.mb-2 div {
    font-size: 16px !important;
    margin-right: 0 !important;
    display: flex;
    gap: 15px;
}

.footer_type3 .privacy_policy, .footer_type3 .footer_terms, .footer_type3 .footer_returns {
    font-size: 16px;
    margin-right: 0 !important;
    padding-right: 0 !important;
}

.footer_type3 .social_media {
    margin-bottom: 0;
}

.footer_type3 .social_media li {
    margin-left: 0;
}

.footer_type3 .social_media li a {
    font-size: 16px;
}

.footer_type3 .social_media li a:hover {
    color: #101097;
}

.footer_type3 a:hover {
    color: #101097;
}

/* page */

.page_title {
    margin: 100px auto 15px;
    text-align: center !important;
}

.page_title b {
    font-size: 35px;
    font-weight: bold;
    color: #000000;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 5px;
}

#main_contactus {
    padding-bottom: 100px;
}

#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 {
    display: block;
    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 only screen and (min-width: 768px) and (max-width: 1140px) {

/* banner */

.hp_table {
    gap: 50px;
}

.hp_content h1 {
    font-size: 35px;
}

.hp_content p {
    font-size: 12.5px;
}

.hp_banner_button {
    margin-top: 0 !important;
}

/* about */

.index_wrapper_3 .hp_title {
    margin-left: 0;
}

/* service */

.index_wrapper_4 .hp_title_2 {
    margin-right: 0;
}

/* why */

.index_wrapper_5 .hp_title {
    margin-left: 0;
}

.index_wrapper_5 section .col-12.col-md-4.col-lg-4.p-3 {
    flex: 0 0 40%;
    max-width: 40%;
}

.index_wrapper_5 section .col-12.col-md-8.col-lg-8.p-3 {
    flex: 0 0 60%;
    max-width: 60%;
}

.hp_text p {
    font-size: 10px;
}

/* client */

.index_wrapper_6 section p {
    max-width: 75%;
}

/* contact */

.index_wrapper_7 .hp_title_2 {
    margin-right: 0;
}

}

/* */

/* mobile */

@media only screen and (max-width: 767px) {

/* menu */

.navbar_mobile {
    background-color: #000000;
    border-bottom: none;
    height: 75px;
    display: flex;
    justify-content: center;
}

.navbar_mobile .row_1 {
    margin-bottom: 0;
    padding-top: 0 !important;
    align-items: center;
    flex-direction: row-reverse;
}

.navbar_mobile .row_1 .col.pl-4 {
    justify-content: flex-end;
}

.navbar_mobile .row_1 .col.pl-4, .navbar_mobile .row_1 .col.text-center {
    padding: 15px !important;
}

.navbar_mobile .row_1 .col.pl-4 {
    padding: 0 0 0 15px !important;
}

.navbar_mobile .row_1 .col.text-center {
    order: 1;
    text-align: left !important;
}

.navbar_mobile .btn-outline-light {
    font-size: 25px !important;
    border: none !important;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    color: #ffffff;
    border-radius: 0 !important;
    background-color: transparent;
}

.navbar_mobile .btn-outline-light:hover {
    color: #101097;
    border: none !important;
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus, .btn-outline-light:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-light.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active, .show>.btn-outline-light.dropdown-toggle {
    color: inherit;
    background-color: inherit;
}

.side_menu {
    background-color: #000000;
}

.side_menu.show {
    width: 75%;
}

.side_menu .mt-3.mx-3.pt-5 {
    margin-top: 0 !important;
}

.side_menu input {
    border-radius: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 1);
    color: #000000;
}

.side_menu input::placeholder {
    color: #000000 !important;
}

.side_menu button {
    color: #000000 !important;
    transition: all 0.50s;
}

.side_menu button:hover {
    color: #101097 !important;
}

.side_menu .list-group {
    margin-top: 50px !important;
    padding-right: 15px;
    padding-left: 15px;
}

.side_menu .list-group .list-group-item {
    border-bottom: 1px solid #ffffff;
    padding: 15px 15px 15px 0;
}

.side_menu .list-group .list-group-item:last-child {
    border-bottom: none;
}

.side_menu .list-group .list-group-item a, .side_menu .social_media a {
    color: #ffffff;
}

.side_menu .list-group .list-group-item a:hover, .side_menu .social_media a:hover {
    color: #101097;
}

.side_menu .social_media {
    width: auto;
    padding: 0;
    justify-content: flex-start;
}

.side_menu .social_media a {
    margin: 0;
}

/* banner */

.slider_banner .item img {
    height: 550px !important;
    object-fit: cover;
}

.hp_table {
    justify-content: space-between;
    height: 75%;
    gap: 75px;
}

.hp_content h1 {
    font-size: 35px;
}

.hp_content p {
    font-size: 12.5px;
    max-width: 100%;
}

.hp_banner_button {
    margin-top: 0 !important;
}

/* about */

.index_wrapper_3 .hp_title {
    margin-left: 35px;
}

/* service */

.index_wrapper_4 {
    padding-top: 200px;
    padding-bottom: 400px;
}

.index_wrapper_4 .hp_title_2 {
    margin-right: 35px;
}

.index_wrapper_4 section .text-right {
    text-align: center !important;
}

/* why */

.index_wrapper_5 {
    margin-top: -400px;
    padding-top: 250px;
    padding-bottom: 350px;
}

.index_wrapper_5 .hp_title {
    margin-left: 35px;
}

.index_wrapper_5 .hp_title span {
    margin-left: 35px;
}

.hp_box {
    grid-template-columns: auto;
}

.hp_box_2:first-child {
    border-right: none;
}

.hp_box_2:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.hp_box_2:last-child {
    border-left: none;
}

.hp_text p {
    font-size: 12.5px;
}

/* client */

.index_wrapper_6 {
    padding-top: 150px;
    padding-bottom: 200px;
}

.index_wrapper_6 section p {
    max-width: 100%;
}

/* contact */

.index_wrapper_7 {
    padding-top: 250px;
}

.index_wrapper_7 .hp_title_2 {
    margin-right: 35px;
}

/* footer */

.footer_type3 {
    padding-bottom: 50px;
}

/* float */

#toTop {
    bottom: 50px !important;
}

.floating_btn_bottom_block {
    height: auto;
}

.floating_btn_bottom {
    background-color: #101097;
    height: auto;
    padding: 15px;
}

.floating_btn_bottom .col-12.text-center {
    padding: 0;
}

.floating_btn_bottom_wrapper {
    margin-bottom: 0;
}

.floating_btn_bottom_wrapper > li > a > i {
    font-size: 25px;
    line-height: normal;
    transition: all 0.50s;
}

.floating_btn_bottom_wrapper > li > a > i:hover {
    color: #000000;
}

}

.footer_type3 .privacy_policy {
  margin-left: 15px;
}

/* */

/*Custom_page*/
#main_index{ padding-bottom:0rem!important; overflow:hidden; }
#main_index h1, #main_index h2, #main_index h5{ cursor:default; }

.hp_project_table{
    position:relative;
    padding:5rem 9%;
    background:#f8f6f1;
    color:#1f1f1f;
}
.hp_project_table:nth-of-type(even){
    background:#ffffff;
}
.hp_project_table .container-fluid{
    padding:0;
}
.hp_project_head{
    max-width:880px;
    margin:0 auto 2.5rem;
    text-align:center;
}
.hp_project_head .n_small{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin:0 0 0.85rem;
    padding:0.45rem 1.1rem;
    border:1px solid rgba(185,149,96,0.35);
    border-radius:999px;
    color:#b99560;
    font-size:0.8rem;
    font-weight:700;
    letter-spacing:0.18em;
    line-height:1.2;
    text-transform:uppercase;
}
.hp_project_head .n_title{
    margin:0;
    color:#151515;
    font-size:2.65rem;
    font-weight:700;
    line-height:1.12;
    letter-spacing:-0.03em;
}
.hp_project_head .n_content{
    max-width:680px;
    margin:1rem auto 0;
    color:#666;
    font-size:1rem;
    font-weight:400;
    line-height:1.8;
}
.hp_project_tablebox{
    width:100%;
    overflow-x:auto;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:1.2rem;
    background:#ffffff;
    box-shadow:0 1rem 3rem rgba(0,0,0,0.06);
}
.hp_project_data{
    width:100%;
    min-width:1180px;
    margin:0;
    border-collapse:separate;
    border-spacing:0;
    font-size:0.92rem;
    line-height:1.55;
}
.hp_project_data th{
    position:sticky;
    top:0;
    z-index:2;
    padding:1.05rem 1rem;
    background:#202020;
    color:#ffffff;
    border-right:1px solid rgba(255,255,255,0.12);
    font-size:0.75rem;
    font-weight:700;
    letter-spacing:0.09em;
    line-height:1.35;
    text-align:left;
    text-transform:uppercase;
    white-space:nowrap;
}
.hp_project_data th:first-child{
    border-top-left-radius:1.2rem;
    text-align:center;
}
.hp_project_data th:last-child{
    border-top-right-radius:1.2rem;
    border-right:0;
    text-align:center;
}
.hp_project_data td{
    padding:1rem;
    border-right:1px solid rgba(0,0,0,0.07);
    border-bottom:1px solid rgba(0,0,0,0.07);
    background:#fff;
    color:#343434;
    vertical-align:top;
}
.hp_project_data tr:nth-child(even) td{
    background:#fbfaf7;
}
.hp_project_data tr:hover td{
    background:#fff8ec;
}
.hp_project_data td:first-child{
    width:180px;
    text-align:center;
    vertical-align:middle;
}
.hp_project_data td:nth-child(2){
    width:30%;
    font-weight:700;
    color:#161616;
}
.hp_project_data td:nth-child(3){
    width:18%;
}
.hp_project_data td:nth-child(4){
    width:31%;
}
.hp_project_data td:nth-child(5){
    width:12%;
    font-weight:700;
    color:#9b703d;
    white-space:nowrap;
}
.hp_project_data td:nth-child(6){
    width:90px;
    text-align:center;
    font-weight:800;
    color:#151515;
}
.hp_project_client{
    display:flex;
    justify-content:center;
    align-items:center;
    width:150px;
    height:150px;
    margin:0 auto;
    border:1px dashed rgba(185,149,96,0.45);
    border-radius:1rem;
    background:linear-gradient(135deg, rgba(185,149,96,0.08), rgba(255,255,255,0.95));
    overflow:hidden;
}
.hp_project_client_img{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
    padding:0.75rem;
}
.hp_project_client_img[src=""]{
    opacity:0;
}

.hp_project_contractor{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:0.55rem;
}
.hp_project_contractor_img{
    display:block;
    width:110px;
    max-width:100%;
    height:100%;
    height: auto;
    object-fit:contain;
}
.hp_project_contractor_img[src=""]{
    opacity:0;
}

.hp_project_desc{
    display:flex;
    flex-direction:column;
    gap:0.28rem;
}
.hp_project_desc span{
    position:relative;
    display:block;
    padding-left:1.05rem;
}
.hp_project_desc span::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: 0;
    top: 0;
    color: #b99560;
    font-weight: 900;
    line-height: 1.55;
}

@media(max-width:1200.5px){
    .hp_project_table{
        padding:4rem 5%;
    }
    .hp_project_head .n_title{
        font-size:2.25rem;
    }
}
@media(max-width:991.5px){
    .hp_project_data{
        min-width:980px;
        font-size:0.86rem;
    }
    .hp_project_data td:first-child{
        width:130px;
    }
    .hp_project_client{
        width:100px;
        height:100px;
        border-radius:0.85rem;
    }
}
@media(max-width:767.5px){
    .hp_project_table{
        padding:3.2rem 0%;
    }
    .hp_project_table .container-fluid{
        padding:0 1rem;
    }
    .hp_project_head{
        margin-bottom:1.75rem;
    }
    .hp_project_head .n_small{
        font-size:0.7rem;
    }
    .hp_project_head .n_title{
        font-size:1.85rem;
    }
    .hp_project_head .n_content{
        font-size:0.94rem;
        line-height:1.7;
    }
    .hp_project_tablebox{
        border-radius:1rem;
    }
    .hp_project_data{
        min-width:860px;
        font-size:0.82rem;
    }
    .hp_project_data th,
    .hp_project_data td{
        padding:0.85rem;
    }
    .hp_project_client{
        width:100px;
        height:100px;
    }
}