:root {
	--vivita-font-size: 16px;
	--vivita-font-family-primary: "Roboto", Sans-serif;
	--vivita-color-first: #ff6b93;
	--vivita-color-second: #1fc0aa;
	--vivita-color-third: #243580;
	--ivmed-color-fourth: #09a7ff;
	--ivmed-color-fifth: #53caff;
	--ivmed-color-fifth-hover: #4eaff9;
	--ivmed-color-primary: #3388FF;
	--ivmed-color-tertiary: #8000C1;
	--vivita-color-grey: #cccccc;
	--vivita-color-white: #ffffff;
}

html {
	scroll-behavior: smooth;
}

/*header
.container {
	position: relative;
	max-width: 1170px;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
}
*/
.main-header__top {
	background: #fcf4eb;
}

.main-header__top>.container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
}

.main-header__phone-paragraph {
	margin: 0;
	color: var(--vivita-color-second);
	text-decoration: underline;
	font-weight: bold;
	padding-bottom: 5px;
}

.main-header__phone--nubmer {
	display: grid;
	grid-template-columns: 90px 1fr;
}

.main-header__phone-link {
	color: var(--vivita-color-second);
	text-decoration: underline;
	font-weight: bold;
	font-size: var(--vivita-font-size);
}

.main-header__phone-link--second {
	grid-column: 2/2;
}

.lang__switcher {
	position: relative;
}

.lang-active {
	display: block;
	width: 100%;
	height: 40px;
	padding: 7px 30px 7px 40px;
	font-size: var(--vivita-font-size);
	color: var(--vivita-color-third);
	border: 1px solid var(--vivita-color-grey);
	border-radius: 50px;
}

.lang-active::after {
	content: "";
	position: absolute;
	right: 15px;
	top: 15px;
	display: block;
	width: 12px;
	height: 8px;
	background: url(/img/arrow_lang.svg) no-repeat;
	transition: transform .4s ease-in-out;
}

.lang-active:hover {
	cursor: pointer;
}

.lang__switcher:hover>.lang__sub-menu {
	display: block;
}

.lang__switcher:hover>.lang-active::after {
	transform: rotateX(180deg);
}

.lang__switcher:after {
	position: absolute;
	top: 100%;
	left: 0;
	display: block;
	width: 100%;
	height: 15px;
	content: "";
}

.lang__switcher.open>.lang-active::after {
	transform: rotateX(180deg);
}

.lang__sub-menu {
	display: none;
	position: absolute;
	top: 50px;
	right: 0;
	padding: 24px 20px;
	background: var(--vivita-color-white);
	border: 1px solid var(--vivita-color-grey);
	border-radius: 20px;
	z-index: 101;
	box-shadow: 0 3px 5px #575656;
}

.lang__switcher.open>.lang__sub-menu {
	display: block;
}

.lang__sub-menu .lang__sub-menu-item:not(:last-child) {
	margin-bottom: 20px;
}

.lang__link {
	display: block;
	width: 95px;
	height: 40px;
	padding: 7px 30px 7px 40px;
	font-size: var(--vivita-font-size);
	color: var(--vivita-color-third);
	border: 1px solid var(--vivita-color-grey);
	border-radius: 50px;
	text-decoration: none;
}

.lang-ru {
	background: url(/img/russia.svg) 7px 7px/24px no-repeat;
}

.lang-en {
	background: url(/img/united-kingdom.svg) 7px 7px/24px no-repeat;
}

.lang-ka {
	background: url(/img/georgia.svg) 7px 7px/24px no-repeat;
}

.main-header__nav>.container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 50px;
	padding: 10px 20px;
}

.main-header__hamburger {
	border: none;
	touch-action: manipulation;
}

.main-header__hamburger-inner {
	top: 50%;
}

.main-header__hamburger-inner,
.main-header__hamburger-inner::before,
.main-header__hamburger-inner::after {
	position: absolute;
	width: 30px;
	height: 3px;
	background-color: var(--vivita-color-third);
	border-radius: 3px;
}

.main-header__hamburger-inner:after,
.main-header__hamburger-inner:before {
	content: "";
	display: block;
	transition-duration: 0.3s, 0.3s;
}

.main-header__hamburger-inner:before {
	top: 10px;
}

.main-header__hamburger-inner:after {
	top: -10px;
}

.main-header__hamburger.is-active .main-header__hamburger-inner {
	background: 0 0;
}

.main-header__hamburger.is-active .main-header__hamburger-inner:before {
	top: 0;
	transform: rotate(45deg);
}

.main-header__hamburger.is-active .main-header__hamburger-inner:after {
	top: 0;
	transform: rotate(-45deg);
}

@media screen and (max-width: 1024px) {
	.main-header__menu {
		position: fixed;
		top: 20%;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
		background-color: var(--vivita-color-white);
		transition: transform 0.3s ease 0s;
		overflow: hidden;
		transform: translate(-100%, 0px);
	}

	.main-header__menu.is-active {
		transform: translate(0%, 0px);
	}
}

@media screen and (min-width: 1024px) {
	.main-header__navigation {
		order: 1;
		flex-grow: 1;
	}

	.main-header__hamburger {
		display: none;
	}

	.main-header__list {
		grid-template-columns: 1fr 1fr;
		padding: 0;
		text-align: left;
	}
}

.main-header__list {
	display: grid;
	gap: 0px 25px;
	margin: 0;
	text-align: center;
}

.main-header__list-item {
	list-style-type: none;
}

.main-header__list-link,
.footer__policy {
	text-decoration: none;
	font-size: 18px;
	color: var(--vivita-color-third);
	font-weight: 700;
	white-space: nowrap;
}

.main-header__list-link:hover,
.footer__policy:hover {
	color: var(--vivita-color-first);
}

.main-button {
	display: block;
	order: 2;
	width: fit-content;
	max-width: 100%;
	height: fit-content;
	border-radius: 50px;
	background-color: #1bc494;
	color: var(--vivita-color-white);
	font-weight: 700;
	font-size: 16px;
	text-transform: none;
	text-decoration: none;
	cursor: pointer;
	background-image: linear-gradient(110deg, #1fc0aa, rgba(105, 213, 67, .25));
	transition: color .2s ease-in, background-color .2s ease-in, border-color .2s ease-in, box-shadow .2s ease-in, -webkit-box-shadow .2s ease-in;
}

.main-button:hover {
	background-color: var(--vivita-color-first);
	background-image: linear-gradient(0deg, transparent, transparent);
}

.main-header__button {
	padding: 12px 24px;
	margin: 0 auto;
	line-height: 1;
	text-align: center;
}

.main-header__strip {
	background: var(--vivita-color-first);
	padding: 15px;
}

.main-header__paragraph {
	font-weight: 700;
	font-size: 18px;
	margin: 0;
	text-align: center;
}

.blue {
	color: var(--vivita-color-third);
}

/*header content*/
.page-header {
	padding: 90px 0;
	background-image: linear-gradient(90deg, #f2f3f7 50%, #e5eff100 140%), url(img/vittoriavita_main.webp);
	background-position: -115px 0px;
	background-size: 130%, 240%;
	background-repeat: no-repeat;
	margin-bottom: 100px;
}

.page-header_title {
	color: var(--vivita-color-third);
	font-size: 38px;
	line-height: 1.5;
	text-align: center;
}

.page-header_title-span {
	display: block;
	color: var(--vivita-color-first);
}

.page-header__paragraph {
	font-size: 24px;
	font-weight: 700;
	color: var(--vivita-color-third);
	display: block;
	margin-bottom: 25px;
}

.requirements {
	margin: 0;
}

.requirements__item {
	list-style-type: none;
}

.requirements__item::before {
	content: url("/img/checkmark_checked_icon.svg");
	position: absolute;
}

.requirements__paragraph {
	font-size: 16px;
	color: var(--vivita-color-third);
	margin: 0 0px 20px 30px;
}

.page-header__button {
	padding: 16px 32px;
	line-height: 1;
}

@media screen and (min-width: 1024px) {
	.page-header {
		padding: 100px 0px;
		background-image: linear-gradient(90deg, #f2f3f7 0%, #e5eff100 140%), url(img/vittoriavita_main.webp);
		background-position: 50% 50%;
		background-size: 100%;
	}

	.page-header_title {
		font-size: 68px;
		text-align: center;
	}

	.page-header__block {
		padding: 25px 0;
	}

	.page-header__paragraph {
		font-size: 28px;
	}
}

.page-title {
	font-size: 34px;
	text-align: center;
}

.page-section {
	margin: 100px 0;
}

/*stage*/
.page-stage__wrapper {
	display: flex;
	flex-direction: column;
	gap: 50px 0;
}

.page-stage__step {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.page-stage__picture {
	position: relative;
	padding: 50px 0;
}

.page-stage__picture:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: #ffd78a;
	width: 3px;
}

.page-stage__step:first-child .page-stage__picture:before {
	top: 50%;
}

.page-stage__step:last-child .page-stage__picture:before {
	bottom: 50%;
}

.page-stage__img {
	border-radius: 50%;
	max-width: 120px;
	height: 120px;
	object-fit: cover;
}

.page-stage__title {
	font-size: 24px;
	line-height: 1.5;
}

.page-stage__paragraph {
	color: #7b7b7b;
}

.page-stage__button {
	padding: 12px 24px;
	line-height: 1;
}

@media screen and (min-width: 1024px) {
	.page-title {
		font-size: 42px;
	}

	.page-stage__img {
		max-width: 170px;
		height: 170px;
	}

	.page-stage__content {
		width: 50%;
	}
}

/*cost*/
.page-cost {
	background: linear-gradient(#def6f3, #ffffff);
	padding-top: 100px;
}

.page-cost__paragraph {
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 50px;
}

.page-cost__table {
	background: linear-gradient(#6064ae, #414580);
	width: 100%;
	margin-bottom: 50px;
}

.page-cost__row {
	display: grid;
	grid-template-columns: 1fr;
	padding: 50px 20px 50px 20px;
	gap: 25px;
	border-bottom: 1px solid white;
}

.page-cost__row:last-child {
	border-bottom: none;
}

.page-cost__td-icon {
	height: 70px;
	width: 70px;
	justify-self: center;
}

.page-cost__td-icon--embrion {
	background: url(/img/cost-embrion.svg) no-repeat;
	background-size: 100%;
}

.page-cost__td-icon--uzd {
	background: url(/img/cost-uzd.svg) no-repeat;
	background-size: 100%;
}

.page-cost__td-icon--monthly-payments {
	background: url(/img/cost-monthly-payments.svg) no-repeat;
	background-size: 100%;
}

.page-cost__td-icon--childbirth {
	background: url(/img/cost-childbirth.svg) no-repeat;
	background-size: 100%;
}

.page-cost__td-price {
	text-align: center;
}

.page-cost__title {
	color: #ffffff;
	font-size: 24px;
}

.page-cost__price {
	color: #ff6b93;
	font-size: 24px;
	font-weight: 700;
}

.white {
	border-right: 1px solid #ffffff;
	padding-right: 5px;
}

.aqua {
	color: #87d2f0;
}

.page-cost__sub-title {
	font-size: 24px;
	text-align: center;
	padding: 50px 0;
}

.page-cost__list {
	margin: 0;
}

.page-cost__item {
	list-style-type: none;
	display: flex;
	margin-bottom: 50px;
}

.circle-icon {
	display: flex;
	justify-content: center;
	margin: 0 7.5px;
	max-width: 100%;
	width: 50px;
	height: 50px;
	padding: 12px;
	border-radius: 50%;
	background: #ffd78a;
}

.circle-icon-svg {
	width: inherit;
}

.page-cost__item-icon--twins {
	background: url(/img/cost-twins.svg) no-repeat;
	background-size: 100%;
}

.page-cost__item-icon--caesarean {
	background: url(/img/cost-caesarean-section.svg) no-repeat;
	background-size: 100%;
}

.page-cost__item-icon--repeat {
	background: url(/img/cost-repeat.svg) no-repeat;
	background-size: 100%;
}

.page-cost__item-icon--nanny {
	background: url(/img/cost-nanny.svg) no-repeat;
	background-size: 100%;
}

.page-cost__block {
	display: flex;
	flex-wrap: wrap;
}

.page-cost__text {
	font-size: 24px;
	color: #4a4e91;
}

.page-numbers.dots {
	flex: 1 0;
	border-bottom: 1px dotted #000;
	height: 1em;
	margin: 10px 0.4em;
	align-self: end;
}

.page-cost__price-add {
	color: #ff6b93;
	font-size: 24px;
}

.page-cost__additional-text {
	color: #4d4d4d;
	font-style: italic;
}

.pink {
	color: #ff6b93;
	font-weight: 700
}

.page-cost__button {
	padding: 8px 32px;
	margin: 0 auto;
}

@media screen and (min-width: 1024px) {

	/*cost*/
	.page-cost__row {
		grid-template-columns: 1fr 1fr 1fr;
		border-bottom: 1px solid white;
	}

	.page-cost__row:last-child {
		border-bottom: none;
	}

	.circle-icon {
		width: 70px;
		height: 70px;
	}

	.page-cost__sub-title {
		font-size: 28px;
	}

	.page-cost__item {
		align-items: center;
		justify-content: space-between;
		gap: 25px;
	}

	.page-cost__content {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}

	.page-cost__text {
		font-size: 28px;
	}
}

/*guarantee*/
.page-guarantee {
	background: #fcf4eb;
	padding-top: 100px;
	padding-bottom: 50px;
	margin: 100px 0 0 0;
}

.paragraph-aqua {
	color: #87d2f0;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	margin-bottom: 25px;
}

.grid-block {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	margin-bottom: 50px;
}

.grid-item {
	display: flex;
	gap: 25px;
}

.page-guarantee__img {
	min-width: 50px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.page-guarantee__text {
	margin: 0;
}

.page-guarantee__button {
	padding: 8px 32px;
	margin: 0 auto;
}

.page-wave {
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100px;
}

@media screen and (min-width: 1024px) {

	/*guarantee*/
	.grid-block {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.page-guarantee__img {
		min-width: 70px;
		width: 70px;
		height: 70px;
	}
}

/*requirements*/
.page-requirements__img {
	min-width: 50px;
}

.page-requirements__icon--age {
	background: url(/img/requirements-age.svg) no-repeat;
	background-size: 100%;
}

.page-requirements__icon--habits {
	background: url(/img/requirements-bad-habits.svg) no-repeat;
	background-size: 100%;
}

.page-requirements__icon--nationality {
	background: url(/img/requirements-nationality.svg) no-repeat;
	background-size: 100%;
}

.page-requirements__icon--rhesus {
	background: url(/img/requirements-rhesus-factor.svg) no-repeat;
	background-size: 100%;
}

.page-requirements__icon--diseases {
	background: url(/img/requirements-diseases.svg) no-repeat;
	background-size: 100%;
}

.page-requirements__icon--child {
	background: url(/img/requirements-healthy-child.svg) no-repeat;
	background-size: 100%;
}

.page-requirements__title {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.2;
}

.page-requirements__button {
	padding: 8px 32px;
	margin: 0 auto;
}

@media screen and (min-width: 1024px) {

	/*requirements*/
	.page-requirements {
		background: url(img/requirements-background.webp) 48.75% 12.06% / cover no-repeat;
	}

	.page-requirements__img {
		min-width: 70px;
	}
}

/*reviews*/
.page-reviews {
	background: linear-gradient(0deg, #ffffff 0%, #fcf4eb 100%);
}

.reviews-pagination {
	position: relative;
	margin: 50px 0 25px 0;
	display: flex;
	justify-content: center;
	gap: 30px;
}

.swiper-pagination-bullet {
	cursor: pointer;
	background: #4a4e91;
	width: 10px;
	height: 10px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0.25;
}

.swiper-pagination-bullet-active {
	opacity: 1;
}

.reviews-button-prev,
.reviews-button-next {
	position: absolute;
	z-index: 1;
	border: none;
	border-radius: 50%;
	top: 50%;
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.reviews-button-prev {
	background: url(/img/reviews-arrow-previous.svg) no-repeat;
}

.reviews-button-next {
	background: url(/img/reviews-arrow-next.svg) no-repeat;
	right: 0;
}

.page-reviews__slider-item {
	background: #ffd78a;
	padding: 35px 45px;
	min-height: 650px;
}

.page-reviews__slider-picture {
	text-align: center;
}

.page-reviews__slider-img {
	border-radius: 50%;
	width: 70px;
	height: 70px;
	object-fit: cover;
}

.page-reviews__title {
	font-size: 24px;
	text-align: center;
	margin-top: 20px;
}

.page-reviews__text {
	color: #4a4e91;
}

@media screen and (min-width: 1024px) {
	.page-reviews__title {
		font-size: 28px;
	}
}

/*video*/
.page-video {
	background: #4a4e91;
	padding: 100px 0;
	position: relative;
}

.page-video__background {
	background: url(/img/page-video-background.svg) no-repeat;
	display: block;
	position: absolute;
	width: 100%;
	z-index: 999;
	height: 88px;
}

.page-video__background--top {
	transform: rotateX(180deg);
	top: 0;
}

.page-video__background--bottom {
	bottom: 0;
}

.page-video__container {
	display: grid;
}

.page-video__youtube {
	padding-bottom: 75px;
	height: 250px;
	width: 100%;
}

.page-video__title {
	color: #ffd78a;
	font-size: 34px;
	margin-bottom: 0;
	line-height: 1.3;
}

.page-video__paragraph {
	color: #ffffff;
	font-size: 20px;
	margin-bottom: 50px;
}

.page-video__paragraph--orange {
	color: #ffd78a;
	text-align: center;
}

.page-video__button {
	background: #ffffff;
	color: #4a4e91;
	padding: 8px 32px;
	margin: 0 auto;
}

.page-video__button:hover {
	color: var(--vivita-color-white);
}

/*advantages*/
.page-advantages {
	margin: 100px 0;
}

.page-advantages__list {
	margin: 0;
}

.page-advantages__list-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.page-advantages__list-item:not(:last-child) {
	margin-bottom: 25px;
}

.page-advantages__img {
	display: flex;
	min-width: 50px;
	width: 50px;
	height: 50px;
	padding: 12px;
	border-radius: 50%;
	background: #4a4e91;
}

.page-advantages__img-svg {
	width: inherit;
}

.page-advantages__img-calendar {
	background: url(/img/advantages-calendar.svg) no-repeat;
	background-size: 100%;
}

.page-advantages__img-mom {
	background: url(/img/advantages-mom.svg) no-repeat;
	background-size: 100%;
}

.page-advantages__img-cost {
	background: url(/img/advantages-cost.svg) no-repeat;
	background-size: 100%;
}

.page-advantages__img-clock {
	background: url(/img/advantages-clock.svg) no-repeat;
	background-size: 100%;
}

.page-advantages__img-service {
	background: url(/img/advantages-service.svg) no-repeat;
	background-size: 100%;
}

.page-advantages__img-medicine {
	background: url(/img/advantages-medicine.svg) no-repeat;
	background-size: 100%;
}

.page-advantages__img-repeat {
	background: url(/img/advantages-repeat.svg) no-repeat;
	background-size: 100%;
}

.page-advantages__text {
	color: #4a4e91;
	font-weight: 500;
	font-size: 24px;
}

/*legal*/
.page-legal {
	background: var(--vivita-color-third);
	padding: 100px 15px;
	border-bottom: 1px solid #ffffff;
}

.page-legal__container {
	background: #ffffff;
	padding: 25px;
}

.page-legal__title {
	text-align: left;
	line-height: 1.5;
}

.page-legal__list {
	margin: 0 20px;
}

.page-legal__list-item::marker {
	font-size: 24px;
}

/*footer*/
.page-footer__container {
	display: flex;
	flex-direction: column;
}

.page-footer__column {
	display: flex;
	flex-direction: column;
}

.page-footer__logo {
	width: 250px;
	margin: 20px 0;
}

.page-footer__title {
	color: #87d2f0;
	font-size: 24px;
	margin: 15px 0;
}

.page-footer__text {
	color: #8f9093;
	font-size: 16px;
	margin-bottom: 15px;
}

.page-footer__paragraph {
	color: #8f9093;
	font-size: 18px;
}

.page-footer__footer-bottom {
	color: #4a4e91;
	font-size: 14px;
	text-align: center;
	padding: 20px 15px 15px;
}

.buttonUp {
	overflow: hidden;
	opacity: 1;
	cursor: pointer;
	position: fixed;
	bottom: 25px;
	right: 25px;
	background-color: var(--vivita-color-third);
	border-radius: 100px;
	transform: translateY(0);
	transition: all 0.4s ease-in;
	-o-transition: all 0.4s ease-in;
	-webkit-transition: all 0.4s ease-in;
	-moz-transition: all 0.4s ease-in;
	box-shadow: 0px 0px 0px 2px rgb(0 0 0 / 30%);
}

.buttonUp__icon:before {
	content: "";
	display: block;
	background: url(img/chevron-up.svg) center 20px no-repeat;
	width: 50px;
	height: 50px;
}

.buttonUp__hide {
	display: none;
}

.buttonUp__hiding {
	opacity: 0;
	transform: translateY(100px);
}

.buttonUp:hover {
	background-color: var(--vivita-color-first);
	color: #fff;
}

@media screen and (min-width: 1024px) {

	/*video*/
	.page-video__background {
		height: 88px;
	}

	.page-video__container {
		grid-template-columns: 60% 1fr;
		gap: 25px;
	}

	.page-video__youtube {
		height: 100%;
	}

	.page-video__title {
		font-size: 42px;
	}

	/*advantages*/
	.page-advantages__list-item {
		align-items: center;
	}

	.page-advantages__img {
		min-width: 70px;
		width: 70px;
		height: 70px;
	}

	.page-advantages__text {
		font-size: 28px;
	}

	.page-advantages__content {
		padding: 25px 200px;
	}

	/*legal*/
	.page-legal {
		padding: 100px 200px;
	}

	.page-legal__container {
		padding: 50px;
	}

	/*footer*/
	.page-footer {
		background: url(img/footer-background.webp) 48.75% 12.06% / cover no-repeat;
	}

	.page-footer__container {
		flex-direction: row;
		gap: 25px;
	}

	.page-footer__column--one {
		width: 33%;
	}

	.page-footer__title {
		font-size: 28px;
	}

	.page-footer__footer-bottom {
		text-align: right;
	}
}

.page-footer__contanct {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.fb:hover>span {
	background: url("/img/fb_hover.svg") !important;
	background-size: auto;
}

.insta span:hover {
	background: url("/img/insta_hover.svg") !important;
	background-size: auto;
}

.soc span {
	width: 37px;
	height: 37px;
	display: inline-block;
	font-size: 0;
	margin-right: 10px;
}

.page-text__title {
	color: var(--vivita-color-third);
	margin: 40px 0 15px 0;
	word-break: auto-phrase;
	hyphens: auto;
}
.main-header__contacts {
    display: flex;
    align-items: center;
    gap: 15px;
}