@font-face {
	font-family: "Comfortaa";
	font-weight: 400;
	font-display: fallback;
	src: url("fonts/Comfortaa-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "Comfortaa";
	font-weight: 700;
	font-display: fallback;
	src: url("fonts/Comfortaa-Bold.woff2") format("woff2");
}

@font-face {
	font-family: "Roboto";
	font-weight: 400;
	font-display: fallback;
	src: url("fonts/Roboto-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "Roboto";
	font-weight: 700;
	font-display: fallback;
	src: url("fonts/Roboto-Bold.woff2") format("woff2");
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html {
	touch-action: manipulation;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}

body {
	font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", ui-sans-serif, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #000;
}

input,
textarea {
	width: 100%;
	font-family: inherit;
	font-size: 16px;
	padding: 10px 20px;
	border-radius: 5px;
	border: none;
}

input[type="submit"] {
	width: auto;
	display: inherit;
	color: #fff;
	background: #4f8bce;
	padding: 16px 50px;
	margin: 30px auto 0;
	cursor: pointer;
}

iframe {
	max-width: 100%;
	vertical-align: middle;
	border: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

h2 {
	margin-bottom: 30px;
	font-family: "Comfortaa";
	font-weight: 700;
	font-size: 24px;
	line-height: 35px;
	text-align: center;
	color: #243580;
}

h2 .pink {
	color: #ff7691;
	white-space: nowrap;
}

h3 {
	font-family: "Roboto";
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	color: #243580;
}

p {
	margin: 15px 0;
	font-size: 14px;
	color: #303030;
}

ul {
	margin: 0 0 20px 40px;
	font-size: 14px;
	color: #303030;
}

ul li {
	padding-left: 0;
	margin-bottom: 10px;
	list-style: disc;
	background: none;
}

ul li::marker {
	font-size: 12px;
}

.container {
	position: relative;
	max-width: 1170px;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
}

.pop-up {
	opacity: 0;
	position: fixed;
	background-color: rgb(255 118 145);
	z-index: 99999;
	bottom: 0px;
	width: 100%;
	padding: 50px 0;
	color: #fff;
	font-size: 13px;
	line-height: 13px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	text-align: center;
	border-radius: 15px;
	border-radius: 15px 15px 0px 0px;
	transition: all 1s ease 0s;
	pointer-events: all;
}

.pop-up.fade-in {

	opacity: 1;
	transform: translate(0px, 0%) !important;
}

.pop-up__close {
	background: url(img/close.svg) no-repeat;
	position: absolute;
	top: 13px;
	right: 10px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	border: none;
}

.pop-up__button {
	display: block;
	width: 300px;
	height: 100%;
	margin: 30px auto 0 auto;
	border-radius: 3px;
	font-size: 14px;
	text-transform: uppercase;
	background-color: #243580;
	color: #fff;
	cursor: pointer;
	transition: box-shadow 0.15s, opacity 0.15s;
	padding: 16px 0;
	text-align: center;
	text-decoration: none;
}

.landing_header__social-lang {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	height: fit-content;
}

.landing_header__block {
	margin-bottom: 60px;
	text-align: center;
	display: flex;
	gap: 25px;
	flex-direction: column;
}

.phone {
	padding: 7px 0;
	display: flex;
	gap: 10px;
}

.phone_icon {
	top: 0;
	left: 0;
	display: none;
	width: 28px;
	height: 28px;
	background-image: url(/img/phone_header.svg);
}

.phone a {
	color: #76c75e;
	text-decoration: none;
	font-weight: 700;
}

.lang__lang-switcher {
	margin: 0;
	padding: 0;
	position: relative;
}

.lang ul li {
	list-style-type: none;
	margin-bottom: 0;
	padding: 0;
}

.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;
}

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

.lang ul li a {
	display: block;
	width: 95px;
	height: 40px;
	background-position: 7px 7px;
	background-size: 24px;
	padding: 7px 30px 7px 40px;
	font-size: 15px;
	color: #243580;
	text-transform: uppercase;
	border: 1px solid #ccc;
	border-radius: 50px;
	text-decoration: none;
}

.lang ul li ul.lang__sub-menu a {
	display: block;
	width: 100%;
	height: 40px;
	font-size: 17px;
	text-transform: none;
	background-position: 0 0;
}

.lang__active .link-active::after {
	content: "";
	position: absolute;
	right: 15px;
	top: 15px;
	display: block;
	width: 12px;
	height: 8px;
	background: url("/img/arrow_lang.svg") no-repeat;
}

.lang ul li.lang__sub-menu-first {
	margin-bottom: 20px;
}

.lang ul li.lang__sub-menu-last {
	margin-bottom: 0px;
}

.lang__sub-menu {
	display: none;
	position: absolute;
	top: 40px;
	right: 0;
	width: auto;
	padding: 24px 20px;
	margin: 0;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 20px;
	z-index: 101;
	box-shadow: 0 3px 5px #575656;
}

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

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

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

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

.lizenziy {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px 50px;
}

.lizenziy img {
	width: auto;
	height: auto;
	cursor: zoom-in;
}

.show img {
	opacity: .25;
	pointer-events: none;
}

.active {
	transition: box-shadow .5s linear .5s, top 1s ease-out, left 1s ease-out, transform 1s ease-out, width 1s ease-in, height 1s ease-in;
	box-shadow: 0 0 0 10px #fff;
	filter: drop-shadow(1px 2px 6px #000);
	pointer-events: none;
}

.close {
	position: relative;
	left: 100%;
	height: 20px;
	width: 20px;
	transform: translate(0%, -100%);
	border-radius: 50%;
	box-shadow: 0 0 0 2px #fff, 0 0 2px 2px #000;
	font: bold 20px/20px Arial;
	text-align: center;
	background-color: #000;
	color: #fff;
	pointer-events: auto;
	cursor: pointer;
	transition: 1s linear;
	opacity: 0;
}

.active .close:hover {
	transform: translate(0%, -100%) rotate(.5turn);
	transition: 1s ease;
}

@media screen and (min-width: 1024px) {
	.landing_header__social-lang {
		gap: 25px;
	}

	.phone_icon {
		display: block;
	}

	.landing_header__block {
		flex-direction: row;
		gap: 100px;
	}

	.lang ul li:hover ul.lang__sub-menu {
		display: block;
	}

	.lizenziy {

		grid-template-columns: 1fr 1fr 1fr 1fr;

	}
}

.contact-form {
	padding: 60px 0 70px;
	background-color: #243580;
	position: relative;
	transform: none !important;
	transition: none;
}

.contact-form-fieldset {
	border: none;
}

.contact-form-fieldset-title {
	margin-bottom: 25px;
	font-family: "Comfortaa";
	font-weight: 700;
	font-size: 24px;
	line-height: 35px;
	text-align: center;
	color: #fff;
}

.contact-form-fieldset-input {
	display: block;
	height: 47px;
	margin-bottom: 15px;
	border: 1px solid #bbb;
	border-radius: 3px;
	background-color: transparent;
	color: #fff;
	outline: none;
	transition: border-color 0.15s;
}

.contact-form-fieldset-input:focus {
	border-color: #fff;
}

.contact-form-fieldset-input::placeholder {
	color: #bbb;
	font-size: 14px;
}

.contact-form-fieldset-input:-webkit-autofill {
	box-shadow: inset 0 0 0 50px #243580;
	-webkit-text-fill-color: #fff;
	color: #fff !important;
}

.contact-form-fieldset-submit {
	display: block;
	width: 100%;
	height: 45px;
	padding: 0;
	margin: 30px 0 0;
	border: none;
	border-radius: 3px;
	font: inherit;
	font-size: 14px;
	text-transform: uppercase;
	background-color: #ff7691;
	color: #fff;
	cursor: pointer;
	transition: box-shadow 0.15s, opacity 0.15s;
}

.contact-form-fieldset-submit:hover,
.contact-form-fieldset-submit:focus-visible {
	background-color: #ff7691;
	box-shadow: 0 1.6px 3.6px 0 rgb(0 0 0 / 13%) inset, 0 0.3px 0.9px 0 rgb(0 0 0 / 11%) inset;
	opacity: 0.9;
}

.landing_header {
	padding: 35px 0 350px;
	background-color: #f2f1f0;
	background-image: linear-gradient(180deg, #f2f3f7 52%, #e5eff100 62%), url("img/surrogate-mothers.webp");
	background-position: 0 0, center bottom;
	background-size: auto, contain;
	background-repeat: no-repeat;
}

.landing_header_logo {
	margin-bottom: 60px;
	text-align: center;
}

.landing_header_title {
	font-family: "Comfortaa";
	font-weight: 400;
	font-size: 18px;
	line-height: 32px;
	text-align: center;
	color: #303030;
}

.landing_header_title_span-1 {
	display: inline-block;
	width: 100%;
	font-weight: 700;
	font-size: 25px;
	line-height: 28px;
	color: #243580;
}

.landing_header_title_span-2 {
	display: inline-block;
	font-weight: 700;
	font-size: 74px;
	line-height: 1.25;
	color: #ff7691;
}

.landing_about {
	margin: 100px 0;
}

.landing_about img {
	border-radius: 10px;
}

.landing_payments {
	margin: 100px 0;
}

.landing_payments_item {
	padding: 15px;
	background: #f2f3f7;
	display: flex;
	align-items: center;
	margin: 15px 0;
	gap: 25px;
	justify-content: space-between;
}

.landing_payments_table_title {
	font-family: "Roboto";
	font-weight: 700;
	font-size: 18px;
	line-height: 2;
	color: #243580;
}

.first-column {
	width: 30%;
}

.second-column {
	width: 70%;
}

.payments_pink {
	color: #ff7691;
	font-weight: 700;
}

.landing_payments_grid {
	display: grid;
	margin-top: 30px;
	gap: 20px;
}

.landing_payments_grid_item {
	min-height: 320px;
	padding: 25px;
	border-radius: 10px;
	background-color: #f2f3f7;
}

.landing_payments_grid_item_icon {
	margin-bottom: 20px;
}

.landing_payments_grid_item_text {
	margin-bottom: 0;
}

.landing_video {
	margin: 100px 0;
}

.landing_video_youtube {
	height: auto;
	aspect-ratio: 16 / 9;
}

.landing_reviews {
	margin: 100px 0;
}

.landing_reviews .tns-ovh {
	padding: 0 20px;
	margin: 0 -20px;
}

.landing_reviews_slider_item {
	padding: 25px;
	border: 1px solid #5093a2;
	border-radius: 10px;
	text-align: center;
}

.landing_reviews_slider_item_title {
	margin: 20px 0 0;
	color: #303030;
}

.landing_reviews_slider_item_data {
	font-size: 14px;
	color: #bbb;
}

.landing_demands {
	padding: 100px 0;
	background-color: #f2f3f7;
}

.landing_demands_grid {
	display: grid;
	gap: 20px;
}

.landing_demands_grid_item {
	border: 1px solid #d9d9d9;
	border-radius: 10px;
	background-color: #fff;
	overflow: hidden;
}

.landing_demands_grid_item_wrapper {
	padding: 15px 25px 5px;
}

.landing_demands_grid_item_title {
	margin: 0;
	transition: color 0.4s;
}

.landing_demands_grid_item_text {
	contain: layout;
	height: 0;
	margin: 0;
	opacity: 0;
	overflow: hidden;
}

.landing_demands_grid_item_btn {
	position: relative;
	display: block;
	width: 60px;
	height: 30px;
	margin: 20px auto 0;
	border: none;
	background: none;
}

.landing_demands_grid_item_btn::before {
	content: url("img/chevron-down.svg");
	position: absolute;
	top: 0;
	left: calc(50% - 7px);
	transition: transform 0.4s, filter 0.4s;
}

.landing_demands_grid_item.open .landing_demands_grid_item_title {
	color: #ff7691;
}

.landing_demands_grid_item.open .landing_demands_grid_item_text {
	height: auto;
	margin: 15px 0;
	opacity: 1;
}

.landing_demands_grid_item.open .landing_demands_grid_item_btn::before {
	transform: scaleY(-1);
	filter: invert(59%) sepia(81%) saturate(1307%) hue-rotate(306deg) brightness(103%) contrast(101%);
}

.landing_footer {
	margin: 100px 0;
}

.landing_footer_icon {
	display: block;
	margin-bottom: 20px;
}

.landing_lizenziy {
	padding: 100px 0;
	background-color: #f2f3f7;
}

.form-window {
	contain: strict;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 148800;
	overflow: hidden;
	transition: opacity 0.4s ease-in-out;
}

.form-alert {
	position: absolute;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 450px;
	height: 100%;
	padding: 60px 30px 80px;
	margin: 0;
	background: #243580;
	overflow-y: auto;
}

.form-alert .form-alert-title {
	font-family: "Comfortaa";
	font-weight: 700;
	font-size: 25px;
	line-height: 35px;
}

.form-alert p {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	color: #ffffff;
}

.close-btn {
	display: block;
	width: 100%;
	height: 45px;
	color: #ffffff;
	border: none;
	border-radius: 3px;
	font-size: 14px;
	text-transform: uppercase;
	background-color: #ff7691;
	cursor: pointer;
	transition: background-color 0.15s;
}

.close-btn:hover {
	background-color: #f36380;
}

.social_widget a {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: 0px 15px 30px;
	border-radius: 50%;
	background-color: #ffffff;
	background-repeat: no-repeat;
	background-position: center;
}

.social_widget a.fb {
	background-image: url(/img/facebook.svg);
}

.social_widget a.in {
	background-image: url(/img/instagram.svg);
}

.contact-form-fieldset-option {
	background: #243580;
	color: #ffffff;
	width: 100%;
	padding: 10px 20px;
}

.select-active {}

.contact-form-fieldset-select {
	width: 100%;
	padding: 10px 20px;
	color: #bbb;
}

@media screen and (min-width: 1024px) {
	h2 {
		margin-bottom: 40px;
		font-size: 32px;
		text-align: left;
		line-height: 1.1;
	}

	h3 {
		font-size: 18px;
		line-height: 1.3;
	}

	p,
	ul {
		font-size: 16px;
	}

	.landing_header {
		padding: 35px 0 240px;
		background-image: linear-gradient(90deg, #f2f3f7 50%, #e5eff100 71%), url("img/surrogate-mothers.webp");
		background-position: 0 0, right bottom;
	}

	.landing_header_logo {
		margin-bottom: 210px;
		text-align: left;
	}

	.landing_header_title {
		max-width: 50%;
		font-size: 24px;
		text-align: left;
		line-height: 1.2;
	}

	.landing_header_title_span-1 {
		font-size: 32px;
		line-height: 1.2;
		white-space: nowrap;
	}

	.landing_header_title_span-2 {
		font-size: 98px;
		white-space: nowrap;
	}

	.contact-form {
		padding: 90px 0 100px;
	}

	.contact-form-fieldset {
		max-width: 560px;
	}

	.landing_about {
		margin: 120px 0;
	}

	.landing_about_wrapper {
		max-width: 720px;
	}

	.landing_payments {
		margin: 120px 0;
	}

	.landing_payments_grid {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}

	.landing_video {
		margin: 120px 0;
		text-align: center;
	}

	.landing_video_youtube {
		width: 720px;
		border-radius: 3px;
	}

	.landing_reviews {
		margin: 120px 0;
	}

	.landing_reviews_slider_item {
		padding: 45px;
	}

	.landing_demands {
		padding: 120px 0;
	}

	.landing_demands_grid {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.landing_demands_grid_item_wrapper {
		padding: 30px;
	}

	.landing_demands_grid_item_title {
		color: #243580 !important;
	}

	.landing_demands_grid_item_text {
		height: auto;
		margin: 15px 0 0 !important;
		opacity: 1;
		overflow: visible;
	}

	.landing_demands_grid_item_btn {
		display: none;
	}

	.landing_footer {
		margin: 120px 0;
	}

	.form-alert {
		right: calc(50% - 225px);
		height: auto;
		top: calc(60% - 375px);
		border-radius: 10px;
		box-shadow: 0 5px 20px 10px #00000033;
	}

	.landing_payments_main {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.landing_payments_item {
		width: 50%;
	}
}

.quiz__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-image: url(/img/quiz-bg.webp);
	background-size: 100%;
	background-repeat: space;
	background-position: bottom;
	padding: 25px 40px 80px 40px;
	border-radius: 10px;
	box-shadow: 4px 4px 10px 5px #0003;
}

.quiz__content::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.7);
}

.quiz__title {
	font-size: 20px;
	text-transform: uppercase;
	margin-top: 50px;
	color: #184287;
	z-index: 1;
}

.main-button {
	padding: 16px 32px;
	font-size: 16px;
	line-height: 1;
	z-index: 1;
}

@media screen and (min-width: 768px) {
	.quiz__content {
		background-position: center;
	}

	.quiz__title {
		font-size: 28px;
	}
}

.page-header__block--additional-payment {
	display: block;
	background: #F28D85;
	border-radius: 5px;
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
	color: #ffffff;
	padding: 10px 10px 10px 10px;
	/* додаємо відступ зліва під іконку */
	text-align: center;
	width: fit-content;
	margin-bottom: 25px;
	position: relative;
	/* потрібно для псевдоелемента */
	margin-left: 35px;
}

.page-header__block--additional-payment::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -50px;
	/* відступ від лівого краю */
	transform: translateY(-50%);
	width: 50px;
	/* ширина зображення */
	height: 60px;
	/* висота зображення */
	background-image: url(/img/gift.webp);
	/* шлях до зображення */
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.page-header__block--additional-payment.quiz-header--additional-payment {
	margin-top: 25px;
	margin-bottom: 0px;
}



.quiz__advantages {
	background: linear-gradient(180deg, #ffe0ed 0%, #dfd7ff 100%);
	border-radius: 25px;
	padding: 60px 25px;
	margin: 0 -10px;
}

.advantages__header h2 {
	font-family: "Comfortaa";
	font-weight: 700;
	font-size: 40px;
	color: #174287;
}

.advantages__header p {
	font-family: "Comfortaa";
	font-size: 18px;
	line-height: 1.2;
	color: #303030;
}

.advantages__items {
	display: grid;
	gap: 45px;
}

.advantages__item {
	padding: 120px 15px 0 15px;
	background: center top no-repeat;
}

.advantages__item--title {
	font-size: 24px;
	line-height: 1.2;
	font-weight: 400;
	text-align: center;
	color: #174287;
}

.advantages__item--payments {
	background-image: url(/img/advantages-payments-reborn.svg);
}

.advantages__item--escort {
	background-image: url(/img/advantages-escort-reborn.svg);
}

.advantages__item--insurance {
	background-image: url(/img/advantages-insurance-reborn.svg);
	background-position-x: 48.5%;
}

.advantages__item--support {
	background-image: url(/img/advantages-support-reborn.svg);
}

@media screen and (min-width: 1024px) {
	.advantages__items {
		grid-template-columns: repeat(4, 1fr);
	}

	.advantages__item {
		padding: 120px 0 0 0;
	}
}