/* Overall */
#main_index{
    overflow: hidden;
    padding-bottom: 0px !important;
}
a:hover{
    text-decoration: unset;
}
:root{
    --orange-color: #eba61d;
    --green-color: #157f71;   
    --red-color: #981e23;
    --sec-padding-y: 5rem;
    --sec-padding-x: 7rem;
}
.font-color-red{color:var(--red-color);}
.font-color-green{color:var(--green-color);}

@media(max-width:1400px){
    :root{
        --sec-padding-x: 4rem;
    }
}

@media(max-width:768px){
    :root{
        --sec-padding-y: 4rem;
    }
}

@media(max-width:576px){
    :root{
        --sec-padding-x: .5rem;
    }
}

/* Animation */
@keyframes randomMove {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(30px, -20px) rotate(5deg);
  }
  40% {
    transform: translate(-25px, 15px) rotate(-3deg);
  }
  60% {
    transform: translate(20px, 30px) rotate(4deg);
  }
  80% {
    transform: translate(-15px, -25px) rotate(-5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@media(min-width:991px){
    .random-element {
      animation: randomMove 7s infinite ease-in-out;
    }   
}

/* Text */
.title-style{
    font-size: clamp(1.65rem, 2.05vw, 2.05vw);
    font-weight: 700;
    margin-bottom: 0;        
}
.text-big{
    font-size: clamp(1rem, 1.05vw, 1.05vw);
    font-weight: 700;
    margin-bottom: 0;
}
.text-small{
    font-size: clamp(.95rem, .97vw, .97vw);
    font-weight: 700;
    margin-bottom: .35rem;
}
.content{
    font-size: clamp(.85rem, .87vw, .87vw);
    font-weight: 400;
    margin-bottom: 0;
    
    &.enlarged{
        font-size: 110%;
    }
}

@media(max-width:768px){
    .title-style{
        font-size: 24px;
    }
    .text-big{
        font-size: 20px;
    }
    .text-small{
        font-size: 18px;
    }
    .content{
        font-size: 16px;
    }
}

/* Button */
.btn-group{
    gap: 1rem;   
}
.main-btn{
    color: #fff;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: clamp(.95rem, 1.25vw, 1.25vw);
    font-weight: 600;  
    padding: 4px 25px 6px;
    transition: all .3s linear;
}
.main-btn.solid-green{    
    background: var(--green-color);
    border-color: var(--green-color); 
    
    &:hover{
        background: var(--orange-color);
        border-color: var(--orange-color);
    }
}
.main-btn.outline{    
    background: transparent;
    border-color: #fff; 
    
     &:hover{
        color: var(--green-color);
        background: #fff;
        border-color: #fff;
    }
}


.sub-btn{
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 3px 15px 6px;
    font-weight: 600;
    
    span{
        transition: all .3s linear;
    }    
    
    &:hover{
        span{
            margin-left: 1rem;
        }        
    }
}
.sub-btn.solid-green{
    color: #fff;
    background: var(--green-color);
    border-color: var(--green-color);        
}
.sub-btn.outline{
    background: transparent;
    color: var(--green-color);
    border-color: var(--green-color);
}


@media(max-width:576px){
    .main-btn{
        padding: 5px 25px 7px;   
    }    
}

/*topspace*/
.industry_topContact {
    background-color: var(--orange-color);
}
.ts-row{
    display: flex;
    justify-content: space-between;
    padding: .5rem 7rem;
}

.industry_topContactContent a{
    color:#fff;
    text-decoration: none;   
    font-size: clamp(.9rem, 1.15vw, 1.15vw);
    padding: 0 10px;
    line-height: 1;    
}

.ts-contact li:first-child a{
    border-right: 1px solid #fff;
}

.industry_topContactText img{
    width: 25px;
}

.industry_topContactContent {
    display: flex;
    justify-content: flex-start;       
}

.industry_topContactText {
    font-size: .8rem;
    color: #fff;
    /*cursor: pointer;*/
}

@media(max-width:1400px){
    .ts-row{
        padding: .5rem 5rem;
    }
}

@media all and (max-width: 992px) { 
    .industry_topContact {
        display: none;
    }
}

/* Nav */
.navbar_type8{
    height: 120px;
    background: #fff;
    padding: 5px 0;
}
.navbar_type8 .logo{
    margin-left: 6rem;  
    flex: unset;
    min-width: 14%;
}
.navbar_type8 .logo img{
    padding: 0px;
    width: 100%;
    object-position: left;
}

.navbar_type8 .nav_tab{
    flex: unset;
    width: 100%;
    padding-right: 6rem;
    gap: 3vw;  
}
.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: #000;
    padding: 0;
    font-size: clamp(.85rem, .95vw, .95vw);
    font-weight: 700;        
}
.navbar_type8 .nav_tab .nav_item a:hover{
    color: var(--green-color);
}
.navbar_type8 .nav_tab .nav_item:hover:before{
    width: 100%;
}

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

.navbar_mobile{
    background: #fff;
}

@media(max-width:1400px){
    .navbar_type8 {
        height: 100px;
        padding: 5px 0;
    }
    .navbar_type8 .logo{
        margin-left: 4rem;
        min-width: 8%;
    }
    .navbar_type8 .nav_tab{
        padding-right: 4rem;
        gap: 2.25vw;
    }
}

/* Banner */
.banner_content{
    overflow: hidden;
}
.hp_banner{
    height: 100%;
}
.b-content{
    height: 100%;    
    display: grid;
    place-content: center start;
    padding-left: 7rem;
}
.b-content h2{
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 3vw);
    font-weight: 700;
    margin-bottom: 0;
    
    span{
        position: relative;
        color: var(--orange-color);          
        
        &:before{
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            background: #fff;
            z-index: -1;
            transform: scaleX(1.1);
            top: 0;
            left: 0;
        }
    }
}
.b-content p{
    color: #eee;
    font-weight: 300;
    font-size: clamp(.9rem, 1.05vw, 1.05vw);
    line-height: 1.75;
    width: 40%;
    margin: 1rem 0 1.75rem;
}

@media(max-width:1400px){
    .b-content{
        padding-left: 5rem;
    }
}

@media(max-width:1200px){
    .slider_banner .item > img{
        min-height: 45vw;
        object-fit: cover;
        object-position: center;
    }
    .b-content h2{
        line-height: 1.5;
    }
    .b-content h2 br:nth-of-type(2){
        display: none;
    }
    .b-content p{
        width: 45%;
    }
}

@media(max-width:768px){
    .slider_banner .item > img{
        min-height: 70vw;
        object-position: -150px;
    }    
    .b-content p{
        width: 50%;
    }
}

@media(max-width:600px){
    .slider_banner .item > img{
        min-height: 150vw;
        object-position: center;
    }
    .banner_content{
        background: rgb(152, 30, 35, .85);
    }
    .b-content{
        padding: 0 3rem;
    }
    .b-content p{
        width: 100%;
    }
    .btn-group{
        flex-direction: column;
    }
}

/* Inspection */
.hp_inspection{
    background: url(https://cdn1.npcdn.net/images/B_Background_29hlei_1778801995.jpg?md5id=f379a3ed36544a264646efdfe79a9212&new_width=3600&new_height=1521&type=4);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: var(--sec-padding-y) var(--sec-padding-x);
}

.ins-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;    
}
.ins-box{
    border: 2px solid var(--red-color);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;    
    gap: 1.5rem;
}
.ins-icon{
    width: 75px;
    aspect-ratio: 1/1;
}
.ins-info .text-big{
    padding-bottom: 5px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--orange-color);
}
.ins-info .content{
    margin-bottom: 0;
}

.ins-box:hover .ins-icon{
    animation: swing .6s linear;
}

@media(min-width:991px){    
    .hp_inspection .title-box .content{
        width: 70%;
        margin: auto;
    }
    
    .ins-wrapper{
        width: 75%;
        margin-left: auto;
    }
}

@media(min-width:1300px){
    .ins-wrapper{
        width: 60%;
        margin-left: auto;
    }
}

@media(max-width:768px){
    .ins-box{
        flex-direction: column;
    }
}

@media(max-width:576px){
    .ins-list{
        grid-template-columns: repeat(1, 1fr);
    }
}

/* What */
.hp_what{
    padding: var(--sec-padding-y) var(--sec-padding-x);
    background: url(https://cdn1.npcdn.net/images/C_Background_56s098_1778809241.jpg?md5id=f379a3ed36544a264646efdfe79a9212&new_width=3600&new_height=1366&type=4);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.what-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.what-box{
    display: flex;
    align-items: start;
    padding: 1.35rem 1rem;
    box-shadow: 0px 1px 8px 0px #ddd;
    border-radius: 15px;
    gap: 1rem;
}
.what-icon{
    width: 150px;
    aspect-ratio: 1/1;
}

.what-box:hover{
    color: var(--green-color);
    
    .what-icon{
        animation: swing .5s linear;
    }
}

@media(max-width:1300px){
    .what-list{        
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:991px){
    .what-list{        
        grid-template-columns: repeat(2, 1fr);
    }
    .what-icon{
        width: 100px;
    }
}

@media(max-width:768px){
    .what-list{
        grid-template-columns: repeat(1, 1fr);
    }
    .what-box{
        flex-direction: column;
    }    
    .what-icon{
        width: 60px;
    }
}

/* About */
.hp_about{
    padding: calc(var(--sec-padding-y) * .75) var(--sec-padding-x);
    background: url(https://cdn1.npcdn.net/images/D_Background_hy5rab_1778809653.jpg?md5id=f379a3ed36544a264646efdfe79a9212&new_width=3600&new_height=1244&type=4);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

.abt-frame{
    min-width: 105%;
}

.abt-content{
    width: 85%;
    margin-left: auto;
}
.abt-content .title-style{
    font-size: clamp(1.5rem, 1.85vw, 1.85vw);
    
    span.enlarged{
        font-size: 105%;
    }
}

@media(max-width:991.5px){
    .hp_about{
        padding: var(--sec-padding-y) var(--sec-padding-x);
        background: #fffaf7;
    }
    .abt-frame{
        min-width: 100%;
        margin-bottom: 3rem;
    }
    .abt-content{
        width: 80%;
        margin: auto;
        text-align: center;
    }
}

@media(max-width:576px){
    .abt-content{
        width: 90%;
    }
}

/* Service */
.hp_service{
    padding: var(--sec-padding-y) var(--sec-padding-x);
    position: relative;        
    
    &:before{
        position: absolute;
        content: "";
        width: 100%;
        height: calc(180px + var(--sec-padding-y));
        background: var(--red-color);
        left: 0;
        bottom: 0;
    }
}

.service-frame{
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    overflow: hidden;
}
.service-info{
    height: 180px;
    background: #fff;
    display: grid;
    place-content: center;
    padding: 2rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}
.service-info h3{
    color: var(--green-color);
    font-size: clamp(.95rem, 1vw, 1vw);   
    font-weight: 600;    
    -webkit-text-stroke: .25px var(--green-color);
    margin-bottom: .5rem;
}
.service-info p{
    width: 100%;
    margin-bottom: 1.5rem;
}

.service-box:hover{
    transform: translateY(-10px) !important;
}

@media(min-width:1200px){
    .service-list{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }
}

@media(max-width:1200px){    
    .service-box{
        margin: 0 .5rem;
    }
}

@media(max-width:576px){
    .service-info h3{
        font-size: 18px;
    }
}

/* Report */
.hp_report{
    background: url(https://cdn1.npcdn.net/images/F_Background_c7txeu_1778813671.jpg?md5id=f379a3ed36544a264646efdfe79a9212&new_width=3600&new_height=1075&type=4);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: calc(var(--sec-padding-y) * .75) var(--sec-padding-x);
}

.report-wrapper{
    display: flex;
    align-items: center;
    gap: 5rem;
}
.report-content{
    min-width: 33%;
}
.report-content ul{
    margin: 2rem 0;
}
.report-content li{
    display: flex;
    align-items: center;
    cursor: default;
    
    &:not(:last-child){
        margin-bottom: .35rem;
    }
}
.report-tick{
    width: 28px;
    aspect-ratio: 1/1;
    margin-right: .35rem
}
.report-content li h4{
    font-weight: 600;
}

.report-content li:hover .report-tick{
    animation: swing .5s linear;
}

@media(max-width:1200px){
    .report-content{
        min-width: 40%;
    }
}

@media(max-width:991px){
    .hp_report{
        padding: var(--sec-padding-y) var(--sec-padding-x);
    }
    .report-wrapper{
        flex-direction: column;
        gap: 3rem;
    }
    .report-content{
        min-width: 100%;
        text-align: center;
    }
    .report-content .title-style{
        margin-bottom: .5rem;
    }
    .report-content ul{
        display: flex;
        flex-wrap: wrap;        
        justify-content: center;
    }
    .report-content li{
        flex-direction: column;
        flex: 0 1 33%;
        max-width: 33%;
        padding: 1rem;
        margin: 0;
    }
}

@media(max-width:576px){
    .report-content li{
        flex: 0 1 50%;
        max-width: 50%;
    }
}

/* Process */
.hp_process{
    position: relative;
    background: #f5f5f5;
    padding: var(--sec-padding-y) var(--sec-padding-x);
    z-index: 0;
}

.process-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}
.process-box .step{
    color: #fff;
    background: var(--red-color);
    width: fit-content;
    padding: 3px 25px;
    font-size: clamp(.9rem, 1.12vw, 1.12vw);
    font-weight: 700;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    margin-left: auto;
    margin-right: 10%;
}
.process-info{    
    box-shadow: 0px 2px 8px rgba(0,0,0,.15);
    border-radius: 1rem;    
}
.process-top-wrapper{
    position: relative;
    padding: 1.5rem 2rem;
    background: #fff; 
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;  
    
    &:before{
        position: absolute;
        content:"";
        width: 100%;
        height: 70%;
        background: var(--red-color);
        top: 15%;
        left: -10px;
        z-index: -1;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }
}
.process-icon{
    width: 75px;
    height: 75px;
    aspect-ratio: 1/1;    
}
.process-info .title-box{
    display: flex;
    align-items: center;    
    gap: 1rem;
    padding: 0 .5rem;
    margin-bottom: .5rem;
    
    .text-big{
        font-size: clamp(1rem, 1.2vw, 1.2vw);
    }
}

.process-frame{
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    overflow: hidden;            
}

@media(max-width:1300px){
    .process-list{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px){
    .process-list{
        grid-template-columns: repeat(1, 1fr);
        padding: 0 1rem;
    }
}

/* Defect */
.hp_defect{    
    background: url(https://cdn1.npcdn.net/images/H_Background_mwf271_1778817481.jpg?md5id=f379a3ed36544a264646efdfe79a9212&new_width=3600&new_height=1505&type=4);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: var(--sec-padding-y) 0 var(--sec-padding-y) var(--sec-padding-x);       
}
.hp_defect .title-wrapper{
    padding-right: var(--sec-padding-x);
}

.hp_defect .row .col-12:last-child{
    padding-right: 0;
}
.defect-slider .slick-list{    
    margin: 0 -1rem;
    padding-right: 140px;
    overflow: visible;
    overflow-x: clip;    
}
.defect-box{
    margin: 0 .5rem;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,.15);
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}
.defect-info{
    padding: 2rem;
}
.defect-info .text-big{
    margin-bottom: .35rem;
}
.defect-info .content{
    margin-bottom: 1.25rem;
}

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

@media(max-width:768px){    
    .hp_defect .title-box{
        text-align: center;
        margin-bottom: 1rem;
    }
    .hp_defect .title-box .title-style{
        margin-bottom: .5rem;
    }
}

@media(max-width:576px){
    .defect-slider .slick-list{            
        padding-right: 0px;  
        margin: 0;
    }
    .defect-box{
        margin: 0 15px;
    }
    .hp_defect .row .col-12:last-child{
        padding: 0 15px;
    }
    .slide-arrow.prev-arrow{
        display: none !important;
    }
}

/* Trust */
.hp_trust{
    background: url(https://cdn1.npcdn.net/images/I_Background_pos8v1_1778823443.jpg?md5id=f379a3ed36544a264646efdfe79a9212&new_width=3600&new_height=2762&type=4);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: var(--sec-padding-y) calc(var(--sec-padding-x) * 2);
}

.trust-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.trust-box{
    border-radius: 15px;
    overflow: hidden;
}
.trust-title{
    color: #fff;
    text-align: center;
    font-size: clamp(1rem, 1.5vw, 1.5vw);
    font-weight: 600;
    margin: 0;    
    padding: 1.5rem 2rem 1.75rem;
    
    display: grid;
    place-content: center;
    &.green-bg{
        background: var(--green-color);
    }
    
    &.red-bg{
        background: var(--red-color);
    }
    
    &.orange-bg{
        background: var(--orange-color);
    }
}

@media(min-width:991px){
    .hp_trust{
        background-attachment: fixed;
    }
}

@media(max-width:991px){
    .hp_trust{
        padding: var(--sec-padding-y) var(--sec-padding-x);
    }
    .trust-title{
        padding: 1rem 1.5rem 1.25rem;
    }
}

@media(max-width:768px){
    .trust-list{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px){
    .trust-list{
        grid-template-columns: repeat(1, 1fr);
    }
    .trust-title{
        font-size: 18px;
    }
}

/* New */
.index_wrapper_11{
    padding: var(--sec-padding-y) calc(var(--sec-padding-x) * 1.5);
    background: url(https://cdn1.npcdn.net/images/J_Background_dbhtxz_1778824348.jpg?md5id=f379a3ed36544a264646efdfe79a9212&new_width=3600&new_height=1385&type=4);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hp_latest_new_8 .news_box{
    background: #fff;
    padding: 20px;
    box-shadow: 0px 0px 15px #aaa;
}
.hp_latest_new_8 .news_box .title{
    color: var(--red-color);
    font-size: clamp(.9rem, 1vw, 1vw);
    font-weight: 400;
    
    &:hover{
        color: var(--green-color);
    }
}
.hp_latest_new_8 .news_box .read_more{
    width: fit-content;
    color: var(--green-color);
    border-bottom: 1px solid var(--green-color);
    transition: all .3s linear;
    
    &:hover{
        color: var(--green-color);
        margin-left: 10px;
    }
}

/*Testimonial*/
.index_wrapper_12{
    background: #f6f5f3;
  padding: var(--sec-padding-y) var(--sec-padding-x);
}

#testimonial-slider {
  margin-bottom: 0;
}
.ex_hp_testimonialsType7 .testimonial{
    background: none;
}
.ex_hp_testimonialsType7 .container {
  margin: 0 !important;
}
.ex_hp_testimonialsType7 .slick-prev{
  left: -20px;  
  width: 22px;
  height: 22px;
  
  &:before{
    position: absolute;
    content: "";
    background: url(https://cdn1.npcdn.net/images/K_Arrow_Left_zgsmx4_1778825463.png?md5id=f379a3ed36544a264646efdfe79a9212&new_width=180&new_height=180&type=4);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    opacity: 1;
    top: 0;
    left: 0;
  }
}
.ex_hp_testimonialsType7 .slick-next{
  right: -20px;
  width: 22px;
  height: 22px;
  
  &:before{
    position: absolute;
    content: "";
    background: url(https://cdn1.npcdn.net/images/K_Arrow_Right_dnokq1_1778825463.png?md5id=f379a3ed36544a264646efdfe79a9212&new_width=180&new_height=180&type=4);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    opacity: 1;
    top: 0;
    left: 0;
  }
}
.ex_hp_testimonialsType7 .testimonial .description::before{
    color: var(--orange-color);
}
.ex_hp_testimonialsType7 .slick-dots {
  display: none !important;
}

@media(max-width:576px){
    .ex_hp_testimonialsType7 .slick-prev,
    .ex_hp_testimonialsType7 .slick-next{
        display: none !important;
    }
}

/*faq*/
.hp_faq{
    padding: 3rem 0;
}
.hp_faq .title-box{
    background: var(--orange-color);
    text-align: center;
    padding: 1rem 0;    
    margin-bottom: 2.75rem;
}

.faq-main{
    position: relative;
    background: #e1e2e6;
    padding: 2.85rem 6rem;
    width: calc(100% - (var(--sec-padding-x) * 2));
    margin-left: var(--sec-padding-x);
    
    &:before{
        position: absolute;
        content: "";
        width: 12vw;
        height: 12vw;
        background: url(https://cdn1.npcdn.net/images/L_Element_hmub9q_1778827976.png?md5id=f379a3ed36544a264646efdfe79a9212&new_width=415&new_height=378&type=4);
        background-size: contain;
        background-repeat: no-repeat;        
        background-position: top left;  
        top: -6.5vw;
        left: -4vw;
        animation: swing 2s linear infinite;
        transform-origin: bottom;
    }
    
    &:after{
        position: absolute;
        content: "";
        width: 20vw;
        height: 20vw;
        background: url(https://cdn1.npcdn.net/images/L_BOOK_ahq4du_1778827976.png?md5id=f379a3ed36544a264646efdfe79a9212&new_width=491&new_height=244&type=4);
        background-size: contain;
        background-repeat:no-repeat;
        background-position: bottom right;
        bottom: 0;
        right: 0%;        
        pointer-events: none;        
    }
}

.accordion-wrapper {
    overflow: hidden;
}
.accordion {
    width: 100%;
    color: fff;
    overflow: hidden;
    margin-bottom: 5px;
}
.accordion input{ 
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.accordion:last-child{
    margin-bottom: 0;
}
.accordion-label {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-bottom: .75rem;   
    padding-right: 20px;
    font-weight: 700;
    cursor: pointer;     
    font-size: clamp(.9rem, 1.15vw, 1.15vw);
    line-height: 1.25;
    align-items: center;
    border-bottom: 1px solid rgb(0, 0, 0 , .15);    
    color: var(--red-color);        
}
.accordion:not(:first-child) .accordion-label{
    padding-top: 1rem;
}
.label-head{
    display: flex;
    width: 100%;
    align-items: last baseline;
}
.accordion-label:hover {
    background: transparent;   
    
    span{
        color: var(--primary-color);
    }
}
.accordion-label::after {
    content: "\f078";
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-style: normal;
    font-family: "Font Awesome 5 Free";
    font-size: 1.15rem;
    margin-top: 10px;
    color: #0b2657;
}
.accordion-content {
    max-height: 0;
    padding: 0 16px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--bcolor);
}
.accordion-content p{    
    color: var(--bcolor);
}
input:checked + .accordion-label {
}
input:checked + .accordion-label::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    transform-origin: center;
    /*! margin-top: 8px; */    
}
input:checked ~ .accordion-content {
    max-height: fit-content;
    padding: 0;
    border-bottom: 1px solid var(--bcolor);
}
input:checked + .accordion-label .label-head{
    width: 100%;
}

.faq-main .main-btn{
    margin-top: 2rem;
}

.ac-content p{
  font-size: clamp(.9rem, 1vw, 1vw);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
  width: 90%;
}

@media(max-width:1200px){
  .accordion-label{
    /*! padding-right: 50px; */
  }
  .accordion-label span{
    margin-right: 0;
  }
  .accordion-content p{
  }
}

@media(max-width:991px){
  .faq-main{
  }
    input:checked + .accordion-label{
        /*! padding-bottom: 0rem; */
    }
    .accordion-label{
        /*! padding: .75rem 0; */
    }
    .label-head{
        width: 90%;
        align-items: center;
    }
}

@media(max-width:768px){
    .faq-main:before,
    .faq-main:after{
        display: none;
    }
    .hp_faq{
        padding: 0;
    }
    .hp_faq .title-box{
        padding: 2rem 1rem;
        margin-bottom: 0;
    }
    .hp_faq .title-box h2{
        margin-bottom: .5rem;
    }
  
  .faq-main{
    width: 100%;
    padding: 2.85rem 4rem;
    margin: 0;
  }
  
  .accordion-label{
  }  
}

@media(max-width:576px){
    .faq-main{
        padding: 2.85rem 2rem;
    }
    .accordion-label{                
  /*! padding-left: 10px; */
     font-size: 18px;
}
.accordion:not(:first-child) .accordion-label{
    padding-top: 1.5rem;
}
  .accordion-content p{
      font-size: 16px;
    /*! margin-left: 30px; */
    /*! padding-right: 30px; */
  }
}

@media(max-width:468px){
  .accordion-label{
    /*! padding: 20px 15px 20px; */
    /*! font-size: 1rem; */
  }
}

/* Cta */
.hp_cta{
    background: url(https://cdn1.npcdn.net/images/M_Background_he2is0_1778828718.jpg?md5id=f379a3ed36544a264646efdfe79a9212&new_width=3600&new_height=1375&type=4);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: var(--sec-padding-y) calc(var(--sec-padding-x) * 1.75);
}
.big-title{
    color: #000;
    font-size: clamp(2rem, 4vw, 4vw);
    font-weight: 700;    
    line-height: 1;
}
.cta-content .content{
    width: 35%;
    font-size: clamp(.9rem, 1.1vw, 1.1vw);
}

@media(max-width:1200px){
    .cta-content .content{
        width: 50%;
    }
}

@media(max-width:991px){
    .hp_cta{
        padding: var(--sec-padding-y) var(--sec-padding-x);
    }
    .cta-content .content{
        padding: 0 !important;
    }
}

@media(max-width:768px){
    .hp_cta{
        background-position: right;
        position: relative;
        padding-left: 3rem;
        
        &:before{
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: linear-gradient(to right, #fff 40%, transparent);
        }
    }
}
    
@media(max-width:576px){
    .hp_cta{
        padding: calc(var(--sec-padding-y) * 1.5) var(--sec-padding-x);
    }
    .hp_cta:before{
        background: linear-gradient(to right, rgba(255, 255, 255, .95), rgba(255, 255, 255, .75));            
    }
    .cta-content{
        text-align: center;
    }
    .cta-content .content{
        width: 100%;
    }
}


/* Footer */
.footer{
    padding: 2rem 0;
    background: var(--orange-color);
}
.footer_subtitle{
    font-weight: 700;
}
.footer p {
  margin-bottom: 0;
}
