/* abstracts/variables.css */

:root {
	/* Breakpoints */
	--breakpoints-mobile: 480px;
	--breakpoints-tablet: 768px;
	--breakpoints-laptop: 1024px;
	--breakpoints-desktop: 1440px;
	--breakpoints-wide: 1920px;
	--breakpoints-ultrawide: 2560px;

	/* Colors */
	/* The SCSS $colors variable is defined twice.
     CSS custom properties will reflect the final definition of $colors,
     which includes gray, white, and black. */
	--colors-white: #ffffff;
	--colors-black: #000000;
	--colors-gray-50: #f7fafc;
	--colors-gray-100: #edf2f7;
	--colors-gray-200: #e2e8f0;
	--colors-gray-300: #cbd5e0;
	--colors-gray-400: #a0aec0;
	--colors-gray-500: #718096;
	--colors-gray-600: #4a5568;
	--colors-gray-700: #2d3748;
	--colors-gray-800: #1a202c;
	--colors-gray-900: #171923;
	--colors-footer-bg: #f7fafc;
	--colors-purple-100: #f3e5f5;
	--colors-purple-200: #e1bee7;
	--colors-purple-300: #ce93d8;
	--colors-purple-400: #ba68c8;
	--colors-purple-500: #ab47bc;
	--colors-purple-600: #9c27b0;
	--colors-purple-700: #8e24aa;
	--colors-purple-800: #7b1fa2;
	--colors-purple-900: #6a1b9a;

	/* Shadow Variables */
	--shadows-header: 0 2px 4px rgba(0, 0, 0, 0.1);

	/* Font Family */
	--font-family-primary: "Nunito Sans", Arial, sans-serif;

	/* Typography Weights */
	--typography-weights-regular: 400;
	--typography-weights-semibold: 500;
	--typography-weights-bold: 700;

	/* Spacing */
	--spacing-margins-xs: 0.5rem; /* 8px */
	--spacing-margins-sm: 1rem; /* 16px */
	--spacing-margins-md: 1.5rem; /* 24px */
	--spacing-margins-lg: 2rem; /* 32px */
	--spacing-margins-xl: 2.5rem; /* 40px */

	/* Text Colors */
	/* In SCSS, $text-color is derived from the first definition of $colors:
     $text-color: map-get(map-get($colors, gray), 800); which results in #1a202c.
     Since --colors-gray-800 (from the final $colors map) is also #1a202c,
     we can use var(--colors-gray-800) here. */
	--text-color: var(--colors-gray-800); /* Effectively #1a202c */

	/* Section Colors */
	--section-bg-purple: #fff8ff;
	--section-backgrounds-blue: #e3f2fd;
	--section-backgrounds-purple: #fff8ff;
	--section-backgrounds-alt: #f7fafc; /* This is the same as --colors-gray-50 */

	/* Border Radius */
	--border-radius-default: 8px;
	--border-radius-medium: 16px;
	--border-radius-large: 24px;
	--border-radius-xlarge: 32px;

	/* Z-index */
	--z-index-base: 1;
	--z-index-header: 1000;
	--z-index-modal: 2000;
	--z-index-overlay: 3000;

	/* Section Padding */
	--section-spacing-desktop-padding: 128px;
	--section-spacing-desktop-margin: 96px;
	--section-spacing-tablet-padding: 72px;
	--section-spacing-tablet-margin: 72px;
	--section-spacing-mobile-padding: 48px;
	--section-spacing-mobile-margin: 48px;
	--section-spacing-nav-padding: 16px;
	--section-spacing-nav-padding-mobile: 12px;
}
body {
	margin: 0;
	padding: 0;
}

/*
* Layout
*/
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.container {
  width: 100%;
  margin: 0 auto;
}


.header {
	padding: 64px 32px;
	background-color: var(--colors-white);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	z-index: 1000;

	@media screen and (max-width: 480px) {
		padding: 0.75rem 0;
	}

	.header-container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		max-width: 1376px;
		margin: 0 auto;
	}

	.logo-link {
		display: block;

		.logo {
			height: 60px;
			width: auto;
			object-fit: contain;
		}
	}

	.navbar {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 64px;

		@media screen and (max-width: 768px) {
			font-size: 18px;
			line-height: 26px;
		}

		@media screen and (min-width: 768px) and (max-width: 1920px) {
			font-size: 20px;
			line-height: 28px;
		}

		@media screen and (min-width: 1920px) {
			font-size: 24px;
			line-height: 32px;
		}

		@media screen and (max-width: 920px) {
			gap: 32px;
		}
	}

	a {
		font-weight: 500;
		color: var(--colors-purple-400);
		text-decoration: underline;
		transition: color 0.3s ease;

		&:hover {
			text-decoration: underline;
		}

		&:hover {
			color: var(--colors-purple-400);
			text-decoration: underline;
		}
	}
}

.hero {
	padding: var(--section-spacing-desktop-padding, 128px) 0;
	text-align: center;

	@media screen and (max-width: 480px) {
		padding: var(--section-spacing-mobile-padding, 48px) 0;
	}

	@media screen and (min-width: 480px) and (max-width: 768px) {
		padding: var(--section-spacing-tablet-padding, 72px) 0;
	}

	h1 {
		text-align: center;

		@media screen and (max-width: 768px) {
			font-size: 48px;
			line-height: 56px;
		}

		@media screen and (min-width: 768px) and (max-width: 1920px) {
			font-size: 72px;
			line-height: 80px;
		}

		@media screen and (min-width: 1920px) {
			font-size: 96px;
			line-height: 112px;
		}
	}
}
body {
	font-family: var(--font-family-primary);
	color: var(--text-color);
}

h1,
.h1 {
	font-weight: 500;
	margin: 0;
}
h2,
.h2 {
	font-weight: 500;
	padding-bottom: 96px;
	margin: 0;
}
h3,
.h3 {
	font-weight: 500;
	margin: 0;
}
h4,
.h4 {
	font-weight: 500;
	margin: 0;
}

@media screen and (max-width: 768px) {
	h1,
	.h1 {
		font-size: 48px;
		line-height: 56px;
	}
	h2,
	.h2 {
		font-size: 32px;
		line-height: 40px;
	}
	h3,
	.h3 {
		font-size: 24px;
		line-height: 32px;
	}
	h4,
	.h4 {
		font-size: 20px;
		line-height: 28px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1920px) {
	h1,
	.h1 {
		font-size: 72px;
		line-height: 80px;
	}
	h2,
	.h2 {
		font-size: 42px;
		line-height: 56px;
	}
	h3,
	.h3 {
		font-size: 32px;
		line-height: 44px;
	}
	h4,
	.h4 {
		font-size: 22px;
		line-height: 32px;
	}
}

@media screen and (min-width: 1920px) {
	h1,
	.h1 {
		font-size: 96px;
		line-height: 112px;
	}
	h2,
	.h2 {
		font-size: 56px;
		line-height: 72px;
	}
	h3,
	.h3 {
		font-size: 40px;
		line-height: 56px;
	}
	h4,
	.h4 {
		font-size: 24px;
		line-height: 40px;
	}
}
.burger-button {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	z-index: var(--z-index-modal);

	.burger-button__bar {
		display: block;
		width: 25px;
		height: 3px;
		background-color: var(--colors-purple-600);
		margin: 5px 0;
		transition: all 0.3s ease-in-out;
	}

	&.is-active .burger-button__bar {
		&:nth-child(1) {
			transform: translateY(8px) rotate(45deg);
		}

		&:nth-child(2) {
			opacity: 0;
		}

		&:nth-child(3) {
			transform: translateY(-8px) rotate(-45deg);
		}
	}
}

@media screen and (max-width: 1024px) {
	.header .navbar {
		display: none;
		flex-direction: column;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		background-color: var(--colors-white);
		padding: 1rem 0;
		box-shadow: var(--shadows-header);
		gap: 1rem;
		z-index: 1999;

		&.is-active {
			display: flex;
		}

		.nav-item {
			margin: 10px 0;
			font-size: 1.1em;
		}
	}

	.burger-button {
		display: inline-block;
	}
}

@media screen and (min-width: 1025px) {
	.header .navbar {
		display: flex !important;
		flex-direction: row;
		position: static;
		width: auto;
		background-color: transparent;
		padding: 0;
		box-shadow: none;
	}
}
.card-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;

	@media screen and (max-width: 480px) {
		gap: 24px;
	}

	@media screen and (min-width: 481px) and (max-width: 768px) {
		gap: 32px;
	}
}

/* Contact */
.card-contact {
	position: relative;
	border-radius: 16px;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	background: var(--section-backgrounds-blue);
	width: 346px;

	@media screen and (max-width: 480px) {
		padding: 24px;
		font-size: 14px;
		border-radius: 8px;
	}

	@media screen and (min-width: 481px) and (max-width: 768px) {
		padding: 48px;
		font-size: 16px;
		border-radius: 16px;
	}

	@media screen and (min-width: 769px) {
		padding: 96px;
		font-size: 18px;
		border-radius: 24px;
	}

	@media screen and (max-width: 768px) {
		font-size: 18px;
		line-height: 28px;
	}

	@media screen and (min-width: 768px) and (max-width: 1920px) {
		font-size: 20px;
		line-height: 32px;
	}

	@media screen and (min-width: 1920px) {
		font-size: 24px;
		line-height: 40px;
	}

	@media screen and (max-width: 480px) {
		width: 288px;
	}

	.image {
		height: 96px;
		width: 96px;
		margin: 0 auto;
		display: block;
		object-fit: cover;
		padding-bottom: 24px;

		@media screen and (max-width: 480px) {
			height: 72px;
			width: 72px;
			padding-bottom: 16px;
		}
	}

	.hours-group .type {
		color: #8e24aa;
	}

	.contact-link {
		text-decoration: none;
		transition: color 0.3s ease;
		color: #8e24aa;

		&:hover {
			text-decoration: underline;
		}
	}
}

/* Employee */
.card-employee {
	position: relative;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: left;
	width: 360px;

	@media screen and (max-width: 480px) {
		padding: 24px;
		font-size: 14px;
		border-radius: 8px;
	}

	@media screen and (min-width: 481px) and (max-width: 768px) {
		padding: 48px;
		font-size: 16px;
		border-radius: 16px;
	}

	@media screen and (min-width: 769px) {
		padding: 96px;
		font-size: 18px;
		border-radius: 24px;
	}

	@media screen and (max-width: 768px) {
		font-size: 18px;
		line-height: 28px;
	}

	@media screen and (min-width: 768px) and (max-width: 1920px) {
		font-size: 20px;
		line-height: 32px;
	}

	@media screen and (min-width: 1920px) {
		font-size: 24px;
		line-height: 40px;
	}

	@media screen and (min-width: 480px) and (max-width: 768px) {
		width: 288px;
	}

	@media screen and (min-width: 768px) and (max-width: 1920px) {
		width: 320px;
	}

	.avatar {
		margin: 0 auto;
		display: block;
		object-fit: cover;
		padding: 120px 0;

		@media screen and (max-width: 480px) {
			padding: 24px 0;
		}
	}

	.employee-label {
		position: absolute;
		top: 0;
		border-top-left-radius: 0;
		border-top-right-radius: 24px;
		border-bottom-left-radius: 24px;
		border-bottom-right-radius: 24px;
		font-size: 0.875rem;
		left: 32px;
		padding: 8px 24px;
		z-index: 1;

		@media screen and (max-width: 768px) {
			font-size: 14px;
			line-height: 20px;
		}

		@media screen and (min-width: 768px) and (max-width: 1920px) {
			font-size: 15px;
			line-height: 24px;
		}

		@media screen and (min-width: 1920px) {
			font-size: 16px;
			line-height: 24px;
		}

		@media screen and (max-width: 480px) {
			font-size: 0.75rem;
			padding: 0.375rem 0.75rem;
		}

		@media screen and (min-width: 768px) {
			left: 2rem;
		}
	}

  &.doctor {
    background: var(--section-backgrounds-blue);

    .employee-label {
      background: linear-gradient(to right, #90caf9, #b2dcff);
    }
  }

  &.secretary {
    background: #ffe6ff;

    .employee-label {
      background: linear-gradient(to right, #e57ae5, #ffbaff);
    }
  }

  &.med-secretary {
    background: #ffeaea;

    .employee-label {
      background: linear-gradient(to right, #ffa8a8, #ffdbdb);
    }
  }

  &.attention {
    background: #fffde0;

    .employee-label {
      background: linear-gradient(to right, #ffd600, #fff614);
    }
  }

  &.important {
    background: #ffeaea;

    .employee-label {
      background: linear-gradient(to right, #ff476a, #ffc0cc);
    }
  }

  &.info {
    background: #e5f9ff;

    .employee-label {
      background: linear-gradient(to right, #2dccff, #aeecff);
    }
  }
}


/* Action */
.action-card {
	position: relative;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffeeff;
	color: #9f1dab;
	flex-direction: column;
	width: 280px;
	text-decoration: none;

	@media screen and (max-width: 480px) {
		width: 100%;
		max-width: 240px;
		padding: 24px;
		font-size: 14px;
		border-radius: 8px;
	}

	@media screen and (min-width: 481px) and (max-width: 768px) {
		width: calc(50% - 20px);
		max-width: 260px;
		padding: 48px;
		font-size: 16px;
		border-radius: 16px;
	}

	@media screen and (min-width: 769px) {
		padding: 96px;
		font-size: 18px;
		border-radius: 24px;
	}

	@media screen and (max-width: 768px) {
		font-size: 18px;
		line-height: 28px;
	}

	@media screen and (min-width: 768px) and (max-width: 1920px) {
		font-size: 20px;
		line-height: 32px;
	}

	@media screen and (min-width: 1920px) {
		font-size: 24px;
		line-height: 40px;
	}

	.card-icon {
		margin-bottom: 24px;

		img {
			width: 120px;
			height: 120px;

			@media screen and (max-width: 480px) {
				width: 80px;
				height: 80px;
			}
		}
	}

	.card-title {
		@media screen and (max-width: 768px) {
			font-size: 24px;
			line-height: 32px;
		}

		@media screen and (min-width: 768px) and (max-width: 1920px) {
			font-size: 28px;
			line-height: 36px;
		}

		@media screen and (min-width: 1920px) {
			font-size: 32px;
			line-height: 40px;
		}

		.icon-external {
			width: 24px;
			height: 24px;
		}
	}

	.contact-link {
		text-decoration: none;
		transition: color 0.3s ease;
		color: var(--colors-purple-700);

		&:hover {
			text-decoration: underline;
		}
	}
}

/* Pricing */
.pricing-category {
	padding: 48px;
	background: var(--section-backgrounds-blue);
	border-radius: 24px;

	@media screen and (max-width: 480px) {
		padding: 24px;
	}

	.pricing-header {
		display: flex;
		align-items: center;
		gap: 16px;
		margin-bottom: 32px;

		.pricing-icon {
			width: 32px;
			height: 32px;

			img {
				width: 100%;
				height: 100%;
				object-fit: contain;
			}
		}

		.pricing-title {
			color: #2d3748;
			margin: 0;
		}
	}

	.pricing-table {
		width: 100%;
		background: var(--colors-white);
		border-radius: 16px;
		overflow: hidden;

		.pricing-table-header {
			display: flex;
			justify-content: space-between;
			padding: 16px 24px;
			background: #f7fafc;
			font-weight: 600;
			color: #2d3748;
			border-bottom: 1px solid var(--colors-gray-200);
		}

		.pricing-row {
			display: flex;
			justify-content: space-between;
			padding: 16px 24px;
			border-bottom: 1px solid var(--colors-gray-200);

			&:last-child {
				border-bottom: none;
			}

			&:hover {
				background-color: var(--colors-gray-50);
			}

			.service-name {
				flex: 1;
				padding-right: 24px;
				text-align: left;
			}

			.service-price {
				white-space: nowrap;
				font-weight: 500;
			}
		}
	}

	.pricing-note {
		margin-top: 24px;
		color: #718096;
		font-size: 14px;
		font-style: italic;
	}
}
.content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	margin: 0 auto;
	background-color: var(--section-backgrounds-blue);

	p {
		color: var(--colors-gray-700);
		line-height: 1.6;

		@media screen and (max-width: 768px) {
			font-size: 18px;
			line-height: 28px;
		}

		@media screen and (min-width: 768px) and (max-width: 1920px) {
			font-size: 20px;
			line-height: 32px;
		}

		@media screen and (min-width: 1920px) {
			font-size: 24px;
			line-height: 40px;
		}
	}

	img {
		max-width: 100%;
		height: auto;
		display: block;
	}
}

.content-section {
	text-align: center;
	margin-bottom: var(--section-spacing-desktop-padding);
	padding: 96px 0;

	@media screen and (max-width: 480px) {
		margin-bottom: var(--section-spacing-mobile-margin);
		padding: 48px 0;
	}

	h2 {
		text-align: center;
		margin: 0 auto 32px;
		color: var(--colors-gray-700);
		font-weight: 700;

		@media screen and (max-width: 768px) {
			font-size: 32px;
			line-height: 40px;
		}

		@media screen and (min-width: 768px) and (max-width: 1920px) {
			font-size: 42px;
			line-height: 56px;
		}

		@media screen and (min-width: 1920px) {
			font-size: 56px;
			line-height: 72px;
		}
	}
}

.content-wrapper {
	width: 100%;
	margin: 0 auto;
	max-width: 1376px;
}

.content-card {
	display: flex;
	border-radius: 24px;
	margin: 16px;
	overflow: hidden;

	@media screen and (max-width: 480px) {
		flex-direction: column;
	}
}

.content-text-wrapper {
	background: var(--section-backgrounds-blue);
	flex: 1;
	padding: 64px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 50%;

	@media screen and (max-width: 480px) {
		max-width: 100%;
		padding: 24px;
	}
}

.content-text {
	text-align: left;
	color: var(--colors-gray-700);
	line-height: 1.6;

	@media screen and (max-width: 768px) {
		font-size: 18px;
		line-height: 28px;
	}

	@media screen and (min-width: 768px) and (max-width: 1920px) {
		font-size: 20px;
		line-height: 32px;
	}

	@media screen and (min-width: 1920px) {
		font-size: 24px;
		line-height: 40px;
	}
}

.content-image {
	flex: 1;
	max-width: 50%;

	@media screen and (max-width: 480px) {
		max-width: 100%;
		height: 300px;
	}

	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}
.footer {
	padding: 64px 0 32px;

	background: var(--colors-footer-bg);
	text-align: center;

	@media screen and (max-width: 480px) {
		padding: 48px 0 24px;
	}

	@media screen and (max-width: 768px) {
		font-size: 18px;
		line-height: 28px;
	}

	@media screen and (min-width: 768px) and (max-width: 1920px) {
		font-size: 20px;
		line-height: 32px;
	}

	@media screen and (min-width: 1920px) {
		font-size: 24px;
		line-height: 40px;
	}

	.footer-links a {
		text-decoration: none;
		transition: color 0.3s ease;
		margin: 0 0.5rem;

		&:hover {
			text-decoration: underline;
		}
	}

	.footer-wrapper {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 48px;
		/* margin-bottom: 48px; */

		@media screen and (max-width: 768px) {
			grid-template-columns: 1fr;
			gap: 32px;
			margin-bottom: 32px;
		}
	}

	@media screen and (max-width: 768px) {
		.footer-column:first-child {
			text-align: center;
		}
	}

	.footer-logo {
		display: inline-block;

		img {
			height: 100px;
			width: auto;
		}
	}

	.footer-title {
		color: var(--colors-gray-700);
		font-size: 18px;
		font-weight: 600;
		margin-bottom: 16px;
	}

	.footer-address {
		p {
			margin: 8px 0;
			color: var(--colors-gray-600);
		}

		a {
			color: var(--colors-gray-600);
			text-decoration: none;
			transition: color 0.3s ease;

			&:hover {
				color: var(--colors-gray-700);
			}
		}
	}

	.footer-hours {
		margin-top: 16px;

		p {
			margin: 4px 0;
			color: var(--colors-gray-600);
		}
	}

	.footer-emergency-message {
		color: var(--colors-gray-600);
		margin-bottom: 16px;
	}

	.footer-emergency-services {
		.emergency-service {
			margin-bottom: 12px;

			a {
				display: block;
				color: var(--colors-gray-600);
				text-decoration: none;
				transition: color 0.3s ease;

				&:hover {
					color: var(--colors-gray-700);
				}
			}

			.emergency-phone {
				font-weight: 600;
				color: var(--colors-gray-700);
			}
		}
	}

	.footer-bottom {
		border-top: 1px solid var(--colors-gray-200);
		padding-top: 32px;
	}

	.footer-links {
		display: flex;
		gap: 24px;
		justify-content: center;

		a {
			color: var(--colors-gray-600);
			text-decoration: none;
			font-size: 14px;
			transition: color 0.3s ease;

			&:hover {
				color: var(--colors-gray-700);
			}
		}

		@media screen and (max-width: 480px) {
			flex-direction: column;
			align-items: center;
			gap: 16px;
		}
	}
}
.intro-sections {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding-top: 36px;
	gap: 40px;

	@media screen and (max-width: 480px) {
		gap: 24px;
	}

	.intro-card {
		position: relative;
		width: 784px;
		max-width: 100%;
		border-radius: 32px;
		padding: 32px;
		margin: 16px;

		.intro-card__label {
			position: absolute;
			top: 0;
			border-top-left-radius: 0;
			border-top-right-radius: 24px;
			border-bottom-left-radius: 24px;
			border-bottom-right-radius: 24px;
			font-size: 0.875rem;
			left: 32px;
			padding: 8px 24px;
			z-index: 1;

			@media screen and (max-width: 768px) {
				font-size: 14px;
				line-height: 20px;
			}

			@media screen and (min-width: 768px) and (max-width: 1920px) {
				font-size: 15px;
				line-height: 24px;
			}

			@media screen and (min-width: 1920px) {
				font-size: 16px;
				line-height: 24px;
			}

			@media screen and (max-width: 480px) {
				font-size: 0.75rem;
				padding: 0.375rem 0.75rem;
			}

			@media screen and (min-width: 768px) {
				left: 2rem;
			}
		}

		.intro-card__content {
			padding: 24px;
			text-align: left;

			@media screen and (max-width: 480px) {
				padding: 16px;
			}

			p {
				margin: 0;
				line-height: 1.6;
				font-size: 15px;
				color: #2d3748;

				@media screen and (max-width: 480px) {
					font-size: 14px;
				}
			}
		}

		&.doctor {
			background: #e3f2fd;

			.intro-card__label {
				background: linear-gradient(to right, #90caf9, #b2dcff);
			}
		}

		&.secretary {
			background: #ffe6ff;

			.intro-card__label {
				background: linear-gradient(to right, #e57ae5, #ffbaff);
			}
		}

		&.med-secretary {
			background: #ffeaea;

			.intro-card__label {
				background: linear-gradient(to right, #ffa8a8, #ffdbdb);
			}
		}

		&.attention {
			background: #fffde0;
			border: 1px #ffae00 solid;

			.intro-card__label {
				background: linear-gradient(to right, #ffd600, #fff614);
			}
		}

		&.important {
			background: #ffeaea;
			border: 1px #ff476a solid;

			.intro-card__label {
				background: linear-gradient(to right, #ff476a, #ffc0cc);
			}
		}

		&.info {
			background: #e5f9ff;
			border: 1px #43a6ec solid;

			.intro-card__label {
				background: linear-gradient(to right, #2dccff, #aeecff);
			}
		}

		@media screen and (max-width: 480px) {
			padding: 24px;
			margin: 12px;
		}

		@media screen and (min-width: 481px) and (max-width: 768px) {
			width: 100%;
			max-width: 600px;
		}
	}
}
.map-section {
	width: 100%;
	height: 880px;
	line-height: 0;
	margin-bottom: 128px;

	@media screen and (max-width: 768px) {
		height: 350px;
	}

	iframe {
		width: 100%;
		height: 100%;
		border: 0;
	}
}

.section .title {
  padding: 64px 0px;
  text-align: center;
}

.section-category {
  margin-bottom: 96px;
  padding: 96px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section-category.blue {
  background: #f5fbff;
}
.section-category.purple {
  background: #fff8ff;
}
.section-category.alt {
  background: #fff7f7;
}
@media screen and (max-width: 480px) {
  .section-category {
    margin-bottom: 48px;
    padding: 48px 0;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .section-category {
    margin-bottom: 72px;
    padding: 72px 0;
  }
}
