.hp-cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.hp-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 0;
	min-height: 55px;
	border-radius: 12px;
	text-transform: uppercase;
	font-size: 18px !important;
	line-height: 1;
	text-decoration: none;
	padding: 0 15px;
	width: 265px;
}

.hp-cta__icon {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
}


.hp-cta__icon svg {
	width: 19px;
	height: 19px;
	fill: #fff;
}

/* START OF WELCOME */


.hp--welcome {
	position: relative;
	padding: 200px 0 0;
}

.welcome__flex {
	position: absolute;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 1;
}

.welcome__flex .ry-img {
	max-width: 25rem;
}

.welcome__text {
	width: 50%;
	z-index: 9;
	margin: 0 auto;
}

.welcome__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.welcome__text p {
	width: min(828px, 100%);
	max-width: 100%;
	font-size: 20px;
	line-height: 35px;
	color: #212121;
	text-align: center;
	margin: 0 auto;
	margin-top: 30px;
}

.welcome__text .section__cta div {
	display: flex;
}

.hp--welcome .section__cta div {
	display: flex;
	align-items: center;
	justify-content: center;
}


.vs-section .section__cta .ry-btn.ry-btn-primary {
	text-transform: uppercase;
	width: 265px;
	height: 67px;
	font-weight: 500;
}


.welcome__flex .ry-img.first {
	left: -1rem;
}

.welcome__flex .ry-img.second {
	right: -1rem;
}

@media (max-width: 1366px) {   
	.hp--welcome {
		padding: 80px 0;
	}

	.hp--welcome .welcome__flex .ry-img {
		max-width: 20rem;
	}

	.hp--welcome .welcome__flex .ry-img.first {
		left: -5rem;
	}

	.hp--welcome .welcome__flex .ry-img.second {
		right: -5rem;
	}

}
@media (max-width: 1280px) {
	.welcome__flex .ry-img.second {
		right: -4rem;
	}
}

@media (max-width: 1080px) {
	.hp--welcome {
		padding: 80px 0;
	}

	.hp--welcome .section__header h2 {
		text-wrap: balance;
	}
}

@media (max-width: 768px) { 
	.hp--welcome .welcome__flex {
		position: relative;
		padding: 5% 0;
	}
	.hp--welcome .welcome__text {
		width: 90%;
	}

	.hp--welcome .welcome__flex .ry-img.first {
		left: 0;
	}

	.hp--welcome .welcome__flex .ry-img.second {
		right: 0;
	}
}


/* END OF WELCOME */


.vs-fservices__container {
	width: min(1720px, 90%);
	max-width: 100%;
	margin:0 auto;
	float: unset;
}
.vs-fservices__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
	align-items: stretch;
}

.vs-fservices__intro,
.vs-fservices__item {
	aspect-ratio: 1 / 1;
	min-height: 0;
}

.vs-fservices__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.vs-fservices {
	padding: 300px 0 200px;
}


.vs-fservices__intro .section-header * {
	text-align: center !important;
	margin: 0;
}

.vs-fservices__intro .section-header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
	padding-bottom: 30px;
}


.vs-fservices__intro h2 {
	font-size: 60px;
	text-transform: uppercase;
	color: #212121;
}

.vs-fservices__intro .section__cta {
	padding: 0;
}


.vs-fservices__item {
	position: relative;
	overflow: hidden;
	border-radius: 40px;
	background: #ddd;
	text-decoration: none;
}

.vs-fservices__item img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.vs-fservices__item h3 {
	position: absolute;
	top: 3rem;
	left: 0;
	font-size: 36px;
	line-height: 36px;
	text-transform: uppercase;
	color: #282828;
	text-align: center;
	font-weight: 900 !important;
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	transition: 300ms ease-in-out;
}

.vs-fservices__item {
	cursor: pointer;
}
.vs-fservices__item:hover h3 {
	top: 50%;
	transform: translateY(-50%);
	transition: 300ms ease-in-out;
	color: #fff;
}

.vs-fservices__item:before {
	content: " ";
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgb(0 0 0 / 41%) 60%);
	opacity: 0;
	transition: 300ms ease-in-out;
}

.vs-fservices__item:hover:before {
	opacity: 1;
	transition: 300ms ease-in-out;
}

@media (max-width: 1200px) {
	.vs-fservices__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vs-fservices__intro {
		align-items: center;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.vs-fservices__grid {
		grid-template-columns: 1fr 1fr;
		align-items: center;
		justify-content: center;
		gap: 15px;
	}
}

@media (max-width: 575px) {
	.vs-fservices {
		padding: 0 5% 80px !important;
	}

	.vs-fservices__grid {
	}

	.vs-fservices__intro,
	.vs-fservices__item {
		aspect-ratio: 1 / 1;
	}

	.vs-fservices__title {
		font-size: 32px;
	}

	.vs-fservices__eyebrow {
		font-size: 14px;
	}

	.vs-fservices__btn {
		min-height: 42px;
		padding: 0 18px;
		font-size: 12px;
	}

	.vs-fservices__item {
		border-radius: 18px;
	}

	.vs-fservices__item h3 {
		top: 30px;
	}
}


.hp-dry-eye {
	padding: 145px 0 190px;
}

.hp-dry-eye .section-header h2 {
	color: #fff !important;
}

.vs-dry-eye__container {
	width: min(1280px, 90%);
	max-width: 100%;
	margin: 0 auto;
	float: unset;
}

.vs-dry-eye__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	justify-content: center;
}

.vs-dry-eye__content .section-img img {
	max-width: max-content;
}


.vs-dry-eye__content .section-text p {
	width: min(436px, 100%);
	font-size: 20px;
	line-height: 35px;
	color: #ffffff;
	max-width: 100%;
}

.vs-dry-eye__content .section__cta div {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.hp-dry-eye .section__cta .ry-btn.ry-btn-primary {
	background: #9d9d9d;
}

.hp-dry-eye .section__cta .ry-btn.ry-btn-primary:hover {
	box-shadow: 5px 5px #fff;
	border: 1px solid #fff;
	color: #fff !important;
}


.vs-dry-eye__content {
	position: relative;
}

.vs-dry-eye__content-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -44%);
}

.vs-dry-eye__content-bg img {
	object-fit: cover;
	border-radius: 40px;
}

.vs-dry-eye__grid .section-img {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.vs-dry-eye__grid .section-text {padding-left: 6rem;}

.vs-team {
	text-align: center;
	overflow: hidden;
	padding: 100PX 0;
}

.vs-team .section-header *, .vs-team .section-header span {
	text-align: center !important;
	display: block;
}

.vs-team__container {
	width: min(1600px, 90%);
	margin: 0 auto;
	float: unset;
}

.vs-team__header {
	margin-bottom: 45px;
}

.vs-team__header span {
	display: block;
	color: #222;
	font-size: 18px;
	text-transform: uppercase;
}

.vs-team__header h2 {
	margin: 6px 0 0;
	color: #222;
	font-size: 42px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.vs-team__slider {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
	padding: 30px 0;
}

.vs-team__card {
	position: relative;
	overflow: hidden;
	display: block;
	aspect-ratio: 1 / 1;
	border-radius: 22px;
	background: #222;
	text-decoration: none;
}

.vs-team__card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.75),
		rgba(0, 0, 0, 0.05) 60%
	);
	z-index: 1;
}

.vs-team__card img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.vs-team__card:hover img {
	transform: scale(1.06);
}

.vs-team__info {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 16px;
	z-index: 2;
	text-align: left;
}

.vs-team__info h3 {
	margin: 0;
	font-weight: 800 !important;
	font-size: 22px;
	line-height: 24px;
	text-transform: uppercase;
	color: #ffffff;
}

.vs-team__btn-wrap {
	margin-top: 45px;
}

.vs-team__btn {
	min-height: 48px;
	padding: 0 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #222;
	color: #fff;
	border-radius: 6px;
	font-size: 13px;
	text-transform: uppercase;
	text-decoration: none;
}

.vs-team__btn:hover {
	background: #2097d8;
}


@media (max-width: 1366px) {
	.vs-team__slider {
		display: block;
	}

	.vs-team__card {
		margin: 0 10px;
	}

	.vs-team .slick-arrow {
		width: 42px;
		height: 42px;
		z-index: 5;
		border-radius: 50%;
		background: #222;
	}

	.vs-team .slick-prev {
		left: -8px;
	}

	.vs-team .slick-next {
		right: -8px;
	}

	.vs-team .slick-prev::before,
	.vs-team .slick-next::before {
		color: #fff;
		opacity: 1;
	}
}

@media (max-width: 575px) {
	.vs-team {
		padding: 65px 16px;
	}

	.vs-team__header h2 {
		font-size: 32px;
	}

	.vs-team__card {
		margin: 0 8px;
	}
}


.vs-testimonials {
	padding: 80px 0;
	overflow: hidden;
	z-index: 2;
}

.vs-testimonials__container {
	width: min(1537px, 98%);
	margin: 0 auto;
	max-width: 100%;
	float: unset;
}

.vs-testimonials__header {
	margin-bottom: 65px;
	text-align: center;
	position: relative;
}

.vs-testimonials__header::before {
	content: url("https://s3.amazonaws.com/static.organiclead.com/Site-bc4734f5-295c-4a5d-93ed-2176c8954f41/site_assets/qoute.png");
	position: absolute;
	top: -60px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 170px;
	font-weight: 800;
	line-height: 1;
}


.vs-testimonials__header h2 {
	margin: 0;
	text-transform: uppercase;
}

.vs-testimonials__card-wrapper {
	display: flex;
	align-items: center;
	gap: 100px;
	float: unset;
	background: #fff;
	width: 98%;
	padding: 80px 100px;
	margin: 1rem 0;
	border-radius: 54px;
}

.vs-testimonials__col {
	flex: 1 1 0;
	min-width: 0;
}

.vs-testimonials__divider {
	position: relative;
	width: 50px;
	height: 449px;
	background-image: url(https://s3.amazonaws.com/static.organiclead.com/Site-df6f8a80-211f-4bcd-b2d4-3eb54e11f05a/LandingTemplate/footer_shadow.png);
	background-size: contain;
	top: 0;
	background-size: cover;
	background-position: center;
	right: -15px;
}

.vs-testimonials__item {
	padding: 0 10px;
	outline: none;
}

.vs-testimonials__stars svg {
	color: #e5b253;
	width: 34px;
	height: 34px;
	letter-spacing: 3px;
}

.vs-testimonials__item p {
	font-size: 18px;
	letter-spacing: 0px;
	line-height: 28px;
	color: #333333;
	font-weight: 500 !important;
}

.vs-testimonials__author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 80px;
}

.vs-testimonials__google {
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #4285f4;
	font-size: 22px;
	font-weight: 800;
}

.vs-testimonials__author strong {
	font-size: 19px;
	line-height: 35px;
	text-transform: uppercase;
	color: #282828;
}

.vs-testimonials .slick-dots {
	bottom: 0;
	display: flex !important;
	height: 2rem;
	justify-content: flex-end;
	align-items: center;
}

.vs-testimonials .slick-dots li {
	width: 9px;
	height: 9px;
	px; */
}

.vs-testimonials .slick-dots li button {
    padding: 0;
}

.vs-testimonials .slick-dots li button::before {
	width: 11px;
	height: 11px;
	color: #999;
	font-size: 9px;
	opacity: 1;
}

.vs-testimonials .slick-dots li.slick-active button::before {
	color: #000;
}

.vs-testimonials .slick-arrow {
	display: none !important;
}

.vs-testimonials__card:before {
   position: absolute;
   content: " ";
   width: 100%;
   height: 100%;
   background: transparent;
   border: 1px solid #fff;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   border-radius: 64px;
}

.vs-testimonials__card {
    position: relative;
    width: 100%;
    margin: 0 auto;
    float: unset;
    max-width: 100%;
    float: unset;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-testimonials__stars {
    display: flex;
    margin-bottom: 30px;
    gap: 5px;
}


@media (max-width: 991px) {
	.vs-testimonials__card {
		flex-direction: column;
		gap: 45px;
		border-radius: 40px;
	}

	.vs-testimonials__divider {
		width: 100%;
		height: 1px;
		background: #ebebeb;
	}

	.vs-testimonials__header h2 {
		font-size: 38px;
	}
}

@media (max-width: 575px) {
	.vs-testimonials {
		padding: 60px 16px;
	}

	.vs-testimonials__header {
		margin-bottom: 45px;
	}

	.vs-testimonials__header span {
		font-size: 16px;
	}

	.vs-testimonials__header h2 {
		font-size: 32px;
	}

	.vs-testimonials__card {
		padding: 1rem;
		border-radius: 28px;
	}

	.vs-testimonials__stars {
		font-size: 22px;
	}

	.vs-testimonials__item p {
		font-size: 15px;
		margin-bottom: 45px;
	}
}

.hp-map {
    margin-top: -10rem;
    z-index: 1;
}



.vs-services__grid {
  padding: 40px 0;

}



.vs-services__grid-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.vs-services__grid-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  border-radius: 12px;
}

.vs-services__grid-card img {
  width: 100%;
  height: 255px;
  display: block;
  object-fit: cover;
}

.vs-services__grid-content {
  padding: 24px 28px;
}

.vs-services__grid-content h3 {
  margin: 0 0 7px !important;
  color: #0067a8;
  font-size: 20px !important;
  font-weight: 700 !important;
}

.vs-services__grid-content p {
  margin: 0;
  color: #111;
  font-size: 19px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .vs-services__grid-list {
    grid-template-columns: 1fr;
  }

  .vs-services__grid-card img {
    height: 220px;
  }

  .vs-services__grid-content {
    padding: 22px;
  }
}




@media (max-width: 1336px) {
    .vs-dry-eye__content .section-img img {
        max-width: 31.5rem;
    }

    .vs-fservices__item h3 {
        font-size: 28px !important;
    }

    .vs-dry-eye__content .section-img img {
        max-width: 30.3rem;
    }

    .vs-fservices__intro h2, .section-header h2 {
        font-size: 46px !important;
        line-height: normal;
    }
    
    .vs-fservices__item h3 {
        font-size: 28px !important;
        line-height: 1.2;
    }
}

@media (max-width: 1280px) {
    .vs-fservices {
        padding: 100px 0 150px;
    }

    .vs-dry-eye__content .section-img img {
        max-width: 30rem;
    }

    
    .vs-testimonials__card-wrapper {
        padding: 80px 50px;
        gap: 50px;
    }
}

@media (max-width: 1200px) {
    
    .vs-dry-eye__content .section-img img {
        max-width: 28.5rem;
    }
}



@media (max-width: 1080px) {
    .hp-map img {
        height: 100vh;
        object-fit: cover;
    }

    .vs-dry-eye__grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }
    
    .hp-dry-eye {
        padding: 100px 0 0;
    }

    .vs-dry-eye__grid .section-text {
        padding: 0;
    }
        
    .vs-dry-eye__grid .section-img {
        justify-content: center;
    }
    
    .vs-dry-eye__content .section-text p {
        width: 100%;
    }
    
    .hp-dry-eye .section__cta .ry-btn.ry-btn-primary {
        margin: 0 auto;
    }
    
    .vs-dry-eye__content .section-text p {
        text-align: center;
    }
    
    .vs-dry-eye__content-bg {
        transform: translate(-50%, 50%);
    }
    
    .hp-dry-eye.vs-section .bg-section, .hp-dry-eye.vs-section .bg-section img {
        object-position: 50%;
    }
}


@media (max-width: 768px) {
    .vs-testimonials__card-wrapper {
        flex-direction: column;
        margin: 0;
    }
    
    .vs-testimonials__col {
        flex: unset;
    }
    
    .vs-testimonials__stars {
        justify-content: center;
    }
    
    .vs-testimonials .slick-dots {
        align-items: center;
        justify-content: center;
        bottom: -35px;
    }
    
    .vs-testimonials__author {
        justify-content: center;
        margin-top: 50px;
    }
    
    .vs-testimonials__item p {
        text-align: center;
    }
}
@media (max-width: 680px) {
    .vs-dry-eye__content-bg {
        translate: unset;
        top: 0;
    }
    
    .vs-dry-eye__content-bg img {
        height: 100vh;
    }

    .vs-testimonials__card:before {
    border-radius: 72px;
}
}


@media (max-width: 679px) {
    .vs-fservices__grid {
        grid-template-columns: 1fr;
    }
}

