

/*text and decoration*/




.alltitle {
    color: #000;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

span.titlebold {
    font-weight: 600;
    font-size: 38px;
}


.allcontent {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.allsubtitle {
    color: #9c897b;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.linedeco.allsub:after {
    background-color: #9c897b;
}



@media screen and (max-width: 1199.5px){
    .allsubtitle{
        font-size: 16px;
    }
}


@media screen and (max-width: 991.5px) {
    .alltitle{
        font-size: 32px;
    }
    
    span.titlebold{
        font-size: 40px;
    }
}


@media screen and (max-width: 575.5px) {
    .alltitle{
        font-size: 20px;
    }
    
    span.titlebold{
        font-size: 24px;
    }
    
    .allsubtitle {
        font-size: 20px;
    }
}



/*button setting*/

a:hover{
    text-decoration: none;
}

.allbtn {
    color: #000;
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    transition: .8s transform;
    cursor: pointer;
    border: 2px solid #000;
    padding: 10px 50px 10px 15px;
}

.allbtn:hover{
    text-decoration: none;
    color: #000;
    transform: scale(1.1);
}

.allbtn_text {
    position: relative;
}

.allbtn_text:after {
    content: "";
    position: absolute;
    right: -2.3rem;
    top: 60%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5px;
    background-color: #000;
    

}

.allbtn:hover .allbtn_text:after{
    animation: arrow-slide 0.8s infinite;
}

.btnbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

@keyframes arrow-slide{


    0% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(10px);
        opacity: 0.5;
    }
    51% {
        transform: translateX(-10px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }

}

/*navbar*/

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

.navbar_type8{
    background-color: #000;
    height: 100px;
}

.navbar_type8 .logo{
    flex: 0 1 10%;
    
    overflow: visible;
}

.navbar_type8 .logo img{
    width: 18vw;
    left: .6vw;
}

.navbar_type8 .nav_tab{
    padding-right: 15px;
    flex: 0 1 90%;
}

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

.navbar_type8 .nav_tab .nav_item::before{
    display: none;
}



@media screen and (max-width: 1199.5px){
    .navbar_type8 .nav_tab .nav_item a{
        font-size: 12px;
        padding: 10px;
    }
    
    .navbar_type8 .nav_tab .nav_item > .appointment_text{
        padding: 10px 30px;
    }
}

/*appointnment btn*/

.appointment.nav_item {
    padding: 0 15px;
}

.navbar_type8 .nav_tab .nav_item > .appointment_text{
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    padding: 15px 30px;
}






/*search icon*/

.hp_search_icon {
    width: 18px;
    filter: brightness(0) invert(1);
}

#main_index .hp_search_icon{
    width:18px;
    filter:brightness(0) invert(0);
}
#main_index .navbar_type8 .hp_search_icon{
    filter:brightness(0) invert(1);    
}
.boxSearch {
    display: none; 
    position: absolute;
    top: 60px;
    right: 9%;
}
.nav_search .search_button {
    background-color: transparent;
    color: #000;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    height: 100%;
}
.nav_search input {
    background: #f0f2f5;
    width: 300px;
    height: 45px;
    border: 0;
    box-shadow: none;
    padding: 0px 50px 0px 25px;
    border-radius: 0;
    max-height: 45px;
}
.nav_search {
    flex-grow: 1;
    display: flex;
    position: relative;
    max-width: 300px;
    align-self: center;
    border: 1px solid #e0dede;
    box-shadow: 0 0 7px rgb(191 191 191/65%);
}


.btnClose{
    display: none;

}
#closeIcon{
    display: none;
}
.searchWrapper img{
    font-size: 20px;
    color: #c7996d;
    margin-left: 25px;
}
.searchBar{
    width: 100%;
    margin: 0 auto;
}
.searchBar input{
    width: 100%;
    font-size: 1rem;
    border: 0;
    background: 0 0;
    box-shadow: none;
    padding-left: 1.75rem;
    padding-right: 0.75rem!important;
    position: relative;
}
.row_searchBarWrapper{
    width: 100%;
    z-index: 99999;
    position: relative;
    height: 120px;
    left: 0;
    top: 0;
    background: #fff;
}

.btnSearch{
    cursor: pointer;
    color:#000;
    font-family: "Alice";
    font-size: 1vw;
    padding: 15px 1vw;
    font-weight: 400;
    color: #444;
}
.searchBar{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.searchBar form {
    width: 100%;
    display: block;
    padding: 0.6rem 1rem;
    position: relative;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60697b;
    background-color: #fefefe;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.4rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.searchBar i{
    font-size: 1.2rem;
}
button:focus {
    outline: unset;
}
.searchBar button {
    font-size: 1.05rem;
    width: 2rem;
    height: 2rem;
    line-height: 1.8rem;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    border: unset;
    box-shadow: none;
    transition: background .2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}
.searchBarWrapper{
    position: fixed;
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
}
/*.hp_topspace_sticky-menu{*/
/*    filter:brightness(0) invert(0)!important;*/
/*}*/
.navbar_type8 .nav_tab .search::before{
    display:none;
}




/*top space*/

#top_spacing{
    height: 100px!important;
}

@media screen and (max-width: 991.5px){
    #top_spacing {
        height: 80px!important;
    }
}

/*banner*/

#main_index .index_wrapper_2{
    margin-top: -100px;
}


        .slider_banner .bannercontent {
            overflow: hidden;
        }

        .hp_banner {
            position: relative;
            left: 5vw;
            top: 80%;
            transform: translate(0, -50%);
            width: calc(100% - 0%);
        }


        .bannertitle {
            font-size: 4vw;
            font-weight: 700;
            line-height: 1.3;
            color: #fff;
            margin: 0;
            padding: 1% 0 1.5% 0;
        }

        .bannersubtitle {
            font-size: 1.2vw;
            font-weight: 400;
            line-height: 1.5;
            color: #fff;
            margin: 0;
            
        }
        
        .linedeco{
            position: relative;
        }
        
        .linedeco:after {
            content: "";
            position: absolute;
            right: -4.8rem;
            top: 60%;
            transform: translateY(-50%);
            width: 4rem;
            height: 1.5px;
            background-color: #cfcbc0;
        }

        .bannercontent {
            font-size: 1vw;
            font-weight: 400;
            line-height: 1.5;
            color: #fff;
        }

        .hp_banner .hp_banner_image {
            width: 30% !important;
        }

        .hp_banner_buttonbox {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 4%;
        }

        .hp_banner_button {
            font-size: 14px;
            font-weight: 400;
            color: #fff;
            width: 135px;
            height: 35px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            background-color: #000;
            transition: 0.25s all linear;
        }

        .hp_banner_button:hover {
            color: #fff;
            text-decoration: none;
            transform: scale(0.98);
        }

        @media screen and (max-width: 1199.5px) {
            
            
            
            .bannercontent {
                font-size: 1.2vw;
            }
        }

        @media screen and (max-width: 991.5px) {
            
            .bannersubtitle{
                font-size: 1.8vw;
            }
            
            .bannercontent {
                font-size: 1.5vw;
            }
            
            #main_index .index_wrapper_2{
                margin-top: 0;
            }
            
            .navbar_mobile {
                background-color: #000;
            }
        }

        @media screen and (max-width: 767.5px) {
            .index_wrapper_2 .item>img {
                min-height: 100vw !important;
                object-fit: cover;
            }

            .hp_banner {
                left: 0%;
                width: calc(100% - 0%);
            }

            .bannertitle {
                font-size: 7vw;
            }

            .bannersubtitle {
                font-size: 4vw;
            }

            .bannercontent {
                font-size: 4vw;
            }
        }
        
/* footer*/

.footer_type6{
    background-color: unset;
    color: #000;
}

.footer_type6 .line{
    background-color: #000;
    height: 1.5px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.footer_type6 a{
    color: #000;
}

.footernavbar{
    display: flex;
}

.footernavbar li{
    padding-right: 2vw;
}

.footerline{
    padding: 0;
}

.footertop{
    padding: 0 9%;
}

.footerbottom{
    padding: 0 9%;
}

@media screen and (max-width: 575.5px){
    .footernavbar{
        flex-direction: column;
    }
    
    .footer_type6{
        padding-top: 0;
    }
}


/*whyus text setting*/

.whyusnum {
    font-size: 4vw;
    font-weight: 700;
    color: #000;
}

.whyustext {
    font-size: 1.3vw;
    color: #9c897b;
}

.whyusspan {
    font-size: 2vw;
    font-weight: 700;
    color: #000;
    line-height: 0.9;
}

.whyuscontent {
    font-size: 1.3vw;
    color: #9c897b;
    line-height: 1.8;
    margin: 0;
}

/*whyus*/

#main_index .index_wrapper_3{
    padding: 90px 9%;
}

.whyusleft{
    display: flex;
    align-items: center;
}

.whyusright{
    padding: 0;
}

.whyusbox {
    text-align: center;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 13px 0px;
    padding: 8% 2vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
}

@media screen and (max-width: 991.5px){
    
    
    /*whyus text setting*/

    .whyusnum {
        font-size: 6vw;
    }
    
    .whyustext {
        font-size: 1.8vw;
    }
    
    .whyusspan {
        font-size: 3vw;
    }
    
    .whyuscontent {
        font-size: 1.8vw;
    }
    
    
    .whyusright{
        padding-top: 3%;
    }
    
    
    
    
}

@media screen and (max-width: 575.5px){
    .whyboxgap {
        padding: 0;
    }
    
    .whyusnum {
        font-size: 9vw;
    }
    
    .whyustext {
        font-size: 2.8vw;
    }
    
    .whyusspan {
        font-size: 5vw;
    }
    
    .whyuscontent {
        font-size: 2.8vw;
    }
    
    
}


/*Product categories top*/

.hp_productcate.top{
    padding: 0 9% 0 9%;
}

.alltitle.productcate{
    padding-top: 1rem;
}

.allcontent.productcate{
    padding-top: 3%;
    padding-bottom: 3%;
}

.productcateright{
    display: flex;
    justify-content: flex-end;
}

@media screen and (max-width: 991.5px){
    .productcateright{
        justify-content: flex-start;
    }
}

/*Product categories down*/

.hp_productcate.down{
    padding-top: 2%;
}

.allcatetitle {
    color: #000;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    padding-bottom: 1rem;
}

.caterow{
    padding: .8% 0;
}

.cateoutbox{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cateoutbox.cate1{
    background-image: url("https://cdn1.npcdn.net/images/c_category1_xnk3ms_1778836770.jpg?md5id=3c03e7f05b5cbd91dffba3da4986bc1a&new_width=1000&new_height=1000&type=4");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cateoutbox.cate2{
   background-image: url("https://cdn1.npcdn.net/images/c_category2_munsyw_1778836770.jpg?md5id=3c03e7f05b5cbd91dffba3da4986bc1a&new_width=1000&new_height=1000&type=4");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cateoutbox.cate3{
   background-image: url("https://cdn1.npcdn.net/images/c_category3_geqrnl_1778836770.jpg?md5id=3c03e7f05b5cbd91dffba3da4986bc1a&new_width=1000&new_height=1000&type=4");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cateoutbox.cate4{
    
    background-image: url("https://cdn1.npcdn.net/images/c_category4_gfpkb1_1778836770.jpg?md5id=3c03e7f05b5cbd91dffba3da4986bc1a&new_width=1000&new_height=1000&type=4");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cateinnerbox{
    padding: 10rem 9% 10rem 9%;
    
    
}

@media screen and (max-width: 767.5px){
    .hp_productcate.down {
        padding-top: 7%;
    }
    
}


@media screen and (max-width: 575.5px){
    .allcatetitle{
        font-size: 20px;
    }
    
    .cateinnerbox {
        padding: 6rem 9% 6rem 9%;
    }
    
    
}


/*brand*/

#main_index .index_wrapper_5 {
    padding: 90px 9%;
}

.brandleft, .brandright {
    display: flex;
    align-items: center;
}

.brandright{
    padding: 0;
}

.brandbigbox{
    display: flex;
    justify-content: flex-end;
    padding: 0;
}

.brandbox {
    width: 16vw;
    padding-left: 2vw;
}

.brandlogo{
    max-width: 100%;
}

@media screen and (max-width: 991.5px){
    .whyusright {
        padding-top: 3%;
    }
    
    .brandbigbox {
        
        justify-content: flex-start;
        padding-top: 20px;
    }
    
    .brandbox {
        width: 20vw;
        margin-left: 8vw;
    }
    
    .brandbox.box1{
       margin: 0;
    }
}

@media screen and (max-width: 575.5px){
    .brandbox {
        margin-left: 0;
        flex: 0 0 50%;
        padding: 0 4%;
    }
    
    .brandbigbox {
        justify-content: center;
        padding-top: 20px;
        flex-wrap: wrap;
    }
}


/*review*/


#main_index .index_wrapper_6{
    padding-bottom: 90px;
}

.fas.fa-chevron-left.slick-arrow{
    left: -5.5vw!important;
    
    top: 60%!important;
    
}



#main_index .one-time .slick-arrow:before{
    content: "";
    background-image: url("https://cdn1.npcdn.net/images/e_arrow_i7bghy_1778836770.png?md5id=3c03e7f05b5cbd91dffba3da4986bc1a&new_width=1000&new_height=1000&type=4");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 40px;
    height: 40px;
    display: block;
    cursor: pointer;
}

.alltitle.review{
    padding-top: 1rem;
}

.hp_review{
    padding: 0 9%;
}


.hp_testimonial_type4 {
    max-width: 90%;
    padding: 0;
    margin-right: 0;
}



.fas.fa-chevron-right.slick-arrow{
    display: none!important;
}


#main_index .one-time .slick-track {
    
    left: -5vw;
    
}

#main_index .one-time .slick-dots {
    
    bottom: -2.6rem;
    display: flex;
    align-items: center;
    width: 80vw;
    
}

#main_index .one-time .slick-dots li {
    position: relative;
    display: inline-block;
    
    width: calc(100% /4);
    background: #9c897b;
    height: 2px;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

#main_index .one-time .slick-dots .slick-active {
    height: 4px;
   
    border-radius: 999px;
    
    background: #9c897b;
}

#main_index .one-time .slick-dots li button:before{
    color: unset;
}


#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card .img{
    display: none;
}

#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card {
    
    border-radius: 0; 
    background-color: #f6f6f2;
    height: 200px;
    padding: 11% 9% 9% 9%;
    margin-left: 2vw;
}

#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card .text_area {
    margin-top: 0;
    margin-bottom: 0 !important; 
    display: flex;
    flex-direction: row;
    
    flex-wrap: nowrap;
}

#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card .text_area .text{
    color: #666;
}

#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card .name{
    text-align: left;
    align-self: start!important;
    
}

#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card .text_area > div{
    text-align: left!important;
    align-self: start!important;
    padding: 0;
}

#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card > div:nth-child(2){
    position: relative;
}

#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card .text_area > div:nth-child(2){
    position: absolute;
    top: -45px;
    right: 7vw;
    
}


#main_index .all_font_sm {
    font-size: 0.8rem !important;
    font-weight: 500;
    color: #999;
}

#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card .name h6 {
    color: #000;
    font-weight: 600;
}

#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card i{
    position: relative;
}

#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card i:before {
    content: "";
    position: absolute;
    background-image: url("https://cdn1.npcdn.net/images/e_review_icon_ika7v6_1779067184.png?md5id=3c03e7f05b5cbd91dffba3da4986bc1a&new_width=1000&new_height=1000&type=4");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 25px;
    height: 20px;
    bottom: .3vw;
    right: -1vw;
}

@media screen and (max-width: 1199.5px){
    #main_index .hp_testimonial_type4 .testimonial_box .testimonial_card i:before {
        bottom: -.2vw;
    }
}

@media screen and (max-width: 1024.5px){
    #main_index .hp_testimonial_type4 .testimonial_box .testimonial_card i:before {
        bottom: .3vw;
    }
}


@media screen and (max-width: 991.5px){
    #main_index .one-time .slick-track {
        left: -8vw;
    }
    
    #main_index .hp_testimonial_type4 .testimonial_box .testimonial_card i:before {
        bottom: -.8vw;
    }
    
    
}

@media screen and (max-width: 767.5px){
    
    
    #main_index .hp_testimonial_type4 .testimonial_box .testimonial_card i:before {
        bottom: -1.2vw;
        right: 7vw;
    }
}

@media screen and (max-width: 575.5px){
    #main_index .one-time .slick-track {
        left: -9vw;
    }
    
    #main_index .hp_testimonial_type4 .testimonial_box .testimonial_card{
        height: 260px;
    }
    
}

@media screen and (max-width: 450.5px){
    #main_index .one-time .slick-track {
        left: -11vw;
    }
    
    #main_index .hp_testimonial_type4 .testimonial_box .testimonial_card i:before {
        bottom: -4vw;
       
    }
    
    
    /*#main_index .one-time .slick-track .slick-slide{*/
    /*    width: 355px!important;*/
    /*}*/
}

/*portfolio*/

#main_index .index_wrapper_7{
    
    background-image: url("https://cdn1.npcdn.net/images/f_portfolio_bg_q4xsdh_1778836771.jpg?md5id=3c03e7f05b5cbd91dffba3da4986bc1a&new_width=1000&new_height=1000&type=4");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    
    
    padding: 0 0 300px 0;
}

#main_index .hp_photoGallerySliderWithTitle .photo-gallery .outline_box .gallery_box img{
    height: auto;
}



.hp_portfolio{
    padding: 90px 9% 0 9%;
}

.linedeco.allsub.portfolio:after{
    background: #fff;
}

.allsubtitle.portfolio{
    color: #fff;
}

.alltitle.portfolio{
    padding-top: 1rem;
    color: #fff;
}

.allcontent.portfolio {
    padding-top: 10%;
    padding-bottom: 3%;
    color: #fff;
}

.allbtn_text.portfolio:after{
    background: #fff;
}

.allbtn.portfolio{
    color: #fff;
    border: 2px solid #fff;
}

#main_index .hp_photoGallerySliderWithTitle .photo-gallery {
    padding: 0;
}

#main_index .hp_photoGallerySliderWithTitle{
    background-color: unset;
}

#main_index .hp_photoGallerySliderWithTitle .container-fluid .row > .col-12{
    padding: 0;
}

.hp_photoGallerySliderWithTitle .photo-gallery .slick-prev:before, .hp_photoGallerySliderWithTitle .photo-gallery .slick-next:before{
    display: none;
}


#main_index .photo-gallery .slick-dots {
    
    bottom: 0;
    display: flex;
    align-items: center;
    width: 80vw;
    margin: 0 auto;
}

#main_index .photo-gallery .slick-dots li {
    position: relative;
    display: inline-block;
    
    width: calc(100% /5);
    background: rgba(255,255,255,0.6);
    height: 2px;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

#main_index .photo-gallery .slick-dots .slick-active {
    height: 4px;
   
    border-radius: 999px;
    
    background: rgba(255,255,255,1);
}

#main_index .photo-gallery .slick-dots li button:before{
    color: unset;
}


/*cta*/

#main_index .index_wrapper_8 {
    background: #efe5d8;
    width: 90%;
    margin-left: auto;
    margin-top: -210px;
}

.ctaleft{
    padding-left: 0;
}


.ctaright{
    padding: 60px 9%;
}

.ctapicture img{
    max-width: 100%;
}

.alltitle.cta{
    padding-bottom: 2%;
}

.allcontent.cta {
    
    padding-bottom: 5%;
}

/*contact*/

#main_index .index_wrapper_9 {
    padding: 110px 9% 0 9%;
}

#main_index .contactgap{
    padding: 0;
}

.contactrighttop{
    border-bottom: 1px solid #000;
}

.phonenumbox, .emailbox{
    display: flex;
    align-items: center;
}

.allcontent.smalltitle{
    margin-bottom: .5rem;
    font-weight: 800;
}

.contactbox.box1, .contactbox.box2{
    padding: 0 9% 9% 9%;
}

.contactbox.box3, .contactbox.box4{
    padding: 9% 9% 0 9%;
}


.contacticon {
    width: 2.5vw;
    padding-right: 1vw;
}

@media screen and (max-width: 1199.5px){
    .contactright{
        padding-top: 5%;
    }
    
    .alltitle.contact br{
        display: none;
    }
}

@media screen and (max-width: 991.5px){
    .phonenumbox, .emailbox {
        
        align-items: normal;
        flex-direction: column;
    }
    
    .contacticon {
        width: 3vw;
        padding-right: 1vw;
    }
    
    .contactbox.box1, .contactbox.box2 {
        padding: 0 9% 5% 9%;
    }
    
    .contactbox.box3, .contactbox.box4 {
        padding: 5% 9% 0 9%;
    }
}

@media screen and (max-width: 767.5px){
    .phonenumbox, .emailbox {
        align-items: center;
        flex-direction: row;
    }
    
    
}

@media screen and (max-width: 575px){
    #main_index .index_wrapper_9 {
        padding: 110px 5% 0 5%;
    }
    
    .allcontent.contact{
        margin: 0;
    }
    
    .contactbox.box1, .contactbox.box2 {
        padding: 0 0 9% 0;
    }
    
    .contactbox.box3 {
        padding: 9% 0 9% 0;
    }
    
    .contactbox.box4 {
        padding: 0 0 9% 0;
    }
    
    .phonenumbox, .emailbox {
        flex-wrap: wrap;
    }
    
    .contacticon{
        width: 6vw;
        padding-right: 2vw;
    }
}






/*ABOUT US CONTENT */

.hp_photoGallerySliderWithTitle .photo-gallery .outline_box .gallery_box img {
    object-fit: contain;
}