@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

:root {
	
	/* colors */
	--n-theme-color:rgba(245, 132, 31, 1);
	--n-black-color:rgba(14, 14, 14, 1);
	--n-bg-color:rgba(255, 248, 242, 1);
	
	/* font-sizes */
	--n-font-18px:clamp(14px, 1.1vw, 18px);
	--n-font-20px:clamp(14px, 1.1vw, 20px);
	--n-font-22px:clamp(15px, 1.25vw, 22px);
	--n-font-24px:clamp(15px, 1.3vw, 24px);
	--n-font-26px:clamp(16px, 1.4vw, 26px);
	--n-font-40px:clamp(21px, 2.1vw, 40px);
	--n-font-60px:clamp(21px, 3.125vw, 60px);

    /* font-families */
    --n-heading-font:"Merriweather", serif;
}

/* Reusable components */
.n_common_sec_width {
    max-width: 91%;
    margin: 0 auto;
}
.n_section_pad {
    padding: 70px 0;
}
.n_section_title {
    font-size: var(--n-font-40px);
    font-family: var(--n-heading-font);
    font-weight: 300;
    text-transform: capitalize;
    margin-bottom: 30px;
    color: var(--n-black-color);
}
.n_primary_btn {
    font-size: var(--n-font-20px);
    font-weight: 700;
    background-color: var(--n-theme-color);
    color: #fff;
    padding: 13px 40px;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 28px;
}
.n_primary_btn:hover {
    color: #fff;
}
/*----------- service page starts here ----------------*/
/* hero section starts */
.cp_hero_sec {
    position: relative;
	z-index:0;
}
.cp_hero_sec.shadow_bg::before {
	position: absolute;
	content: '';
	background: linear-gradient(360deg, #FFFFFF 27.63%, rgba(255, 255, 255, 0.1) 49.45%, rgba(255, 255, 255, 0) 65.92%, rgba(255, 255, 255, 0) 83.62%, rgba(255, 255, 255, 0) 100%);
	top:0;
	left:0;
	right:0;
	bottom:-264px;
	z-index:1;
}
.cp_hero_vid {
    height: 80vh;
}
.cp_hero_vid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cp_hero_vid.video_right_align  video{
	transform:scaleX(-1);
}
.cp_hero_text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
	z-index:1;
}
.cp_hero_text .n_section_title {
    font-size: var(--n-font-60px);
    color: #fff;
    font-weight: 400;
}
.cp_hero_text .n_section_title span {
    font-weight: 700;
}
.cp_hero_text p {
    font-size: var(--n-font-24px);
    color: #fff;
    margin-bottom: 30px;
    max-width: 45%;
	line-height:1.5;
}
/* cp about section start */
.cp_about_content p , ul.cp_list_with_tick li p{
    font-size: var(--n-font-22px);
    font-weight: 300;
    color: #000;
    line-height: 1.5;
    margin-bottom: 25px;
}
.cp_about_content .orange_text {
    font-size: var(--n-font-24px);
    font-weight: 400;
    color: var(--n-theme-color);
}
ul.cp_list_with_tick li {
    list-style: none;
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}
.green_tick_img {
    padding-top: 6px;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.green_tick_img img {
    width: 100%;
}
ul.cp_list_with_tick li p {
    margin-bottom: 0;
}
ul.cp_list_with_tick li p span {
font-weight: 500;
}
a.cp_about_btn {
    width: 100%;
    color: #fff;
    background-color: var(--n-theme-color);
    font-size: var(--n-font-20px);
    font-weight: 500;
    padding: 15px 40px;
    border-radius: 10px;
    text-align: center;
    display: inline-block;
    text-transform: capitalize;
}
a.cp_about_btn:hover {
    color: #fff;
}
.cp_about_img_wrap {
    padding-right: 9%;
}
/*cp benefit section start here */
.cp_benefit_sec {
    background-color: var(--n-bg-color);
}
.cp_benefit_sec.n_section_pad {
    padding-bottom: 0;
}
.cp_benefit_sec .n_section_title {
    text-align: center;
    margin-bottom: 100px;
}
.cp_benefit-wrap ul.cp_list_with_tick li p {
    font-size: var(--n-font-24px);
    text-transform: capitalize;
    font-weight: 400;

}
.cp_benefit-wrap .cp_benefit_center img {
    width: 100%;
}
.cp_benefit-wrap ul.cp_list_with_tick li {
    margin-bottom: 50px;
}

/* cp types section */
.cp_types_sec .types_tiles_row {
    height: 100%;
    row-gap: 30px;
}
.cp_types_content {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 50px 40px;
    height: 100%;
}
.cp_types_head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}
.cp_types_head .cp_types_head_img {
    width: 43px;
    height: 43px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.cp_types_head h4 {
    margin-bottom: 0;
    font-size: var(--n-font-26px);
    font-family: var(--n-heading-font);
}
.cp_types_content ul {
    margin-bottom: 0;
}
.cp_types_content ul li p, .cp_types_content p{
    font-size: var(--n-font-18px);
    font-weight: 300;
    color: #000;
    line-height: 1.5;
}
.cp_types_content p {
    margin-bottom: 0;
}
.cp_types_content ul li p span {
    font-weight: 500;
}
/* cp testimonial Sec */
.cp_testimonial_sec {
    background-color: var(--n-bg-color);
    position: relative;
}
.cp_testimonial_sec .n_section_title {
    text-align: center;
    margin-bottom: 40px;
}
.cp_testimonial_element {
    position: absolute;
    top: 0;
    left: 40px;
    height: 100%;
}
.cp_testimonial_element img {
    width: 100%;
    height: 100%;
}
.row.cp_testimonial_slider_row {
    justify-content: end;
}
.cp_slick_slide_wrap {
    display: flex;
    align-items: center;
    gap: 70px;
}
.cp_testi_comment p {
    font-size: var(--n-font-22px);
    font-weight: 300;
    line-height: 1.5;
    color: #000;
    margin-bottom: 30px;
}
.cp_testi_comment cite {
    font-weight: 400;
    font-family: var(--n-heading-font);
    color: var(--n-black-color);
    font-size: var(--n-font-26px);
    font-style: normal;
}
.cp_slick_slide_wrap .cp_testi_comment {
    flex: 1 1 50%;
}
button.cp_slider_btn {
    position: absolute;
    bottom: -40px;
    left: 40%;
    transform: translateX(-50%);
    border: none;
    background: unset;
    outline: none;
}
button.cp_slider_btn.custom-prev {
    left: 30%;
    transform: rotate(180deg);
}
/* cp FAQ section */
.cp_faq_head_wrap .n_section_title {
    font-size: var(--n-font-60px);
    font-weight: 400;
}
.cp_faq_head_wrap p {
    font-size: var(--n-font-24px);
    font-weight: 300;
    margin-bottom: 0;
}
/* final_cta_sec */
.cp_final_cta_sec.n_section_pad {
    padding: 95px 0;
}
.cp_final_cta_sec {
    position: relative;
    z-index: 2;
}
.cp_final_cta_sec::before {
    position: absolute;
    inset: 0;
    content:'';
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 80.8%);
    z-index: 0;
}
.cp_final_cta_bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.cp_final_cta_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.final_cta_sec_wrap h4 {
    font-size: var(--n-font-40px);
    font-weight: 400;
    color: rgba(30, 30, 30, 1);
    margin-bottom: 30px;
}
.final_cta_sec_wrap h4 span {
    font-weight: 600;
}
.final_cta_sec_wrap p {
    font-size: var(--n-font-20px);
    color: #000;
    line-height: 1.6;
    margin-bottom: 30px;
    padding-right: 7%;
}

/* old css addons for desclaimer button at footer */
.disclaimernew a {
    position: relative;
    z-index: 2;
}

/* responsive css */
@media screen and (max-width:1800px) {
    .cp_about_img_wrap {
        padding-right: 5%;
    }
    .cp_about_content p {
        margin-bottom: 16px;
    }
    a.cp_about_btn {
        padding: 10px 40px;
    }
    .cp_types_content {
        padding: 30px 25px;
    }
}
@media screen and (max-width:1700px) {
    .cp_slick_slide_wrap .cp_testi_comment {
        flex: 1 1 60%;
    }
}
@media screen and (max-width:1600px) {
    .cp_about_img_wrap {
        padding-right: 3%;
    }
    .cp_types_head {
        margin-bottom: 20px;
    }
    .n_section_title {
        margin-bottom: 20px;
    }
    .cp_slick_slide_wrap {
        gap: 40px;
    }
    .cp_slick_slide_wrap .cp_testi_comment {
        flex: 1 1 70%;
    }
}
@media screen and (max-width:1400px) {
    .cp_benefit-wrap ul.cp_list_with_tick li {
        margin-bottom: 40px;
    }
    .cp_benefit_sec .n_section_title {
        margin-bottom: 70px;
    }
    ul.cp_list_with_tick li {
        gap: 15px;
        margin-bottom: 15px;
    }
    .cp_types_content {
        padding: 20px 20px;
    }
    .cp_testimonial_sec .n_section_title {
        margin-bottom: 20px;
    }
    .cp_testimonial_element {
        left: 20px;
    }
    .cp_final_cta_sec::before {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 90.8%);
    }
    .green_tick_img {
        padding-top: 3px;
        width: 20px;
        height: 20px;
    }
}
@media screen and (max-width:1200px) {
    .n_common_sec_width {
        max-width: 96%;
    }    
    .n_section_title {
        margin-bottom: 15px;
    }
    .cp_about_content p {
        margin-bottom: 10px;
    }
    ul.cp_list_with_tick {
        margin-bottom: 0;
    }
    ul.cp_list_with_tick li {
        gap: 10px;
        margin-bottom: 10px;
    }
    a.cp_about_btn {
        padding: 8px 15px;
    }
    .cp_types_head .cp_types_head_img {
        width: 30px;
        height: 30px;
    }
    .cp_types_head .cp_types_head_img img {
        max-width: 18px;
    }
    .cp_types_content {
        padding: 16px 15px;
    }
    .green_tick_img {
        padding-top: 0px;
        width: 16px;
        height: 16px;
    }
     .cp_types_head {
        margin-bottom: 12px;
        gap: 7px;
    }

    .cp_slick_slide_wrap .cp_testi_comment {
        flex: 1 1 100%;
    }
    .cp_slick_slide_wrap {
        gap: 20px;
    }
    .cp_about_img_wrap {
        padding-right: 0;
    }
}
@media screen and (min-width:991.5px) and (max-width:1200px) {
    .cp_types_sec .types_tiles_row .col-lg-6,.cp_types_sec  .col-md-5 {
    padding: 0 8px;
    } 
    .cp_testimonial_element {
        left: -100px;
    }
    .cp_types_sec .types_tiles_row {
        row-gap: 15px;
    }
}
@media screen and (max-width:1000px) {
	.cp_final_cta_sec.n_section_pad {
		padding: 70px 0;
	}
}
@media screen and (max-width:991.5px) {
    .n_section_pad {
        padding: 40px 0;
    } 
    .cp_testimonial_element {
        display: none;
    }
    .cp_hero_vid {
        height: 60vh;
    }
    .cp_about_sec .cp_about_content {
        margin-top: 30px;
    }
    a.cp_about_btn {
        margin-top: 15px;
    }
    .cp_types_sec .types_tiles_row {
        margin-top: 30px;
        height: auto;
    }
    button.cp_slider_btn {
        bottom: 0;
		left: 55%;
    }
	button.cp_slider_btn.custom-prev {
		left: 40%;
	}
	.cp_benefit-wrap ul.cp_list_with_tick li {
		margin-bottom: 15px;
	}
	.cp_faq_head_wrap {
		margin-bottom: 30px;
	}
	.final_cta_sec_wrap {
		text-align: center;
	}
	.cp_final_cta_sec.n_section_pad {
		padding: 40px 0;
	}
	.cp_hero_sec.shadow_bg::before {
		bottom: -188px;
	}
}

@media screen and (max-width:767.5px) {
	.cp_benefit-wrap>div {
		order:1;
	}
	.cp_benefit-wrap>div.col-lg-6 {
		order:2;
	}
	 .cp_benefit_sec .n_section_title {
        margin-bottom: 30px;
    }
	.cp_hero_vid {
        height: 45vh;
    }
	.cp_slick_slide_wrap {
		flex-direction: column-reverse;
	}
	.cp_testimonial_slider .slick-slide {
		margin:0;
	}
}
@media screen and (max-width:576px) {
	.n_common_sec_width {
        max-width: 100%;
    }
	.cp_hero_text p {
		margin-bottom: 25px;
    	max-width: 60%;
	}
	.n_section_title {
		text-align: unset;
		line-height: 1.5;
	}
	.cp_testi_comment p {
		margin-bottom: 15px;
	}
	button.cp_slider_btn.custom-prev {
        left: 30%;
    }
	button.cp_slider_btn {
        bottom: -40px;
        left: 60%;
    }
	section.cp_testimonial_sec.n_section_pad {
		padding-bottom: 60px;
	}
}