@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');

/* Overall */
#main_index{
    overflow: hidden;
    padding-bottom: 0px !important;
}
a:hover{
    text-decoration: unset;
}
:root{
    --primary-color: #0055a6;
    --secondary-color: #2093d5;
    --font-family: "Courgette", cursive;
    --sec-padding: 5rem;
}

/* Title */
.title-style{
    color: var(--primary-color);
    font-size: clamp(1.85rem, 2.25vw, 2.25vw);
    font-weight: 700;    
    margin: 0;
    
    &.sm-text{
        font-size: clamp(1.55rem, 1.75vw, 1.75vw);
    }
}

.desc-style{
    color: #555;
    font-size: clamp(.87rem, 1vw, 1vw);
    margin: 0;
}

.subtitle-style{
    color: #39ccd2;
    font-size: clamp(1.35rem, 1.55vw, 1.55vw);
    font-weight: 700;
    letter-spacing: .5px;
    margin: 0;
}

.content{
    color: #333;
    font-size: clamp(.85rem, .9vw, .9vw);
    line-height: 1.65;
    margin: 0;
}

/*Button*/
.btn-group{
    gap: 1rem;
    margin-top: 1rem;
}
.main-btn{
    color: #fff;
    background: linear-gradient(to right, transparent, #2bc8d0);
    background-color: #1f94d4;
    border-style: none;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: all .3s linear;
    
    &:hover{
        background-color: #2bc8d0
    }
}

/*TopSpace*/
.ts-wrapper{
    display: flex;
    align-items: center;
    height: 55px;
    background: linear-gradient(to right, #0055a6 0%, #fff 45%, #fff 55%, #0055a6 100%);
}
.ts-title{
    width: calc(100% - 10rem);
    margin: 0;  
    text-align: center;         
    font-size: clamp(.92rem, 1.35vw, 1.35vw);
    font-weight: 700;
    color: var(--primary-color);
    margin-left: -35px;
}
.social-list{  
  padding-left: 5rem;
  z-index: 1;
}

#main_index .social_btn{
  background: unset !important;
}
.social-list img{
  width: 35px;
}

/* Nav */
.navbar_type8{
height: 130px;
background: transparent;
padding: 0.8rem 0;
gap: 6.5rem;
}
.navbar_type8 .logo{
    margin-left: 9%;  
    flex: unset;
    min-width: 6.5%;
}
.navbar_type8 .logo img{
    padding: 0px;
    width: 100%;
}

.navbar_type8 .nav_tab{
    flex: unset;
    width: 100%;
    padding-right: 1rem;
    gap: 3.5vw;  
    justify-content: flex-start;
}
.navbar_type8 .nav_tab .nav_item:before{
    border-color: var(--primary-color);
    border-width: 2px;
    width: 0;
    transition: all .3s linear;
}
.navbar_type8 .nav_tab .nav_item a{
    color: #1a1a1a;
    padding: 0;
    font-size: clamp(.9rem, 1vw, 1rem);
    font-weight: 600;    
}
.navbar_type8 .nav_tab .nav_item a:hover{
    color: var(--primary-color);
}
.navbar_type8 .nav_tab .nav_item:nth-child(1)::after {
    content: '\f015';
    position: absolute;
    top: 50%;
    left: -22px;
    transform: translateY(-50%);
    font-family: 'font awesome\ 5 free';
    font-weight: 900;
    color: #333;
}
.navbar_type8 .nav_tab .nav_item:hover:before{
    width: 100%;
}

.dark_nav{
background: rgba(255, 255, 255, 0.9) !important;
}

.navbar_mobile{
    background: #fff;
}
.navbar_mobile .logo_img{
    max-height: 60px;
}
.navbar_mobile .row_1{
  height: 100%;
  margin: 0;
  padding: 0 !important;
  display: flex;
  align-items: center;
}


@media(max-width:1300px){
    .navbar_type8 {
        height: 100px;
        gap: 3rem;
    }    
    .navbar_type8 .logo{
        min-width: 8%;
        
        img{
            object-position: left;
        }
    }
}

/* Banner */
.hp_banner{
    position: relative;
    height: 100%;    
}
.slider_banner .banner_content{
    overflow: hidden;
}
.b-content{
    position: absolute;
    top: 110px;
    bottom: 0;
    left: 10%;    
    width: 38%;
    color: #fff;
    height: 71%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.b-content h2{
    color: var(--primary-color);
    font-size: clamp(2.5rem, 3.15vw, 3.15vw);
    font-weight: 700;
    line-height: 1;    
    margin-bottom: 1rem;
}
.b-content p{
    color: #555;
    font-size: clamp(.9rem, 1.05vw, 1.05vw);        
    width: 70%;
    
    &.font-weight-bold{
        color: var(--secondary-color);
        font-size: 145%;
        font-weight: 600 !important;
    }
}

.b-deco{
    position: absolute;
    bottom: 5.15%;
    background: linear-gradient(to right, #2bcacf, #2bcacf, transparent);
    padding: 0.8rem 0;
    padding-left: 10%;
    width: 50%;
}
.b-deco h3{
    color: #fff;
    font-family: var(--font-family);    
    font-size: 1.65vw;
    margin: 0;
}

@media(min-width:991px){
    .slider_banner{
        margin-top: -100px;
    }
}

@media(min-width:1300px){
    .slider_banner{
        margin-top: -130px;
    }
}

@media(max-width:1200px){
    .slider_banner .item > img{
        min-height: 55vw;
        object-fit: cover;
    }
    .b-content{
        width: 50%;
        top: 86px;
        height: 68%;        
    }
    .b-content p{
        width: 100%;
    }
}

@media(max-width:991px){
    .slider_banner .item > img{
        min-height: 60vw;
        object-fit: cover;
        object-position: -80px;
    }
    .b-content{
        top: 0;
        height: 85%;
    }
    .b-content h2{
        margin-bottom: 1rem;
    }
    .b-content p{
        margin-bottom: 0.5rem;
    }
    
    .b-deco{
        bottom: 6%;
        width: 60%;
    }
    .b-deco h3{
        font-size: 2.25vw;
    }
}

@media(max-width:768px){ 
    .slider_banner .item > img{
        min-height: 80vw;
        object-position: center;
    }
    .b-content{
        left: 9%;
    }
    .b-content p{
        width: 100%;        
    }
    .b-content p.font-weight-bold{
        font-size: 140%;
    }
    
    .b-deco{
        left: 0%;
    }
    .b-deco h3{
        font-size: 2.5vw;            
    }
}

@media(max-width:568px){
    .slider_banner .banner_content{
        background: rgba(255, 255, 255, .75);
    }
    .slider_banner .item > img{
        min-height: 130vw;
        object-position: -694px;
    }
    .b-content{
        top: 0;
        left: 0;
        padding: 0 2.5rem;        
        width: 100%;
        text-align: center;
        height: 90%;
    }
    .b-content h2{
        font-size: 250%;
    }
    .b-content h2 br{
        display: none;
    }
    .b-content p{
        width: 100%;
    }   
    .btn-group{
        justify-content: center;
    }
    
    .b-deco{
        width: 100%;
        padding: 1rem 0;
        padding-left: 9%;
        bottom: 0;
    }
    .b-deco h3{
        font-size: 5vw;
    }
}

/* About */
.hp_about{
    padding: var(--sec-padding) 0;
}

@media(min-width:991px){
    .abt-content{
        width: 87%;
        margin-left: auto;
    }   
}

/* Services */
.hp_services{
    padding: var(--sec-padding) 0;
    background: url(https://cdn1.npcdn.net/images/C_SERVICES_BACKGROUND_eu7kqb_1776156277.jpg?md5id=976deaee3c65cda83c9671a3645f905a&new_width=3600&new_height=1854&type=4);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hp_services .slick-list{
    overflow: visible;
    overflow-x: clip;    
}    

.service-item{
    background: #fff;
    margin: 0 7.5px;
    border-radius: .75rem;    
    box-shadow: 0px 0px 20px #b6e2f1;    
    overflow: hidden;        
}
.service-content{
    padding: 1.75rem;
}
.service-content h3{
    color: var(--primary-color);
    font-size: clamp(1rem, 1.25vw, 1.25vw);
    font-weight: 600;
    margin: 0;
}
.service-content p{
    color: #444;
    font-size: clamp(.8rem, .85vw, .85vw);
    margin: 1rem 0 1.35rem;
}
.service-content a{
    display: block;
    width: 40px;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  width: 15px;
  z-index: 1;
  transform: translateY(-50%);
  cursor: pointer;
}
.slide-arrow.next-arrow{  
  right: -2.5%;
}
.slide-arrow.prev-arrow{
  left: -2.5%;
}

/*Gallery*/
.index_wrapper_5{
    padding: var(--sec-padding) 0;    
}
.hp_photoGallerySlider_type4 .flickfeed .slick-slide > .back{
  display: none !important;
}
.hp_photoGallerySlider_type4 .flix-parents{
  overflow: visible;
  padding: 4rem 0 !important;
}
.hp_photoGallerySlider_type4 .flickfeed .slick-slide:hover{
    transform: scale(1.4);
}
.hp_photoGallerySlider_type4 .flickfeed .prevslides {
  transform: translateX(-3.5vw);
}
.hp_photoGallerySlider_type4 .flickfeed .nextslides {
  transform: translateX(3.5vw);
}
.index_wrapper_5 .slick-arrow{
  display: none !important;
}

/*Team*/
.index_wrapper_6 {
    
    background: url(https://cdn1.npcdn.net/images/E_BACKGROUND_PICTURE_feuzsa_1776184495.jpg?md5id=976deaee3c65cda83c9671a3645f905a&new_width=3600&new_height=1267&type=4);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: var(--sec-padding) 0;
    
    .hp_photoGallerySlider_type4 .flix-parents{
        padding: 0 !important;
        padding-top: 2.5rem !important;
    }
    .hp_photoGallerySlider_type4 .video-list-slider{
        padding: 0 !important; 
    }
    .hp_photoGallerySlider_type4 .flickfeed .slick-list{
        overflow: hidden;
    }
    .hp_photoGallerySlider_type4 .flickfeed .slick-slide:hover,
    .hp_photoGallerySlider_type4 .flickfeed .prevslides,
    .hp_photoGallerySlider_type4 .flickfeed .nextslides {
        transform: unset;
    }  
    .hp_photoGallerySlider_type4 .flickfeed .slick-slide .card{
        padding: .5rem;
        background: unset;
    }
    .hp_photoGallerySlider_type4 .flickfeed .slick-slide .card img{
        height: auto;
        aspect-ratio: 1/1;
    }
}

/* Why */
.hp_why {
    padding: var(--sec-padding) 0;    
}

.why-outerbox{
    padding: 0 11px
}

.why-box {
    position: relative;
    background: #fff;
    border: 2px solid #74bce4;
    padding: 2rem 1.75rem;
    height: auto;
    aspect-ratio: 1/1.15;
    border-radius: 1rem;    
    box-shadow: 0px 0px 20px #b6e2f1;
}

.why-icon {
    position: relative;
    display: block;
    width: 40%;
    transition: all .3s linear;
    
    .hover-state{
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }
}

.why-box h3 {
    color: #000;
    font-family: var(--title-font);
    font-size: clamp(.95rem, 1.2vw, 1.2vw);
    font-weight: 600;
    margin: 1.5rem 0 1.15rem;
    cursor: default;
}

.why-box p {
    font-size: clamp(.7rem, .85vw, .85vw);
    color: #555;
    cursor: default;
}

.why-box:hover {
    background: linear-gradient(135deg, #2bc8d0, #1f93d4);

    h3,    
    p {
        color: #fff;
    }

    .why-icon .hover-state{
        opacity: 1;
    }
}

@media(max-width:1200px) {
    .why-box {
        padding: 1.5rem 1rem;
    }
}

@media(max-width:991px) {
/*     .hp_expert .row:last-child {
        justify-content: center;
    } */

    .why-outerbox {
        padding: .75rem;
    }

    .why-box {
        padding: 1.5rem;
    }

    .why-box h3 {
        margin: 0.5rem 0;
        font-size: 120%;
    }

    .why-box p {
        font-size: 105%;
    }
}

@media(max-width:991px) {
    .why-box{
        height: 100%;
        aspect-ratio: unset;
        text-align: center;
    }
    .why-icon{
        width: 30%;
        margin: auto;
    }
    .why-box h3{
        margin: 1rem 0;
    }
}

@media(max-width:768px) {    
    .why-box{
        padding: 2rem;
    }
    .why-icon{
        width: 20%;
    }
}

/* Latest News */
.index_wrapper_8{
    background: url(https://cdn1.npcdn.net/images/G_LATEST_NEWS_BACKGROUND_5t4wlu_1776186782.jpg?md5id=976deaee3c65cda83c9671a3645f905a&new_width=3600&new_height=1414&type=4);
    padding: var(--sec-padding) 0;
}
.latest_new_type6 .news_box{
    background: none;
}
.latest_new_type6 .news_box .news_box_content{
    background: #f1f1f1
}
.latest_new_type6 .news_box .date{
    color: #1a1a1a;
}
.latest_new_type6 .news_box .badge-primary{
    background: #1a1a1a;
}

/*Google Review*/
.index_wrapper_9{
    padding: var(--sec-padding) 0;
}

/* Footer */
.footer_type7{
    background: var(--primary-color);
}
.footer_type7 .logo{
    padding-top: 100px;    
    
    img{                
        max-height: 100px;
    }
}
.footer_type7 .title h5{
    font-size: 130%;
    font-weight: 700;
    text-transform: uppercase;
}
.footer_type7 p{
  font-size: 95%;
}
.nav-list{
  text-transform: uppercase;
}
.footer_type7 .col-12:nth-child(n + 4){  
  border-top: 1px solid #fff;
  padding-top: 2rem;
}
@media(min-width:991px){
  .footer_type7 .col-12:first-child p{
    width: 80%;
  } 
}

.npfooter_languagebar span .text-muted {
  color: #fff !important;
}

/*Contact Page*/
#v-pills-hq h5 {
  font-size: 17px;
}