@charset "utf-8";
/* CSS Document */

body {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 0;
	background: #fff;
	text-align: center;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
	font-family: 'Instrument Sans';
	font-weight: normal;
}

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: block;
}

table, tr, td {
	border: 0;
}

a {
	outline: none;
	color: #333;
	text-decoration: none;
}

	a:hover {
		outline: none;
		text-decoration: none;
	}

img {
	border: none;
	height: auto;
	max-width: 100%;
}

li {
	list-style: none;
}

* {
	box-sizing: border-box;
}

.clearall {
	clear: both;
	font-size: 1px;
	line-height: 1px;
	height: 1px;
}

/*==============Fonts==============*/
@font-face {
	font-family: 'Instrument Sans';
	src: url('InstrumentSans-Bold.woff2') format('woff2'), url('InstrumentSans-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Instrument Sans';
	src: url('InstrumentSans-Regular.woff2') format('woff2'), url('InstrumentSans-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Instrument Sans';
	src: url('InstrumentSans-SemiBold.woff2') format('woff2'), url('InstrumentSans-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Bricolage Grotesque';
	src: url('BricolageGrotesque-ExtraBold.woff2') format('woff2'), url('BricolageGrotesque-ExtraBold.woff') format('woff');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Bricolage Grotesque';
	src: url('BricolageGrotesque-Bold.woff2') format('woff2'), url('BricolageGrotesque-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Bricolage Grotesque';
	src: url('BricolageGrotesque-SemiBold.woff2') format('woff2'), url('BricolageGrotesque-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Segoe Print';
	src: url('SegoePrint.woff2') format('woff2'), url('SegoePrint.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}


/*-----------------------
MAIN CSS START
------------------------*/
.container {
	width: 1170px;
	margin: 0 auto;
	padding: 0;
	position: relative;
}


/*-----------------------
CSS FOR NAV BAR
------------------------*/
.top-fix-bar {
	float: left;
	width: 100%;
	margin-bottom: 80px;
}

.nav-sec {
	float: left;
	width: 100%;
	height: 80px;
	margin-top: -80px;
	top: 80px;
	position: relative;
}

.fixed-nav .nav-sec {
	position: fixed;
	z-index: 10;
	transition: margin .3s ease-out;
	-webkit-transition: margin .3s ease-out;
	margin-top: 0;
	top: 0;
	background: #fff;
	-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);
}

.logo {
	display: inline-block;
	vertical-align: middle;
	width: 135px;
	margin: 17px 0 0 -150px;
}

ul.menu-list {
	float: left;
	margin: 32px 0 0 20px;
}

	ul.menu-list li {
		float: left;
	}

		ul.menu-list li a {
			float: left;
			color: #000;
			font-size: 16px;
			line-height: 16px;
			font-weight: 600;
			padding: 0 18px;
		}

			ul.menu-list li a:hover {
				color: #005ba2;
			}

			ul.menu-list li a.active {
				color: #005ba2;
			}

a.nav-btn {
	float: right;
	background: #00d641;
	color: #fff;
	font-size: 15px;
	text-align: center;
	width: 165px;
	height: 40px;
	letter-spacing: 0.5px;
	line-height: 41px;
	border-radius: 30px;
	font-weight: bold;
	margin-top: 20px;
}

/*=====Menu=====*/
.mob-mnu-ic {
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 30px;
	z-index: 16;
	height: 30px;
}

	.mob-mnu-ic button {
		outline: none;
		-webkit-appearance: none;
		background: none;
		padding: 0;
		cursor: pointer;
		border: none;
	}

	.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: #737373;
	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: #737373;
}

.dl-active .bar2 {
	opacity: 0;
}

.dl-active .bar3 {
	-webkit-transform: rotate(45deg) translate(-7px, -7px);
	transform: rotate(45deg) translate(-7px, -7px);
	background: #737373;
}

.mobilemenu {
	left: 0;
	position: fixed;
	top: 80px;
	background: rgba(255,255,255,1);
	z-index: 10;
	right: 0;
	bottom: 0;
	overflow: scroll;
	display: none;
	border-top: 1px solid #ddd;
}

.mobimenu-top {
	top: 70px;
}

.mobilemenu li {
	float: left;
	width: 100%;
	text-align: left;
	border-bottom: 1px solid #ddd;
}

	.mobilemenu li a {
		float: left;
		width: 100%;
		padding: 17px 20px;
		font-size: 17px;
		color: #000;
	}

		.mobilemenu li a:hover {
			color: #000;
		}

/*-----------------------
		BANNER
------------------------*/
.bnr_section {
	background: url(../images/bnr-bg.jpg) no-repeat center top;
	float: left;
	width: 100%;
	overflow: hidden;
}

.bnr_inner {
	float: left;
	width: 100%;
	position: relative;
	padding-bottom: 17%;
}

	.bnr_inner:before {
		content: '';
		position: absolute;
		left: -2000px;
		bottom: 0;
		right: -2000px;
		background: #000;
		height: 4px;
	}

.bnr_content {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	max-width: 805px;
	text-align: center;
	margin-top: 50px;
	position: relative;
	z-index: 1;
}

.bnr_tag_text {
	font-size: 18px;
	line-height: 20px;
	color: #000;
	font-weight: 600;
}

.bnr_heading {
	font-size: 58px;
	line-height: 60px;
	color: #005ba2;
	font-family: 'Bricolage Grotesque';
	font-weight: bold;
	margin-top: 12px;
}

ul.bnr_list {
	margin: 30px auto 0;
	width: 100%;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

	ul.bnr_list li {
		width: 28%;
		text-align: center;
	}

		ul.bnr_list li img {
			margin: 0 auto 0;
			display: block;
			width: 41px;
		}

		ul.bnr_list li p {
			font-size: 17px;
			line-height: 23px;
			color: #000;
			font-family: 'Bricolage Grotesque';
			font-weight: 600;
			margin-top: 12px;
		}

.btn-box {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	width: 372px;
	max-width: 100%;
	margin-top: 45px;
}

.bnr_section .btn-box {
	margin-top: 35px;
}

.packageBtn {
	float: left;
	width: 100%;
	border-radius: 30px;
	height: 58px;
	line-height: 58px;
	overflow: hidden;
	position: relative;
	background: #00d641;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.3px;
	box-shadow: 0 3px 5px 2px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 3px 5px 2px rgba(0, 0, 0, 0.2);
}

.btn-arw {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 0 12px;
	width: 14px;
}

.btn_mnybk_text {
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	line-height: 20px;
	color: #000;
	font-weight: 600;
	margin-top: 12px;
}

	.btn_mnybk_text img {
		display: inline-block !important;
		vertical-align: middle;
		margin: -3px 6px 0 0;
		width: 65px;
	}

.bnr_dog_img {
	position: absolute;
	left: -204px;
	bottom: 3px;
	max-width: none;
}

/*-----------------------
Section 1
------------------------*/
.section_1 {
	background: #fff;
	float: left;
	width: 100%;
	padding: 60px 0 0;
}

.s1_inner {
	float: left;
	width: 100%;
	position: relative;
}

.s1_left {
	float: left;
	width: 47%;
	text-align: left;
}

.common_heading {
	font-size: 50px;
	line-height: 54px;
	color: #005ba2;
	font-family: 'Bricolage Grotesque';
	font-weight: bold;
}

.s1_right {
	float: right;
	width: 44%;
	text-align: left;
	position: relative;
	z-index: 1;
}

.s1_text {
	font-size: 20px;
	line-height: 30px;
	color: #000;
}

ul.s1_list {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 12px;
}

	ul.s1_list li {
		float: left;
		width: 46%;
		background: url(../images/s1-list-cross.png) no-repeat left 6px;
		font-size: 20px;
		line-height: 26px;
		color: #000;
		font-family: 'Bricolage Grotesque';
		font-weight: 800;
		padding-left: 34px;
		margin-top: 12px;
	}

.s1_bog_box {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	position: relative;
	margin-top: -15px;
}

.s1_dog_img {
	margin: 0 auto 0;
	display: block;
}

.s1-dog-comnt {
	position: absolute;
	left: 160px;
	top: -104px;
	background: #ffeaea;
	width: 262px;
	height: 162px;
	border-radius: 50%;
	font-size: 23px;
	line-height: 31px;
	color: #000;
	font-family: 'Segoe Print';
	font-weight: normal;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	transform: rotate(-11deg);
}

.comnt_shap {
	position: absolute;
	right: 78px;
	bottom: -16px;
}

/*-----------------------
Section 2
------------------------*/
.section_2 {
	background: #fff;
	float: left;
	width: 100%;
	padding: 70px 0 0;
}

.s2_content {
	float: left;
	width: 52%;
	text-align: left;
}

.common_text {
	font-size: 18px;
	line-height: 26px;
	color: #000;
	margin-top: 20px;
}

ul.s2_list {
	width: 100%;
	margin-top: 40px;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

	ul.s2_list li {
		width: 32%;
		text-align: center;
	}

.s2_lst_icns_bx {
	margin: 0 auto 0;
	background: #fff;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	box-shadow: 0 3px 12px 0 rgba(12, 137, 234, 0.2);
	-webkit-box-shadow: 0 3px 12px 0 rgba(12, 137, 234, 0.2);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

	.s2_lst_icns_bx img {
		margin: 0 auto 0;
		display: block;
		width: 32px;
	}

ul.s2_list li p {
	font-size: 16px;
	line-height: 22px;
	color: #000;
	font-weight: 600;
	margin-top: 14px;
}

.s2_right {
	float: right;
	width: 47%;
	text-align: center;
}

.s2_clinicians_box {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	max-width: 385px;
	background: #fff;
	border: 10px solid #ebf8ff;
	text-align: center;
	position: relative;
}

.s2_clinic_inner {
	float: left;
	width: 100%;
	border: 10px solid #000;
	padding: 15px 20px;
}

.animal_logo {
	margin: 0 auto 0;
	display: block;
}

.multi_lines {
	display: inline-block;
	vertical-align: top;
	margin-top: 28px;
}

.clinicians_text {
	font-size: 14px;
	line-height: 24px;
	color: #8d8d8d;
	text-align: left;
	margin-top: 15px;
}

.esa_seal {
	display: inline-block;
	vertical-align: top;
	width: 76px;
	margin-top: 28px;
}

.clinicians_step {
	position: absolute;
	text-align: left;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.1);
	padding: 10px 10px 10px 52px;
	width: 225px;
	font-size: 14px;
	line-height: 16px;
	font-weight: 600;
}

.clinic_step1 {
	top: 195px;
	left: -108px;
}

.clinic_step2 {
	top: 135px;
	right: -80px;
}

.clinic_step3 {
	bottom: 84px;
	right: -80px;
}

.clinicians_step img {
	position: absolute;
	top: 50%;
	left: 8px;
	border-radius: 50%;
	width: 34px;
	margin-top: -17px;
}

/*-----------------------
Section 3
------------------------*/
.section_3 {
	background: #fff;
	float: left;
	width: 100%;
	padding: 70px 0 0;
}

.s3_works_wrap {
	margin: 0 auto 0;
	width: 100%;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.s3_works_box {
	width: 48.7%;
	border-radius: 25px;
	overflow: hidden;
	text-align: left;
	position: relative;
}

.s3_works_box1 {
	background: #f7e9dc;
}

.s3_works_box2 {
	background: #def3ff;
}

.s3_works_box .btn-box {
	margin-top: 32px;
}

.s3_works_box_inner {
	float: left;
	width: 100%;
	padding: 35px;
	position: relative;
	z-index: 1;
}

.s3_works_box2 .s3_works_box_inner {
	padding-top: 45px;
}

.s3_bx1_dog {
	display: inline-block;
	vertical-align: top;
	margin-top: -190px;
}

.s3_bx2_dog {
	float: right;
	width: 127px;
	margin: 27px 0 0 20px;
}

.s3_works_text {
	font-size: 24px;
	line-height: 34px;
	color: #000;
}

ul.s3_bx_list {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	max-width: 440px;
	margin-top: 25px;
}

	ul.s3_bx_list li {
		float: left;
		width: 100%;
		position: relative;
		border-bottom: 1px solid #bbcdd8;
		padding: 0 0 22px 80px;
		margin-top: 20px;
	}

		ul.s3_bx_list li:last-child {
			border: none;
		}

		ul.s3_bx_list li img {
			position: absolute;
			top: 10px;
			left: 0;
			width: 55px;
		}

		ul.s3_bx_list li h3 {
			font-size: 26px;
			line-height: 30px;
			color: #005ba2;
			font-family: 'Bricolage Grotesque';
			font-weight: 800;
		}

		ul.s3_bx_list li p {
			font-size: 20px;
			line-height: 26px;
			color: #000;
			margin-top: 10px;
		}

.s3_bx_paw1 {
	position: absolute;
	top: 163px;
	right: 180px;
}

.s3_bx_paw2 {
	position: absolute;
	bottom: 124px;
	right: 25px;
	width: 40px;
	transform: rotate(-72deg);
}

.s3_bx_cld1 {
	position: absolute;
	right: -26px;
	bottom: 294px;
}

.s3_bx_cld2 {
	position: absolute;
	right: 63px;
	top: 13px;
	transform: scaleX(-1);
	width: 60px;
}

/*-----------------------
Section 4
------------------------*/
.section_4 {
	background: #fff;
	float: left;
	width: 100%;
	padding: 70px 0;
}

.s4_mid_wrap {
	width: 100%;
	margin: 45px auto 0;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	column-gap: 3%;
	row-gap: 30px;
}

.s4_mid_box {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	width: 31.33%;
	background: #ebf8ff;
	border-radius: 10px;
	overflow: hidden;
	padding: 25px 12px;
}

.s4_midbx_cont {
	width: 100%;
	text-align: center;
	padding: 0 22px;
}

	.s4_midbx_cont h3 {
		font-size: 20px;
		line-height: 26px;
		color: #000;
		font-weight: bold;
	}

	.s4_midbx_cont p {
		margin-top: 12px;
	}

.s4_midbx_img1 {
	display: block;
	margin: 18px auto 0;
}

.s4_midbx_img2 {
	display: block;
	margin: 20px auto -27px;
}

.s4_midbx_img3 {
	display: block;
	margin: 15px auto 10px;
}

.s4_midbx_img4 {
	display: block;
	margin: 15px auto 35px;
}

.s4_midbx_img5 {
	display: block;
	margin: 15px auto 0 90px;
}

.s4_midbx_img6 {
	display: block;
	margin: 20px auto 10px;
}

/*-----------------------
Section 5
------------------------*/
.section_5 {
	background: #eff6f9;
	float: left;
	width: 100%;
	overflow: hidden;
	height: 455px;
}

.s5_clients_wrap {
	float: left;
	width: 100%;
}

.s5_clients_content {
	float: left;
	width: 37%;
	text-align: left;
	padding: 35px 0;
}

	.s5_clients_content .common_heading {
		line-height: 52px;
	}

	.s5_clients_content .btn-box {
		margin-top: 25px;
	}

.s5_clients_img {
	float: right;
	width: 53%;
	height: 455px;
	position: relative;
}

	.s5_clients_img:after {
		background: url(../images/s5-clients-img.jpg) no-repeat center top;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: -110px;
		content: "";
	}

/*-----------------------
Section 6
------------------------*/
.section_6 {
	background: #fff;
	float: left;
	width: 100%;
	padding: 60px 0 100px;
}

.s6_mid_wrap {
	margin: 50px auto 0;
	width: 100%;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.slide_tabClick {
	float: left;
	width: 100%;
	text-align: left;
	position: relative;
	padding: 30px 0 30px 90px;
	border-bottom: 1px solid #cad2db;
}

.tabClick_last {
	border: none;
}

.slide_tabClick img {
	position: absolute;
	top: 50%;
	margin-top: -35px;
	left: 0;
	width: 70px;
	border-radius: 50%;
}

.slide_tabClick span {
	float: left;
	width: 100%;
	font-size: 26px;
	line-height: 26px;
	color: #005ba2;
	font-family: 'Bricolage Grotesque';
	font-weight: bold;
}

.slide_tabClick p {
	float: left;
	width: 100%;
	font-size: 16px;
	line-height: 16px;
	color: #000;
	font-weight: bold;
	margin-top: 10px;
}

.slide_inner {
	float: left;
	width: 100%;
	display: flex !important;
	align-items: center;
	justify-content: space-between;
}

.slide_testiImg_bx {
	float: left;
	width: 324px;
	position: relative;
}

	.slide_testiImg_bx img {
		max-width: 100%;
		margin: 0 auto;
		display: block;
		border-radius: 12px;
	}

.slide_testCont {
	float: right;
	width: calc(100% - 324px);
	text-align: left;
	padding-left: 30px;
}

.slid_cont_inner {
	float: left;
	width: 100%;
}

.slide_test_head {
	font-size: 36px;
	line-height: 36px;
	color: #005ba2;
	font-family: 'Bricolage Grotesque';
	font-weight: bold;
}

.slider_degig {
	font-size: 18px;
	line-height: 18px;
	color: #000;
	font-weight: bold;
	margin-top: 10px;
	padding-bottom: 22px;
	position: relative;
}

	.slider_degig:before {
		content: '';
		position: absolute;
		bottom: 0;
		left: -30px;
		right: 0;
		background: #005ba2;
		height: 1px;
	}

	.slider_degig:after {
		content: '';
		position: absolute;
		bottom: -18px;
		left: -50px;
		background: url(../images/sld-arw-shap.png) no-repeat;
		width: 36px;
		height: 36px;
	}

.test_text {
	font-size: 16px;
	line-height: 24px;
	color: #000;
	margin-top: 18px;
}

.slide_testCont .btn-box {
	margin-top: 30px;
}

/*-----------------------
Section 7
------------------------*/
.section_7 {
	background: #e3eff6;
	float: left;
	width: 100%;
	padding: 70px 0 200px;
	position: relative;
}

.s7_content {
	float: left;
	width: 44%;
	text-align: left;
}

	.s7_content .btn-box {
		margin-top: 34px;
	}

.s7_lft_img {
	margin: 10px auto 0;
	display: block;
}

.s7_right {
	float: right;
	width: 50%;
}

ul.s7_list {
	margin: 0 auto 0;
	width: 100%;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	column-gap: 5%;
	row-gap: 25px;
}

	ul.s7_list li {
		width: 47%;
		text-align: left;
		background: #fff;
		border-radius: 20px;
		padding: 20px 25px;
	}

		ul.s7_list li img {
			display: inline-block;
			vertical-align: top;
			width: 43px;
		}

		ul.s7_list li h3 {
			font-size: 24px;
			line-height: 28px;
			color: #000;
			font-family: 'Bricolage Grotesque';
			font-weight: 800;
			margin-top: 12px;
		}

		ul.s7_list li p {
			font-size: 16px;
			line-height: 24px;
			color: #000;
			margin-top: 12px;
		}

#s7_wave_top {
	top: -25px;
	left: 0;
	position: absolute;
	width: 100vw;
	z-index: 2;
	fill: #e3eff6;
}

#s7_wave_btm {
	bottom: -25px;
	left: 0;
	position: absolute;
	width: 100vw;
	transform: scaleY(-1);
	z-index: 2;
	fill: #e3eff6;
}

/*-----------------------
Pet Screening Section
------------------------*/

.pet_screening_section {
	float: left;
	width: 100%;
	background: #fff;
}

.banner-block {
	position: relative;
	z-index: 5;
	background-color: #005BA2;
	border-radius: 20px;
	padding: 40px;
	color: #FFFFFF;
	text-align: left;
	margin-top: -120px;
}

.banner-block__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-left: -50px;
	margin-right: -50px;
}

.banner-block__left-col {
	flex: 0 0 auto;
	width: 54.2%;
	max-width: 100%;
	padding-left: 50px;
	padding-right: 50px;
}

.banner-block__right-col {
	flex: 0 0 auto;
	width: 45.8%;
	max-width: 100%;
	padding-left: 50px;
	padding-right: 50px;
}

.banner-block__title {
	font-size: 37px;
	font-family: 'Bricolage Grotesque';
	line-height: 1.4;
	margin-bottom: 24px;
}

.banner-block__badge {
	background-color: #E2EFF6;
	border-radius: 10px;
	color: #005BA2;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	padding: 12px 20px;
	margin-bottom: 24px;
}

.banner-block__sub-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 60px;
}

.banner-block__list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.banner-block__list-col {
	flex: 0 0 auto;
	width: calc(50% - 12px);
	max-width: 100%;
}

.banner-block__list-text {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	padding-left: 32px;
}

	.banner-block__list-text:before {
		content: "";
		position: absolute;
		top: -4px;
		left: 0;
		width: 24px;
		height: 24px;
		border-radius: 50rem;
		background-color: #E2EFF6;
		background-image: url("../images/banner-block-icon.svg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 60%;
	}

.banner-block__img-wrap {
	position: relative;
	background-color: #FFFFFF;
	border-radius: 10px;
	overflow: hidden;
}

	.banner-block__img-wrap:before {
		content: "";
		display: block;
		padding-bottom: 100%;
	}

.banner-block__img {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 5;
}

/*-----------------------
Section 8
------------------------*/
.section_8 {
	background: url(../images/s8-bg.jpg) no-repeat center top;
	float: left;
	width: 100%;
	padding: 70px 0;
	position: relative;
}

.compare_block {
	float: left;
	width: 100%;
	position: relative;
	margin: 50px 0 15px;
}

.compare_block_inr {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	max-width: 865px;
}

.vs {
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	color: #1a1a1a;
	font-size: 16px;
	line-height: 40px;
	font-weight: bold;
	border-radius: 50%;
	text-transform: uppercase;
	border: 1px solid #e6e4e4;
	background: #fff;
}

.compare_points {
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 45px auto 0;
	position: relative;
	z-index: 1;
}

	.compare_points li {
		display: -webkit-flex;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		border-bottom: 1px solid #e1e1e1;
		align-items: center;
		padding: 16px 185px;
	}

		.compare_points li:last-child {
			border-bottom: none;
			padding-bottom: 0;
		}

		.compare_points li p {
			display: -webkit-flex;
			display: flex;
			flex-wrap: wrap;
			width: 100%;
			max-width: 550px;
			align-items: center;
			justify-content: space-between;
			font-size: 16px;
			line-height: 20px;
			color: #1a1a1a;
			font-weight: bold;
		}

		.compare_points li img {
			width: 24px;
		}

.s8_comp_dog1 {
	position: absolute;
	top: 10px;
	left: 0;
	z-index: 2;
}

.s8_comp_dog2 {
	position: absolute;
	top: 40px;
	right: 0;
	z-index: 2;
}

/*-----------------------
Section 9
------------------------*/
.section_9 {
	background: #eff6f9;
	float: left;
	width: 100%;
	padding: 60px 0 70px;
	position: relative;
}

.review_sec {
	display: flex;
	flex-direction: column;
	row-gap: .5rem;
	width: 100%;
	margin-top: 30px;
}

.review_sec-row {
	display: flex;
	flex-direction: row;
	overflow: hidden;
	padding: 1rem;
	gap: 2rem;
}

.review_col-outer {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-shrink: 0;
	gap: 2rem;
	animation: marquee 50s linear infinite;
}

.review-row-reverse .review_col-outer {
	animation-direction: reverse;
}

@keyframes marquee {
	0% {
		transform: translateX(0)
	}

	to {
		transform: translateX(calc(-100% - 16px))
	}
}

.review_col-box {
	max-width: 380px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	background-color: #ffffff;
	border-radius: 10px;
	text-align: left;
	overflow: hidden;
	box-shadow: 0 0 8px 4px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 8px 4px rgba(0,0,0,0.1);
}

.review_col-box-top {
	width: 100%;
}

.review_col-box-content {
	text-align: left;
	padding: 30px 25px 0;
}

.rev_star {
	display: inline-block;
	vertical-align: top;
	width: 76px;
}

.rev-col-heading {
	font-size: 24px;
	line-height: 30px;
	color: #005ba2;
	font-family: 'Bricolage Grotesque';
	font-weight: bold;
	margin-top: 15px;
}

.rev-col-text {
	margin-top: 12px;
}

.review_col-box-bottom {
	padding: 25px 25px 30px;
}

.cust_rev_name {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	padding-left: 55px;
	position: relative;
	margin-top: 15px;
}

.cust_rev_img {
	position: absolute;
	left: 0;
	top: 50%;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #005ba2;
	font-size: 18px;
	line-height: 45px;
	color: #fff;
	text-align: center;
	margin-top: -22.5px;
}

.cust_rev_nm {
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	line-height: 16px;
	color: #000;
	font-weight: bold;
	letter-spacing: 0.3px;
}

	.cust_rev_nm span {
		display: block;
		font-size: 12px;
		line-height: 12px;
		color: #0ab83f;
		font-weight: 500;
		margin-top: 7px;
	}

.verified {
	display: inline-block;
	vertical-align: middle;
	width: 10px;
	margin: -1px 5px 0 0;
}

/*-----------------------
Section 10
------------------------*/
.section_10 {
	background: #fff;
	float: left;
	width: 100%;
	padding: 60px 0 70px;
	position: relative;
}

.s10_content {
	float: left;
	width: 41%;
	text-align: left;
}

.s10_lft_img {
	margin: 60px auto 0;
	display: block;
}

.s10_right {
	float: right;
	width: 57%;
}

.faq-container {
	float: left;
	width: 100%;
}

.up-slide-dwn {
	float: left;
	width: 100%;
	background: #fff;
	border: 1px solid #e1e1e1;
	border-radius: 12px;
	-webkit-box-shadow: 0 10px 20px 0 rgba(124, 139, 161, 0.2);
	box-shadow: 0 10px 20px 0 rgba(124, 139, 161, 0.2);
	margin-top: 10px;
	cursor: pointer;
}

.accordion {
	float: left;
	width: 100%;
	text-align: left;
	background: url(../images/close.png) no-repeat 97% center;
	padding: 12px 40px 12px 25px;
	font-size: 18px;
	line-height: 26px;
	font-weight: 600;
	color: #000;
	position: relative;
}

.acdn-heading.accordion-open {
	background: url(../images/open.png) no-repeat 97% center;
	border-bottom: 1px solid #e1e1e1;
}

.acdn-content {
	float: left;
	width: 100%;
	text-align: left;
	padding: 20px 20px 10px 25px;
}

.acdn-para {
	font-size: 17px;
	line-height: 26px;
	color: #000;
	margin-bottom: 20px;
}

a.link_text {
	color: #1155cc;
	text-decoration: underline;
}

/*-----------------------
CSS FOR FOOTER
------------------------*/
.footer {
	float: left;
	width: 100%;
	background: #fafafa;
	padding: 40px 0;
}

.ftr_logo {
	margin: 0 auto 0;
	width: 135px;
}

.ftr-txt {
	float: left;
	width: 100%;
	font-size: 16px;
	line-height: 34px;
	color: #000000;
}

.footer .ftr-txt a {
	padding: 0 5px;
	color: #000;
}

/*--------------------PLUSE--------------------*/
.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.9);
	}

	50% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.9);
	}
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(0.95);
	}

	50% {
		-webkit-transform: scale(1);
	}

	100% {
		-webkit-transform: scale(0.95);
	}
}

/*=========Media Query=========*/
.show-mob, .show-tab {
	display: none;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.overflow_hidden {
	overflow: hidden;
}

@media only screen and (max-width:1200px) {
	.container {
		width: 1004px;
	}

	.bnr_heading {
		font-size: 52px;
		line-height: 54px;
	}

	.bnr_dog_img {
		left: -148px;
		width: 1290px;
	}

	.common_heading {
		font-size: 44px;
		line-height: 48px;
	}

	.s1_right {
		width: 51%;
	}

	.s1-dog-comnt {
		left: 92px;
		top: -70px;
		width: 246px;
		height: 138px;
	}

	.s2_clinicians_box {
		max-width: 360px;
	}

	.s3_works_box_inner {
		padding: 25px;
	}

	.s3_bx1_dog {
		margin-top: -137px;
	}

	.s3_works_text {
		font-size: 20px;
		line-height: 30px;
	}

	.s4_midbx_cont {
		padding: 0 6px;
	}

	.s5_clients_content .common_heading {
		line-height: 48px;
	}

	.s5_clients_img {
		width: 58%;
	}

		.s5_clients_img:after {
			background-size: cover;
			width: 590px;
		}

	.slide_tabClick span {
		font-size: 24px;
		line-height: 24px;
	}

	.slide_testiImg_bx {
		width: 290px;
	}

	.slide_tabClick p {
		font-size: 14px;
		line-height: 14px;
	}

	.slide_testCont {
		width: calc(100% - 290px);
	}

	.slider_degig {
		font-size: 16px;
		line-height: 16px;
	}

	#s7_wave_top {
		top: -21px;
	}

	#s7_wave_btm {
		bottom: -21px;
	}

	.compare_block_inr {
		max-width: 765px;
	}
}


@media only screen and (max-width:1021px) {
	.container {
		width: 750px;
	}

	.show-desk {
		display: none;
	}

	.show-tab {
		display: block;
	}

	ul.menu-list {
		display: none;
	}

	a.nav-btn {
		margin-right: 45px;
	}

	.logo {
		float: left;
		margin: 18px 0 0 0;
	}

	.bnr_heading {
		font-size: 48px;
		line-height: 50px;
	}

	ul.bnr_list li {
		width: 24%;
	}

	.bnr_dog_img {
		left: -100px;
		width: 935px;
	}

	.section_1 {
		padding: 50px 0 0;
	}

	.s1_left {
		width: 42%;
	}

	.common_heading {
		font-size: 36px;
		line-height: 38px;
	}

	.s1_right {
		width: 55%;
	}

	.s1_text {
		font-size: 18px;
		line-height: 26px;
	}

	ul.s1_list li {
		font-size: 18px;
		line-height: 24px;
	}

	.s1-dog-comnt {
		left: -28px;
	}

	.section_2 {
		padding: 60px 0 0;
	}

	.s2_content {
		width: 100%;
		text-align: center;
	}

	.s2_right {
		float: none;
		margin: 40px auto 0;
		width: 100%;
		max-width: 385px;
	}

	.s2_clinicians_box {
		max-width: 100%;
	}

	ul.s2_list {
		margin: 40px auto 0;
		max-width: 560px;
	}

	.section_3 {
		padding: 60px 0 0;
	}

	.s3_works_wrap {
		max-width: 600px;
		justify-content: center;
		row-gap: 50px;
	}

	.s3_works_box {
		width: 100%;
	}

	.s3_bx1_dog {
		margin-top: -190px;
	}

	.s3_works_text {
		font-size: 18px;
		line-height: 26px;
	}

	.s3_bx2_dog {
		width: 112px;
		margin: -7px 0 0 20px;
	}

	.s3_works_box2 .s3_works_box_inner {
		padding-top: 30px;
	}

	ul.s3_bx_list {
		max-width: 100%;
	}

		ul.s3_bx_list li h3 {
			font-size: 24px;
			line-height: 28px;
		}

		ul.s3_bx_list li p {
			font-size: 19px;
		}

	.section_4 {
		padding: 60px 0;
	}

	.section_5 {
		height: 400px;
	}

	.s5_clients_content .common_heading {
		line-height: 38px;
	}

	.s5_clients_content {
		width: 47%;
	}

	.s5_clients_img {
		width: 49%;
		height: 400px;
	}

	.section_6 {
		padding: 60px 0 80px;
	}

	.s6_mid_wrap {
		margin: 25px auto 0;
	}

	.slide_test_head {
		font-size: 30px;
		line-height: 32px;
	}

	.slide_tabClick {
		padding: 10px 0 10px 70px;
		border-bottom: none;
	}

	.slide_inner {
		float: none;
		display: inline-block !important;
		vertical-align: top;
		margin-top: 25px;
	}

	.slide_tabClick img {
		margin-top: -27px;
		width: 54px;
	}

	.section_7 {
		padding: 60px 0 200px;
	}

	.s7_content {
		width: 100%;
		text-align: center;
	}

	.s7_right {
		display: inline-block;
		vertical-align: top;
		width: 100%;
		margin-top: 40px;
		float: none;
		max-width: 600px;
	}

	#s7_wave_top {
		top: -15px;
	}

	#s7_wave_btm {
		bottom: -15px;
	}

	.banner-block__row {
		margin-left: 0;
		margin-right: 0;
	}

	.banner-block__left-col {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}

	.banner-block__right-col {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		padding-top: 40px;
	}

	.section_8 {
		padding: 60px 0;
	}

	.compare_points li {
		padding: 15px 0;
	}

	.compare_block_inr {
		max-width: 400px;
	}

	.s8_comp_dog1 {
		width: 160px;
		top: 130px;
	}

	.s8_comp_dog2 {
		width: 160px;
		top: 130px;
	}

	.section_9 {
		padding: 60px 0;
	}

	.rev-col-heading {
		font-size: 20px;
		line-height: 28px;
	}

	.section_10 {
		padding: 60px 0;
	}

	.s10_content {
		width: 45%;
	}

	.s10_right {
		width: 52%;
	}
}

@media only screen and (max-width:767px) {
	.container {
		width: 100%;
		padding: 0 15px;
		max-width: 400px;
		box-sizing: border-box;
	}

	.show-mob {
		display: block;
	}

	.hide-mob {
		display: none;
	}

	.top-fix-bar {
		margin-bottom: 50px;
	}

	.nav-sec {
		height: 50px;
		margin-top: -50px;
		top: 50px;
		background: #fff;
	}

	.logo {
		width: 90px;
		margin-top: 10px;
	}

	.mob-mnu-ic {
		top: 15px;
		right: 15px;
	}

	.mobilemenu {
		top: 50px;
	}

	.mobimenu-top {
		top: 50px;
	}

	.bnr_section {
		background: #ebf8ff;
	}

	.bnr_inner {
		padding: 0;
	}

	.bnr_content {
		margin-top: 20px;
	}

	.bnr_tag_text {
		font-size: 16px;
		line-height: 18px;
	}

	.bnr_heading {
		font-size: 34px;
		line-height: 38px;
		margin-top: 10px;
	}

	ul.bnr_list {
		margin: 25px auto 0;
	}

		ul.bnr_list li {
			width: 33.33%;
		}

			ul.bnr_list li img {
				width: 34px;
			}

			ul.bnr_list li p {
				font-size: 15px;
				line-height: 19px;
				margin-top: 10px;
			}

	.bnr_dog_img {
		float: left;
		width: calc(100% + 30px);
		position: static;
		max-width: none;
		margin: 20px 0 0 -15px;
	}

	.btn-box {
		width: 320px;
		margin-top: 25px;
	}

	.bnr_section .btn-box {
		margin-top: 25px;
	}

	.packageBtn {
		font-size: 18px;
	}

	.btn_mnybk_text {
		font-size: 13px;
		margin-top: 10px;
	}

		.btn_mnybk_text img {
			margin: -7px 6px 0 0;
			width: 60px;
		}

	.section_1 {
		padding: 25px 0 0;
	}

	.s1_left {
		width: 100%;
	}

	.s1_right {
		width: 100%;
		margin-top: 15px;
	}

	.common_heading {
		font-size: 28px;
		line-height: 32px;
	}

	.s1_text {
		font-size: 17px;
		line-height: 25px;
	}

	ul.s1_list li {
		width: 50%;
		font-size: 15px;
		line-height: 25px;
		padding-left: 20px;
		background-size: 12px;
		margin-top: 5px;
	}

	.s1_bog_box {
		margin-top: 35%;
	}

	.s1-dog-comnt {
		transform: rotate(-14deg);
		left: -12px;
		top: -88px;
		width: 160px;
		height: 80px;
		font-size: 16px;
		line-height: 20px;
	}

	.comnt_shap {
		right: 84px;
		bottom: -7px;
		width: 32px;
	}

	.section_2 {
		padding: 35px 0 0;
	}

	.common_text {
		font-size: 17px;
		line-height: 25px;
		margin-top: 15px;
	}

	.s2_right {
		margin: 25px auto 0;
		max-width: 305px;
	}

	.s2_clinic_inner {
		padding: 14px 10px;
	}

	.multi_lines {
		margin-top: 20px;
	}

	.clinicians_text {
		font-size: 12px;
		line-height: 22px;
		margin-top: 15px;
	}

	.clinicians_step {
		padding: 5px 5px 5px 38px;
		width: 178px;
		font-size: 12px;
		line-height: 16px;
	}

	.esa_seal {
		width: 65px;
		margin-top: 45px;
	}

	.clinicians_step img {
		left: 5px;
		width: 26px;
		margin-top: -13px;
	}

	.clinic_step1 {
		top: 170px;
		left: -36px;
	}

	.clinic_step2 {
		top: 118px;
		right: -38px;
	}

	.clinic_step3 {
		bottom: 94px;
		right: -38px;
	}

	ul.s2_list {
		margin: 30px auto 0;
	}

	.s2_lst_icns_bx {
		width: 48px;
		height: 48px;
	}

		.s2_lst_icns_bx img {
			width: 24px;
		}

	ul.s2_list li p {
		font-size: 15px;
		line-height: 19px;
	}

	.section_3 {
		padding: 35px 0 0;
	}

	.s3_works_wrap {
		row-gap: 30px;
	}

	.s3_works_box_inner {
		padding: 20px;
	}

	.s3_works_box .btn-box {
		margin-top: 25px;
	}

	.s3_bx1_dog {
		margin-top: -118px;
	}

	.s3_works_box2 .s3_works_box_inner {
		padding-top: 25px;
	}

	.s3_bx2_dog {
		width: 60px;
		margin: 26px -10px 0 10px;
	}

	ul.s3_bx_list {
		margin-top: 10px;
	}

		ul.s3_bx_list li {
			padding: 0 0 20px 57px;
			margin-top: 16px;
		}

			ul.s3_bx_list li img {
				top: 5px;
				width: 45px;
			}

			ul.s3_bx_list li h3 {
				font-size: 20px;
				line-height: 24px;
			}

			ul.s3_bx_list li p {
				font-size: 17px;
				line-height: 25px;
				margin-top: 8px;
			}

	.s3_bx_cld2 {
		top: -2px;
	}

	.s3_bx_paw1 {
		display: none;
	}

	.s3_bx_cld1 {
		right: -24px;
		bottom: 262px;
		width: 70px;
	}

	.s3_bx_paw2 {
		right: 0;
	}

	.section_4 {
		padding: 35px 0;
	}

	.s4_mid_box {
		width: 100%;
	}

	.s4_mid_wrap {
		margin: 25px auto 0;
		column-gap: normal;
		row-gap: 25px;
		padding: 0 15px;
	}

	.section_5 {
		height: auto;
		padding: 25px 0 35px;
	}

	.s5_clients_content {
		padding: 0;
		width: 100%;
		text-align: center;
	}

	.s5_clients_img:after {
		display: none;
	}

	.s5_clients_img {
		width: 100%;
		height: auto;
		margin: 25px auto 5px;
	}

	.section_6 {
		padding: 25px 0 35px;
	}

	.s6_mid_wrap {
		margin: 25px auto 0;
	}

	.slide_tabClick {
		padding: 0;
	}

		.slide_tabClick p, .slide_tabClick span {
			display: none;
		}

		.slide_tabClick img {
			position: static;
			display: block;
			margin: 0 auto 0;
			max-width: 100%;
			width: 100%;
			border-radius: 5px;
		}

	.slide_testiImg_bx {
		width: 100%;
	}

		.slide_testiImg_bx img {
			height: 290px;
			object-fit: cover;
		}

	.slide_testCont {
		width: 100%;
		padding: 0;
		margin-top: 20px;
	}

	.slide_inner {
		max-width: 325px;
	}

	.slider_degig:after {
		display: none;
	}

	.slider_degig:before {
		left: 0;
	}

	.slide_test_head {
		font-size: 26px;
		line-height: 30px;
	}

	.slider_degig {
		font-size: 14px;
		line-height: 14px;
		padding-bottom: 18px;
	}

	.test_text {
		margin-top: 15px;
	}

	.slide_testCont .btn-box {
		margin-top: 25px;
	}

	.section_7 {
		padding: 25px 0 170px;
	}

	.s7_content .btn-box {
		margin-top: 25px;
	}

	.s7_right {
		margin-top: 34px;
		padding: 0 15px;
	}

	ul.s7_list {
		column-gap: normal;
		row-gap: 20px;
	}

		ul.s7_list li {
			width: 100%;
		}

			ul.s7_list li h3 {
				font-size: 22px;
				line-height: 26px;
			}

	#s7_wave_top {
		top: -7px;
	}

	#s7_wave_btm {
		bottom: -7px;
	}

	.banner-block {
		padding: 20px 25px;
	}

	.banner-block__title {
		font-size: 28px;
	}

	.banner-block__badge {
		font-size: 14px;
	}

	.banner-block__sub-title {
		margin-bottom: 40px;
	}

	.banner-block__list-col {
		width: 100%;
	}

	.section_8 {
		padding: 35px 0;
	}

	.review_sec {
		margin-top: 20px;
	}

	.compare_block {
		margin: 30px 0 15px;
	}

	.compare_points li p {
		font-size: 15px;
		line-height: 17px;
	}

	.compare_points li img {
		width: 20px;
	}

	.s8_dogbox_mob {
		margin: 30px auto 0;
		display: -webkit-flex;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}

	.s8_comp_dog1_m {
		width: 155px;
	}

	.s8_comp_dog2_m {
		width: 155px;
	}

	.section_9 {
		padding: 25px 0 35px;
	}

	.review_sec-row {
		padding: 0.7rem;
		gap: 1.5rem;
	}

	.review_col-outer {
		gap: 1.5rem;
	}

	.review_col-box {
		max-width: 320px;
	}

	.section_10 {
		padding: 25px 0 35px;
	}

	.s10_content {
		width: 100%;
		text-align: center;
	}

	.s10_right {
		width: 100%;
		margin: 20px 0 10px;
	}

	.accordion {
		padding: 12px 33px 12px 15px;
		font-size: 17px;
		line-height: 25px;
	}

	.acdn-content {
		padding: 15px 15px 5px 15px;
	}

	.acdn-para {
		font-size: 16px;
		line-height: 25px;
		margin-bottom: 15px;
	}

	.footer {
		padding: 25px 0;
	}

	.ftr_logo {
		width: 90px;
		margin: 0 auto 10px;
	}

	.ftr-txt {
		font-size: 15px;
		line-height: 17px;
		margin-top: 8px;
	}
}
