@charset "utf-8";
/*====CSS Document====*/
html{
	scroll-behavior:smooth;
	scroll-padding-top: 70px;}
body {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 0;
	background: #fff;
	color: #000000;
	text-align: center;
    font-family: 'DM Sans';
	font-weight: normal;
	display: flex; 
	display: -webkit-flex; 
	flex-wrap:wrap;
	}
div, ul, h1, h2, h3, h4, h5, li, p, img, form, input, textarea {margin: 0;padding: 0;}
header, section, footer, aside, nav, main, article, figure {display: flex; display: -webkit-flex; flex-wrap:wrap;}
table, tr, td {border: 0;}
a {outline: none;color: inherit;text-decoration: none;}
img {border: none; max-width: 100%; height:auto;}
li {list-style: none;}
* {box-sizing: border-box;}
.clearall {
	clear: both;
	font-size: 1px;
	line-height: 1px;
	height: 1px;
	}
/*-----------------------
FONTS
------------------------*/
@font-face {
    font-family: 'DM Sans';
    src: url('DMSans-Regular.woff2') format('woff2'),
        url('DMSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
	}

@font-face {
    font-family: 'DM Sans';
    src: url('DMSans-Medium.woff2') format('woff2'),
        url('DMSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
	}

@font-face {
    font-family: 'DM Sans';
    src: url('DMSans-Bold.woff2') format('woff2'),
        url('DMSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
	}

/*@font-face {
    font-family: 'TT Ramillas Trl';
    src: url('TTRamillasTrl-ExtraBold.woff2') format('woff2'),
        url('TTRamillasTrl-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
	} */



/*-----------------------
MAIN CSS START
------------------------*/
.container {
	width:1170px;
	position:relative;
	flex-direction: column;
	}
.wrapper{
	width:100%;
	overflow:hidden;
	}


/*--------Top Section---------*/
.top_strip{
	justify-content: center;
	flex-basis: 100%;
	background:#27507f;
	padding:7px 0;	
	}
.top_strip p{
	font-size:16px;
	line-height:22px;
	color:#fff;
	font-weight:500;
	letter-spacing:0.5px;
	}	
	
/*--------Header Section---------*/

header{
	justify-content: center;
	flex-basis: 100%;
	margin-bottom:70px;
	position:relative;
	z-index:9;
	}
.header__inner{
	height:70px;
	margin-top: -70px;
	top:70px;
	justify-content: center;
	flex-basis: 100%;
	position:relative;
	z-index:1;
	-webkit-box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
    box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);		
	}
header.fixed .header__inner{
	width:100%;
	background:#fff;
	position: fixed;
	transition: margin .3s ease-out;
	-webkit-transition: margin .3s ease-out;
	margin-top:0;
	top:0;
	}
.logo{
	float:left;
	margin-top:15px;
	width:172px;
	}	
ul.nav-bar{
    float: left;
    margin-top: 27px;
    margin-left: 35px;
	}
ul.nav-bar li{
	float:left;
	font-size:14px;
	line-height:18px;
	letter-spacing:0.5px;
	position:relative;
	padding-right:25px;
	}
ul.nav-bar li a{
	display:block;
	color:#4c4c4c;
	letter-spacing:0.3px;
	}
ul.nav-bar li a:hover,ul.nav-bar li a.active{
	color: #02d36e;
	}	
	
a.top_btn{
    float: right;
    width: 165px;
    background: #02d36e;
    margin-top: 14px;
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 10px 0;
	
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
	}
a.top_btn img{
    margin: 0 0 0 10px;
	}		

/*CSS FOR MOBILE MENU*/
.mob-mnu-ic{
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 25px;
    z-index: 16;
	}
.mob-mnu-ic button{
	outline: none;
    -webkit-appearance: none;
	background: none;
	padding:0;
    cursor: pointer;
	border: none;
	display: flex;
    flex-wrap: wrap;
    width: 30px;
	}
.mob-mnu-ic span{
	color:#000;
	display:inline-block;
	vertical-align:top;
	font-size:13px;
	margin-top:4px;
	margin-right:5px;
	}
.bar1, .bar2, .bar3{
	width: 30px;
	height: 3px;

	background-color: #c7c2c2;
	transition: 0.4s;
	-webkit-border-radius: 2px 2px 2px 2px;
	border-radius: 2px 2px 2px 2px;
	}
.bar2{margin: 6px 0;}

.dl-active .bar1 {
	-webkit-transform: rotate(-45deg) translate(-6px, 5px);
	transform: rotate(-45deg) translate(-6px, 5px);
	background:#c7c2c2;
	}
.dl-active .bar2 {opacity: 0;}
.dl-active .bar3 {
	-webkit-transform: rotate(45deg) translate(-7px, -7px);
	transform: rotate(45deg) translate(-7px, -7px);
	background:#c7c2c2;
	}

.mobilemenu{
	left:-250px;
	width:250px;
	position:fixed;
	top:0;
	background:rgba(255,255,255,1);
	z-index:99;
	right:0;
	bottom:0;
	opacity:0;
	transition:all ease 0.5s;
	box-shadow: 5px 0 10px 0 rgba(0,0,0,0.2);
	}
.mobilemenu.active{left:0; opacity:1;}
.mobilemenu li{
	float:left;
	width:100%;
	text-align:left;
	border-bottom:1px solid #ddd;
	}
.mobilemenu li a{
    float: left;
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #000;
	}	
.mobilemenu li a:hover{color:#000;}

/*-------------------
BANNER CSS
---------------------*/	
.banner{
	justify-content: center;
	flex-basis: 100%;
	position:relative;
	background:url(../images/banner.jpg)#e7f0f7 no-repeat center top;
	padding:45px 0 105px;
	}
#banner__wave{
    bottom: -1px;
    left: 0;
    position: absolute;
    width: 100vw;
	}	
#banner__wave path{
	fill: white;
	}	
.banner_content{
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
	justify-content: space-between;
	}
.banner_left{
	text-align:left;
	width:56%;
	}
.banner_review-rate{
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;	
	}	
.banner_review-rate p{
	background: #edf4f9;
    border: 1px solid #d7dee3;
    border-radius: 30px;
    font-size: 14px;
    line-height: 18px;
    color: #000;
    letter-spacing: 0.3px;
    padding: 5px 12px;
	}
.bnr-star{
	display:inline-block;
	vertical-align:middle;
	margin:-3px 5px 0 0;
	}
.bnr-face{
	display:inline-block;
	vertical-align:middle;
	margin:-3px 0 0 5px;
	}
.banner_heading{
	font-size:60px;
	line-height:64px;
	color:#011f41;
	/*font-family: 'TT Ramillas Trl';*/
	font-family: "EB-Garamond";
	font-weight:800;
	margin-top:17px;
	}
ul.banner_list{
	width: 100%;
    margin-top: 5px;
	
    display: flex;
    display: -webkit-flex;
	flex-wrap: wrap;
	}
ul.banner_list li{
	background:url(../images/bnr-list-tike.png) no-repeat left 2px;
	text-align:left;
	width:100%;
	font-size:18px;
	line-height:24px;
	color:#000;
	padding-left:34px;
	margin-top:10px;
	}

.common_button{
	display: flex;
	display: -webkit-flex;
    justify-content: start;
	}
.button_center{justify-content: center;}
.common_button a{
	width: 270px;
	background:#02d36e;
	color:#ffffff;
	font-size:20px;
	line-height:24px;
	padding:17px 0;
	font-weight:bold;
	border-radius:50px;
	letter-spacing:0.5px;
	text-align:center;
	margin-top:30px;
	}
.common_button a img{
	margin:0 0 0 10px;
	}

.bnr_testi{
	width:100%;
	text-align:left;
	margin:25px auto 0;
	
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
	}
.bnr-t-cont{
	width:calc(100% - 68px);
	padding:0 80px 0 15px;	
	}	
.bnr-t-pic{
	border-radius:50%;
	margin-top:10px;
	}		
.bnr-t-para{
	font-size:16px;
	line-height:20px;
	color:#000;
	letter-spacing:0.5px;
	margin-top:5px;
	}
.bnr-t-name{
	font-size:16px;
	line-height:16px;
	color:#000;
	font-weight:500;
	letter-spacing:0.3px;
	margin-top:10px;
	}
.bnr-t-name span{
	font-size:12px;
	line-height:12px;
	font-weight:normal;
	}
.bnr-t-name span img{
	margin:0px 5px -2px 2px;
	}	
.bnr-dog-img{
    position: absolute;
    top: -80px;
    right: -30px;
	z-index:1;
	}
	
/*======================*/
.scorall_section{
	justify-content: center;
	flex-basis: 100%;
	position:relative;
	}
.scorall_section p{
	font-size:18px;
	line-height:26px;
	color:#081936;
	letter-spacing:0.5px;
	position:relative;
	z-index:2;
	}	
.scrollStrip {
	width:100%;
	overflow: hidden;
	position: relative;
	border-bottom:1px solid #eae8e8;
	
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    height: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	flex-wrap: nowrap;
	}
.logo-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	}
.content-holder {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 750px;
    min-width: 750px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	}
.logo-slide-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    min-width: 160px;
    margin-right: 10px;
    margin-left: 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	}
.logo-slide-wrapper img{
	max-width: 100%;
    vertical-align: middle;
    display: inline-block;
	}
.logo-container{
	animation:track 60s linear forwards infinite; 
    min-width:calc(740px * 4) !important
	}

@keyframes track{
	0%{
		transform:translateX(0)
	}
	100%{
		/*transform:translateX(calc(-560px * 5))*/
	  transform:translateX(-100%)
	}
  }
		
			
/*-----------------
SECTION_ONE
-------------------*/
.section_one{
	justify-content: center;
    flex-basis: 100%;
    padding: 65px 0 90px;
	}
.sec1_content{
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}
.sec1_left{
	width:40%;
	text-align:left;
	}
.sec1_lft_box{
	width:100%;
	background:#ffffff;
	border-radius:20px;
	position: relative;
    padding-bottom: 50%;
	
	box-shadow:0 2px 6px 2px rgba(0,0,0,0.1);
	-webkit-box-shadow:0 2px 6px 2px rgba(0,0,0,0.1);
	}
.chart_details{
	margin:0 auto 0;
	width:100%;
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
	}	
.chart_col1{ width:46%;}
.chart_col2{ width:27%;}	
.chart_header{
	height: 80px;
    padding: 0 20px;
    border-bottom: 1px solid #e3e3e3;
    text-align: center;
	
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
    align-items: center;
	}	
.chart_logo{
	margin:0 auto 0;
	display:block;
	width:150px;
	}	
.chart_header p{
	font-size:18px;
	line-height:20px;
	color:#f11212;
	font-weight:bold;
	}
.chart_col3 .chart_header p{ color:#00c465;}	
	
ul.chart_list{
	padding:15px 20px;
	}	
ul.chart_list li{
    height: 60px;
    text-align: left;
    font-size: 18px;
    line-height: 22px;
    color: #000;
	
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
	}	
.chart_col1 ul.chart_list li{
    background: url(../images/chart-tike.png) no-repeat left 10px;
    padding-left: 25px;
	}	
.chart_col2 ul.chart_list li{ 
	color:#f11212;
	font-weight:bold;
	justify-content: center;
	}
.chart_col3 ul.chart_list li{ 
	color:#00c465;
	font-weight:bold;
	}		
	
.s1-dog-img{
    position: absolute;
    left: -110px;
    bottom: -60px;
    max-width: none;	
	}					
	
.sec1_right{
	width:55%;
	text-align:left;
	}
.common_heading{
	color: #011f41;
    font-size: 50px;
    line-height: 60px;
	font-family: 'EB-Garamond';
	letter-spacing:-1px;
    font-weight: 800;	
	}
.common_text{
    font-size: 18px;
    line-height: 26px;
	color:#000;
	letter-spacing:0.3px;
	margin-top:25px;
	}
.s1_points_heading{
	font-size:20px;
	line-height:26px;
	color:#000;
	font-weight:bold;
	letter-spacing:0.5px;
	margin-top:35px;
	}	
ul.sec1_list{
    margin: 15px auto 0;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}
ul.sec1_list li{
	background:url(../images/s1-list-tike.png) no-repeat left 6px;
	text-align:left;
	width: 50%;
	color: #000000;
    font-size: 18px;
    line-height: 26px;
	padding-left:27px;
	margin-top:6px;
	}
.common_button_inner{
	display: flex;
	display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 330px;
    margin-top: 30px;
	}
.common_button_inner a{ width:100%; margin:0;}
.common_button_inner p{
    width: 100%;
    font-size: 15px;
	line-height:20px;
	letter-spacing:0.5px;
    color: #000;
	text-align:center;
    position: relative;
    margin-top: 8px;
	}
.common_button_inner p img{
	display:block;
	margin:0 auto 5px;
	}	

/*-----------------
SECTION_TWO
-------------------*/
.section_two{
	justify-content: center;
    flex-basis: 100%;
    background: url(../images/sec2-bg.jpg)#e7f0f7 no-repeat center top;
    padding: 55px 0 110px;
	position:relative;
	}
#s2__wave{
    bottom: -20px;
    left: 0;
    position: absolute;
    width: 100vw;
	}	
#s2__wave path{
	fill: white;
	}	
.section-2__inner{
	padding:0 20px;
	position:relative;
	
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
	}
.section-2__inner:before{
    position: absolute;
    top: 370px;
    left: -155px;
    right: -90px;
    bottom: -125px;
    content: "";
    background: url(../images/s2-line.png) no-repeat center center;
    background-size: 100%;
	}	
.section-2__inner__box{
	width:100%;
	display:flex;
	-webkit-display:flex;
	flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
	margin-top:100px;
	position:relative;
	}
.section-2__inner__box:first-child{ margin-top:60px;}	
.s2_inner_box_reverse{flex-direction: row-reverse;}	
.section-2__content{
	width:36%;
	text-align:left;
	position:relative;
	}
.sec2_content-heading{
    color: #011f41;
    font-size: 37px;
    line-height: 46px;
    font-family: 'EB-Garamond';
	letter-spacing:-1px;
    font-weight: 800;
	}
.sec2_content-text{
    font-size: 18px;
    line-height: 26px;
    color: #000;
    letter-spacing: 0.3px;
    margin-top: 12px;
	}
ul.sec2_box__list{
    margin: 22px auto 0;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
	}
ul.sec2_box__list li{
    background: url(../images/s1-list-tike.png) no-repeat left 6px;
    text-align: left;
	width:100%;
    color: #000000;
    font-size: 18px;
    line-height: 26px;
    padding-left: 27px;
    margin-top: 5px;
	}
.section-2__box__image{
	width:60%;
	position:relative;
	}
.s2_imagebx{
	max-width:470px;
	position:relative;
	margin-left: auto;
	}
.s2_inner_box_reverse .s2_imagebx{ margin-right:auto; margin-left: revert;}	
.s2_imagebx:before{
    position: absolute;
    right: -10px;
    top: 10px;
    bottom: -10px;
    left: 10px;
    content: "";
	background:#bad6ec;
	border-radius:50px;
	}
.s2_inner_box_reverse .s2_imagebx:before {
    left: -10px;
    right: 10px;
	}	
.feauture-image{
	display:block;
	margin:0 auto 0;
	border-radius:50px;
	position:relative;
	}
.insurance_details_box{
	position:absolute;
	bottom:50px;
	left:15px;
	width: 100%;
	max-width:350px;
    background: #ffffff;
    border-radius: 15px;
	padding:25px 20px 30px;
	border:1px solid #d7d7d7;
    box-shadow: 0 2px 6px 2px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 2px 6px 2px rgba(0,0,0,0.1);
	}
.s2_inner_box_reverse .insurance_details_box{ left:auto; right:15px;}	
.insurance_header{
	margin:0 auto 0;
	width:100%;
	
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;	
	}
.insurance_header p{
	width: calc(100% - 100px);
    font-size: 18px;
    line-height: 26px;
    color: #000;
    text-align: left;
    letter-spacing: 0.3px;
	}
.insurance_header img{
	border-radius:50%;
	}	
.insurance_amount{
	width:calc(100% + 40px);
	margin:0 0 0 -20px;	
	
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
	}
.insurance_amount_col{
	width:100%;
	background:#f9f9f9;
	padding:8px 10px;
	margin:10px auto 0;
	
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
	}
.insurance_amount_col p{
	font-size:18px;
	line-height:22px;
	color:#000;
	font-weight:500;
	}	
.insurance_amount_col:nth-child(even) p{ color:#00ba60;}	
.insurance_amount_col p img{
	margin:0 12px -4px 0;
	}	
.insurance_amount_col h3{
	font-size:22px;
	line-height:24px;
	color:#011f41;
	font-weight:bold;
	}
.insurance_amount_col:nth-child(even) h3{ color:#00ba60;}

.common_button_center{
    justify-content: center;
	}
.section_two .common_button_inner{ margin-top:60px;}
.s2-cat-img{
	position: absolute;
    left: 120px;
    bottom: -144px;
    z-index: 1;
	}
	

/*-----------------
SECTION_THREE
-------------------*/
.section_three{
	justify-content: center;
    flex-basis: 100%;
    padding:60px 0 70px;
	}
ul.sec3_list{
	margin:40px auto 20px;
	width:100%;
	
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;	
	}
ul.sec3_list li{
	width:31%;
	text-align:center;
	position:relative;
	}
ul.sec3_list li:before{
	content: '';
    position: absolute;
    top: 20px;
    right: -185px;
    width: 330px;
    border-top: 2px dashed #beccdc;	
	}	
ul.sec3_list li:last-child:before{ display:none;}	
.s3_list_steps{
	margin:0 auto 0;
	background:#011f41;
	width:42px;
	height:42px;
	border-radius:50%;
	font-size:20px;
	line-height:42px;
	color:#fff;
	font-weight:bold;
	position:relative;
	z-index:1;
	}
.s3_imgbox{
	max-width:358px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #d7d7d7;
    box-shadow: 0 2px 6px 2px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 2px 6px 2px rgba(0,0,0,0.1);
	overflow:hidden;
	margin-top:25px;
	}
.s3_imgbox img{
	margin:0 auto 0;
	display:block;
	}	
.s3_contbox{
	padding:28px 26px 0;
	}	
.s3_contbox h3{
	font-size:25px;
	line-height:29px;
	color:#011f41;
	font-weight:bold;
	}
.s3_contbox p{ margin-top:17px;}

.sec3_box{
	margin:60px auto 10px;
	display:block;
	background:url(../images/sec3-box-bg.jpg)#011f41 no-repeat center top;
	border-radius:20px;
	overflow:hidden;
	padding:50px 40px;
	
 	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
	}	
.sec3_box_content{
	width:47%;
	text-align:left;
	margin-left: auto;
	}	
.white_text{ color:#fff;}	

/*-----------------
SECTION_FOUR
-------------------*/
.section_four{
	background: #e7f0f7;
	justify-content: center;
    flex-basis: 100%;
    padding:65px 0 250px;
	position:relative;
	}
#s4__wave{
    bottom: -1px;
    left: 0;
    position: absolute;
    width: 100vw;
	}	
#s4__wave path{
	fill: white;
	}

.s4_row{
	margin:0 auto 0;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}
.s4_row-left{
	width:50%;
	text-align:left;
	}
ul.s4-social{
	margin: 25px 0 0;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	}
ul.s4-social li{
	margin:0 10px 0 0;
	}
ul.s4-social li a{
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width:36px;
	height:36px;
	background:#011f41;
	border-radius:5px;
	}
ul.s4-social li svg{
	color:#fff;
	fill: #fff;
	width:20px;
	}
.s4-mail{
	display:inline-block;
	vertical-align:middle;
	width:25px;
	margin:-1px 5px 0 0;
	}
.s4_row-right{
	width:46%;
	margin-top:15px;
	}
.s4-rght-img{
	width:100%;
	position:relative;
	}
.s4-rght-img:before {
    position: absolute;
    right: -10px;
    top: 10px;
    bottom: -10px;
    left: 10px;
    content: "";
    background: #bad6ec;
    border-radius: 50px;
	}
.s4-rght-img img{
	display:block;
	margin:0 auto;
	max-width:100%;
	border-radius: 50px;
    position: relative;
	}


.s4-cat-img{
    position: absolute;
    left: 154px;
    bottom: -230px;
    z-index: 1;
	}

/*-----------------
SECTION_FIVE
-------------------*/
.section_five{
	justify-content: center;
    flex-basis: 100%;
    padding: 10px 0 70px;
	position:relative;
	}
.section_five:before{
	content:'';
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	background:#e7f0f7;
	height:330px;
	}
.sec5_insurance_block{
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
	width: 85%;
    margin:0px auto 0;
    overflow: hidden;
    position: relative;
	}
.sec5_insurance_box{
	margin:20px auto;
	width:100%;
	max-width:770px;
	border-radius:20px;
	background:#fff;
	position:relative;
	padding:40px 30px 25px;
	
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
	justify-content: space-between;
	}	
.s5_insurance_price{
	width:25%;
	}
.insurance_txt{
	margin:0 auto 0;
	width:100%;
	max-width:130px;
	min-height:130px;
	background:#fff4f4;
	border:1px solid #ed1c24;
	border-radius:15px;
	font-size:20px;
	line-height:22px;
	color:#f11212;
	font-weight:bold;
	padding:10px;
	position:relative;
	
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;	
	}
.insurance_txt:after{
	content: '';
    position: absolute;
    left: 50%;
    bottom: -50px;
    border-left: 2px dotted #ee272e;
    height: 50px;
	}
.insurance_price{
	font-size:30px;
	line-height:32px;
	color:#f11212;
	font-weight:bold;
	margin-top:70px;
	}
	
.color_insurance_price .insurance_txt:after{
	border-left: 2px dotted #3dc785;
	}
.color_insurance_price .insurance_txt{
    background: #ebf9f2;
    border: 1px solid #00b65e;
    color: #00c465;
	}
.color_insurance_price .insurance_price{ color:#00b85f;}
.s5_insurance_content{
	width:45%;
	}
.s5_insurance_content h3{
	font-size:28px;
	line-height:30px;
	color:#011f41;
	font-weight:bold;
	}
.s5_imgbox{ position:relative;}	
.s5-dog-img{
	margin:12px auto 0;
	display:block;
	}
.animate-image1{
    position: absolute;
    top: 12px;
    left: 30px;
	}	
.animate-image2{
	position: absolute;
    top: 10px;
    left: 70px;
	}	
.animate-image3{
    position: absolute;
    bottom: 65px;
    left: 90px;
	}	
.animate-image4{
    position: absolute;
    top: 50px;
    right: 77px;
	}
.swiper-button-next, .swiper-button-prev{
	background:#e7f0f7;
	width:50px !important;
	height:50px !important;
	border-radius:50%;
	}
.swiper-button-next:after, .swiper-button-prev:after{
	--swiper-navigation-size:25px;
	color:#899bad;
	}			
					
	
/*-----------------
SECTION_SIX
-------------------*/
.section_six{
	justify-content: center;
    flex-basis: 100%;
    padding: 65px 0 0;
	position:relative;
	}		
.testimonial_block{
	width: 100%;
	padding:0 20px;
	}
.sec6_testimonials{
	width: 100%;
    margin:50px auto 0;
	padding-bottom: 10px;
	
	display: -webkit-flex;
	display: flex;
    flex-wrap: wrap;
	justify-content: center;	
	}
.swiper-slide{
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	}	
.testimonial_box{
	background:#fff;
	border-radius:10px;
	padding:35px 25px;
	position:relative;
	text-align:left;
	border:1px solid #000;
	box-shadow:0 3px 15px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow:0 3px 15px 1px rgba(0,0,0,0.2);
	}
.testimonial_heading{
	font-size: 20px;
    line-height: 26px;
    color: #000;
    letter-spacing: 0.3px;
	font-weight:bold;
    margin-top: 10px;	
	}
.testimonial_para{
	min-height:104px; 
	margin-top:12px;
	}

.slider_name{
	margin:20px auto 0;
	width:100%;
	
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
	}
.slider_name_left{
	position:relative;
	padding-left:65px;
	}	
.t-letter{
	position:absolute;
	top:50%;
	left:0;
    background: #547aa4;
    width: 50px;
    height: 50px;
	text-align:center;
    border-radius: 50%;
    font-size: 18px;
    line-height: 50px;
    color: #fff;
    font-weight: bold;
	margin-top:-25px;
	}
.t-name{
	font-size: 18px;
    line-height: 20px;
    color: #000;
    letter-spacing: 0.3px;
	font-weight:bold;
	}
.verified-text{
	font-size:14px;
	line-height:14px;
	color:#23ae40;
	margin-top:6px;
	}
.verified-text img{ margin:0 5px -2px 0;}		
.swiper-pagination{ position:static !important; z-index:2 !important; margin-top: 40px;}

/*-----------------
SECTION_SEVEN
-------------------*/
.section_seven{
	justify-content: center;
    flex-basis: 100%;
	background:#e7f0f7;
    padding: 190px 0 70px;
	position:relative;
	}
#s7__wave{
    top: 0;
    left: 0;
    position: absolute;
    width: 100vw;
	}	
#s7__wave path{
	fill: white;
	}	
.faq-box{
	max-width:1000px;
	margin:25px auto 20px;
	text-align:left;
	}
.accordion{
    text-align:left;
    background:url(../images/open-btn.png) no-repeat right 15px center;
    padding:20px 35px 20px 10px;
	color:#000000;
    font-size:20px;
    line-height:28px;
    font-weight:bold;
	border-bottom: 1px solid #b3bcdf;
    cursor:pointer;
	}
.faq-box_row.active .accordion{
	background:url(../images/close-btn.png) no-repeat right 15px center;
	}
.panel{
    padding:15px 20px 10px 10px;
	}
.accordion-para{
	font-size: 18px;
    line-height: 26px;
    color: #000;
    letter-spacing: 0.3px;
	margin-bottom:15px;
	}	

/*------------------
Agency Info
------------------*/
.agency-info p .web-link{
	color: #01C24F;
	font-weight: bold;
}
.agency-info p .web-link:hover{
	color: #469fdf;
}

.agency-info table{
	border-color: #dee2e6;
	width: 100%;
	background-color: #fff;
	margin-top: 30px;
}
.agency-info table {
    border-collapse: collapse;
    width: 100%;
}
.agency-info table th, table td {
    padding: 8px;
    text-align: left;
}
.agency-info table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}
.agency-info table .activeState{
	color: #02d36e;
}

/*------------------
Teams
------------------*/
.teams{
	background-color: #e7f0f7;
}
.teams-wrapper{
	margin-top: 30px;
}

.teams .teams-wrapper{
	display: grid;
	gap:30px;
	grid-template-columns: 1fr 1fr;
}

/*------------------
About Us
------------------*/
.about-section{
	background: #ffffff;
	justify-content: center;
    flex-basis: 100%;
    padding:60px 0px 0px 0px;
	position:relative;
}
.about_row{
	margin:0 auto 0;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about_row-left{
	width:50%;
	text-align:left;
}
.about_row-right{
	display: flex;
    flex-direction: column;
    justify-content: center;
	width:50%;
	text-align:left;
}
.about_content-heading {
    color: #011f41;
    font-size: 37px;
    line-height: 46px;
    font-family: 'EB-Garamond';
    letter-spacing: -1px;
    font-weight: 800;
}
.about_content-text {
    font-size: 18px;
    line-height: 26px;
    color: #000;
    letter-spacing: 0.3px;
    margin-top: 12px;
}

/*------------------
FOOTER
------------------*/
.with-focus:hover{
	cursor:pointer!important;
	color:#547aa4!important;
}
.footer_linksec{
	flex-basis: 100%;
	justify-content: center;
	padding:50px 0;
	background:#fafafa;
	}
.ftr-links-inr{
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}
.ftr-links-col{
	text-align:left;
	padding-right: 30px;
	}
.ftr-links-col-1{
	width:20%;
	}
.ftr-links-col-4{ padding-right:0;}

.footerLogo{
	display:block;
	width:172px;
	}
.ftr-desc{
	font-size:16px;
	line-height:24px;
	color:#000;
	letter-spacing:0.3px;
	margin-top:20px;
	}	
.ftr-links-hd{
    font-size: 18px;
    line-height: 26px;
    color: #000;
    font-weight: bold;
	}
ul.ftr-links-list{ margin-top:25px;}	
ul.ftr-links-list li{
	margin:10px 0 0;
	font-size:16px;
	line-height:24px;
	color:#000000;
	text-align:left;	
	letter-spacing:0.3px;
	}
ul.ftr-links-list li a{color:#000000;}
ul.social_list{ margin-top:20px;}
ul.social_list li{
	margin:15px 0 0;
	font-size:16px;
	line-height:24px;
	color:#000000;
	text-align:left;
	letter-spacing:0.3px;
	position:relative;
	padding-left:28px;
	}
ul.social_list li img{
	position:absolute;
	left:0;
	top:7px;
	}
ul.social_list li:last-child img{ top:3px;}
ul.social_link{
	margin-top:25px;
 	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
	}
ul.social_link li{ margin-right:12px;}	
ul.social_link li a{
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #000;
    border-radius: 50%;
	}
ul.social_link li a svg {
    color: #fff;
    fill: #fff;
    width: 18px;
	}

.footer{
	flex-basis: 100%;
	justify-content: center;
	padding:30px 0;
	background:#fff;
	border-top:1px solid #ddd;
	text-align:center;
	}
.footer_strip{
	margin:30px auto 0;
	background:#fff;
	border:1px solid #cccccc;
	padding:15px;
	text-align:center;
	
    display: -webkit-flex;
	display: flex;
    flex-wrap: wrap;
	justify-content: center;	
	}
.ftr_strp_head{
	font-size:16px;
	line-height:18px;
	color:#484848;
	font-weight:bold;
	margin-bottom:10px;
	}	
.footer_text{
	font-size:14px;
	line-height:20px;
	letter-spacing:0.3px;
	color:#525252;
	margin-top:5px;
	}
.disclaimer{
	font-size:14px;
	line-height:20px;
	letter-spacing:0.3px;
	color:#525252;
	margin-top:5px;
	text-align: left;
}
.footer_text a{ padding:0 5px;}	
.footer_text2{
	font-size:16px;
	line-height:20px;
	letter-spacing:0.3px;
	color:#000;
	margin-top:25px;
	}	

.for-mob{display:none;}
.for-tab{display:none;}
.fl{ float:left;}
.fr{ float:right;}

/*Reusable global classes*/
.text-start{
	text-align: left;
}
.text-end{
	text-align: right;
}
.text-center{
	text-align: center;
}

/*-----------------------
MEDIA-QUERY
------------------------*/
@media only screen and (max-width: 1600px){
.testimonial_para{ min-height: 130px;}

}

@media only screen and (max-width: 1200px){
.container{width:1004px;}

ul.nav-bar{margin-left: 10px;}
ul.nav-bar li { padding-right: 18px;}

.banner_left {width: 60%;}
.banner_heading{ font-size:45px; line-height:51px;}
.bnr-dog-img{ top: -95px; right: -90px;}

.sec1_left{ width:48%;}
.sec1_right{ width:48%;}
.common_heading{ font-size: 45px; line-height: 55px;}

.section-2__content{ width:38%;}
.section-2__inner:before{ display:none;}
.sec2_content-heading{ font-size:34px; line-height:40px;}

.s4_row-left {width: 53%;}

}

@media only screen and (max-width:1021px){	
.container{width:750px;}
.for-desk{ display:none;}
.for-tab{display:block;}

ul.nav-bar{ display:none;}
a.top_btn{ margin-right:60px;}

.mobilemenu li:first-child{ border:none;}
.menu-logo{ width:160px; margin-top:10px;}

.banner_left{ width:71%;}
.banner_review-rate p{font-size: 12px;}
.bnr-star{ width:60px;}
.bnr-face{ width:80px;}
.banner_heading{ font-size: 40px; line-height: 48px;}
.bnr-dog-img{ width: 610px; right: -100px; top: 60px;}
.bnr-t-cont{ padding-right:100px;}

.section_one{ padding:50px 0 60px;}
.common_heading{ font-size: 40px; line-height: 48px;}
.sec1_left{ width:100%;}
.chart_details{ margin: 40px auto 0;}
.chart_col1 ul.chart_list li{ background: url(../images/chart-tike.png) no-repeat left 20px;}
.sec1_lft_box{ padding-bottom: 34%;}
.s1-dog-img{ left: 50%; margin-left: -312px; bottom: -34px;}
.sec1_right{ width:100%;}
ul.sec1_list{ margin: 45px auto 0;}

.section_two{ padding:50px 0 60px;}
#s2__wave{ bottom: -1px;}
.section-2__inner:before{ display:none;}
.section-2__content{ width:45%;}
.sec2_content-heading{ font-size:36px; line-height:46px;}
.section-2__box__image{ width:45%;}
.insurance_details_box{ bottom: 4px; left: -50px;}
.s2_inner_box_reverse .insurance_details_box { left: auto; right: -50px;}
.insurance_header p{ width: calc(100% - 80px); font-size: 17px; line-height: 25px;}
.s2-cat-img{ left: 10px; bottom: -69px; width: 160px;}

.section_three{ padding:50px 0 60px;}
.s3_contbox h3{ font-size: 24px; line-height: 28px;}
ul.sec3_list li:before{ right: -160px; width: 300px;}
.sec3_box{ padding:40px 25px; background-position: right 75% top;}
.sec3_box_content{ width:58%;}

.section_four{ padding:50px 0 230px;}
.s4-cat-img{ left: 0;}
.s4_row-left{ width:100%;}
.s4_row-right{ width:55%; margin:25px 0 35px;}

.section_five{ padding:10px 0 60px;}
.section_six{ padding:50px 0 0;}
.section_seven{ padding:150px 0 60px;}
.sec5_insurance_block{ width:100%;}


ul.social_link li{ margin-right: 7px;}

}

@media only screen and (max-width:767px){
.container{max-width:600px; width:100%; padding:0px 15px;}

.for-mob{display:block;}
.hide-mob{display:none;}

header{position: relative; z-index: 9; margin-bottom:55px;}
.header__inner{ height: 55px; margin-top: -55px; top: 55px;}
.logo{width:150px; margin-top:12px;}
.mob-mnu-ic{ right: 15px; top: 17px;}

.top_strip p{ font-size:14px; line-height:20px;}
a.top_btn{ margin-top:6px;}
a.top_btn{ width: 150px; margin-top: 9px; padding: 8px 0; display:none;}

.banner{ background: url(../images/banner-mob.jpg)#e7f0f7 no-repeat center top; padding:40px 0 45px; overflow:hidden;}
.banner_left{ width:100%; text-align:center;}
.banner_review-rate{  justify-content: center; margin: 0 auto;}
.banner_review-rate p{ font-size: 13px; line-height:16px; padding:8px 14px 7px;border-radius: 10px;}
.bnr-star{ display:block; margin:0 auto 5px;}
.bnr-face{ width:90px;}
.banner_heading{ font-size: 34px; line-height: 44px; letter-spacing: 0.5px;}
.bnr-dog-img{ position: static; margin: 15px auto 0; display:none;}
ul.banner_list{ justify-content: flex-start; margin: 5px auto 0; max-width: 325px;}
ul.banner_list li{ font-size:17px; line-height:23px;}
.bnr-t-cont{ padding: 0 0 0 15px;}
.common_button{ justify-content: center;}
.common_button a{ margin-top:25px;}
.common_button_inner a{ margin-top:0;}
.bnr-dog-mob{ position:absolute; top:0; left:-10px; width: 80px;}
.bnr-cat-mob{ position: absolute; top: 22px; right: 0; transform: scaleX(-1); -webkit-transform: scaleX(-1); width: 55px;}

.scorall_section{ padding-top:20px;}
.scorall_section p{ font-size: 16px; line-height: 22px;}
.scrollStrip{ height:65px;}
 .content-holder {width: 700px; min-width: 700px;} */
.logo-slide-wrapper{min-width: 100px;margin-right: 15px;margin-left: 15px;}
.logo-container{animation:track 60s linear forwards infinite;  min-width:calc(470px * 6) !important}

.section_one{ padding:25px 0 35px;}
.common_heading{ font-size: 30px; line-height: 38px;}
.common_text{ font-size: 17px; line-height: 25px; margin-top: 15px;}
.chart_details{ margin: 25px auto 0;}
.sec1_lft_box{ padding-bottom: 40%;}
.chart_header{ height: 70px; padding: 0 10px;}
.chart_logo{ width:120px;}
.chart_header p{ font-size: 16px; line-height: 20px;}
.s1-dog-img{ margin-left: -174px; bottom: -26px; width: 350px;}
ul.chart_list{ padding: 10px;}
ul.chart_list li{ height: 55px; font-size: 17px; line-height: 23px;}
.s1_points_heading{ margin-top:45px;}
ul.sec1_list{ margin: 40px auto 0; padding:0 10px;}
ul.sec1_list li{ width:100%; font-size: 16px; line-height: 22px; padding-left: 22px; margin-top: 8px;}

.section_two{ background: #e7f0f7; padding:25px 0 120px;}
.section-2__content{ width:100%;}
.section-2__box__image{ width:100%; margin-top:25px;}
.feauture-image{ border-radius:15px;}
.s2_imagebx:before{ border-radius:15px;}
.section-2__inner{ padding:0;}
.sec2_content-heading{ font-size: 28px; line-height: 36px;}
.insurance_details_box, .s2_inner_box_reverse .insurance_details_box{ left: 50%; position: relative; margin: -60px auto 0; display: block; z-index: 2; max-width: 300px; margin-left: -150px; padding: 20px 20px 25px;}
.s2_imagebx{ margin-right: auto;}
.s2_inner_box_reverse .s2_imagebx{ margin-left:auto;}
.sec2_content-text{ font-size: 17px; line-height: 25px; margin-top: 15px;}
.section-2__inner__box:first-child{ margin-top:20px;}
.section-2__inner__box{ margin-top:40px;}
.s2_inner_box_reverse .s2_imagebx:before{ left: 10px; right: -10px;}
ul.sec2_box__list{ margin-top:15px;}
ul.sec2_box__list li{ font-size:17px; line-height:25px;}
.s2-cat-img{ left: 10px; bottom: -135px; width: 110px}
.section_two .common_button_inner{ margin-top: 30px;}

.section_three{ padding:25px 0 35px;}
ul.sec3_list{ padding:0 10px; margin:25px auto 0;}
ul.sec3_list li{ width:100%; margin-bottom:40px;}
ul.sec3_list li:last-child{ margin-bottom:0;}
ul.sec3_list li:before{ display:none;}
.s3_imgbox{ margin: 20px auto 0; display: block;}
.s3_contbox{ padding: 20px 25px 0;}
.s3_contbox h3{ font-size: 22px; line-height: 28px;}
.sec3_box{ background:#011f41; padding:25px 20px 0;  margin: 35px auto 5px;}
.sec3_box_content{ width:100%;}
.s3-box-bg-mob{ width:calc(100% + 40px); margin:25px 0 -5px -20px; max-width:none;}

.section_four{ background:#e7f0f7; padding:25px 0 170px;}
.s4-cat-img{ width: 190px; bottom: -188px;}
.s4_row-right{ width:100%;}
.s4-rght-img img,.s4-rght-img:before {border-radius: 20px;}
ul.s4-social{ margin:20px 0;}


.section_five{ padding:35px 0;}
.sec5_insurance_box{ margin: 15px auto 20px; padding: 20px 12px 20px;}
.s5_insurance_price{ width:32%;}
.insurance_txt{ min-height: 90px; font-size: 18px; line-height: 22px;}
.insurance_price{ font-size: 24px; line-height: 28px; margin-top: 60px;}
.s5_insurance_content{ width:32%;}
.s5_insurance_content h3{ font-size: 18px; line-height: 22px;min-height: 70px; padding-top:5px;}
.section_five:before{ height:300px;}
.s5_imgbox{ width:102px;margin: 0 auto;}
.animate-image1, .animate-image2, .animate-image3, .animate-image4{ width:20px;}
.animate-image1{ top: 3px; left: 1px;}
.animate-image2{ top: 5px; left: 14px;}
.animate-image3{ bottom: 20px; left: 25px;}
.animate-image4{ top: 20px; right: 17px;}

.swiper-button-next, .swiper-button-prev{
	width:30px !important;
	height:30px !important;
	top:60% !important;
	}
.swiper-button-next:after, .swiper-button-prev:after{
	--swiper-navigation-size:15px;
	}

.section_six{ padding:25px 0 20px;}
.sec6_testimonials{ margin: 30px auto 0; padding-bottom:0;}
.swiper-pagination{ margin-top:20px;}
.testimonial_para{ min-height: 125px;}
	
.section_seven{ background: #e7f0f7; padding:60px 0 35px;}
.faq-box{ margin: 15px auto 5px;}	
.accordion{ padding: 17px 40px 17px 0; font-size: 19px; line-height: 27px;}	
.panel{ padding: 12px 0 10px 0;}
.accordion-para{ font-size: 17px; line-height: 25px;}	
	
.footer_linksec{ padding:30px 0 35px;}
.ftr-links-inr{justify-content: center;flex-direction: column;}
.ftr-links-col-1{ width:100%;}
.footerLogo{ width:150px;}
.ftr-desc{ margin-top:15px;}
.ftr-links-col-1{margin-bottom: 20px;}
.ftr-links-col{display: flex;flex-direction: column; align-items: center; padding-right: 0px;}
ul.ftr-links-list{ margin-top:12px;}
.ftr-links-col-4,.ftr-links-col-3{ margin-top:20px;}
ul.social_list{ margin-top:10px;}
ul.social_link li{ margin-right: 12px;}
ul.social_link li img{ width:25px;}	
ul.ftr-links-list li{text-align: center;}
.footer_strip{ margin: 25px auto 0;}
.footer_text{ font-size: 12px; line-height: 20px;}	
.footer_text2{ font-size: 15px; line-height: 19px; margin-top: 18px;}	
.teams .teams-wrapper{
	grid-template-columns: 1fr;
}
.about_row{flex-direction: column-reverse;}
.about_row-left,.about_row-right{width: 100%;}
.about_row-left{margin-top: 20px;}
}

/*-----------------------
		Pulse
------------------------*/
.pulse {
	animation-name: pulse;
	-webkit-animation-name: pulse;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	}
@keyframes pulse {
0% {transform: scale(0.7);}
50% {transform: scale(1);}
100% {transform: scale(0.7);}
}

@-webkit-keyframes pulse {
0% {-webkit-transform: scale(0.7);}
50% {-webkit-transform: scale(1);}
100% {-webkit-transform: scale(0.7);}
}
