:root{
	--primary-color: #0361CC;
	--secondery-color: #01A8F1;
	--white-color: #ffffff;
	--title-color: #0C3984;
	--text-color: #67768C;
	--section-bg: rgba(3, 97, 204, .05);
	
	--title-font: 'MinSans', sans-serif;
	--body-font: 'Mint Grotesk', sans-serif;
}
body{
	-webkit-font-smoothing: antialiased; /* Chrome, Safari */
	-moz-osx-font-smoothing: grayscale; /* Firefox */
	margin: 0;
	padding: 0;
	line-height: 1.6;
}
.btn {
	font-size: 18px;
	font-weight: 700 !important;
	font-family: 'Mint Grotesk', sans-serif !important;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--primary-color);
	color: var(--white-color);
	padding: 11px 13px 11px 27px;;
	border-radius: 30px;
	gap: 24px;
}
.btn:hover {
	background-color: var(--secondery-color);
	color: var(--white-color);
}
.btn:hover svg {
	color: var(--secondery-color);
}
.btn span {
	height: 37px;
	width: 37px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--white-color);
	border-radius: 100px;
	transition: .4s;
}
.btn:hover span {
	margin-left: 10px;
}
h1, h2, h3, h4, h5, h6 {
	padding: 0 !important;
	margin: 0 !important;
}
h1 {
	font-size: 92px !important;
}
h3 {
	font-size: 26px !important;
	font-family: 'Mint Grotesk', sans-serif !important;
}
p{
	margin: 0;
}
p:not(:last-child){
	margin-bottom: 20px;
}
img{
	max-width: 100%;
	height: auto;
}
ul{
	margin: 0;
	padding: 0;
}
a{
	text-decoration: none !important;
	transition: .4s;
}
a:focus{
	outline: none;
}
.bg {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.position-relative {
	position: relative;
}
.p-100{
	padding: 100px 0;
}
.pt-100{
	padding-top: 100px;
}
.pb-100{
	padding-bottom: 100px;
}
.container{
	transition: .4s;
	max-width: 1178px;
	padding: 0 24px;
	margin-left: auto;
	margin-right: auto;
}
.section-bg{
	background-color: var(--section-bg);
}
.section-title h2 {
	margin-bottom: 24px !important;
}
.d-none {
	display: none;
}

/* banner */
.banner-area {
	padding-top: 140px;
	padding-bottom: 230px;
	overflow: hidden;
}
.banner-content {
	color: var(--white-color);
}
.banner-content h1 {
	color: var(--white-color);
	margin-bottom: 16px !important;
}
.banner-btn a {
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 550px;
	border-bottom: 1px solid var(--white-color);
	padding: 30px 0;
	font-size: 19px;
	font-weight: 400;
}
.banner-btn a:hover {
	color: var(--secondery-color);
}
.banner-btn a:hover svg {
	fill: var(--secondery-color);
}
.banner-area::before {
	content: "";
	position: absolute;
	background: linear-gradient(270deg,rgba(0, 0, 0, 0) 10%, rgb(3, 97, 204) 100%);
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
.banner-area::after {
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	background-image: url(../images/hero.svg);
	height: 420px;
	width: 280px;
	bottom: -10px;
	right: 120px;
	background-size: contain;
	background-position: bottom;
}
.banner-content p {
	font-size: 19px;
}
.banner-btn {
	margin-top: 30px;
}
.banner-btn a:hover svg {
	fill: var(--secondery-color) !important;
	stroke: var(--secondery-color) !important;
}
.banner-content {
	max-width: 600px;
	z-index: 2;
}
.banner-mb-image {
	display: none;
}
.footer-wrapper {
	overflow: hidden;
}
/* our location */
.location-cover {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.location-list {
  width: calc(33.33% - 20px);
}
.location-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 30px;
}
.location-list {
  border-bottom: 1px solid rgba(0, 0, 0, .4);
}
.location-content {
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 24px;
  margin-bottom: 60px;
}
.location-list-content.f-20 {
	padding: 15px 0;
}
.location-btn {
	margin-top: 60px;
}
.btn svg {
	color: var(--primary-color);
}
.location-list span, .banner-btn span {
	transition: .4s;
}
.location-list a:hover span, .banner-btn a:hover span {
	padding-right: 10px;
}
.location-list a:hover h3 {
	color: var(--primary-color);
}
.location-content p {
	max-width: 800px;
}
/* case-study */
.case-study-cover {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.case-study-list-content {
  width: calc(50% - 20px);
}
.case-study-img {
	width: calc(50% - 20px);
	border-radius: 20px;
	overflow: hidden;
}
.case-study-list:nth-child(2n) {
	background-color: var(--white-color);
}
.case-study-list:nth-child(2n) .case-study-cover {
	flex-direction: row-reverse;
}
.case-study-btn {
	margin-top: 30px;
}
/* service */
.service-list-title h3 {
	font-size: 24px !important;
	flex: 1;
	color: var(--white-color);
	font-weight: 700;
}
.service-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--white-color);
	padding: 0;
	border-top: 1px solid rgba(255, 255, 255, .25);
	padding-top: 30px;
	margin-top: 20px;
	margin-bottom: 10px;
}
.service-icon img {
  height: 50px;
  width: 50px;
  object-fit: cover;
}
.service-cover {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--white-color);
	row-gap: 28px;
}
.service-list {
  width: calc(33.33% - 14px);
  background-color: var(--primary-color);
  border-radius: 16px;
  padding: 12px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-list-title {
	display: flex;
	align-items: center;
	gap: 16px;
	border-bottom: 1px solid;
	padding-bottom: 30px;
	margin-bottom: 20px;
	margin-top: 10px;
}
.service-content {
	border-bottom: 1px solid var(--title-color);
	margin-bottom: 65px;
	padding-bottom: 30px;
}
/* cta */
.cta-wrapp {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
	align-items: center;
}
.cta-img {
	padding: 30px 6px;
	background-color: var(--primary-color);
	border-radius: 4px;
	width: 33%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cta-img img {
	border-radius: 16px;
	aspect-ratio: 1/1.2;
	object-fit: cover;
	width: 100%;
}
.cta-content {
  padding: 40px;
	flex: 1;
}
.cta-name {
	font-size: 22px;
	font-weight: 700;
	color: var(--title-color);
	margin-top: 36px;
}
.cta-text {
	font-family: var(--title-font);
	font-size: 34px;
	color: var(--title-color);
	line-height: 1.5;
}
/* contact */
.contact-area {
  background-color: var(--primary-color);
}
.contact-wrapp {
  display: flex;
}
.contact-text {
	width: 50%;
	padding-right: 150px;
}
.contact-shortcode {
  width: 50%;
}
.gform_button {
	background-color: var(--white-color) !important;
	color: var(--title-color) !important;
	opacity: 1 !important;
}
.gform_button:hover {
	color: var(--white-color) !important;
	background-color: var(--title-color) !important;
}
.contact-text a {
	color: #ECF8FE;
}
.contact-text h2 {
	font-family: var(--body-font);
	font-size: 35px !important;
}
.case-study-img {
	mask-image: url(../images/about.svg);
	mask-repeat: no-repeat;
	mask-size: contain;
	
}
.service-list {
	mask-image: url(../images/services_shape.svg);
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
	mask-position: center;
}
.cta-img-cover {
	mask-image: url(../images/telehealth.svg);
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
}
/* blog */
.alignwide {
	max-width: 1178px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 24px !important;
	padding-right: 24px !important;
	width: 100% !important;
}
.site-header-wrapper.alignwide {
	max-width: 1500px !important;
}
.insights-recent-block.alignfull {
	display: none;
}
.blog-post-cover {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}
.blog-inner {
	width: calc(33.33% - 20px);
	padding: 0;
}
.blog-thumb img {
  width: 100%;
  aspect-ratio: 1/.6;
  object-fit: cover;
}
.blog-text h3 {
  font-size: 20px !important;
  color: var(--title-color);
  font-weight: 600;
}
.blog-text {
  padding: 16px 24px;
}
.blog-date {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--title-font);
  margin-bottom: 12px;
	color: var(--text-color);
}
.blog-btn {
	margin-top: 50px;
}
.blog-title {
	padding-bottom: 30px;
	border-bottom: 1px solid var(--primary-color);
	margin-bottom: 60px;
}
.blog-inner:hover {
	border-color: #fff !important;
}
.blog-inner:hover .blog-date {
	color: var(--text-color) !important;
}
#h-get-in-touch {
	margin-bottom: 20px !important;
}
#h-contact-us, #h-17-convenient-locations {
	margin-bottom: 30px !important;
}

/* 4-9-25 */
.landing-header .site-header-wrapper {
	max-width: 1500px !important;
}




/* responsive */
@media all and (max-width: 1399.98px){
	h1 {
	font-size: 80px !important;
}
	.banner-content p {
	font-size: 17px;
}
	.banner-btn a {
	max-width: 500px;
	font-size: 18px;
}
	.banner-area {
	padding-top: 120px;
	padding-bottom: 160px;
}
	
	
}

@media all and (max-width: 1199.98px){
/* 	h2 {
	font-size: 42px !important;
} */
	.banner-area::after {
	right: 80px;
}
	h1 {
	font-size: 70px !important;
}
	.banner-btn a {
	padding: 24px 0;
}
	.banner-area {
	padding-top: 100px;
	padding-bottom: 120px;
}
	.service-list-title h3 {
	font-size: 20px !important;
}
	.cta-text {
	font-size: 30px;
}
	.contact-text {
	padding-right: 60px;
}
	
	
}

@media all and (max-width: 1069.98px){
	.wp-block-image.size-full {
		justify-content: center;
		display: flex;
	}
	
}

@media all and (max-width: 991.98px){
	h1 {
	font-size: 48px !important;
}
/* 	h2 {
	font-size: 36px !important;
} */
	h3 {
	font-size: 24px !important;
}
	.p-100{
	padding: 80px 0;
}
.pt-100{
	padding-top: 80px;
}
.pb-100{
	padding-bottom: 80px;
}
	.banner-content p {
	font-size: 15px;
}
	.banner-btn a {
	max-width: 400px;
	font-size: 16px;
}
	.banner-area::after {
	right: 20px;
	height: 300px;
}
	.banner-btn {
	margin-top: 10px;
}
	.banner-area {
	padding-top: 80px;
	padding-bottom: 100px;
}
/* 	.f-20 p {
	font-size: 16px;
}
.f-18 p {
	font-size: 16px;
} */
	.location-list {
	width: calc(50% - 15px);
}
	.case-study-list-content {
	width: calc(50% - 12px);
}
	.case-study-img {
	width: calc(50% - 12px);
	border-radius: 16px;
}
	.service-list {
	width: calc(50% - 14px);
}
	.cta-text {
		font-size: 24px;
	}
	.cta-img {
		padding: 24px 6px;
	}
	.cta-content {
		padding: 32px;
	}
	.cta-name {
	margin-top: 24px;
}
	.contact-text {
	padding-right: 20px;
}
	.blog-inner {
	width: calc(50% - 15px);
}
	.footer-wrapper .footer-contact {
	padding-bottom: 80px !important;
	padding-top: 80px !important;
}
	
}

@media all and (max-width: 767.98px){
	h1 {
		font-size: 36px !important;
	}
/* 	h2 {
		font-size: 32px !important;
	} */
	.p-100{
	padding: 60px 0;
}
.pt-100{
	padding-top: 60px;
}
.pb-100{
	padding-bottom: 60px;
}
	.banner-content {
	text-align: center;
}
	.banner-area::after {
	right: 0;
	height: 200px;
}
	.banner-area {
	padding-top: 60px;
	padding-bottom: 200px;
}
	.location-list {
	width: 100%;
}
	.case-study-cover {
	flex-direction: column !important;
}
	.case-study-img {
	width: 100%;
}
	.case-study-list-content {
	width: 100%;
	margin-top: 30px;
}
	.service-list {
	width: 100%;
}
	.service-content {
	margin-bottom: 36px;
}
	.cta-wrapp {
	flex-direction: column;
}
	.cta-img {
	width: 100%;
}
	.cta-content {
	padding: 32px 20px;
	text-align: center;
}
	.cta-text {
	font-size: 20px;
}
	.location-list a {
	padding-bottom: 24px;
}
	.location-cover {
	gap: 24px;
}
	.contact-wrapp {
	flex-direction: column;
}
	.contact-text {
	width: 100%;
	padding-right: 0;
	margin-bottom: 20px;
}
	.contact-shortcode {
	width: 100%;
}
	.blog-inner {
	width: calc(100%);
}
	.footer-wrapper .alignwide {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
	.wp-block-image.size-full {
		justify-content: start;
		display: flex;
	}
	.service-cover {
	row-gap: 16px;
}
	.service-list a {
	padding-top: 20px;
}
	.blog-title {
	margin-bottom: 40px;
}
	.footer-wrapper .footer-contact, .footer-wrapper .footer-bottom {
	padding-bottom: 60px !important;
	padding-top: 60px !important;
}
	

	
}



