:root{
	--base:#181B20;
	--text:#475569;
	--primary:#0891AF;
	--primary-hover:#209CB7;
	--secondary:#E11D48;
	--secondary-hover:#F43F5E;
	--green:#059669;
	--mid:#64748b;
	--gray:#94A3B8;
	--light-gray:#E2E8F0CC;
	--light-primary:#0891AF1A;
	--light:#F8FAFC;
	--white:#FFFFFF;

	--font-title:"Source Serif 4", sans-serif;
	--font-base:"Source Serif 4", sans-serif;
  /*--font-base:"Noto Sans", sans-serif;*/
}

/*--- BASE ---*/

* {
  font-family: var(--font-base);
}
html {
	font-family: var(--font-base);
  font-family: sans-serif;
  line-height: 1.5;
}
body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  padding-top: 0;
}
p {
	line-height: 180%;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-title);
}
.font-title {
  font-family: var(--font-title);
}
.btn {
	margin: 0;
  height: 64px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
  font-family: var(--font-title);
  text-transform: unset;
  font-weight: 500;
}
.btn.btn-sm {
	height: 44px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 400;
}
.btn.btn-rounded {
	border-radius: 50px;
}
.btn.btn-primary {
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(8, 145, 175, 0.2) 0px 10px 15px -3px, rgba(8, 145, 175, 0.2) 0px 4px 6px -4px;
}
.btn.btn-primary:hover {
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(8, 145, 175, 0.3) 0px 10px 15px -3px, rgba(8, 145, 175, 0.3) 0px 4px 6px -4px;
}
.btn.btn-white {}
.btn.btn-white:hover {background: #ffffffe6;}
.btn.btn-bordered {
	border: 2px solid #0891af66;
}
.btn.btn-bordered:hover {
	background: #0891af0d;
	color: var(--primary);
}
.btn.disable {
	opacity: .5;
  cursor: default;
  pointer-events: none;
}
.container-big {
	max-width: 1500px;
}
.container-sm {
	max-width: 960px;
}
section {
  padding: 96px 0;
}
.bg-primary {
	background: var(--primary);
	color: #fffc;
}
.border-top {
	border-top: 1px solid #e3e7ed!important;
}
.border-bottom {
	border-bottom: 1px solid #e3e7ed!important;
}
.overflow-hidden {
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	section {padding: 64px 0;}
}
@media screen and (max-width: 450px) {
	.btn {padding: 0 24px;font-size: 16px;width: 100%;}
}

/*--- END BASE ---*/


/*--- SLIDER ---*/

.section-title-slider {
	display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.section-title-slider .section-title__title {
	width: fit-content;
  white-space: nowrap;
  padding: 0 0 8px 0;
}
.section-title-slider span {
	width: 100%;
  height: 1px;
  background: var(--light-primary);
}
.section-title-arrows {
	display: flex;
  gap: 16px;
}
.section-title-arrows .btn-slider {
	display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  border: 1px solid var(--light-primary);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  transition: .3s ease;
}
.section-title-arrows .btn-slider:hover {
	border-color: var(--primary);
}
.section-title-arrows .btn-slider img {
	width: 18px;
  height: 18px;
}
.section-title-arrows .btn-slider.btn-slider-prev img {
	margin: 0 2px 0 0;
}
.section-title-arrows .btn-slider.btn-slider-next img {
	margin: 0 0 0 2px;
}
.progress-bar {
	margin: 48px 0 0 0;
  width: 100%;
  display: grid;
  grid-template-columns: 15px 1fr 15px;
  gap: 24px;
  align-items: center;
}
.progress-bar-number {
	width: 100%;
  font-size: 12px;
  line-height: 100%;
  font-weight: 600;
  color: var(--gray);
  display: block;
  position: relative;
}
.progress-bar-line {
	width: 100%;
  height: 4px;
  position: relative;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
}
.progress-bar-line_gray {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: #f1f5f9;
}
.progress-bar-line_primary {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0%;
	height: 100%;
	background: var(--primary);
	transition: .5s ease-in-out;
	border-radius: 4px;
}

@media screen and (max-width: 450px) {
	.section-title-slider span {display: none;}
	.section-title-arrows {gap: 8px;}
	.section-title-arrows .btn-slider {width: 36px;height: 36px;}
}


/*--- END SLIDER ---*/


/*--- HEADER-V2 ---*/

.header-v2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: fit-content;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid transparent;
  overflow: hidden;
  z-index: 9999;
  transition: .3s ease;
}
.header-v2-main {}
.header-v2-main__inner {
  position: relative;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  transition: .3s ease;
}
.header-v2-main__left {}
.header-v2-main__logo-wrap {
	display: block;
  position: relative;
  text-transform: unset;
}
.header-v2-main__logo {
	width: 190px;
  height: auto;
  transition: .3s ease;
  filter: brightness(10);
}
.header-v2-main__center {}
.menu-v2__wrap {
  width: auto;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
}
.menu-v2__item {}
.menu-v2__link {
  color: var(--white);
  font-size: 17px;
  font-weight: 400;
  font-family: var(--font-title);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
.menu-v2__link:hover,
.menu-v2__link.active {
	color: var(--primary);
	text-decoration: none;
}
.menu-v2__link::before {
	content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: .3s ease;
}
.menu-v2__link:hover::before,
.menu-v2__link.active::before {
	width: 100%;
}
.header-v2-main__right {
	display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
.header-v2-main__right-contacts {
	display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}
.header-v2-main__right-phone {
	text-decoration: none;
  line-height: 100%;
  display: block;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 18px;
}
.header-v2-main__right-phone:hover {
	color: var(--primary);
	text-decoration: none;
}
.header-v2-main__right-cities {
	display: flex;
  gap: 4px;
  color: var(--light-gray);
  line-height: 100%;
  opacity: .75;
  transition: .3s ease;
}
.header-v2-main__right-cities:hover {
	opacity: 1;
}
.header-v2-main__right-city {
	line-height: 100%;
  color: var(--light-gray);
  font-family: var(--font-title);
  font-size: 14px;
  text-decoration: none;
}
.header-v2-main__right-city:hover {
	color: var(--primary);
	text-decoration: none;
}


.header-v2.header_fix {
	backdrop-filter: blur(24px);
  border-color: var(--light);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.header-v2.header_fix .header-v2-main__inner {
	height: 76px;
}
.header-v2.header_fix .header-v2-main__logo {
	filter: brightness(1);
}
.header-v2.header_fix .menu-v2__link {
	color: var(--base);
}
.header-v2.header_fix .menu-v2__link:hover,
.header-v2.header_fix .menu-v2__link.active {
	color: var(--primary);
	text-decoration: none;
}
.header-v2.header_fix .header-v2-main__right-phone {
	color: var(--base);
}
.header-v2.header_fix .header-v2-main__right-phone:hover {
	color: var(--primary);
}
.header-v2.header_fix .header-v2-main__right-cities {
	color: var(--base);
}
.header-v2.header_fix .header-v2-main__right-city {
	color: var(--base);
}
.header-v2.header_fix .header-v2-main__right-city:hover {
	color: var(--primary);
}

.header-v2-main__menu-btn {
	position: relative;
	width: 35px;
	height: 35px;
	margin: 0px;
}
.header-v2-main__menu-btn span {
	position: absolute;
	right: 0;
	top: 16px;
	width: 32px;
	height: 3px;
	border-radius: 10px;
	background: var(--white);
	transition: .3s;
}
.header-v2-main__menu-btn span::before {
	content: '';
	position: absolute;
	right: 0;
	top: -10px;
	width: 32px;
	height: 3px;
	border-radius: 10px;
	background: var(--white);
	transition: .3s;
}
.header-v2-main__menu-btn span::after {
	content: '';
	position: absolute;
	right: 0;
	top: 10px;
	width: 32px;
	height: 3px;
	border-radius: 10px;
	background: var(--white);
	transition: .3s;
}
.header-v2-main__menu-btn:hover {
	cursor: pointer;
}
.header-v2-main__menu-btn:hover span {
	width: 26px;
}
.header-v2-main__menu-btn:hover span,
.header-v2-main__menu-btn:hover span::before,
.header-v2-main__menu-btn:hover span::after {
	background: var(--primary)!important;
}
.header-v2-main__menu-btn.active span {
	background: #fff;
	width: 0;
}
.header-v2-main__menu-btn.active span::before {
	transform: rotate(-45deg);
	top: -3px;
	right: -4px;
	width: 32px;
}
.header-v2-main__menu-btn.active span::after {
	transform: rotate(45deg);
	top: -3px;
	right: -4px;
	width: 32px;
}
.header-v2.header_fix .header-v2-main__menu-btn span,
.header-v2.header_fix .header-v2-main__menu-btn span::before,
.header-v2.header_fix .header-v2-main__menu-btn span::after {
	background: var(--base);
}


@media screen and (min-width: 992.1px) {
	.header-v2-main__menu-btn {display: none;}
}
@media screen and (max-width: 1400px) {
	.menu-v2__wrap {gap: 15px;}
	.menu-v2__link {font-size: 15px;}
}
@media screen and (max-width: 1250px) {
	.header-v2-main__right-contacts {display: none;}
	.header-v2-main__logo {width: 170px;}
}
@media screen and (max-width: 1050px) {
	.menu-v2__link {font-size: 14px;}
}
@media screen and (max-width: 992px) {
	.header-v2-main__center {display: none;}
	.header-v2-main__right-contacts {display: flex;}
}
@media screen and (max-width: 768px) {
	.header-v2-main__right-action {display: none;}
}
@media screen and (max-width: 576px) {
	.header-v2-main__logo {width: 100px;}
	.header-v2-main__inner {gap: 15px;height: 60px;}
	.header-v2.header_fix .header-v2-main__inner {height: 60px;}
	.header-v2-main__right {gap: 15px;}
	.header-v2-main__right-contacts {gap:  6px;}
	.header-v2-main__right-cities {opacity: 1;}
	.header-v2-main__right-cities span {line-height: 100%;display: block;font-size: 12px;}
	.header-v2-main__right-city {font-size: 12px;}
}

/*--- END HEADER-V2 ---*/



/*--- MOBILE-MENU ---*/

.mobile-menu-v2 {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: -110vw;
	padding: 60px 0 50px;
	background: var(--white);
	z-index: 999;
	transition: .4s;
}
.mobile-menu-v2.active {
	left: 0;
}
.mobile-menu-v2__inner {
	padding: 15px 15px 45px 15px;
	display: flex;
  flex-direction: column;
  gap: 30px;
}
.mobile-menu-v2__menu-wrap {
	position: relative;
  padding: 0;
  margin: 15px 0;
  list-style: none;
  gap: 22px;
  display: flex;
  flex-direction: column;
}
.mobile-menu-v2__item {}
.mobile-menu-v2__link {
	position: relative;
  color: var(--base);
  text-decoration: none;
  width: 100%;
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-title);
  line-height: 100%;
}
.mobile-menu-v2__link.active,
.mobile-menu-v2__link:hover {
	color: var(--primary);
  text-decoration: none;
}
.mobile-menu-v2__contacts {}
.mobile-menu-v2__contacts-title {
	font-size: 13px;
	margin: 0 0 5px 0;
  font-family: var(--font-title);
  color: var(--gray);
}
.mobile-menu-v2__phone {
	display: flex;
  align-items: center;
  gap: 10px;
  color: var(--base);
  text-decoration: none;
}
.mobile-menu-v2__phone:hover {
	color: var(--primary);
  text-decoration: none;
}
.mobile-menu-v2__phone-icon {
	display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--light-primary);
  border-radius: 50%;
}
.mobile-menu-v2__phone-icon img {
	width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
}
.mobile-menu-v2__phone-num {
	font-size: 24px;
  font-family: var(--font-title);
  color: inherit;
  font-weight: 700;
}
.mobile-menu-v2__action .btn {
	height: 50px;
  font-size: 16px;
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 576px) {}

/*--- END MOBILE-MENU ---*/


/*--- FOOTER ---*/

.main-footer {
	border-top: 1px solid var(--light-primary);
}
.footer-top__inner {
	padding: 40px 0;
	border-bottom: 1px solid var(--light-primary);
}
.footer-bottom__inner {
	padding: 40px 0;
	border-bottom: 1px solid var(--light-primary);
}
.footer-top__image img {
	width: 190px;
	height: auto;
}
.footer-bottom__link {
	color: var(--text);
  margin: 15px 0;
  display: block;
}
.footer-bottom__links-title {
	margin: 0 0 30px 0;
}
.footer-copy__left p {
	line-height: 170%;
	color: var(--text);
}
.footer-copy__right p {
	line-height: 170%;
	color: var(--text);
}
.footer-copy__right a {
	color: var(--text);
}
.footer-copy__right a:hover {
	color: var(--primary);
}
.footer-bottom__contact-wrap {
	display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}
.footer-bottom__phone-link {
	font-size: 24px;
	width: fit-content;
	padding: 0 0 0 50px;
}
.footer-bottom__phone-link span {
	width: 40px;
  height: 40px;
  padding: 11px;
  left: 0px;
  top: -2px;
}
.footer-bottom__content p {
  font-size: 14px;
  margin: 0 0 10px 0;
  line-height: 130%;
}
.footer-top__social-item {
	background: var(--light)!important;
  border: 1px solid #f1f5f9!important;
}
.footer-top__social-item:hover {
	background: #0891af0d!important;
  border-color: #0891af4d!important;
}
.footer-top__social-item img {
	filter: unset!important;
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {
	.footer-bottom__inner {flex-wrap: wrap;}
	.footer-bottom__contact {text-align: left;}
	.footer-copy__inner {flex-direction: column;gap: 15px;}
	.footer-copy__left {width: 100%;text-align: center;}
	.footer-copy__right {width: 100%;text-align: center;}
	.footer-bottom__menu {order: -1;width: 100%;}
	.footer-bottom__contact-wrap {align-items: flex-start;margin: 50px 0 0 0;}
	.footer-bottom__links:last-child .footer-bottom__links-title {display: none;}
	.footer-bottom__links:last-child {margin-top: -15px;}
}
@media screen and (max-width: 768px) {
	.footer-top__inner {flex-direction: column;gap: 10px;}
}
@media screen and (max-width: 576px) {
	.footer-top__social-item {margin: 0;width: 48px;height: 48px;padding: 12px;}
	.footer-top__social {white-space: wrap;justify-content: center;gap: 14px;}
}

/*--- END FOOTER ---*/


/*--- BANNER-V2 ---*/

.banner-v2 {
	position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 100px;
}
.banner-v2 .back {
	position: absolute;
  z-index: 1;
  inset: 0;
}
.banner-v2 .back::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgb(2, 6, 23), rgba(2, 6, 23, 0.6), rgba(2, 6, 23, 0.2));
	z-index: 1;
}
.banner-v2 .back img {
	width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
.banner-v2 .container,
.banner-v2 .container-sm {
	position: relative;
	z-index: 1;
}
.banner-v2__content {}
.banner-v2__suptitle {
	font-size: 18px;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 6px;
  margin: 0 0 30px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner-v2__suptitle span {
	width: 48px;
  height: 2px;
  display: block;
  background: var(--primary);
}
.banner-v2__title {
	font-size: 72px;
  color: var(--white);
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 105%;
}
.banner-v2__subtitle {
	color: var(--white);
  font-size: 22px;
}
.banner-v2__action {
	display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0 0 60px 0;
}
.banner-v2__action-text {
	margin: 0;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  line-height: 170%;
  font-weight: 600;
}
.banner-v2__action-text span {
	color: var(--primary-hover);
}
.banner-v2__price-wrap {
	position: relative;
  background: #ffffff1a;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  margin: 40px 0;
  padding: 16px 24px;
  gap: 24px;
  display: flex;
  width: fit-content;
  border: 1px solid #fff3;
  align-items: center;
  color: var(--light-gray);
}
.banner-v2__old-price {
	font-size: 18px;
  color: var(--light-gray);
  text-decoration: line-through;
  font-weight: 500;
  opacity: .8;
}
.banner-v2__price {
	font-size: 30px;
  color: var(--primary);
  font-weight: 700;
}
.banner-v2__price-text {
	font-size: 16px;
  color: var(--light);
  font-weight: 500;
  text-transform: uppercase;	
}
.banner-v2__bottom {
	margin: 0;
  padding: 30px 0;
  border-top: 1px solid #ffffff1a;
}
.banner-v2__bottom-items {
	display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.banner-v2__bottom-item {
	margin: 0;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 150%;
  font-weight: 600;
  padding: 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.banner-v2__bottom-item span {
	position: relative;
	width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: block;
  border-radius: 50%;
  background: #0891af33;
}
.banner-v2__bottom-item span::after {
	content: '';
	position: absolute;
	left: 7px;
	top: 7px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--primary);
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {
	.banner-v2__suptitle {font-size: 16px;margin: 0 0 20px 0;}
	.banner-v2__title {font-size: 56px;}
	.banner-v2__subtitle {font-size: 20px;}
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 650px) {
	.banner-v2__suptitle {font-size: 15px;letter-spacing: 3px;}
	.banner-v2__title {font-size: 28px;}
	.banner-v2__title br {display: none;}
	.banner-v2__subtitle {line-height: 130%;font-size: 18px;}
	.banner-v2__price-wrap {margin: 30px 0;gap: 16px;}
	.banner-v2__old-price {font-size: 15px;}
	.banner-v2__price {font-size: 24px;}
	.banner-v2__price-text {font-size: 13px;}
	.banner-v2__action {margin: 50px 0 30px;gap: 24px;}
	.banner-v2__action-text {font-size: 14px;letter-spacing: 1px;}
	.banner-v2__bottom-items {grid-template-columns: 1fr;gap: 16px;}
	.banner-v2__bottom-item {font-size: 12px;}
}
@media screen and (max-width: 576px) {}

/*--- END BANNER-V2 ---*/


/*--- SECTION-TITLE ---*/

.section-title {
	display: grid;
  grid-template-columns: auto 350px;
  gap: 0 32px;
  margin-bottom: 80px;
}
.section-title-column {
	grid-template-columns: 1fr;
}
.section-title__tag {
	position: relative;
  width: fit-content;
  background: #0891af0d;
  padding: 4px 12px 4px 12px;
  margin: 0;
  border: 1px solid #0891af33;
  border-radius: 50px;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  grid-column: span 2;
  margin: 0 0 16px 0;
}
.section-title-column .section-title__tag {
	grid-column: unset;
}
.section-title__tag span {
	display: block;
	width: 5px;
	height: 5px;
	flex: 0 0 5px;
	border-radius: 50%;
	background: var(--primary);
}
.section-title__tag svg {
	width: 16px;
	height: 16px;
}
.section-title__title {
	margin: 0;
  width: 100%;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 110%;
  color: var(--base);
}
.section-title__subtitle {
	margin: 0;
  padding: 0 0 0 32px;
  border-left: 4px solid #0891af33;
  height: fit-content;
  line-height: 180%;
  font-size: 14px;
  color: var(--text);
}
.section-title-column .section-title__subtitle {
	margin: 16px 0 0 0;
}

.bg-primary .section-title__tag {
	background: #ffffff1a;
	border-color: #ffffff1a;
	color: var(--white);
}
.bg-primary .section-title__title {
	color: var(--white);
}
.bg-primary .section-title__subtitle {
	color: var(--white);
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {}
@media screen and (max-width: 768px) {
	.section-title {grid-template-columns: 1fr;gap: 16px;margin-bottom: 56px;}
	.section-title__tag {grid-column: unset;margin: 0;font-size: 12px;}
	.section-title__subtitle {padding: 0 0 0 16px;}
}
@media screen and (max-width: 576px) {}

/*--- END SECTION-TITLE ---*/


/*--- LEADING-CARDS ---*/

.leading-cards {
	display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.leading-card {
	width: 100%;
  height: 100%;
  position: relative;
  padding: 32px;
  margin: 0;
  border-radius: 24px;
  border: 1px solid #0891af1a;
  background: #0891af0d;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: .3s ease;
}
.leading-card:hover {
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}
.leading-card_red {
	background: #fff1f266;
	border-color: #ffe4e699;
}
.leading-card_green {
	background: #ecfdf566;
	border-color: #d1fae599;
}
.leading-card__head {
	display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.leading-card__tag {
	position: relative;
  width: fit-content;
  display: block;
  background: #0891af1a;
  border-radius: 50px;
  padding: 4px 10px;
  line-height: 100%;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
}
.leading-card__tag_red {
	background: #fff1f2;
	color: #e11d48;
}
.leading-card__tag_green {
	background: #ecfdf5;
	color: #059669;
}
.leading-card__label {
	position: relative;
  width: fit-content;
  display: block;
  background: var(--primary);
  border-radius: 50px;
  padding: 4px 10px;
  line-height: 100%;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 900;
}
.leading-card__label_red {
	background: #e11d48;
	color: var(--white);
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(244, 63, 94, 0.3) 0px 10px 15px -3px, rgba(244, 63, 94, 0.3) 0px 4px 6px -4px;
}
.leading-card__icon {
	display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  margin: 0;
  transition: .5s ease;
  color: var(--primary);
  background: #0891af1a;
  border-radius: 16px;
}
.leading-card:hover .leading-card__icon {
	transform: scale(1.06);
	background: var(--primary);
	color: var(--white);
}
.leading-card__icon svg {
	width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  color: inherit;
  transition: .4s ease;
}
.leading-card__content {
	display: flex;
  flex-direction: column;
  gap: 16px;
}
.leading-card__title {
	width: 100%;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--base);
  line-height: 120%;
}
.leading-card__subtitle {
	margin: 0;
  font-size: 12px;
  font-style: italic;
  color: var(--mid);
  font-weight: 600;
}
.leading-card__text {
	margin: 0;
  font-size: 12px;
  color: var(--text);
}
.leading-card__link {
	position: relative;
	line-height: 100%;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  width: fit-content;
  margin: auto 0 0 0;
}
.leading-card__link:hover {
	text-decoration: none;
	color: var(--primary);
}
.leading-card__link svg {
	width: 14px;
  height: 14px;
  position: absolute;
  right: -20px;
  top: 0px;
  transition: .3s ease;
}
.leading-card__link:hover svg {
	right: -24px;
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {
	.leading-cards {grid-template-columns: 1fr;}
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 576px) {}

/*--- END LEADING-CARDS ---*/


/*--- NUMBERS ---*/

.numbers {
	display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
}
.number {
	display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.number__num {
	line-height: 100%;
  margin: 0;
  color: var(--base);
  font-size: 72px;
  letter-spacing: -2px;
  font-weight: 700;
}
.number__title {
	margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  line-height: 150%;
  text-align: center;
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {
	.number__num {font-size: 56px;}
}
@media screen and (max-width: 768px) {
	.numbers {grid-template-columns: 1fr 1fr;}
}
@media screen and (max-width: 576px) {
	.number__num {font-size: 36px;}
	.number__title {font-size: 12px;}
}

/*--- END NUMBERS ---*/


/*--- BENEFIT-CARDS ---*/

.benefit-cards {
	display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
	width: 100%;
  height: 100%;
  position: relative;
  padding: 32px;
  margin: 0;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: .3s ease;
}
.benefit-card:hover {
	background: var(--white);
	border-color: var(--white);
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
}
.benefit-card__icon {
	display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  margin: 0;
  transition: .5s ease;
  color: var(--primary);
  background: var(--white);
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.benefit-card:hover .benefit-card__icon {
	transform: scale(1.06);
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}
.benefit-card__icon svg {
	width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  color: inherit;
  transition: .4s ease;
}
.benefit-card__title {
	width: 100%;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--base);
  line-height: 120%;
}
.benefit-card__text {
	margin: 0;
  font-size: 13px;
  color: var(--text);
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {
	.benefit-cards {grid-template-columns: repeat(2, 1fr);}
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 576px) {
	.benefit-cards {grid-template-columns: 1fr;}
}

/*--- END BENEFIT-CARDS ---*/

/*--- SECTION-BENEFIT ---*/

.section-benefit {
  margin: 80px 0 0 0;
  padding: 40px 0 0 0;
}
.section-benefit__item {
	display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.section-benefit__item-icon {
	display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ecfdf5;
  color: var(--green);
  flex: 0 0 48px;
}
.section-benefit__item-icon svg {
	width: 24px;
  height: 24px;
}
.section-benefit__item-content {
	display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-benefit__item-title {
	width: 100%;
  margin: 0;
  line-height: 100%;
  font-weight: 700;
  font-size: 14px;
  color: var(--base);
}
.section-benefit__item-subtitle {
	width: 100%;
  margin: 0;
  line-height: 100%;
  font-weight: 400;
  font-size: 12px;
  color: var(--mid);
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 576px) {
	.section-benefit {margin: 40px 0 0 0;}
}

/*--- END SECTION-BENEFIT ---*/


/*--- ABOUT-GRID ---*/

.about-grid {
	display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}
.about-grid__content {
	width: 100%;
}
.about-grid__title {
	grid-template-columns: 1fr;
  margin: 0 0 40px 0;
}
.about-grid__title .section-title__tag {
	grid-column: unset;
}
.about-grid__text {
	color: var(--text);
}
.about-grid__action {
	display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0 0 0;
}
.about-grid__action-doctors-wrap {
	display: flex;
  align-items: center;
  gap: 16px;
}
.about-grid__action-doctors {
	display: flex;
}
.about-grid__action-doctors img {
	display: block;
	margin-left: -12px;
  width: 40px;
  height: 40px;
  object-fit: cover;
  flex: 0 0 40px;
  border-radius: 50%;
  object-position: center top;
  border: 2px solid var(--white);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.about-grid__action-doctors img:first-child {
	margin-left: 0px;
}
.about-grid__action-doctors-text {
	margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  line-height: 150%;
  text-align: center;
}
.about-grid__media {
	width: 100%;
  height: auto;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}
.about-grid__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-grid__media-content {
	position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  height: auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
  padding: 20px;
  margin: 0;
}
.about-grid__media-title {
	font-size: 13px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
  line-height: 130%;
}
.about-grid__media-subtitle {
	font-size: 13px;
  color: var(--base);
  font-weight: 700;
  margin: 0;
  line-height: 130%;
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {
	.about-grid {grid-template-columns: 1fr;gap: 40px;}
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 576px) {
	.about-grid__media-content {left: 12px;right: 12px;bottom: 12px;border-radius: 10px;}
}

/*--- END ABOUT-GRID ---*/


/*--- CTA-GRID ---*/

.cta-grid {
	display: grid;
	grid-template-columns: auto 400px;
	gap: 40px 48px;
}
.cta-grid__content {}
.cta-grid__section-title {
	margin-bottom: 24px;
}
.cta-grid__text {
	margin: 0;
	font-size: 20px;
  line-height: 130%;
}
.cta-grid__action {
	display: flex;
  align-items: center;
}

@media screen and (max-width: 1200px) {
	.cta-grid {grid-template-columns: auto 360px;}
}
@media screen and (max-width: 992px) {
	.cta-grid {grid-template-columns: 1fr;}
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 576px) {}

/*--- END CTA-GRID ---*/


/*--- COMPARE ---*/

.compare-grid {
	display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.compare-item {
	position: relative;
  width: 100%;
  margin: 0;
  padding: 48px;
  border-radius: 24px;
  border: 1px solid #e2e8f080;
  background: var(--light);
}
.compare-item_green {
	background: #ecfdf54d;
	border-color: #d1fae580;
}
.compare-item__head {
	display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 48px 0;
}
.compare-item__head-icon {
	display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gray);
  color: var(--white);
  flex: 0 0 48px;
}
.compare-item_green .compare-item__head-icon {
	background: var(--green);
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(16, 185, 129, 0.2) 0px 10px 15px -3px, rgba(16, 185, 129, 0.2) 0px 4px 6px -4px;
}
.compare-item__head-icon svg {
	width: 24px;
  height: 24px;
}
.compare-item__head-title {
	margin: 0;
  font-size: 24px;
  font-weight: 700;
}
.compare-item__lists {
	display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare-item__list {
	width: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid #e2e8f080;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.compare-item_green .compare-item__list {
	border-color: #d1fae580;
}
.compare-item__list-icon {
	width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: #f1f5f9;
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.compare-item__list-icon svg {
	width: 20px;
	height: 20px;
}
.compare-item__list-title {
	margin: 0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  color: var(--text);
}
.compare-item__list-value {
	margin: 0 0 0 auto;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  color: var(--base);
  text-align: right;
}
.compare-item__list-value_sm {
	font-size: 13px;
}

.compare-item_green .compare-item__list-icon {
	background: #ecfdf5;
	color: var(--green);
}
.compare-item_green .compare-item__list-title {
	color: var(--green);
}
.compare-item_green .compare-item__list-value {}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {
	.compare-grid {grid-template-columns: 1fr;}
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 576px) {
	.compare-item {padding: 16px;}
	.compare-item__head-title {font-size: 20px;}
	.compare-item__list {padding: 16px;}
	.compare-item__list-title {font-size: 13px;}
	.compare-item__list-value {font-size: 16px;}
	.compare-item__list-value_sm {font-size: 13px;}
}

/*--- END COMPARE ---*/


/*--- ADVANTAGES ---*/

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.advantages-item {
	width: 100%;
  height: 100%;
  position: relative;
  border-radius: 24px;
  margin: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  transition: .3s ease;
}
.advantages-item:hover {
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}
.advantages-item__head {
	display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 20px 0;
  gap: 16px;
}
.advantages-item__icon {
	width: 48px;
  height: 48px;
  flex: 0 0 48px;
  background: #f1f5f9;
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.advantages-item__icon svg {
	width: 28px;
	height: 28px;
}
.advantages-item__head-content {
	text-align: right;
}
.advantages-item__head-title {
	margin: 0;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--base);
  font-weight: 800;
  line-height: 100%;
}
.advantages-item__head-subtitle {
	margin: 4px 0 0 0;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  line-height: 150%;
}
.advantages-item__content {}
.advantages-item__title {
	width: 100%;
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--base);
  line-height: 120%;
}
.advantages-item__text {
	margin: 0;
  font-size: 13px;
  color: var(--text);
}

.advantages-item_blue .advantages-item__icon {
	background: #3b82f61a;
	color: #2563eb;
}
.advantages-item_blue .advantages-item__head-title {
	color: #2563eb;
}
.advantages-item_green .advantages-item__icon {
	background: #10b9811a;
	color: var(--green);
}
.advantages-item_green .advantages-item__head-title {
	color: var(--green);
}
.advantages-item_orange .advantages-item__icon {
	background: #f59e0b1a;
	color: #d97706;
}
.advantages-item_orange .advantages-item__head-title {
	color: #d97706;
}
.advantages-item_purple .advantages-item__icon {
	background: #8b5cf61a;
	color: #7c3aed;
}
.advantages-item_purple .advantages-item__head-title {
	color: #7c3aed;
}
.advantages-item_pink .advantages-item__icon {
	background: #ec48991a;
	color: #db2777;
}
.advantages-item_pink .advantages-item__head-title {
	color: #db2777;
}
.advantages-item_red .advantages-item__icon {
	background: #ef44441a;
	color: #ef4444;
}
.advantages-item_red .advantages-item__head-title {
	color: #ef4444;
}

.advantages-sm-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin: 60px 0 0 0;
}
.advantages-sm-item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
}
.advantages-sm-item__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	background: #0891af0d;
	color: var(--primary);
	border: 1px solid #0891af1a;
	border-radius: 50%;
	transition: .3s ease;
}
.advantages-sm-item:hover .advantages-sm-item__icon {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}
.advantages-sm-item__icon svg {
	width: 20px;
	height: 20px;
}
.advantages-sm-item__title {
	margin: 0;
	font-size: 11px;
	line-height: 160%;
	letter-spacing: 1px;
	color: var(--mid);
  text-transform: uppercase;
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {
	.advantages-grid {grid-template-columns: repeat(2, 1fr);}
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 650px) {
	.advantages-grid {grid-template-columns: 1fr;}
}
@media screen and (max-width: 576px) {
	.advantages-sm-grid {grid-template-columns: 1fr;gap: 12px;}
	.advantages-sm-item {justify-content: center;}
}

/*--- END ADVANTAGES ---*/


/*--- REVIEWS ---*/

.section-title-reviews-wrap {
	display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.section-title-reviews-item {
	position: relative;
  display: grid;
  grid-template-columns: 1fr 40px;
  padding: 16px;
  margin: 0;
  width: fit-content;
  gap: 0;
  background: var(--light);
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  gap: 8px 24px;
}
.section-title-reviews-item-title {
	margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mid);
  line-height: 100%;
}
.section-title-reviews-item-star {
	margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--base);
  line-height: 100%;
}
.section-title-reviews-item-star span {
	background-image: url(../icons/star-fill-blue.svg);
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px 0 0;
  background-size: 12px 12px;
}
.section-title-reviews-item-text {
	margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  line-height: 100%;
  grid-column: span 2;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.reviews-item {
	width: 100%;
	background: #f8fafc80;
	border: 1px solid #e3e7ed;
	border-radius: 24px;
	padding: 32px;
	margin: 0;
	transition: .3s ease;
	display: flex;
  flex-direction: column;
  gap: 24px;
}
.reviews-item:hover {
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
}
.reviews-item__head {
	display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviews-item__head-stars {
	background-image: url(../icons/star-fill-blue.svg);
	height: 14px;
  width: 90px;
  background-size: 18px 14px;
}
.reviews-item__head-date {
	margin: 0;
  line-height: 100%;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -.5px;
}
.reviews-item__icon svg {
	width: 24px;
  height: 24px;
  color: #0891af1a;
}
.reviews-item__text {
	-webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 13px;
  color: var(--base);
}
.reviews-item__name {
	margin: 0;
  font-size: 13px;
  color: var(--base);
  line-height: 100%;
  font-weight: 600;
}

@media screen and (max-width: 1200px) {
	.reviews-grid {grid-template-columns: repeat(2, 1fr);}
}
@media screen and (max-width: 650px) {
	.reviews-grid {grid-template-columns: 1fr;}
}
@media screen and (max-width: 576px) {}

/*--- END REVIEWS ---*/


/*--- PRICES ---*/

.prices-grid {
	display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.prices-item {
	width: 100%;
  margin: 0;
  padding: 56px;
  border: 1px solid #e3e7ed;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.prices-item_primary {
	border-color: #0891af33;
	box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px, rgba(8, 145, 175, 0.05) 0px 0px 0px 4px, rgba(8, 145, 175, 0.1) 0px 25px 50px -12px;
}
.prices-item__head {
	display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 16px 0;
}
.prices-item__head-title {
	margin: 0;
  line-height: 100%;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.prices-item_primary .prices-item__head-title {
	color: var(--primary);
}
.prices-item__head-tag {
	position: relative;
  width: fit-content;
  display: block;
  background: var(--primary);
  border-radius: 50px;
  padding: 4px 10px;
  line-height: 100%;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 900;
}
.prices-item__title {
	margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 130%;
}
.prices-item__price {
	margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 130%;
}
.prices-item_primary .prices-item__price {
	color: var(--primary);
}
.prices-item__lists {
	display: flex;
  flex-direction: column;
  gap: 16px;
}
.prices-item__list {
	display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
}
.prices-item__list-icon {
	width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: var(--white);
  color: #5a687c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e3e7ed;
}
.prices-item__list-icon svg {
	width: 12px;
	height: 12px;
}
.prices-item_primary .prices-item__list-icon {
	background: #0891af0d;
  color: var(--primary);
  border-color: #0891af33;
}
.prices-item__list-title {
	margin: 0;
  font-size: 13px;
  color: var(--text);
}
.prices-item__action {
	margin: auto 0 0 0;
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {
	.prices-grid {grid-template-columns: 1fr;}
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 576px) {
	.prices-item {padding: 24px;}
}

/*--- END PRICES ---*/


/*--- CTA-BENEFIT ---*/

.cta-benefit {
	width: 100%;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid #e3e7ed;
  margin: 80px 0 0 0;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-benefit__icon {
	position: relative;
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  border-radius: 16px;
  background: #0891af0d;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-benefit__icon svg {
	width: 32px;
	height: 32px;
}
.cta-benefit__content {
	display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 500px;
}
.cta-benefit__tag {
	position: relative;
  width: fit-content;
  display: block;
  background: #21c45d1a;
  border-radius: 50px;
  padding: 4px 10px;
  line-height: 100%;
  font-size: 12px;
  text-transform: uppercase;
  color: #21c45d;
  font-weight: 600;
  margin: 0;
}
.cta-benefit__title {
	margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
}
.cta-benefit__text {
	margin: 0;
  font-size: 15px;
  color: var(--text);
}
.cta-benefit__info {
	margin: 0 0 0 auto;
	flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.cta-benefit__info-title {
	margin: 0;
  font-size: 14px;
  color: var(--primary);
  text-transform: uppercase;
  line-height: 100%;
}
.cta-benefit__info-subtitle {
	margin: 0;
  font-size: 12px;
  color: var(--gray);
  line-height: 100%;
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {}
@media screen and (max-width: 768px) {
	.cta-benefit {flex-wrap: wrap;}
}
@media screen and (max-width: 576px) {
	.cta-benefit {justify-content: center;padding: 24px;}
	.cta-benefit__action {width: 100%;}
	.cta-benefit__action .btn {width: 100%;}
}

/*--- END CTA-BENEFIT ---*/


/*--- STEPS ---*/

.steps {}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 576px) {}

/*--- END STEPS ---*/

/*--- STEP ---*/

.steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 32px;
}
.step {}
.step__head {
	display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 32px 0;
}
.step__num {
	display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  background: var(--white);
  border: 1px solid #e3e7ed;
  border-radius: 24px;
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  transition: .4s ease;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.step:hover .step__num {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}
.step__head span {
	display: block;
  width: 100%;
  height: 1px;
  background: #e3e7ed;
  transition: .4s ease;
}
.step:hover .step__head span {
	background: var(--primary);
}
.step:last-child .step__head span {
	display: none;
}
.step__time {
	position: relative;
  width: fit-content;
  background: #0891af1a;
  padding: 2px 12px;
  margin: 0 0 32px 0;
  border-radius: 50px;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
}
.step__title {
	width: 100%;
  margin: 0 0 24px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--base);
  line-height: 120%;
  transition: .4s ease;
}
.step:hover .step__title {
	color: var(--primary);
}
.step__text {
	margin: 0;
  font-size: 13px;
  color: var(--text);
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {
	.steps {grid-template-columns: repeat(2, 1fr);}
	.step__head span {display: none;}
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 576px) {
	.steps {grid-template-columns: 1fr;}
}

/*--- END STEP ---*/


/*--- TECHNOLOGIES ---*/

.technologies-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.technology-card {
	position: relative;
	width: 100%;
	border-radius: 24px;
	border: 1px solid #e3e7ed;
	padding: 40px;
	margin: 0;
}
.technology-card:hover {
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
}
.technology-card__image {
	width: 100%;
	aspect-ratio: 4/3;
	border-radius: 12px;
	overflow: hidden;
	margin: 0 0 32px 0;
}
.technology-card__image img {
	margin: 0;
	width: 100%;
	height: 100%;
	transition: .3s ease;
}
.technology-card:hover .technology-card__image img {
	transform: scale(1.05);
}
.technology-card__suptitle {
	line-height: 100%;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.technology-card__suptitle span {
	display: block;
  width: 32px;
  height: 1px;
  background: #e3e7ed;
}
.technology-card__title {
	font-size: 22px;
  font-weight: 700;
  line-height: 130%;
  margin: 0 0 24px 0;
}
.technology-card__lists {
	display: flex;
  flex-direction: column;
  gap: 16px;
}
.technology-card__list {
	display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}
.technology-card__list-icon {
	width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.technology-card__list-icon svg {
	width: 16px;
  height: 16px;
}
.technology-card__list-title {
	margin: 0;
  font-size: 12px;
  line-height: 130%;
  color: var(--text);
}
.technology-card__action {
	margin: 40px 0 0 0;
  padding: 24px 0 0 0;
  text-align: right;
  border-top: 1px solid #e3e7ed;
}
.technology-card__link {
	position: relative;
	line-height: 100%;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  width: fit-content;
  margin: 0 0 0 auto;
  padding: 0 20px 0 0;
}
.technology-card__link:hover {
	text-decoration: none;
	color: var(--primary);
}
.technology-card__link svg {
	width: 14px;
  height: 14px;
  position: absolute;
  right: 0px;
  top: 1px;
  transition: .3s ease;
}
.technology-card__link:hover svg {
	right: -4px;
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {
	.technologies-grid {grid-template-columns: repeat(2, 1fr);}
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 576px) {
	.technologies-grid {grid-template-columns: 1fr;}
	.technology-card {padding: 16px;}
	.technology-card__action {margin: 30px 0 6px 0;padding: 16px 0 0 0;}
}

/*--- END TECHNOLOGIES ---*/


/*--- COLLAPSE ---*/

.collapse {
	border: none;
}
.collapse__item {
	background: var(--white);
  border: 1px solid #e3e7ed;
  border-radius: 24px;
  height: auto;
  margin: 0 0 16px 0;
}
.collapse__item:last-child {
	margin: 0;
}
.collapse__head {
	padding: 40px;
  height: auto;
  justify-content: space-between;
}
.collapse__btn {
	width: 48px;
  height: 48px;
  flex: 0 0 48px;
  position: relative;
  border: 1px solid #e3e7ed;
  border-radius: 12px;
  right: unset;
  top: unset;
  color: var(--text);
  transition: .3s ease;
}
.collapse__btn svg {
	transition: .3s ease;
	width: 25px;
	height: 25px;
	position: absolute;
	left: 11px;
	top: 11px;
}
.collapse__btn svg.plus {
	opacity: 1;
}
.collapse__btn svg.minus {
	opacity: 0;
}
.collapse__item.active .collapse__btn {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
	transform: rotate(180deg);
}
.collapse__item.active .collapse__btn svg.plus {
	opacity: 0;
}
.collapse__item.active .collapse__btn svg.minus {
	opacity: 1;
}
.collapse__title {
	font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  color: var(--base);
}
.collapse__item:hover .collapse__title,
.collapse__item.active .collapse__title {
	color: var(--primary);
}
.collapse__content {
	display: block;
  margin: 0 40px 40px;
  border: 1px solid #e3e7ed;
  padding: 32px;
  background: #f8fafc;
  border-radius: 12px;
}
.collapse__content p {
	margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 180%;
  color: var(--text);
}
.collapse__content-link {
	position: relative;
	line-height: 100%;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  width: fit-content;
  margin: 0 0 0 auto;
  padding: 0 20px 0 0;
}
.collapse__content-link:hover {
	text-decoration: none;
	color: var(--primary);
}
.collapse__content-link svg {
	width: 14px;
  height: 14px;
  position: absolute;
  right: 0px;
  top: 1px;
  transition: .3s ease;
}
.collapse__content-link:hover svg {
	right: -4px;
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 576px) {
	.collapse__head {padding: 24px;}
	.collapse__content {margin: 0 24px 24px;padding: 24px;}
	.collapse__title {font-size: 18px;}
}

/*--- END COLLAPSE ---*/

/*--- CTA-FORM ---*/

.cta-form-grid {
	display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}
.cta-form-grid__content {}
.cta-form-grid__title {
	margin: 0 0 40px 0;
}
.cta-form-grid__text {
	margin: 0;
  font-size: 18px;
  color: var(--text);
}
.cta-form-grid__items {
	display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 48px 0 0 0;
  gap: 32px;
}
.cta-form-grid__item {
	display: flex;
  align-items: center;
  gap: 16px;
}
.cta-form-grid__item-icon {
	display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  padding: 0;
  margin: 0;
  transition: .5s ease;
  color: var(--primary);
  background: #0891af1a;
  border-radius: 16px;
}
.cta-form-grid__item-icon svg {
	width: 24px;
	height: 24px;
}
.cta-form-grid__item-content {}
.cta-form-grid__item-title {
	font-size: 12px;
  color: var(--base);
  margin: 0;
  line-height: 100%;
  font-weight: 700;
}
.cta-form-grid__item-text {
	font-size: 12px;
  color: var(--text);
  margin: 10px 0 0 0;
  line-height: 100%;
}
.cta-form-grid__form-wrap {
	width: 100%;
  height: auto;
  padding: 48px;
  border: 1px solid #e3e7ed;
  border-radius: 32px;
  background: #f8fafc;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(226, 232, 240, 0.5) 0px 25px 50px -12px;
}
.cta-form-grid__form-title {
	margin: 0 0 40px 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 130%;
}
.form-group label {
	line-height: 100%;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  font-size: 13px;
  color: var(--text);
}
.form-group .form-control {
	height: 56px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid #e3e7ed;
  font-size: 14px;
}
.form-group .form-control:focus {
	border-color: var(--primary);
}
.form-group__privacy {
	margin: 24px 0 32px 0;
}
.form-group__privacy p {
	color: var(--base);
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {
	.cta-form-grid {grid-template-columns: 1fr;gap: 64px;}
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 576px) {
	.cta-form-grid__items {grid-template-columns: 1fr;}
	.cta-form-grid__form-wrap {padding: 24px;}
}

/*--- END CTA-FORM ---*/

/*--- REVIEW-VIDEOS ---*/

.review-videos {}
.review-videos .slick-list {
	overflow: visible;
}
.review-videos .slick-track {
	display: flex;
	gap: 24px;
}
.review-videos__item {
	position: relative;
	display: flex!important;
	align-items: center;
	justify-content: center;
  aspect-ratio: 2/3;
  overflow: hidden;
  width: 300px;
  min-width: 20dvw;
  height: auto;
  border-radius: 24px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}
.review-videos__item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  z-index: 1;
}
.review-videos__item-img {
	position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s ease;
}
.review-videos__item:hover .review-videos__item-img {
	transform: scale(1.04);
}
.review-videos__item-content {
	position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 24px;
}
.review-videos__item-title {
	margin: 0 0 5px 0;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 100%;
  font-weight: 600;
  color: var(--light-gray);
}
.review-videos__item-subtitle {
	margin: 0;
  font-size: 11px;
  line-height: 100%;
  font-weight: 600;
  color: var(--white);
}
.review-videos__item-icon {
	position: relative;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 9;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: .5s ease;
}
.review-videos__item-icon svg {
	width: 32px;
  height: 32px;
  margin: 0 0 0 3px;
  transition: .5s ease;
}
.review-videos__item:hover .review-videos__item-icon {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
	transform: scale(1.06);
}


@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 576px) {}

/*--- END REVIEW-VIDEOS ---*/


/*--- DOCTORS-CARDS ---*/

.doctors-cards {}
.doctors-cards .slick-list {
	overflow: visible;
}
.doctors-cards .slick-track {
	display: flex;
	gap: 24px;
}
.doctors-card {
	position: relative;
	display: grid!important;
	grid-template-columns: 2fr 3fr;
	align-items: center;
	justify-content: center;
  overflow: hidden;
  width: 650px;
  min-width: 40dvw;
  max-width: calc(100dvw - 30px);
  height: auto;
  border-radius: 24px;
  border: 1px solid var(--light-primary);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  transition: .3s ease;
}
.doctors-card:hover {
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
}
.doctors-card__img {
	width: 100%;
  height: 100%;
  overflow: hidden;
}
.doctors-card__img img {
	width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s ease;
}
.doctors-card:hover .doctors-card__img img {
	transform: scale(1.04);
}
.doctors-card__label {
	position: absolute;
  width: fit-content;
  display: block;
  background: var(--primary);
  border-radius: 50px;
  padding: 4px 10px;
  line-height: 100%;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  left: 16px;
  top: 16px;
}
.doctors-card__content {
	width: 100%;
  height: 100%;
  margin: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.doctors-card__content hr {
	height: 1px;
  background: var(--light-gray);
  width: 100%;
  border: unset;
  margin: 5px 0;
}
.doctors-card__suptitle {
	line-height: 100%;
  margin: 0;
  font-size: 12px;
  color: var(--primary-hover);
  text-transform: uppercase;
  font-weight: 500;
}
.doctors-card__title {
	line-height: 120%;
  margin: 0;
  font-size: 22px;
  color: var(--base);
  font-weight: 700;
}
.doctors-card__numbers {
	display: grid;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
.doctors-card__number {}
.doctors-card__number-title {
	margin: 0;
  line-height: 100%;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
}
.doctors-card__number-value {
	margin: 6px 0 0 0;
  line-height: 100%;
  font-size: 20px;
  font-weight: 700;
}
.doctors-card__quote {
	margin: 0;
  padding: 4px 0 4px 24px;
  border-left: 2px solid #0891af33;
  color: var(--text);
  font-size: 12px;
  font-style: italic;
  line-height: 140%;
  font-weight: 400;
}
.doctors-card__actions {
	display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.doctors-card__action-btn {}
.doctors-card__action-link {
	font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--base);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.doctors-card__action-link svg {
	width: 16px;
  height: 16px;
  margin: 0;
  transform: rotate(-45deg);
}
.doctors-card__action-link:hover {
	text-decoration: none;
	color: var(--primary-hover);
}
.doctors-card__action-link:hover svg {}


@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 576px) {
	.doctors-card {grid-template-columns: 1fr;}
}

/*--- END DOCTORS-CARDS ---*/

/*--- NAME ---*/


@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 576px) {}

/*--- END NAME ---*/


