* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	line-height: 1.2;
	letter-spacing: 0%;
}

:root {
	--primeColor: #03392D;
	--textColor: #2C2C2C;
	--beigeColor: #FFF7ED;
	--silverColor: #F1F5FB;
	--bisqueColor: #FFE6C5;
	--dirtyColor: #575757;
}

body {
	font-family: "Open Sans", sans-serif;
	color: var(--textColor);
	overflow-x: hidden;
}

svg {
	flex-shrink: 0;
}

ul,
li {
	list-style-type: none;
}

a {
	text-decoration: none;
	color: var(--textColor);
}

button {
	background-color: var(--primeColor);
	border: 0;
	padding: 20px;
	color: #fff;
	font-weight: 400;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.1s ease;
}

button a {
	color: #fff;
}

button:active {
	transform: scale(0.98);
}

.swiper-button-next,
.swiper-button-prev {
	color: transparent;
	background: var(--primeColor);
	border-radius: 50%;
	width: 40px;
	height: 40px;
}

.swiper-button-next svg,
.swiper-button-prev svg {
	width: 20px;
	height: 20px;
}

.swiper-button-next {
	right: 0;
}

.swiper-button-prev {
	right: 50px;
	transform: rotate(360deg);
}

.swiper-button-disabled {
	background: #FFE6C5;
	opacity: 1 !important;
}

.swiper-button-disabled svg path {
	stroke: var(--textColor);
}

.arrowsNav {
	position: relative;
}

.arrowsNav [class^=swiper-button-] {
	top: unset;
	left: auto;
}

section {
	margin-bottom: 80px;
}

.title {
	font-weight: 700;
	font-size: 40px;
	margin-bottom: 50px;
}

.subtitle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 0;
}

.greencrap {
	position: relative;
	padding-top: 80px;
}

.greencrap::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 85%;
	background: var(--primeColor);
}

.wrapper {
	max-width: 1320px;
	margin: 0 auto;
}

.headerLine {
	display: flex;
	white-space: nowrap;
	overflow: hidden;
	gap: 60px;
}

.headerLine>div {
	flex-shrink: 0;
	animation: marquee 15s linear infinite;
}

/* Анимация */
@keyframes marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}


.header {
	margin-bottom: 50px;
}

.headerLine {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 20px;
	background-color: var(--beigeColor);
	padding: 10px 0;
}

.headerLine div {
	flex-shrink: 0;
	min-width: 100%;
	animation-direction: normal;
	will-change: transform;
	font-weight: 400;
	font-size: 14px;
}

.headerBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 20px;
	margin: 34px 0;
}

.headerLogo {
	display: block;
	flex-grow: 1;
}

.headerLogo img {
	width: 204px;
}

.headerInfo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 30px;
}

.headerContacts {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 10px;
}

.headerContact:nth-child(1) {
	font-weight: 700;
	font-size: 14px;
	line-height: 150%;
	max-width: 140px;
}

.headerContact:nth-child(1) span {
	color: #575757;
	font-weight: 400;
}

.headerContact:nth-child(2) {
	font-weight: 600;
	text-align: right;
	line-height: 150%;
}

.headerContact:nth-child(2) p {
	font-size: 12px;
	color: #575757;
}

.headerContact:nth-child(2) a {
	font-size: 14px;
	font-weight: 700;
}

.headerButtons {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-direction: row;
	gap: 10px;
}

.headerButton {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	font-weight: 400;
	font-size: 14px;
	padding: 20px 24px;
}

.headerButton:nth-child(1) {
	border: 2px solid #DBAC6C;
	background-color: transparent;
	color: var(--textColor);
	transition: all 0.1s ease;
}

.headerButton:nth-child(1):hover {
	border: 2px solid #DBAC6C;
	background-color: #DBAC6C;
}

.headerButton:nth-child(2) {
	background-color: #DBAC6C;
	color: var(--textColor);
	border: 2px solid transparent;
	transition: all 0.1s ease;
}

.headerButton:nth-child(2):hover {
	background-color: #fff !important;
	border: 2px solid #DBAC6C;
}

.headerLang.active {
	color: #DBAC6C;
	font-weight: 700;
}

.headerMenu {
	position: relative;
	margin-bottom: 33px;
	background: linear-gradient(90deg, #055D49 0%, #03392D 100%);
	color: #fff;
	padding: 12px 16px;

}

.headerMenuList {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 19px;
	row-gap: 0px;
	flex-wrap: wrap;
}

.headerMenuList>li {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	transition: all 0.3s ease;
}

.headerMenuList>li:hover {
	background-color: var(--primeColor);
}

.headerMenuList>li:hover>a {
	color: #DBAC6C;
}

.headerMenuList>li>a {
	font-weight: 400;
	font-size: 16px;
	padding: 8px;
	color: #fff;
}

.headerMenuListMore {
	cursor: pointer;
	padding: 8px;
}

.headerMenuListMore:hover {
	color: #DBAC6C;
}

.headerMenuSubmenuBox {
	display: none;
	position: absolute;
	top: 60px;
	right: 0;
	background-color: #fff;
	padding: 36px;
	z-index: 2;
	box-shadow: 0px 22px 80px 0px rgba(0, 0, 0, 0.1019607843);
}

.headerMenuSubmenuBox li {
	font-weight: 400;
	font-size: 14px;
	margin-bottom: 20px;
	padding: 0;
	background-color: transparent;
}

.headerMenuSubmenuBox li:last-child {
	margin-bottom: 0;
}

.headerMenuSubmenuBox li:hover a {
	color: var(--primeColor);
}

.headerMenuSubmenuBox.active {
	display: block;
}

.headerMobileContact {
	display: none;
}

.headerMobileHeader {
	display: none;
}

.headerBar {
	display: none;
}

.heroMain {
	display: grid;
	grid-template-columns: auto 420px;
	grid-template-rows: auto auto;
	grid-template-areas: "main top" "main bottom";
	gap: 20px;
	position: relative;
}

.swiper-button-prev0 {
	left: -23px !important;
}

.swiper-button-next0 {
	right: 420px !important;
}

.heroMainSwiper {
	width: 100%;
	height: 100%;
}

.heroMainSwiper {
	overflow: hidden;
}

.heroMainContent {
	position: relative;
	height: 100%;
}

.heroMainImage {
	height: 100%;
}

.heroMainImage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.heroMainSwiper {
	grid-area: main;
}

.heroContent {
	max-width: 320px;
	position: absolute;
	top: 60px;
	left: 60px;
	width: calc(100% - 120px);
	height: calc(100% - 120px);
	z-index: 1;
	color: #fff;
}

.heroContent h1 {
	font-size: 32px;
	line-height: 120%;
	margin-bottom: 19px;
}

.heroContent p {
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 25px;
}

.heroContent button {
	font-weight: 400;
	font-size: 16px;
}

.heroButton a {
	display: block;
	background-color: #DBAC6C;
	color: #fff;
	padding: 20px;
	width: fit-content;
	transition: all 0.1s ease;
}

.heroButton a:hover {
	background-color: #fff;
	color: #DBAC6C;
}

.heroRight {
	background: linear-gradient(102.91deg, #FFF7ED 7.33%, #FFE6C5 97.19%);
	position: relative;
	padding: 30px;
}

.heroRightImage img {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.heroRightContent {
	max-width: 220px;
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.heroRightContent h2 {
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	margin-bottom: 10px;
}

.heroRightContent p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 30px;
}

.heroRightTopBlock {
	grid-area: top;
}

.heroRightBottomBlock {
	grid-area: bottom;
}

.aboutBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 50px;
}

.aboutMain {
	flex: 0 0 calc(50% - 50px);
}

.aboutMain img {
	width: 100%;
	margin-bottom: 15px;
}

.about h1 {
	font-weight: 800;
	font-size: 86px;
	margin-bottom: 15px;
}

.about h2 {
	font-weight: 600;
	font-size: 22px;
	margin-bottom: 30px;
	color: var(--primeColor);
}

.about p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 30px;
}

.about a {
	display: block;
	width: fit-content;
	padding: 20px;
	font-weight: 400;
	font-size: 16px;
	background-color: var(--primeColor);
	color: #fff;
	min-width: 160px;
	text-align: center;
}

.about a:hover {
	background-color: #DBAC6C;
	color: var(--primeColor);
}

.aboutGrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 30px;
}

.aboutGridItem {
	padding: 35px 30px;

	background: linear-gradient(113.56deg, #F1F5FB 34.82%, #FFFFFF 92.77%);
}

.aboutGridItem>div:nth-child(1) {
	font-weight: 400;
	font-size: 20px;
	color: #8e96a2;
	margin-bottom: 10px;
}

.aboutGridItem>div:nth-child(2) {
	font-weight: 700;
	font-size: 36px;
	color: var(--primeColor);
}

.checkupBox {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 2px;
}

.checkupItem {
	background-color: #E0E0E0;
	padding: 40px;
	transition: all 0.1s ease;
	display: flex;
	row-gap: 20px;
	flex-direction: column;
	justify-content: space-between;
}

.checkupItem>div>div:nth-child(1) {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 36px;
	color: var(--primeColor);
}

.checkupItemImage {
	margin-bottom: 36px;
}

.checkupItemImage img {
	width: 100%;
	height: 230px;
	-o-object-fit: cover;
	object-fit: cover;
	object-position: top center;
	-o-object-position: top center;
}

.checkupItemText,
.checkupItemContent p,
.checkupItemContent ul,
.checkupItem p,
.checkupItem ul {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 10px;
}

.checkupItemContent h3 {
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 10px;
}

.checkupItemContent p,
.checkupItemContent ul li {
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
}

.checkupItemContent ul li,
.checkupItem ul li {
	list-style: disc;
	list-style-position: inside;
}

.checkupItem a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	font-weight: 400;
	font-size: 16px;
	padding: 16px;
	width: fit-content;
	background-color: var(--primeColor);
	background-clip: padding-box;
	color: #fff;
	border: 2px solid transparent;
	position: relative;
}

.checkupItem a::before {
	content: '';
	position: absolute;
	top: -2px;
	right: -2px;
	bottom: -2px;
	left: -2px;
	background: linear-gradient(88.54deg, #FFE6C5 33.18%, #DBAC6C 92%);
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.checkupItem:hover {
	color: #fff;
	background: radial-gradient(59.7% 43.35% at 5.14% 100%, #055D49 8.83%, #03392D 100%)
		/* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
	;
}

.checkupItem:hover a {
	background: linear-gradient(88.54deg, #FFE6C5 33.18%, #DBAC6C 92%);
	background-clip: padding-box;
	font-weight: 700;
	color: var(--textColor);
	border: 2px solid transparent;
}

.checkupItem:hover a::before {
	opacity: 1;
}

.checkupItem a:hover {
	border: 2px solid #fff;
	color: #fff;
	background: transparent;
}

.checkupItem a:hover::before {
	opacity: 0;
}

.checkupItem a:hover svg {
	fill: #fff;
}

.checkupItem:hover>div>div:nth-child(1) {
	color: #a5f5e2;
}

.checkupItem:hover h3,
.checkupItem:hover p,
.checkupItem:hover button {
	color: #fff;
}

.checkupItem:hover svg path {
	fill: var(--textColor);
}

.checkupItem a:hover svg path {
	fill: #fff;
}

.servicesTabs {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 0;
	margin-bottom: 1px;
}

.servicesTab {
	font-weight: 400;
	font-size: 20px;
	cursor: pointer;
	padding: 8px 19px;
	background-color: var(--silverColor);
	transition: all 0.1s ease;
}

.servicesTab:first-child {
	border-radius: 6px 0 0 0;
}

.servicesTab:last-child {
	border-radius: 0 6px 0 0;
}

.servicesTab:hover {
	background-color: var(--primeColor);
	color: #fff;
}

.servicesTab.active {
	background-color: var(--primeColor);
	color: #fff;
}

.servicesContent {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
	gap: 0;
	padding: 26px;
	background-color: var(--silverColor);
	margin-bottom: 30px;
}

.home .servicesContent {
	display: none;
}

.home .servicesContentActive {
	display: flex;
}

.servicesList li {
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 15px;
}

.servicesList li a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 10px;
}

.servicesList li:hover a {
	color: var(--primeColor);
}

.servicesList li:hover a svg path {
	stroke: var(--primeColor);
}

.servicesList.active {
	display: block;
}

.servicesPrograms {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 47px;
	border: 1px solid #F1F5FB;
	padding: 26px;
	position: relative;
}

.servicesPrograms:before {
	content: "";
	display: block;
	width: 275px;
	height: 183px;
	background: url("../img/stethoscope-pen-blank-prescription-pad-medicine-pharmacy-concept-empty-medical-form-ready-be-used-modern-medical-information-technology-Photoroom 1.png") no-repeat center center;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}

.servicesPrograms:after {
	content: "";
	display: block;
	width: 275px;
	height: 183px;
	background: url("../img/stethoscope-pen-blank-prescription-pad-medicine-pharmacy-concept-empty-medical-form-ready-be-used-modern-medical-information-technology-Photoroom 2.png") no-repeat center center;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}

.servicesProgramsItem {
	flex: 0 0 calc(25% - 35.5px);
}

.servicesProgramsItem h4 {
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 15px;
	color: var(--primeColor);
	height: 58px;
}

.servicesProgramsItem ul li {
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 10px;
	padding: 5px;
	transition: all 0.1s ease;
}

.servicesProgramsItem ul li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	transition: all 0.1s ease;
}

.servicesProgramsItem ul li:hover {
	background-color: var(--primeColor);
}

.servicesProgramsItem ul li:hover a {
	color: #fff
}

.servicesProgramsItem ul li:hover a svg path {
	stroke: #fff;
}

/* .doctors .swiper-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 0;
} */

.doctorsMain>div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 0;
}

.doctorsMain>div a {
	font-weight: 400;
	font-size: 16px;
	padding: 20px;
	background-color: var(--primeColor);
	color: #fff;
	border: 1px solid transparent;
	transition: all 0.1s ease;
	text-decoration: none;
}

.doctorsMain>div a:hover {
	background-color: #fff;
	color: var(--primeColor);
	border: 1px solid var(--primeColor);
}

.doctorsMain>div p {
	max-width: 875px;
	font-weight: 400;
	line-height: 150%;
	font-size: 16px;
}

.doctorsMain>div:nth-child(1) {
	margin-bottom: 50px;
}

.doctorsMain>div:nth-child(1) h2 {
	margin-bottom: 0;
}

.doctorsSwiper {
	margin-top: 50px;
	/* overflow: visible; */
}

.doctorsSlide {
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: column;
	gap: 0;
	/* background: var(--silverColor); */
	background: var(--primeColor);
	color: #fff;
	padding: 40px;
	height: 590px;
	transition: all 0.1s ease;
}

.doctorsSlideHeader {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 0;
}

.doctorsSlideHeader div:nth-child(1) {
	font-weight: 600;
	font-size: 16px;
	/* color: var(--primeColor); */
	color: #a5f5e2;
}

.doctorsSlideHeader div:nth-child(2) {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: 10px;
}

.doctorsSlideContent {
	z-index: 1;
	width: 100%;
}

.doctorsSlideContent h3 {
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 10px;
}

.doctorsSlideContent p {
	font-weight: 400;
	font-size: 14px;
	margin-bottom: 10px;
}

.doctorsSlideImage {
	/* position: absolute;
	bottom: 0;
	top: 0;
	right: 0;
	left: 0; */
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 20px 0;
	/* padding-top: 50px; */
}

/* .doctorsSlideImage:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(179.92deg, rgba(245, 248, 252, 0) 34.13%, #F2F6FC 86.56%);
	position: absolute;
	bottom: 0;
	right: 0;
} */

.doctorsSlideImage img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top center;
	object-position: top center;
}

.doctorsSlideButtons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 10px;
}

.doctorsSlideButtons button {
	flex-grow: 1;
	font-weight: 400;
	font-size: 16px;
	cursor: pointer;
}

.doctorsSlideButtons a {
	background-color: #DBAC6C;
	color: #fff;
	border: 1px solid transparent;
	padding: 20px;
	transition: all 0.1s ease;
}

.doctorsSlideButtons a:hover {
	background-color: #fff;
	color: #DBAC6C;
	border: 1px solid #DBAC6C;
}

.doctorsSlideButtons button:nth-child(2) {
	background-color: var(--primeColor);
	color: #fff;
}

.doctorsSlide:hover .doctorsSlideButtons button:nth-child(1) {
	border: 1px solid transparent;
}

.doctorsSlide:hover .doctorsSlideButtons button:nth-child(2) {
	background: transparent;
	color: var(--bisqueColor);
	border: 1px solid var(--bisqueColor);
}

/* .doctorsSlide:hover {
	background: var(--primeColor);
	color: #fff;
} */

.doctorsSlide:hover .doctorsSlideHeader div:nth-child(1) {
	color: #a5f5e2;
}

.doctorsSlide:hover .doctorsSlideImage:after {
	background: linear-gradient(179.92deg, rgba(17, 95, 77, 0) 34.13%, #115F4D 86.56%);
	/* background: linear-gradient(179.92deg, rgba(17, 95, 77, 0) 33.13%, #115F4D 60.56%); */
}

.photogallery {
	z-index: 1;
	position: relative;
}

/* .photogallerySwiper {
	overflow: visible;
} */

.photogallery .subtitle {
	margin-bottom: 50px;
}

.photogallery .title {
	margin-bottom: 0;
	color: #fff;
}

.photogalleryGrid {
	height: 430px;
	display: grid;
	grid-template-columns: 420px 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 10px;
	grid-template-areas: "main side1 side2" "main side3 side4";
}

.photogalleryGrid .main {
	grid-area: main;
}

.photogalleryGrid .side1 {
	grid-area: side1;
}

.photogalleryGrid .side2 {
	grid-area: side2;
}

.photogalleryGrid .side3 {
	grid-area: side3;
}

.photogalleryGrid .side4 {
	grid-area: side4;
}

.photogalleryGridItem img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;

}

.videogallery {
	z-index: 1;
	position: relative;
}

/* .videogallerySwiper {
	overflow: visible;
} */

.videogallery .subtitle {
	margin-bottom: 50px;
}

.videogallery .title {
	margin-bottom: 0;
	color: #fff;
}

.videogallerySlide img {
	width: 100%;
	height: 374px;
	-o-object-fit: cover;
	object-fit: cover;

}

.stocksItems {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-direction: row;
	gap: 10px;
}

.stocksItem {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: column;
	gap: 0;
	flex: 0 0 calc(33.333% - 10px);
	border: 1px solid #FFE6C5;
	padding: 26px;
	transition: all 0.1s ease;
}

.stocksItem p {
	font-weight: 400;
	font-size: 14px;
	color: var(--primeColor);
	margin-bottom: 15px;
}

.stocksItem h3 {
	font-weight: 700;
	font-size: 20px;
	line-height: 150%;
	margin-bottom: 63px;
}

.stocksItem a {
	font-weight: 400;
	font-size: 16px;
	background: var(--primeColor);
	padding: 20px;
	color: #fff;
}

.stocksItem:hover {
	background-color: var(--primeColor);
	color: #fff;
	border: 1px solid transparent;
}

.stocksItem:hover p {
	color: var(--bisqueColor);
}

.stocksItem:hover a {
	background-color: #DBAC6C;
	color: #fff;
}

.reviews {
	position: relative;
}

.reviewsBoxHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 0;
}

/* .reviewsSwiper {
	overflow: visible;
} */

.reviewsSlide {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
	gap: 30px;
	/* height: 294px; */
	background: linear-gradient(113.56deg, #F1F5FB 34.82%, #FFFFFF 92.77%);
	padding: 26px;
}

.reviewsSlideImage img {
	width: 147px;
	height: 141px;
	-o-object-fit: cover;
	object-fit: cover;
}

.reviewsSlideContent div:nth-child(1) {
	font-weight: 700;
	font-size: 14px;
	color: #DBAC6C;
	margin-bottom: 5px;
}

.reviewsSlideContent div:nth-child(2) {
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 20px;
}

.reviewsSlideContent p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 20px;
}

.faqItem {
	border-bottom: 1px solid #F1F5FB;
	padding-top: 20px;
	padding-bottom: 20px;
}

.faqItem.active .faqItemQuestion svg {
	transform: rotate(45deg);
}

.faqItemQuestion {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
	gap: 0;
	padding-bottom: 20px;
	cursor: pointer;
}

.faqItemQuestion h3 {
	font-weight: 400;
	font-size: 20px;
	margin-bottom: 10px;
}

.faqItemQuestion svg {
	transition: transform 0.35s ease;
}

.faqItemAnswer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
	background: var(--silverColor);

}

.faqItemAnswer p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 10px;
}

.faqItemInner {
	padding: 26px;
}

.footer {
	background-color: var(--silverColor);
	padding: 80px 0 70px;
}

.footerTop {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
	gap: 0;
	margin-bottom: 50px;
}

.footerLogo {
	display: block;
	margin-bottom: 50px;
}

.footerInfoItem {
	margin-bottom: 30px;
}

.footerInfoItem div:nth-child(1) {
	font-weight: 600;
	font-size: 12px;
	color: #6C798C;
	margin-bottom: 10px;
}

.footerInfoItem div:nth-child(2) {
	font-weight: 400;
	font-size: 12px;
}

.footerInfo button {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	font-weight: 400;
	font-size: 16px;
	border: 1px solid transparent;
}

.footerInfo button:hover {
	border: 1px solid var(--primeColor);
	background-color: transparent;
	color: var(--primeColor);
}

.footerInfo button:hover svg path {
	fill: var(--primeColor);
}

.footerMenu {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
	gap: 50px;
}

.footerMenu ul li {
	font-weight: 400;
	font-size: 14px;
	margin-bottom: 15px;
}

.footerMenu ul li a {
	color: #6C798C;
}

.footerMenu h3 {
	font-weight: 700;
	font-size: 14px;
	color: #6C798C;
	margin-bottom: 15px;
}

.footerMap {
	margin-bottom: 50px;
}

.footerCopyright p {
	font-weight: 400;
	font-size: 12px;
	color: #6C798C;
	margin-bottom: 15px;
}

/* breadcrumbs */
.breadcrumbs {
	margin-bottom: 30px;
}

.breadcrumbs ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 15px;
}

.breadcrumbs ul li {
	font-weight: 400;
	font-size: 13px;
}

.breadcrumbs ul li:last-child {
	color: #DBAC6C;
}

/* doctorsPage */
.doctorsPageTabs {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	margin-bottom: 50px;
	overflow-x: auto;
}

.doctorsPageTabsItem {
	cursor: pointer;
	font-weight: 400;
	font-size: 16px;
	padding: 8px 19px;
	background-color: var(--bisqueColor);

	white-space: nowrap;
}

.doctorsPageTabsItemActive {
	background-color: var(--primeColor);
	color: #fff;
}

.doctorsPageList {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	margin-bottom: 80px;
	flex-wrap: wrap;
}

.doctorsPageListItem {
	flex: 0 0 calc(33.333% - 7px);
}

/* doctorPage */
.doctorPageHeader {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	gap: 50px;
}

.doctorPageHeaderContent button {
	border: 1px solid transparent;
}

.doctorPageHeaderContent button:hover {
	background-color: transparent;
	color: var(--primeColor);
	border: 1px solid var(--primeColor);
}

.doctorPageHeaderContent button:hover svg path {
	fill: var(--primeColor);
}

.doctorPageHeaderImage {
	flex: 0 0 calc(40% - 25px);
	/* height: 800px; */
}

.doctorPageHeaderImage img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.doctorPageHeaderContent h1 {
	margin-bottom: 10px;
}

.doctorPageHeaderPost {
	font-weight: 400;
	font-size: 16px;
	color: #DBAC6C;
	margin-bottom: 20px;
}

.doctorPageHeaderContentText {
	margin-bottom: 20px;
}

.doctorPageHeaderContentText p,
.doctorPageHeaderContentText ul {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
}

.doctorPageHeaderContentText li {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 10px;
}

/* stocksPage */
.stocksPageSlider {}

.stocksPageSliderItemImage img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.stocksPageSliderItemContent {
	max-width: 494px;
	color: #fff;
	position: absolute;
	top: 60px;
	left: 60px;
	width: 100%;
}

.stocksPageSliderItemContent a {
	background: #DBAC6C;
	padding: 20px;
	color: #fff;
}

.stocksPageSliderItemContent p {
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 10px;
}

.stocksPageSliderItemContent h3 {
	font-weight: 700;
	font-size: 32px;
	line-height: 120%;
	margin-bottom: 50px;
}

.stocksPageSliderItemContent button {
	font-weight: 400;
	font-size: 16px;
	background-color: #DBAC6C;
}

.stocksPageItems {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-direction: row;
	gap: 10px;
	flex-wrap: wrap;
}

/* checkupPage */
.checkupPageItems {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-direction: row;
	gap: 10px;
	flex-wrap: wrap;
}

.checkupPage .checkupItem {
	flex: 0 0 calc(33.333% - 7px);
}

/* pricePage */
.priceListPage {
	margin-bottom: 80px;
}

.priceListPageSearch input {
	width: 100%;
	padding: 16px 21px;

	border: 1px solid #BFD0EA;
	margin-bottom: 10px;
}

.priceListPageContent {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	gap: 50px;
	border: 1px solid #F1F5FB;

	padding: 36px;
}

.priceListPageBlock {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
	gap: 0;
	width: 100%;
}

.priceListPageList {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	gap: 60px;
	width: 70%;
}

.priceListPageListHeader {
	width: 30%;
}

.priceListPageListHeader h2 {
	font-weight: 600;
	font-size: 20px;
}

.priceListPageListItem {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 60px;
	width: 100%;
	border-bottom: 1px solid #F1F5FB;
	padding-bottom: 30px;
}

.priceListPageListItemPrices {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 60px;
}

.priceListPageListItemPrices>div div:nth-child(1) {
	font-weight: 600;
	font-size: 12px;
	margin-bottom: 10px;
	color: #7984A2;
}

.priceListPageListItemPrices>div div:nth-child(2) {
	font-weight: 400;
	font-size: 16px;
	color: var(--primeColor);
}

.priceListPageListItem>div:nth-child(2) {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 60px;
}

.priceListPageListItem button {
	font-weight: 400;
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: 10px;
}

/* contactsPage */
.contactsPage {
	margin-bottom: 80px;
}

.contactsPageContent {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
	gap: 90px;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.contactsPageContentItem {
	flex: 0 0 calc(20% - 72px);
}

.contactsPageContentItem h2 {
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 10px;
}

.contactsPageContentItem p {
	line-height: 150%;
	font-weight: 400;
	font-size: 16px;
	color: var(--primeColor);
}

.contactsPageGet h2 {
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 10px;
}

.contactsPageGet p {
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 50px;
}

.contactsPageGetBtns {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 10px;
}

.contactsPageGetBtns a {
	font-weight: 400;
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	background: transparent;
	color: var(--primeColor);
	border: 1px solid var(--primeColor);

	padding: 10px 40px;
	transition: all 0.3s ease;
}

.contactsPageGetBtns a:hover {
	background: var(--primeColor);
	color: #fff;
}

/* docsPage */
.docsPageItems {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 30px;
	flex-wrap: wrap;
}

.docsPageItem {
	flex: 0 0 calc(33.333% - 20px);
	padding: 26px;
	background: linear-gradient(64.71deg, #F1F5FB 16%, #FFFFFF 83.92%);
}

.docsPageItem div {
	font-weight: 400;
	font-size: 11px;
	color: #7984A2;
	margin-bottom: 15px;
	color: var(--primeColor);
}

.docsPageItem h2 {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 15px;
}

.docsPageItem a {
	display: block;
	width: fit-content;
	font-weight: 400;
	font-size: 16px;
	background: var(--primeColor);
	color: #fff;
	padding: 20px;
	border: 1px solid transparent;
}

.docsPageItem a:hover {
	border: 1px solid var(--primeColor);
	background: transparent;
	color: var(--primeColor);
}

/* aboutPage */
.aboutPageHero {
	background-color: var(--primeColor);
	color: #fff;
	padding: 50px;
}

.aboutPageHero h1 {
	font-weight: 700;
	font-size: 96px;
}

.aboutPageHero h2 {
	font-weight: 600;
	font-size: 36px;
	margin-bottom: 20px;
}

.aboutPageHero p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 30px;
}

.aboutPageButtons {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 10px;
}

.aboutPageButtons button {
	font-weight: 400;
	font-size: 16px;
}

.aboutPageButtons button:nth-child(1) {
	background-color: #DBAC6C;
	border: 1px solid #dbac6c;
	transition: all 0.1s ease;
}

.aboutPageButtons button:nth-child(1):hover {
	background-color: #c7924a;
}

.aboutPageButtons a {
	background-color: var(--primeColor);
	border: 1px solid var(--bisqueColor);
	color: var(--bisqueColor);
	padding: 20px;
	transition: all 0.1s ease;
}

.aboutPageButtons a:hover {
	background-color: #c7924a;
	color: #fff;
}

.aboutPageIntro {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-direction: row;
	gap: 30px;
	flex-wrap: wrap;
	margin-bottom: 80px;
}

.aboutPageItem {
	flex: 0 0 calc(25% - 24px);

	padding: 25px 30px;
	background: var(--bisqueColor);
}

.aboutPageItem div:nth-child(1) {
	font-weight: 400;
	font-size: 20px;
}

.aboutPageItem div:nth-child(2) {
	font-weight: 700;
	font-size: 36px;
}

.aboutPageMission {
	margin-bottom: 80px;
}

.aboutPageMission h2 {
	font-weight: 700;
	font-size: 40px;
	margin-bottom: 30px;
}

.aboutPageMission p {
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 50px;
}

.aboutPageMissionItems {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 10px;
}

.aboutPageMissionItems div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	padding: 26px;

	font-weight: 400;
	font-size: 16px;
	background: linear-gradient(113.56deg, #F1F5FB 34.82%, #FFFFFF 92.77%);
}

.aboutPageTeamItems {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 80px;
}

.aboutPageTeamItem {
	flex: 0 0 calc(33.333% - 20px);
}

.aboutPageCta {
	background: url("../img/cta.png") no-repeat center center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 0;
	padding: 45px 0;
	color: #fff;
	margin-bottom: 80px;
}

.aboutPageCta h2 {
	text-align: center;
	max-width: 600px;
	font-weight: 700;
	font-size: 40px;
	margin-bottom: 10px;
}

.aboutPageCta p {
	text-align: center;
	max-width: 450px;
	font-weight: 400;
	font-size: 20px;
	line-height: 150%;
	margin-bottom: 30px;
}

.aboutPageCtaButtons {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: 10px;
}

.aboutPageCtaButtons button {
	font-weight: 400;
	font-size: 16px;
}

.aboutPageCtaButtons button:nth-child(1) {
	background-color: #DBAC6C;
}

.aboutPageCtaButtons button:nth-child(1):hover {
	background-color: #fff;
	color: #DBAC6C;
}

.aboutPageCtaButtons button:nth-child(1):hover svg path {
	fill: #DBAC6C;
}

.aboutPageCtaButtons button:nth-child(2) {
	background-color: var(--primeColor);
	border: 1px solid transparent;
}

.aboutPageCtaForm {
	max-width: 500px;
	margin: 0 auto;
}

.servicePageHero {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 0;
}

.servicePageHeroContent {

	padding: 113px 50px;
	background: linear-gradient(64.71deg, #F1F5FB 16%, #FFFFFF 83.92%);
}

.servicePageHeroContent h1 {
	font-weight: 700;
	font-size: 40px;
	margin-bottom: 20px;
}

.servicePageHeroContent p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 30px;
}

.servicePageHeroContent button {
	font-weight: 400;
	font-size: 16px;
}

.servicePageAdvItems {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 10px;
}

.servicePageAdvItem {
	flex: 0 0 calc(25% - 20px);
	background: var(--bisqueColor);
	padding: 26px;

}

.servicePageAdvItem h3 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 5px;
}

.servicePageAdvItem p {
	font-weight: 400;
	font-size: 16px;
}

.servicePageInContent {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 0;
}

.servicePageInLeft {
	flex: 0 0 40%;
	background: linear-gradient(64.71deg, #F1F5FB 16%, #FFFFFF 83.92%);
	padding: 26px;

}

.servicePageInLeft ul li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 15px;
}

.servicePageInRight {
	flex: 0 0 60%;
	background: var(--primeColor);

	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 0;
}

.servicePageInRight>div:nth-child(1):nth-child(1) {
	padding: 26px;
}

.servicePageInRight>div:nth-child(1)>div:nth-child(1) {
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 15px;
}

.servicePageInRight>div:nth-child(1)>div:nth-child(2) {
	font-weight: 400;
	font-size: 32px;
	margin-bottom: 15px;
}

.servicePageInRight>div:nth-child(1)>div:nth-child(3) {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 30px;
	color: #85D8C5;
}

.servicePageInRight>div:nth-child(2) {
	line-height: 0;
}

.servicePageInRight button {
	background-color: #DBAC6C;
}

.dirHero {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-direction: row;
	gap: 0;
}

.dirHeroContent {
	/* new */
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-direction: column;
	gap: 0;
	width: 50%;
	padding: 43px 50px;
	background: linear-gradient(64.71deg, #F1F5FB 16%, #FFFFFF 83.92%);
}

.dirHeroContent h1 {
	font-weight: 700;
	font-size: 40px;
	line-height: 140%;
	margin-bottom: 20px;
}

.dirHeroContent p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 30px;
}

.dirHeroContent ul {
	margin-bottom: 30px;
}

.dirHeroContent ul li {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	list-style: disc;
	list-style-position: inside;
}

.dirHeroImage {
	/* height: 425px; */
	width: 50%;
}

.dirHeroImage img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 0 6px 6px 0;
	object-position: top center;
	-o-object-position: top center;
}

.dirButtons {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 10px;
}

.dirButtons button:nth-child(1) {
	background-color: var(--primeColor);
	border: 1px solid transparent;
}

.dirButtons button:nth-child(1):hover {
	border: 1px solid var(--primeColor);
	background-color: transparent;
	color: var(--primeColor);
}

.dirButtons button:nth-child(1):hover svg path {
	fill: var(--primeColor);
}

.dirButtons button:nth-child(2) {
	background-color: #DBAC6C;
}

.dirPlusItems {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 10px;
}

.dirPlusItem {
	flex: 0 0 calc(25% - 8px);

	padding: 26px;
	background: var(--bisqueColor);
}

.dirPlusItem h2 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 5px;
}

.dirPlusItem p {
	font-weight: 400;
	font-size: 16px;
}

.dirDescBox {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
	gap: 0;
}

.dirDescContent {
	flex: 0 0 60%;
	padding-right: 110px;
}

.dirDescContent p {
	font-weight: 400;
	font-size: 24px;
	line-height: 150%;
	margin-bottom: 15px;
}

.dirDescImage {
	flex: 0 0 40%;
	height: 264px;
}

.dirDescImage img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;

}

.dirStepsItems {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
	gap: 0;
	position: relative;
}

.dirStepsItems::after {
	content: "";
	display: block;
	position: absolute;
	top: 25%;
	left: 0;
	transform: translateY(-25%);
	width: 100%;
	height: 1px;
	background: #f1f5fb;
}

.dirStepsItem {
	flex: 0 0 calc(25% - 7px);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 0;
	z-index: 1;
}

.dirStepsItem div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: 0;
	padding: 26px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #DBAC6C;
	color: #fff;
	margin-bottom: 10px;
}

.dirStepsItem h3 {
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
	max-width: 70%;
	text-align: center;
}

.dirDoctors {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	flex-wrap: wrap;
}

.dirDoctorsSlide {
	flex: 0 0 calc(33.333% - 7px);
}

.dirOptionsItems {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
}

.dirOptionsItem {
	background: linear-gradient(113.56deg, #F1F5FB 34.82%, #FFFFFF 92.77%);
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	flex: 0 0 calc(33.333% - 7px);
}

.dirOptionsItem p {
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 20px;
}

.dirOptionsItem div:nth-child(1) {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 36px;
	color: var(--primeColor);
}

.dirOptionsItem div:nth-child(1) img {
	width: 42px;
	height: 42px;
	-o-object-fit: cover;
	object-fit: cover;
	flex-shrink: 0;
}

.dirOptionsItem div:nth-child(4) {
	font-weight: 400;
	font-size: 20px;
	margin-bottom: 30px;
}

.dirOptionsItem h3 {
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 10px;
}

.dirOptionsItem p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
}

.dirOptionsButtons {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 10px;
}

.dirOptionsButtons button:nth-child(1) {
	background-color: var(--primeColor);
	border: 1px solid transparent;
}

.dirOptionsButtons button:nth-child(1):hover {
	border: 1px solid var(--primeColor);
	background-color: transparent;
	color: var(--primeColor);
}

.dirOptionsButtons button:nth-child(1):hover svg path {
	fill: var(--primeColor);
}

.dirOptionsButtons button:nth-child(2) {
	background-color: #DBAC6C;
}

.dirOptionsButtons button:nth-child(2):hover {
	border: 1px solid #DBAC6C;
	background-color: transparent;
	color: #DBAC6C;
}

.dirOptionsButtons button:nth-child(2):hover svg path {
	fill: #DBAC6C;
}

.dirList {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-direction: row;
	gap: 30px;
	background: linear-gradient(113.56deg, #F1F5FB 34.82%, #FFFFFF 92.77%);
	padding: 26px;
}

.dirList div {
	flex: 0 0 calc(33.333% - 20px);
}

.dirList ul {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.dirList ul li {
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 15px;
}

.corporatePage .dirStepsItem {
	flex: 0 0 20%;
}

.corporatePage .dirStepsItem h3 {
	font-weight: 700;
	font-size: 20px;
	line-height: 150%;
	margin-bottom: 10px;
	color: var(--primeColor);
}

.corporatePage .dirStepsItem p {
	font-weight: 400;
	font-size: 16px;
	text-align: center;
}

.surgeonPage .dirPlusItem {
	flex: 0 0 calc(33.333% - 7px);
}

.analysisPage .priceListPageList {
	width: 100%;
	border: 1px solid #F1F5FB;
	padding: 36px;

}

.foreignServicesBox {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-direction: row;
	gap: 0;
}

.foreignServicesContent {
	width: 70%;
}

.foreignServicesImage {
	width: 30%;
}

.foreignServicesImage img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;

}

.foreignPriceTitle {
	margin-bottom: 10px;
}

.foreignPrice p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 50px;
}

.foreignPrice .priceListPageList {
	width: 100%;
	border: 1px solid #F1F5FB;
	padding: 36px;

}

.greenBg {
	background: url("../img/green.png") no-repeat center center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* directionPage */
.directionDesc {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
	gap: 150px;
}

.directionDesc>div {
	flex: 0 0 calc(50% - 75px);
}

.directionDesc p {
	font-weight: 400;
	font-size: 24px;
	line-height: 150%;
}

.directionDesc h3 {
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 10px;
}

.directionDesc ul li {
	/* display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 10px; */
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 11px;
}

.directionOptionsItem {
	flex: 0 0 calc(33.333% - 7px);
}

.directionOptionsPic {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	margin-bottom: 15px !important;
}

.directionOptionsPic h3 {
	margin-bottom: 0;
}

.directionTechBox {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
	gap: 50px;
}

.directionTechBox>div:nth-child(1) {
	width: calc(63% - 25px);
	height: 500px;
}

.directionTechBox>div:nth-child(1) img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	object-position: top center;
	-o-object-position: top center;
}

.directionTechBox>div:nth-child(2) {
	width: calc(37% - 25px);
}

.directionTechBox>div:nth-child(2) h3 {
	font-weight: 400;
	font-size: 24px;
	margin-bottom: 50px;
}

.directionTechBox>div:nth-child(2) ul li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 10px;
	line-height: 150%;
}

.directionTechBox>div:nth-child(2) ul li b,
.directionDesc>div:nth-child(2) ul li b {
	min-width: 180px;
	max-width: 180px;
	flex-shrink: 0;
}

/* modal */
.modal {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.85);
	background-color: #fff;
	z-index: 1000;
	padding: 40px 35px;

	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.modal.active {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.modalContentHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	margin-bottom: 30px;
}

.modalContentHeader h3 {
	font-weight: 700;
	font-size: 24px;
}

.modalContent p {
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 30px;
}

.modalContent form input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #CCD7E6;
	margin-bottom: 10px;
	font-size: 16px;
}

.modalContent form input::placeholder {
	color: #97A6C5;
}

.modalContent form input[type="submit"] {
	font-weight: 400;
	font-size: 16px;
	background-color: var(--primeColor);
	color: #fff;
	width: 100%;
	border: none;
}

.modalFullDesc #modalDirect {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 15px;
	color: #115F4D;
}

.modalFullDesc #modalDesc {
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 15px;
	color: #DBAC6C;
}

.modalFullDesc #modalFullDesc {
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 15px;
}

.modalFullDesc #modalFullDesc p,
.modalFullDesc #modalFullDesc ul li {
	margin-bottom: 10px;
}

.modalFullDesc #modalFullDesc ul li {
	list-style: disc;
	list-style-position: inside;
}

/*# sourceMappingURL=style.css.map */