

/* Start:/local/templates/pediatrics.23/participants_content_with_images.css?17860235061652*/
.content-with-images,
.content-with-images * {
	box-sizing: border-box;
}

.content-with-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.images-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	row-gap: 15px;
	align-items: start;
}

.image-item {
	width: 200px;
	height: 200px;
	border-radius: 21px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.image-item:hover {
	transform: scale(1.05);
}

.image-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 320px) and (max-width: 639px) {
	.content-with-images {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

	.text-content {
		max-width: 100%;
		order: 1;
	}

	.images-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		justify-content: center;
		order: 2;
		max-width: 100%;
		margin: 0 auto;
	}

	.image-item {
		width: 100%;
		height: auto;
		aspect-ratio: 1;
	}
}

@media (min-width: 640px) and (max-width: 1439px) {
	.content-with-images {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

	.text-content {
		max-width: 100%;
		order: 1;
	}

	.images-grid {
		display: grid;
		grid-template-columns: repeat(3, 200px);
		gap: 20px;
		justify-content: center;
		order: 2;
		margin: 0 auto;
	}

	.image-item {
		width: 200px;
		height: 200px;
	}
}

@media (min-width: 1600px) {
	.content-with-images {
		gap: 80px;
	}
}

@media (min-width: 1920px) {
	.content-with-images {
		gap: 60px;
		max-width: 1400px;
	}

	.images-grid {
		max-width: 640px;
		justify-self: start;
	}
}

/* End */


/* Start:/local/templates/pediatrics.23/participants_faq.css?17861007843547*/
.participants-faq-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px 40px;
	font-family: Helvetica, Arial, sans-serif;
}

.participants-faq-container .faq-section {
	background: white;
	border-radius: 20px;
}

.participants-faq-container .section-title {
	font-size: 50px;
	font-weight: 400;
	color: #191919;
	margin-bottom: 70px;
	margin-top: 130px;
	line-height: 1.2;
}

.participants-faq-container .faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.participants-faq-container .faq-item {
	display: block;
}

.participants-faq-container .faq-item.highlighted {
	background: rgba(36, 199, 240, 0.12);
	border: 1px solid #24c7f0;
}

.participants-faq-container .faq-question {
	width: 100%;
	padding: 20px 25px;
	background: #F6F6F6;
	border: none;
	border-radius: 8px;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	font-size: 20px;
	font-weight: 400;
	color: #191919;
	transition: all 0.3s ease;
}

.participants-faq-container .faq-item.active .faq-question {
	color: #24c7f0;
	background: rgba(36, 199, 240, 0.15);
}

.participants-faq-container .faq-question span:first-child {
	flex: 1;
}

.participants-faq-container .faq-icon {
	font-size: 24px;
	font-weight: 300;
	color: #191919;
	transition: transform 0.3s ease;
}

.participants-faq-container .faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	background: transparent;
	width: 100%;
}

.participants-faq-container .faq-answer.active {
	max-height: 300px;
}

.participants-faq-container .faq-answer-content {
	padding: 20px 32px;
	opacity: 0;
	transition: opacity 0.3s ease-out 0.1s;
}

.participants-faq-container .faq-answer.active .faq-answer-content {
	opacity: 1;
}

.participants-faq-container .faq-answer p {
	color: #191919;
	line-height: 1.6;
	font-size: 16px;
	margin: 0;
}

@keyframes participantsFaqFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.participants-faq-container .faq-section {
	animation: participantsFaqFadeIn 0.8s ease-out;
}

@media (min-width: 320px) and (max-width: 639px) {
	.participants-faq-container {
		max-width: 100%;
		padding: 30px 20px;
	}

	.participants-faq-container .section-title {
		margin-bottom: 30px;
		font-size: 30px;
	}

	.participants-faq-container .faq-section {
		padding: 30px 20px;
	}

	.participants-faq-container .faq-list {
		gap: 12px;
	}

	.participants-faq-container .faq-question {
		font-size: 18px;
		padding: 16px 20px;
	}

	.participants-faq-container .faq-answer-content {
		padding: 16px 20px;
	}
}

@media (min-width: 640px) and (max-width: 1439px) {
	.participants-faq-container {
		max-width: 100%;
		padding: 0 20px 30px;
	}

	.participants-faq-container .section-title {
		margin-bottom: 30px;
		margin-top: 80px;
	}

	.participants-faq-container .faq-section {
		padding: 30px 20px;
	}

	.participants-faq-container .faq-list {
		gap: 12px;
	}

	.participants-faq-container .faq-question {
		font-size: 18px;
		padding: 16px 20px;
	}

	.participants-faq-container .faq-answer-content {
		padding: 16px 20px;
	}
}

@media (min-width: 1600px) {
	.participants-faq-container {
		max-width: 1600px;
		padding: 0 40px 60px;
	}

	.participants-faq-container .section-title {
		font-size: 56px;
	}
}

@media (min-width: 1920px) {
	.participants-faq-container {
		max-width: 1400px;
		margin: 0 auto;
	}

	.participants-faq-container .section-title {
		font-size: 56px;
	}
}

/* End */
/* /local/templates/pediatrics.23/participants_content_with_images.css?17860235061652 */
/* /local/templates/pediatrics.23/participants_faq.css?17861007843547 */
