/* Common Components */
.heading-primary {
	margin-bottom: 40px;
	font-family: "Comfortaa", cursive;
	font-size: 30px;
	font-weight: 700;
	line-height: 38px;
	text-transform: uppercase;
	color: #243570;
	word-wrap: break-word;
}
.heading-primary::after {
	content: "";
	display: block;
	width: 70px;
	height: 2px;
	margin: 20px 0 0;
	background-color: #ff7691;
}

.heading-secondary {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	color: #243580;
}

.heading-tertiary {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	color: #243580;
}

.section {
	margin: 100px 0;
}

.section-alt {
	padding: 80px 0;
	background-color: #f4f4f4;
}

.subsection:not(:last-child) {
	margin: 40px 0;
}

.paragraph {
	font-size: 16px;
	line-height: 24px;
	color: #243580;
}
.paragraph:last-child {
	margin-bottom: 0;
}
.paragraph:first-child{
	margin-top: 30px;
}
.list {
	margin: 10px 0 0 50px;
}
.list__item {
	margin-bottom: 10px;
	line-height: 1.5;
}
.style_disc {
	list-style-type: disc;
}
.style_circle{
	list-style-type: circle;
}
.list__text {
	margin-bottom: 0;
}

/* Basic Button */
.button {
	display: inline-block;
	padding: 10px 30px;
	border-style: none;
	border-radius: 50px;
	background-color: #243580;
	font-size: 12px;
	line-height: 14px;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	color: #fff;
	transition: background-color 0.15s;
}
.button:hover,
.button:focus-visible {
	background-color: #2340bd;
}
.button--pink {
	background-color: #ff7691;
}
.button--pink:hover,
.button--pink:focus-visible {
	background-color: #f36380;
}
.modern-feedback{
margin-bottom: 40px;
}
.button--large {
	padding: 15px 50px;
}
.button--loading {
	background-image: url("../img/icon-loading.svg");
	background-position: center;
	background-repeat: no-repeat;
	color: transparent;
}
.button:disabled {
	background-color: #999;
	cursor: default;
}

/* Container for one or more Buttons */
.button-wrapper {
	margin-top: 40px;
	text-align: center;
}
.button-wrapper--multiple {
	display: flex;
	justify-content: space-between;
	column-gap: 15px;
}

/* Link with Arrow */
.more-arrow {
	position: relative;
	display: inline-block;
	margin-right: 10px;
	border-bottom: 1px solid;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	transition: padding-right 0.15s linear, margin-right 0.15s linear;
}
.more-arrow__price {
	margin-bottom: 15px;
}
.more-arrow:hover {
	padding-right: 10px;
	margin-right: 0;
}
.more-arrow::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -3px;
	width: 4px;
	height: 4px;
	border-width: 1px 1px 0 0;
	border-style: solid;
	transform: rotateZ(45deg);
}

/* Form */
.form__fieldset {
	display: grid;
	gap: 20px 45px;
	border-style: none;
}
.form__label {
	display: inline-block;
	margin-bottom: 5px;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	color: #243580;
}
.form__label--wrapper {
	display: block;
	margin-bottom: 0;
}
.form__label-title {
	display: inline-block;
	margin-bottom: 5px;
}
.form__field {
	width: 100%;
	height: 50px;
	padding: 0 20px;
	border: 1px solid #999;
	border-radius: 5px;
	color: #333;
}
.form__field--select {
	appearance: none;
	background: url("../img/chevron-down-blue-light.svg") right center no-repeat content-box border-box;
}
.form__field:focus {
	outline: 2px solid #ff7691;
	outline-offset: -2px;
}

/* Default Page Components */
.page {
	padding: 100px 0;
}
.page__container {
	display: grid;
	gap: 100px 60px;
}
.page__section:not(:last-child) {
	margin-bottom: 40px;
}
.page__subsection:not(:last-child) {
	margin: 20px 0;
}

/* Countries where we work */
.country-list {
	display: flex;
	gap: 20px;
	margin: 20px 0 0;
	list-style-type: none;
}
.country-list--vertical {
	flex-wrap: wrap;
}
.country-list--horizontal {
	padding: 0 20px;
	margin: 20px -20px 0;
	overflow-x: auto;
	scrollbar-width: none;
}
.country-list--horizontal::-webkit-scrollbar {
	display: none;
}

.country-card {
	flex-shrink: 0;
	max-width: 270px;
	width: 100%;
	min-height: 100px;
	padding: 19px 30px;
	border-radius: 10px;
	background: right 0 / contain no-repeat #f0f0f0;
	image-rendering: -webkit-optimize-contrast;
}
.country-card--donor{
	margin-bottom: 0px;
}
.country-card--ukraine {
	background-image: url("../vw-one-page-child/html/assets/img/flag-ukraine.webp");
}
.country-card--georgia {
	background-image: url("../vw-one-page-child/html/assets/img/flag-georgia.webp");
}
.country-card--greece {
	background-image: url("../vw-one-page-child/html/assets/img/flag-greece.webp");
}
.country-card__title {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	color: #243580;
}
.country-card__button {
	padding: 0 25px;
	line-height: 28px;
}

/* Tiny Slider */
.tns-ovh {
	padding: 0 20px;
	margin: 0 -20px;
}
.tns-controls {
	display: flex;
	column-gap: 7px;
	padding: 6px 7px;
	border: 1px solid #ccc;
	border-radius: 50px;
}
.tns-controls button {
	width: 27px;
	height: 27px;
	border: none;
	border-radius: 50%;
	font-size: 0;
	background: url("/wp-content/themes/vw-one-page/images/chevron-white-left.svg") 46% 48% no-repeat #ccc;
	transition: background-color 0.15s;
}
.tns-controls button:last-child {
	transform: scaleX(-1);
}
.tns-controls button:hover {
	background-color: #243580;
}

/* Banner on Home Page */
.home-banner {
	padding: 200px 0 160px;
	background-image: linear-gradient(180deg, #f4f4f400 5%, #f4f4f4 50%), url("/wp-content/themes/vw-one-page/images/happy-family.webp");
	background-position: 0 0, 75% 0;
	background-size: auto, 150%;
	background-repeat: no-repeat;
}
.home-banner__title {
	margin-bottom: 20px;
	font-family: "Comfortaa", cursive;
	font-size: 28px;
	line-height: 1.2;
	text-transform: uppercase;
	color: #243580;
	word-wrap: break-word;
}
.home-banner__text {
	margin-bottom: 25px;
}

/* The Entire List of Services */
.home-services {
	margin-top: -60px;
}
.home-services__container {
	display: grid;
	gap: 20px;
}
.main-accordion {
	padding: 20px;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 5px 15px #0000001a;
}
.home-services__head {
	position: relative;
	padding-right: 25px;
	margin-bottom: 0;
}
.accordion-title::after {
	content: url("/wp-content/themes/vw-one-page/images/chevron-blue-down.svg");
	position: absolute;
	top: 0;
	right: 0;
	transition: transform 0.3s;
}
.body-accordion {
	contain: layout style paint;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	height: 0;
	opacity: 0;
	overflow: hidden;
}
.home-services__item {
	padding: 0 20px;
	border-radius: 32px;
	line-height: 32px;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	background-color: #f4f4f4;
	color: #243580;
	transition: background-color 0.15s, color 0.15s;
}
.home-services__item:hover,
.home-services__item:focus-visible {
	background-color: #ff7691;
	color: #fff;
}
.main-accordion.open .accordion-title::after {
	transform: scaleY(-1);
}
.main-accordion.open .body-accordion {
	height: auto;
	margin: 20px 0 5px;
	opacity: 1;
}

/* About VittoriaVita */
.home-about__how {
	display: grid;
	row-gap: 25px;
	margin-bottom: 40px;
}
.home-about__text:last-child {
	margin: 0;
}
.home-about__right {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.home-about__stats {
	padding: 0 10px;
	margin-bottom: 0;
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	line-height: 20px;
	color: #999;
}
.home-about__stats:first-child {
	border-right: 1px solid;
}
.home-about__count {
	display: block;
	font-family: "Comfortaa", cursive;
	font-size: 60px;
	line-height: 1.1;
	color: #243580;
}

/* Carousel on Home Page */
.carousel .tns-controls {
	position: absolute;
	top: 0;
	right: 20px;
}
.carousel__heading {
	margin: 30px 0;
	padding-right: 70px;
}
.carousel__body {
	padding-top: 40px;
	padding-bottom: 40px;
}
.carousel__item {
	display: flex;
	flex-direction: column-reverse;
	row-gap: 25px;
}
.carousel__item--boxed {
	justify-content: space-between;
	min-height: 290px;
	padding: 35px 30px;
	border-radius: 20px;
	background-color: #fff;
	box-shadow: 0 5px 15px #0000001a;
	height: 100%;
}
.carousel__head {
	display: flex;
	justify-content: space-between;
}
.carousel__head-inner {
	display: flex;
	column-gap: 15px;
}
.carousel__title {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
}
.carousel__country {
	font-size: 14px;
	line-height: 24px;
	color: #999;
}
.carousel__more-arrow {
	align-self: flex-end;
}
.carousel__excerpt {
	margin: 0;
	font-size: 16px;
	font-style: italic;
	line-height: 1.4;
	color: #243570;
}
.carousel__excerpt--solo {
	text-align: justify;
	-webkit-hyphens: auto;
	hyphens: auto;
}
.carousel__button-wrapper {
	margin-top: 0;
}

/* Latest Blog Posts */
.home-blog__posts {
	display: grid;
	gap: 30px 60px;
}
.home-blog__item {
	display: flex;
	column-gap: 20px;
}
.home-blog__thumb {
	width: 100px;
	height: 100px;
	border-radius: 15px;
	image-rendering: -webkit-optimize-contrast;
	object-fit: cover;
}
.home-blog__title a {
	text-decoration: none;
	color: inherit;
}
.home-blog__title a:hover {
	text-decoration: underline;
}
.home-blog__date {
	margin-bottom: 20px;
	font-size: 12px;
	color: #999;
}

/* Sticky Sidebar */
.sidebar__item {
	display: grid;
	align-content: space-between;
	row-gap: 15px;
	min-height: 301px;
	padding: 120px 35px 35px;
	border-radius: 20px;
	background: center top / cover no-repeat;
	box-shadow: 0 5px 15px #0000001a;
}
.sidebar__item:first-child {
	margin-bottom: 20px;
}
.sidebar__title {
	margin-bottom: 15px;
	font-family: "Comfortaa", cursive;
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
	color: #243570;
}
.sidebar__text {
	margin-bottom: 0;
	line-height: 20px;
}

/* List with Counter */
.numbered-list {
	margin: 0;
	list-style-type: none;
	counter-reset: item;
}
.numbered-list__item {
	position: relative;
	padding-left: 60px;
}
.numbered-list__item:last-child {
	margin-bottom: 0;
}
.numbered-list__item::before {
	counter-increment: item;
	content: counter(item);
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 28px;
	border: 1px solid #ff7691;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 700;
	color: #ff7691;
}
.numbered-list__item:last-child::before {
	background-color: #ff7691;
	color: #fff;
}
.numbered-list__item::after {
	content: url("../vw-one-page-child/html/assets/img/arrow-gray-down.svg");
	position: absolute;
	top: 39px;
	left: 7px;
}
.numbered-list__item:last-child::after {
	display: none;
}

/* SM Programs Grid */
.programs-grid {
	display: grid;
	gap: 20px;
	margin: 20px 0 20px 0;
}

/* SM Programs Slider */
.programs-slider {
	display: flex;
	max-width: 100vw;
	padding: 0 20px 0 80px;
	margin: 20px -20px 20px -80px;
	column-gap: 15px;
	overflow-x: auto;
	scrollbar-width: none;
}
.programs-slider::-webkit-scrollbar {
	display: none;
}
.programs-slider__item {
	flex-shrink: 0;
	width: 56vw;
}

/* SM Program Card */
.program-card {
	display: grid;
	align-content: space-between;
	row-gap: 20px;
	min-height: 240px;
	padding: 20px;
	border: 3px solid #f4f4f4;
	border-radius: 10px;
	text-align: center;
	cursor: pointer;
	transition: border-color 0.15s;
}
.program-card__title {
	margin-bottom: 10px;
	font-family: "Comfortaa", cursive;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	color: #243580;
	transition: color 0.15s;
}
.program-card__text {
	margin-bottom: 0;
	font-size: 14px;
	line-height: 16px;
	color: #999;
}
.program-card__price {
	padding: 6px 0;
	margin-bottom: 20px;
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
	font-family: "Comfortaa", cursive;
	font-weight: 700;
	font-size: 20px;
	color: #243580;
	transition: color 0.15s;
}
.program-card__price strong {
	color: inherit;
}
.program-card__button {
	padding: 0 25px;
	line-height: 28px;
}
.program-card:hover {
	border-color: #ff7691;
}
.program-card:hover .program-card__title,
.program-card:hover .program-card__price {
	color: #ff7691;
}
.program-card:hover .program-card__button {
	background-color: #ff7691;
}
.program-card:hover .program-card__button:hover {
	background-color: #f36380;
}
.programs-link{
	text-align: center;
}
/* SM Programs Cost List */
.programs-cost {
	display: grid;
	gap: 20px 15px;
}
.programs-cost__item {
	border: 3px solid #f0f0f0;
	border-radius: 10px;
}
.programs-cost__head {
	padding: 15px;
	margin: -3px;
	border-radius: 10px;
	background: right 0 / contain no-repeat #f0f0f0;
	text-align: center;
}
.programs-cost__head--ukraine {
	background-image: url("../img/flag-ukraine.webp");
}
.programs-cost__head--greece {
	background-image: url("../img/flag-greece.webp");
}
.programs-cost__head--georgia {
	background-image: url("../img/flag-georgia.webp");
}
.programs-cost__title {
	margin-bottom: 5px;
	font-weight: 400;
	font-size: 16px;
	color: #243580;
}
.programs-cost__range {
	margin: 0;
	font-weight: 700;
	font-size: 14px;
	color: #243580;
}
.programs-cost__body {
	contain: layout style paint;
	height: 0;
	padding: 0 17px;
	opacity: 0;
	overflow: hidden;
}
.programs-cost__value {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	column-gap: 6px;
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 24px;
	color: #243580;
}
.programs-cost__value:last-child {
	margin-bottom: 0;
}
.programs-cost__dotted {
	flex-grow: 1;
	border-bottom: 1px dotted;
}
.programs-cost__item.open .programs-cost__body {
	height: auto;
	margin: 20px 0 17px;
	opacity: 1;
}

/* SM Programs Success Rate */
.success-stats {
	display: grid;
	grid-template-columns: 200px;
	justify-content: center;
	margin-top: 20px;
	gap: 30px 20px;
}
.success-stats__title {
	display: flex;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translate3d(0,-50%,0);
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 150px;
	margin: 0 auto 12px;
	background: 0 0 / contain no-repeat;
	font-family: "Comfortaa", cursive;
	font-weight: 400;
	font-size: 24px;
	color: #ff7691;
}
.success-stats__item__percent{
	position: relative;
	margin: 0 auto 12px;
}
.success-stats__text {
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: #243580;
}

/* Components of SM Success */
.success-component {
	display: grid;
	gap: 20px 25px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.success-component__item {
	padding: 25px 20px;
	border: 2px solid #f4f4f4;
	border-radius: 10px;
	background: right -5px no-repeat content-box border-box;
}
.success-component__item--age {
	background-image: url("../vw-one-page-child/html/assets/img/success-component-age.svg");
}
.success-component__item--eggs {
	background-image: url("../vw-one-page-child/html/assets/img/success-component-eggs.svg");
}
.success-component__item--sperm {
	background-image: url("../vw-one-page-child/html/assets/img/success-component-sperm.svg");
}
.success-component__item--pgd {
	background-image: url("../vw-one-page-child/html/assets/img/success-component-pgd.svg");
}
.success-component__text {
	margin: 0;
}

/* Requirements list for SM */
.requirements-donor {
	margin: 25px 0;;
}
.requirements {
	margin: 0;
	list-style-type: none;
}
.requirements__item {
	padding-left: 60px;
	background: 0 0 no-repeat;
}
.requirements__item--age {
	background-image: url("/wp-content/themes/vw-one-page/images/requirements-age.svg");
}
.requirements__item--child {
	background-image: url("/wp-content/themes/vw-one-page/images/requirements-child.svg");
}
.requirements__item--bmi {
	background-image: url("/wp-content/themes/vw-one-page/images/requirements-bmi.svg");
}
.requirements__item--citizenship {
	background-image: url("/wp-content/themes/vw-one-page/images/requirements-citizenship.svg");
}
.requirements__item--blood {
	background-image: url("/wp-content/themes/vw-one-page/images/requirements-blood.svg");
}
.requirements__item--health {
	background-image: url("/wp-content/themes/vw-one-page/images/requirements-health.svg");
}
.requirements__item--stability {
	background-image: url("/wp-content/themes/vw-one-page/images/requirements-stability.svg");
}
.requirements__item--bad-habits{
	background-image: url("/wp-content/themes/vw-one-page/images/requirements-bad-habits.svg");
}
.requirements__item--milk{
	background-image: url("/wp-content/themes/vw-one-page/images/requirements-milk.svg");
}
.requirements__item--face-woman{
	background-image: url("/wp-content/themes/vw-one-page/images/requirements-face-woman.svg");
}
/* Country select dropdown */
.select-country {
	margin-top: 20px;
}
.select-country__grid {
	display: grid;
	gap: 20px 40px;
}
.select-country__btn {
	height: 50px;
	padding: 0 60px;
	border-radius: 5px;
}

/* Total payout in selected country */
.heading-payments {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	max-width: none;
	padding: 14px 15px;
	margin-bottom: 40px;
	color: #243580;
}
.heading-payments__text {
	margin-right: 10px;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	white-space: break-spaces;
}
.heading-payments__total {
	font-family: "Comfortaa", cursive;
	font-weight: 700;
	font-size: 32px;
	white-space: nowrap;
}

/* List of payments to SM */
.payments-list {
	margin: 0;
	list-style-type: none;
}
.payments-list--ordered {
	counter-reset: item;
}
.payments-list__item {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	column-gap: 15px;
	padding: 5px;
	margin: 0 0 15px 15px;
	border-radius: 10px;
	box-shadow: 0 5px 15px #0000001a;
}
.payments-list__item::before {
	content: "+";
	position: absolute;
	left: -15px;
	width: 30px;
	border: 2px solid #fff;
	border-radius: 50%;
	background-color: #f4f4f4;
	font-weight: 400;
	line-height: 30px;
	text-align: center;
	color: #999;
}
.payments-list__item--ordered::before {
	counter-increment: item;
	content: counter(item);
}
.payments-list__amount {
	padding: 15px 10px 15px 15px;
	border-radius: 6px;
	background-color: #243580;
	font-family: "Comfortaa", cursive;
	font-weight: 400;
	font-size: 18px;
	line-height: 20px;
	text-align: center;
	color: #fff;
}
.payments-list__amount--pink {
	background-color: #ff7691;
}
.payments-list__descript {
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: #243580;
}

/* About Our Team */
.team-about {
	display: grid;
	gap: 40px 20px;
}
.team-about__photo {
	border-radius: 20px;
}

/* Our Team Accordion */
.team-accordion__head {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 15px;
	margin-bottom: 0;
	color: #999;
	transition: color 0.4s;
}
.team-accordion__head::before {
	content: url("../img/chevron-down-blue-small.svg");
	position: absolute;
	top: 9px;
	right: 7px;
	line-height: 0;
	transition: transform 0.4s, filter 0.4s;
}
.team-accordion__head::after {
	content: "";
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #f4f4f4;
	transition: background-color 0.4s;
}
.team-accordion__body {
	contain: layout style paint;
	height: 0;
	padding: 0 20px;
	margin: 0 -20px;
	opacity: 0;
	overflow: hidden;
}
.team-accordion.open .team-accordion__head {
	color: #243580;
}
.team-accordion.open .team-accordion__head::before {
	transform: scaleY(-1);
	filter: brightness(8);
}
.team-accordion.open .team-accordion__head::after {
	background-color: #243580;
}
.team-accordion.open .team-accordion__body {
	height: auto;
	margin: 40px -20px;
	opacity: 1;
}

/* Our Team List */
.team-list {
	display: flex;
	gap: 20px;
	padding: 0 20px;
	margin: 0 -20px;
	list-style-type: none;
	overflow-x: auto;
	scrollbar-width: none;
}
.team-list::-webkit-scrollbar {
	display: none;
}
.team-list__person {
	flex-shrink: 0;
	max-width: 270px;
	width: 85%;
	padding: 0 20px 20px;
	margin: 75px 0 0;
	border: 2px solid #f4f4f4;
	border-radius: 10px;
	text-align: center;
}
.team-list__photo {
	margin: -77px 0 20px;
	border-radius: 50%;
	box-shadow: 0 0 0 5px #fff;
}
.team-list__name {
	margin-bottom: 20px;
}

/* Our Team Obligations */
.team-obligation {
	display: grid;
	gap: 20px 30px;
}
.team-obligation__item {
	padding: 220px 30px 30px;
	border-radius: 20px;
	background: center top / 100% no-repeat #fff;
	box-shadow: 0 5px 15px #0000001a;
}
.team-obligation__item--parents {
	background-image: linear-gradient(#fff0 10%, #fff 60%), url("../img/obligation-parents.webp");
}
.team-obligation__item--mother {
	background-image: linear-gradient(#fff0 10%, #fff 60%), url("../img/obligation-mother.webp");
}
.team-obligation__item--egg-donor {
	background-image: linear-gradient(#fff0 10%, #fff 60%), url("../img/obligation-egg-donor.webp");
}
.team-obligation__title {
	margin-bottom: 20px;
	text-align: center;
}
.team-obligation__button-wrapper {
	padding: 0 30px;
	margin-top: 20px;
}
.team-obligation__button {
	width: 100%;
	padding: 13px 15px;
}

@media screen and (min-width: 1024px) {
	/* Common Components */
	.heading-primary {
		font-size: 36px;
		line-height: 40px;
	}

	.section {
		margin: 120px 0;
	}

	.section-alt {
		padding: 100px 0;
	}

	/* Container for one or more Buttons */
	.button-wrapper--multiple {
		justify-content: center;
		column-gap: 35px;
	}

	/* Form */
	.form__fieldset--2-column {
		grid-template-columns: 1fr 1fr;
		align-items: baseline;
	}

	/* Tiny Slider */
	.tns-controls {
		column-gap: 15px;
		padding: 7px 8px;
	}
	.tns-controls button {
		width: 32px;
		height: 32px;
		background-size: 8px;
	}

	/* Default Page Components */
	.page__container {
		grid-template-columns: minmax(645px, 705px) minmax(280px, 320px);
		justify-content: space-between;
	}

	/* Banner on Home Page */
	.home-banner {
		padding: 250px 0 200px;
		background-image: linear-gradient(90deg, #f4f4f4 40%, #f4f4f400 67%), url("/wp-content/themes/vw-one-page/images/happy-family.webp");
		background-position: 0 0, calc(50% + 340px) bottom;
		background-size: initial;
	}
	.home-banner__title {
		max-width: 550px;
		font-size: 38px;
		line-height: 1.4;
	}
	.home-banner__text {
		max-width: 550px;
		margin-bottom: 35px;
	}

	/* The Entire List of Services */
	.home-services {
		margin-top: -65px;
	}
	.home-services__container {
		grid-template-columns: 1fr 1fr;
	}
	.home-services__group {
		padding: 30px 50px 25px;
		background-repeat: no-repeat;
		background-origin: content-box;
		background-position: right center;
	}
	.home-services__group--surrogacy {
		background-image: url("/wp-content/themes/vw-one-page/images/service-surrogacy.svg");
	}
	.home-services__group--parents-sm {
		background-image: url("/wp-content/themes/vw-one-page/images/service-parents-sm.svg");
	}
	.home-services__group--parents-ivf {
		background-image: url("/wp-content/themes/vw-one-page/images/service-parents-ivf.svg");
	}
	.home-services__group--egg-donor {
		background-image: url("/wp-content/themes/vw-one-page/images/service-egg-donor.svg");
	}
	.home-services__head::after {
		content: none;
	}
	.home-services__body {
		max-width: 340px;
		height: auto;
		margin: 20px 0 5px;
		opacity: 1;
		overflow: visible;
	}

	/* About VittoriaVita */
	.home-about__how {
		grid-template-columns: 1fr 1fr;
		align-items: center;
	}
	.home-about__left {
		max-width: 415px;
	}
	.home-about__stats {
		padding: 0 30px;
		font-size: 14px;
		line-height: 24px;
	}
	.home-about__count {
		margin-bottom: 10px;
		font-size: 84px;
	}

	/* Carousel on Home Page */
	.carousel__item--boxed {
		padding: 35px;
	}
	.carousel__excerpt--solo {
		font-size: 24px;
	}

	/* Latest Blog Posts */
	.home-blog__posts {
		grid-template-columns: 1fr 1fr;
	}
	.home-blog__item {
		align-items: center;
		column-gap: 35px;
	}
	.home-blog__thumb {
		width: 200px;
		height: 200px;
	}

	/* Sticky Sidebar */
	.sidebar__sticky {
		position: sticky;
		top: 20px;
	}

	/* SM Programs Grid */
	.programs-grid {
		grid-template-columns: 1fr 1fr;
	}

	/* SM Programs Slider */
	.programs-slider__item {
		flex-shrink: 1;
	}

	/* SM Programs Cost List */
	.programs-cost {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.programs-cost__body {
		height: auto;
		margin: 20px 0 17px;
		opacity: 1;
		overflow: visible;
	}

	/* SM Programs Success Rate */
	.success-stats {
		grid-template-columns: 200px 200px 200px;
		justify-content: space-between;
	}

	/* Components of SM Success */
	.success-component {
		grid-template-columns: 1fr 1fr;
	}

	/* Country select dropdown */
	.select-country__grid {
		grid-template-columns: 1fr auto;
	}

	/* Total payout in selected country */
	.heading-payments {
		grid-template-columns: 1fr 1fr 1fr;
		padding: 14px 30px;
	}
	.heading-payments__total {
		font-size: 40px;
		text-align: center;
	}

	/* List of payments to SM */
	.payments-list__item {
		grid-template-columns: 1fr 1.5fr;
		column-gap: 40px;
	}
	.payments-list__amount {
		font-size: 22px;
	}

	/* About Our Team */
	.team-about {
		grid-template-columns: 1fr 1fr;
	}
	.team-about__photo {
		justify-self: right;
	}

	/* Our Team Accordion */
	.team-accordion__head {
		color: #243580;
		transition: none;
	}
	.team-accordion__head::before {
		content: none;
	}
	.team-accordion__head::after {
		flex-grow: 1;
		height: 10px;
		border-radius: 10px;
		background-color: #f4f4f4 !important;
		transition: none;
	}
	.team-accordion__body {
		height: auto;
		margin: 40px -20px;
		opacity: 1;
		overflow: visible;
	}

	/* Our Team List */
	.team-list {
		flex-wrap: wrap;
	}

	/* Our Team Obligations */
	.team-obligation {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.team-obligation__item {
		padding-top: 280px;
	}
	.team-obligation__button-wrapper {
		padding: 0 35px;
	}
}

.page-accordion{
	display: grid;
	gap: 20px;
}
.accordion__item{
	cursor: pointer;
}
.accordion__title{
	position: relative;
	padding-right: 25px;
	margin-bottom: 0;
	font-weight: 700;
}
.accordion__text{
	padding: 0 20px;
	font-weight: 400;
	color: #243580;
}