@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-Regular.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-Bold.woff2') format('woff2');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-ExtraBold.woff2') format('woff2');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

a {
	text-decoration: none;
}

ul {
	padding: 0;
	margin: 0;
}

h1 {
	margin: 0;
}

li {
	list-style: none;
}

body {
	font-family: 'Outfit', sans-serif;
	font-weight: 400;
	margin: 0 !important;
	background-color: #F4F3EE !important;
	color: #1F212A;
}

.container,
body.privacy-policy #primary {
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 15px;
}

@media (min-width: 1440px) {
	.container {
		padding: 0;
	}
}

.timer {
	padding: 14px 0;
	background-color: #1F212A;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	color: #FFFFFF;
	font-size: 14px;
}

.timer .count {
	background-color: #696969;
	padding: 0 4px;

	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

header {
	background-color: #F4F3EE;
}

header:has(.header-body.fixed) .container {
	height: 71px;
}

.header-body {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-body.fixed {
	position: fixed;
	top: 0;
	width: 100%;
	background: white;
	padding: 10px 15px;
	z-index: 1000;
	left: 50%;
	height: 71px;
	max-width: 1340px;
	transform: translateX(-50%);
}

.header-body.fixed::before,
.header-body.fixed::after {
	content: ' ';
	position: absolute;
	top: 0;
	background-color: #fff;
	height: 71px;
	width: 100%;
}

.header-body.fixed::before {
	left: -100%;
}

.header-body.fixed::after {
	right: -100%;
}

.logo {
	display: none;
}

@media (min-width: 766.98px) {
	.logo {
		display: block;
	}

	.logo-mini {
		display: none;
	}
}

.menu-btn {
	display: flex;
	align-items: center;
	gap: 16px;
}

.menu {
	display: flex;
}

.menu a {
	position: relative;
	display: inline-block;
	padding: 18px 16px;
	font-weight: 500;
	font-size: 14px;
	color: #1F212A;
	transition: all .2s;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
}

@media (min-width: 766.98px) {
	.menu a {
		font-size: 14px;
		padding: 25px 16px;
	}
}

.menu a:hover {
	background-color: #dcdcdc;

}

.menu a:hover::after {
	width: 100%;
}

.menu .current-menu-item a::after,
.menu a::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	width: 0;
	height: 3px;
	background-color: #661D86;
}

.menu .current-menu-item a::after {
	width: 100%;
}

.main-screen {
	padding: 40px 0;
	/* background-image: url(/wp-content/themes/altsheimer-clinic/assets/img/main-bg.webp); */
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: #fff;
	/* height: 100vh; */
	max-height: 878px;
}

@media (min-width: 766.98px) {
	.main-screen {
		padding: 435px 0 116px;
		height: auto;
	}
}

.main-screen .container {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: column;
}

.main-screen h1 {
	font-size: 56px;
	max-width: 428px;
	line-height: 1.2;
}

@media (min-width: 766.98px) {
	.main-screen h1 {
		font-size: 76px;
	}
}

.subtitle {
	margin-top: 42px;
	font-weight: 700;
	max-width: 428px;
}

.event {
	/* max-width: 428px; */
	padding: 8px;
	margin-top: 10px;
	backdrop-filter: blur(16px);
	width: fit-content;
	background: #FFFFFF;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
}

.main-screen .btn {
	margin-top: 16px;
}

.btn,
.form form input[type='submit'] {
	display: inline-block;
	font-size: 14px;
	color: #FFFFFF;
	background-color: #661D86;
	padding: 8px 32px;
	border: 1px solid #661D86;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	cursor: pointer;
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
}

.btn:visited {
	color: #fff;
}

.btn:hover,
.form form input[type='submit']:hover {
	background-color: #470863;
}

@media (min-width: 766.98px) {

	.btn,
	.form form input[type='submit'] {
		font-size: 16px;
	}
}

.btn.lite {
	background-color: transparent;
	border: 1px solid #661D86;
	color: #661D86;
	padding: 5px 20px;
}

.btn.lite:hover {
	border-color: #661D86;
	background-color: #F6E8FF;
}

@media (min-width: 766.98px) {
	.btn.lite {
		padding: 7px 31px;
	}
}

.text-block {
	background-color: #EBE8E1;
	padding: 40px 0;
}

@media (min-width: 766.98px) {
	.text-block {
		padding: 102px 0;
	}

	.text-block .title-section {
		max-width: 630px;
	}
}

.title-section {
	color: #1F212A;
	font-weight: bold;
	font-size: 36px;
	line-height: 1.3;
}

@media (min-width: 766.98px) {
	.title-section {
		font-size: 56px;
		line-height: 1.5;
	}
}

.text {
	font-size: 16px;
	line-height: 1.5;
	color: #1F212A;
}

@media (min-width: 766.98px) {
	.text {
		font-size: 18px;
		line-height: 1.6;
	}
}

.quote {
	padding: 80px 0;
	background-color: #1F212A;
}

@media (min-width: 766.98px) {
	.quote {
		padding: 109px 0;
	}
}

.quote-text {
	color: #fff;
	font-size: 22px;
	line-height: 1.4;
	text-align: center;
	margin: 0 auto;
}

@media (min-width: 766.98px) {
	.quote-text {
		font-size: 32px;
		line-height: 1.6;
		max-width: 48%;
	}
}

.section-title {
	/* background-image: url(/wp-content/themes/altsheimer-clinic/assets/img/bg-2.webp); */
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding-top: 150px;
}

@media (min-width: 766.98px) {
	.section-title {
		padding-top: 600px;
	}
}

.title-why {
	position: relative;
	top: -20px;
	left: 50px;
	width: 80%;
	color: #fff;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.4;
}

@media (min-width: 766.98px) {
	.title-why {
		/* width: 100%; */
		top: -78px;
		font-size: 70px;
	}
}

.cards {
	display: grid;
	grid-template-columns: 1fr;
	max-width: 1440px;
	margin: auto;
	gap: 1px;
	background-color: #D2CDC1;
	border-left: 1px solid #D2CDC1;
	border-right: 1px solid #D2CDC1;
}

@media (min-width: 766.98px) {
	.cards {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1023.98px) {
	.cards {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.card {
	padding: 15px;
	/* height: 250px; */
	background-color: #F4F3EE;
}

@media (min-width: 766.98px) {
	.card {
		padding: 50px;
		/* height	: 360px; */
	}
}

.point {
	margin-top: 30px;
	width: 12px;
	height: 12px;
	background-color: #9524CC;
}

.card .title {
	margin-top: 48px;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.3;
	color: #1F212A;
}

.card .text {
	margin-top: 12px;
	opacity: 75%;
	color: #000;
}

.themes>img {
	width: 100%;
}

.themes-content {
	margin-top: -40px;
	position: relative;
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
	background-color: #F4F3EE;
	padding-bottom: 65px;
}

.themes-header {
	padding-top: 25px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: column;
	gap: 20px;
}

@media (min-width: 766.98px) {
	.themes-header {
		padding-top: 65px;
		align-items: center;
		flex-direction: row;
		gap: 0px;
	}
}

.themes-header a {
	color: #fff;
	font-size: 14px;
	padding: 13px 24px;
}

.themes-list {
	padding-top: 30px;
}

@media (min-width: 766.98px) {
	.themes-list {
		padding-top: 45px;
	}
}

.themes-list>div {
	position: relative;
	font-size: 18px;
	line-height: 1.4;
	color: #1F212A;
	padding-left: 37px;
	padding-bottom: 8px;
	border-bottom: 1px solid #D2CDC1;
}

@media (min-width: 766.98px) {
	.themes-list>div {
		font-size: 24px;
		line-height: 1.5;
		padding-bottom: 12px;
	}
}

.themes-list>div::before {
	position: absolute;
	content: '';
	width: 5px;
	height: 5px;
	background-color: #1F212A;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	left: 16px;
	top: 35%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}

.themes-list>div+div {
	margin-top: 22px;
}

@media (min-width: 766.98px) {
	.themes-list>div+div {
		margin-top: 32px;
	}
}

.slider {
	padding: 50px 0;
	background-color: #661D86;
	color: #fff;
}

@media (min-width: 766.98px) {
	.slider {
		padding-top: 67px;
		padding-bottom: 85px;
	}
}

.slider .container {
	/* padding: 0; */
}

.slider-title {
	font-size: 28px;
	font-weight: 700;
	width: 100%;
	padding-bottom: 30px;
	border-bottom: 1px solid #D2CDC1;
}

.swiper {
	width: 100%;
	height: fit-content;
	max-width: 1340px;
	padding-bottom: 60px;
	padding: 0 15px 60px 15px;
}

@media (min-width: 766.98px) {
	.swiper {
		padding: 0 15px 0 15px;
	}
}

@media (min-width: 1439.98px) {
	.swiper {
		padding: 0;
	}
}

.swiper-slide {
	margin-top: 16px;
}

.title-slide {
	font-size: 20px;
	font-weight: 800;
	line-height: 1.5;
}

.text-slide {
	margin-top: 16px;
	font-size: 20px;
	line-height: 1.6;
}

.date-time {
	margin-top: 16px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
}

.slider .swiper-button-prev {
	right: auto;
	left: 15px;
	top: auto;
	bottom: 0;
}

@media (min-width: 766.98px) {
	.slider .swiper-button-prev {
		right: 48px;
		left: auto;
		top: 90%;
	}
}

.slider .swiper-button-next {
	right: 15px;
	left: auto;
	top: auto;
	bottom: 0;
}

@media (min-width: 766.98px) {
	.slider .swiper-button-next {
		/* right: 48px;
		left: auto; */
		top: 90%;
	}
}

.slider .swiper-button-prev:after {
	content: '';
	background-image: url('/wp-content/themes/altsheimer-clinic/assets/img/arrow.svg');
	width: 22px;
	height: 22px;
	background-size: 22px;
}

.slider .swiper-button-next:after {
	content: '';
	background-image: url('/wp-content/themes/altsheimer-clinic/assets/img/arrow.svg');
	width: 22px;
	height: 22px;
	background-size: 22px;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}

.speakers {
	background-color: #F4F3EE;
}

.speakers .cards {
	max-width: 1440px;
	margin: auto;
	background-image: url(/wp-content/themes/altsheimer-clinic/assets/img/bg-spic.webp);
	background-repeat: no-repeat;
	background-size: contain;
	border: 1px solid #D2CDC1;
	background-position: bottom right;
	/* border-right: 1px solid #D2CDC1; */
}

.speakers .card:first-child {
	background-image: url('/wp-content/themes/altsheimer-clinic/assets/img/bg-4.webp');
	background-size: cover;
	/* background: transparent; */
}

.speakers .card:first-child .title {
	margin-top: 98px;
}

.speakers .card:first-child .point {
	visibility: hidden;
	display: none;
}

.speakers .card .point {
	background-color: transparent;
	background-image: url('/wp-content/themes/altsheimer-clinic/assets/img/men.svg');
	background-size: 17px;
	width: 17px;
	height: 21px;
}

.card .role {
	color: #7A6D6D;
}

/* .speakers .card:last-child .point {
	background-color: transparent;
	background-image: url('/wp-content/themes/altsheimer-clinic/assets/img/men-add.svg');
	background-size: 20px;
	width: 20px;
	height: 20px;
}

.speakers .card:last-child .btn.lite {
	margin-top: 16px;
} */

.speakers .card:nth-child(7),
.speakers .card:nth-child(8),
.speakers .card:nth-child(9) {
	border-bottom: 1px solid #D2CDC1;
}

.organizers {
	padding: 50px 0;
	background-color: #F4F3EE;
}

@media (min-width: 766.98px) {
	.organizers {
		padding-top: 80px;
		padding-bottom: 103px;
	}
}

.title-org {
	font-size: 18px;
	line-height: 1.5;
	color: #7A6D6D;
}

.logos {
	margin-top: 30px;
	display: grid;
	justify-items: center;
	grid-template-columns: repeat(2, 1fr);
	/* grid-template-rows: repeat(2, 1fr); */
	gap: 20px;
}

@media (min-width: 766.98px) {
	.logos {
		margin-top: 52px;
		grid-template-columns: repeat(5, 1fr);
		grid-template-rows: repeat(2, 1fr);
		row-gap: 52px;
		column-gap: 0;
	}
}

.adress {
	background-color: #F4F3EE;
	padding: 50px 0;
}

.adress .container {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	gap: 30px;
	align-items: center;
}

@media (min-width: 766.98px) {
	.adress .container {
		flex-direction: row;
		align-items: start;
	}
}

@media (min-width: 766.98px) {
	.address {
		padding-top: 101px 0 22px;
	}
}

.address-group {
	align-self: flex-start;
}

@media (min-width: 766.98px) {
	.address-group {
		align-self: center;
		max-width: 442px;
		width: 100%;
	}
}

.title-section-small {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.5;
	color: #1F212A;
}

.address-text {
	margin-top: 12px;
	font-size: 18px;
	line-height: 1.6;
	color: #1F212A;
	max-width: 399px;
}

.address-group .btn {
	margin-top: 32px;
}

.map {
	width: 100%;
}

.map iframe {
	width: 100%;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

@media (min-width: 766.98px) {
	.map {
		width: 710px;
	}

	.map iframe {
		/* width: revert-layer; */
		max-width: 710px;
		width: 100%;
	}
}

.form-contact {
	padding: 50px 0;
	background-color: #EBE8E1;
}

@media (min-width: 766.98px) {
	.form-contact {
		padding: 71px 0;
	}
}

.form-contact .container {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	gap: 30px;
}

@media (min-width: 766.98px) {
	.form-contact .container {
		flex-direction: row;
		/* gap: 0; */
	}
}

.form-info {
	max-width: 442px;
	width: 100%;
	position: relative;
}

.form-text {
	margin-top: 16px;
	max-width: 456px;
	color: #1F212A;
}

.tel,
.email,
.web {
	margin-top: 8px;
	font-size: 16px;
	color: #1F212A;
	display: flex;
	gap: 18px;
	align-items: center;
}

.email a,
.web a {
	color: #1F212A;
	font-size: 16px;
}

.email a:active,
.web a:active,
.email a:visited,
.web a:visited {
	color: #000;
}

.tel img,
.email img,
.web img {
	width: 18px;
}

.form {
	flex: 710px 0 1;
}

.form form {
	background-color: #1F212A;
	padding: 32px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.form form p {
	margin: 0;
}

.form form label {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 18px;
	color: #fff;
}

.form form p+p {
	margin-top: 24px;
}

.form form input:not(input[type='submit']),
.form form textarea,
.form form select {
	background: transparent;
	width: 100%;
	border: 1px solid #B3B3B3;
	padding: 12px 16px;
	border-radius: 10px;
	outline: none;
}

.form form input:not(input[type='submit']):focus-visible,
.form form textarea:focus-visible {
	outline: none;
	background-color: #35373f;
	color: #fff;
}

.form form textarea {
	height: 80px;
	resize: vertical;
}

footer {
	background-color: #1F212A;
	padding-top: 77px;
	padding-bottom: 43px;
}

.footer-body {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	gap: 30px;
}

@media (min-width: 766.98px) {
	.footer-body {
		flex-direction: row;
	}
}

.text-footer {
	font-size: 14px;
	line-height: 1.6;
	color: #fff;
}

.text-footer a {
	text-decoration: dashed;
}

.text-footer a:visited {
	color: #fff;
}

.text-footer+.text-footer {
	margin-top: 2px;
}

.text-footer:last-child {
	margin-top: 41px;
	max-width: 430px;
}

.copy {
	margin-top: 33px;
	font-size: 12px;
	/* color: #EBE8E1; */
}


.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	/* transform: translateX(-50%); */
	background: #661D86;
	color: white;
	padding: 10px 20px;
	/* border-radius: 8px; */
	display: none;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	min-height: 100px;
}

@media (min-width: 766.98px) {
	.cookie-banner {
		flex-direction: row;
	}
}

.cookie-banner p {
	margin: 0;
}

.cookie-banner button.btn {
	/* background: #ff9800;
	border: none;
	padding: 5px 10px;
	cursor: pointer; */
	color: white;
	border-color: #fff;
	/* font-weight: bold; */
	white-space: nowrap;
}

.cookie-banner button.btn:hover {
	color: #661D86;
}

.programm {
	margin-top: -40px;
	position: relative;
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
	background-color: #F4F3EE;
	padding-bottom: 65px;
}

.hero-program {
	/* background-image: url(/wp-content/themes/altsheimer-clinic/assets/img/bg-2.webp); */
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	/* padding-top: 150px; */
	/* padding-top: 315px; */
	padding-bottom: 84px;
}

@media (min-width: 766.98px) {
	.hero-program {
		padding-top: 315px;
	}
}

.title-program {
	color: #fff;
	font-size: 70px;
	font-weight: 500;
	max-width: 568px;
}

@media (min-width: 766.98px) {
	.title-program {
		font-size: 100px;
	}
}

.programm .container>div:first-child {
	padding-top: 26px;
}

@media (min-width: 766.98px) {
	.programm .container>div:first-child {
		padding-top: 78px;
	}
}

.accordion {
	padding-bottom: 12px;
	border-bottom: 1px solid #D2CDC1;
}

.accordion-content {
	/* display: none; */
	/* padding: 10px; */
	/* border: 1px solid #ccc; */
}


.events .item {
	display: flex;
	justify-content: space-between;
	/* flex-direction: column; */
	align-items: center;
	gap: 10px;
	padding-bottom: 12px;
	border-bottom: 1px solid #D2CDC1;
}


.accordion-item {
	display: flex;
	justify-content: space-between;
	/* flex-direction: column; */
	align-items: center;
	gap: 10px;
	padding-bottom: 12px;
}

.events .item:last-child {
	/* padding-bottom: 0; */
}

.events .item+.item,
.accordion-header {
	/* padding-top: 22px; */

}

.title-item,
.accordion-header {
	font-size: 20px;
	line-height: 1.4;
	margin-top: 14px;
}

@media (min-width: 766.98px) {

	.title-item,
	.accordion-header {
		font-size: 24px;
		line-height: 1.5;
		margin-top: 18px;
	}
}

.title-item {
	margin-bottom: 14px;
}

@media (min-width: 766.98px) {
	.title-item {
		margin-bottom: 24px;
	}
}

.text-item {
	display: grid;
}

.text-item span {
	font-weight: 500;
	font-size: 18px;
}

.text-item:first-child,
.accordion-content:first-child {
	/* padding-top: 18px; */
}



@media (min-width: 766.98px) {
	.right-column {
		align-self: flex-end;
	}
}

.accordion .right-column {
	align-self: flex-start;
}

.time {
	font-size: 16px;
	font-weight: 500;
	color: #7A6D6D;
	white-space: nowrap;
}

.accordion-item .time {
	font-size: 14px;
}

@media (min-width: 766.98px) {
	.time {
		font-size: 20px;
	}

	.accordion-item .time {
		font-size: 16px;
	}
}

.accordion-header {
	margin-bottom: 24px;
	position: relative;
	padding-right: 40px;
	width: fit-content;
	cursor: pointer;
}

.accordion-header.active {
	margin-bottom: 24px;
}

.accordion-header::after {
	position: absolute;
	/* content: ''; */
	width: 30px;
	height: 30px;
	background-size: 30px;
	background-image: url(/wp-content/themes/altsheimer-clinic/assets/img/up.svg);
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
	-webkit-transform: translateY(-50%) rotate(180deg);
	-moz-transform: translateY(-50%) rotate(180deg);
	-ms-transform: translateY(-50%) rotate(180deg);
	-o-transform: translateY(-50%) rotate(180deg);
}

.accordion-header.active::after {
	transform: translateY(-50%) rotate(0deg);
	-webkit-transform: translateY(-50%) rotate(0deg);
	-moz-transform: translateY(-50%) rotate(0deg);
	-ms-transform: translateY(-50%) rotate(0deg);
	-o-transform: translateY(-50%) rotate(0deg);
}

.logo-contact {
	margin-top: 30px;
}

@media (min-width: 766.98px) {
	.logo-contact {
		position: absolute;
		bottom: 0;
		margin-top: 0;
	}
}



.map-section iframe {
	margin: 50px 0;
	width: 100%;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

@media (min-width: 766.98px) {
	.map-section iframe {
		margin: 80px 0;
	}
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
	border: none;
	color: #fff;
}