/*==============================================================
      HEADER
  ==============================================================*/
.site-header {
	position: fixed;
	top: 10px;
	left: 0;
	width: 100%;
	z-index: 9999;
	transition: all .35s ease;
	animation-duration: 2s;
}

.site-header.sticky {
	top: 10px;
}

.site-header.sticky .header-wrapper {
	box-shadow: 0 16px 40px rgba(0, 0, 0, .14);
}

.header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	padding: 10px;
	background: #d8ffb7;
	border-radius: 70px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
	max-width: 716px;
	margin: 0 auto;
	transition: box-shadow .35s ease;
}

.site-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.site-logo img {
	display: block;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
}

.main-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-item {
	margin: 0;
}

.nav-link {
	font-family: var(--font-secondary);
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 0 10px;
	border-radius: 999px;
	background: #95cda7;
	color: #005983;
	font-size: 15px;
	text-decoration: none;
	overflow: hidden;
	white-space: nowrap;
	transition:
		background .35s ease,
		color .35s ease,
		transform .35s ease;
}

.nav-link:hover,
.nav-link.active {
	background: #95cda7;
}

.rolling-text {
	display: block;
	overflow: hidden;
	line-height: 1;
	white-space: nowrap;
}

.rolling-text .char {
	display: inline-block;
	overflow: hidden;
	height: 1em;
	vertical-align: top;
}

.char-inner {
	display: flex;
	flex-direction: column;
	transform: translateY(0%);
	transition: transform .4s cubic-bezier(.65, 0, .35, 1);
	transition-delay: calc(var(--char-index, 0) * 18ms);
}

.char-inner span {
	display: block;
	height: 1em;
	line-height: 1em;
}

.nav-link:hover .char-inner {
	transform: translateY(-100%);
}

@media (prefers-reduced-motion: reduce) {
	.char-inner {
		transition: none;
	}
}

.header-action {
	flex-shrink: 0;
}

.header-wrapper .btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #005983;
	color: #d8ffb7;
	text-decoration: none;
	font-weight: 600;
	white-space: nowrap;
	transition:
		background .35s ease,
		transform .35s ease;
	padding: 0;
	height: auto;
}

.header-wrapper .btn-primary .nav-link {
	color: #d8ffb7;
	background: #005983;
}

.header-wrapper .btn-primary:hover {
	background: #00476a;
}

.menu-toggle {
	display: none;
	position: relative;
	width: 30px;
	height: 40px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	flex-shrink: 0;
}

.menu-toggle span {
	position: absolute;
	left: 8px;
	width: 20px;
	height: 2px;
	background: #005983;
	transition: .35s;
}

.menu-toggle span:nth-child(1) {
	top: 15px;
}

.menu-toggle span:nth-child(2) {
	bottom: 15px;
}

.menu-toggle.active span:nth-child(1) {
	top: 19px;
	transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
	bottom: 19px;
	transform: rotate(-45deg);
}

.mobile-menu {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	width: 0px;
	max-height: 0;
}

.mobile-menu.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.mobile-menu__nav {
	padding: 120px 35px 40px;
}

.mobile-menu__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-menu__list li {
	overflow: visible;
	margin-bottom: 10px;
}

.mobile-menu__list li a {
	font-family: var(--font-secondary);
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 0 10px;
	border-radius: 999px;
	background: #95cda7;
	color: #005983;
	font-size: 15px;
	text-decoration: none;
	overflow: hidden;
	white-space: nowrap;
	max-width: max-content;
	margin: 0 auto;
	opacity: 1;
}

.mobile-menu__list li.mobile-menu__cta a {
	background: #005983;
	color: #d8ffb7;
}

@media (prefers-reduced-motion: reduce) {

	.mobile-menu,
	.mobile-menu__list a {
		transition: none;
	}
}

@media only screen and (max-width: 1399px) and (min-width: 992px) {
	.site-header {
		top: 0.715vw;
	}

	.site-header.sticky {
		top: 0.715vw;
	}

	.site-header.sticky .header-wrapper {
		box-shadow: 0 1.144vw 2.859vw rgba(0, 0, 0, .14);
	}

	.header-wrapper {
		gap: 0.715vw;
		padding: 0.715vw;
		border-radius: 5.004vw;
		box-shadow: 0 0.858vw 2.502vw rgba(0, 0, 0, .08);
		max-width: 51.179vw;
	}

	.site-logo img {
		width: 2.573vw;
		height: 2.573vw;
	}

	.nav-list {
		gap: 1.001vw;
	}

	.nav-link {
		height: 2.573vw;
		padding: 0 0.715vw;
		border-radius: 71.408vw;
		font-size: 1.072vw;
	}

	.header-wrapper .btn-primary {
		border-radius: 71.408vw;
	}

	.menu-toggle {
		width: 2.144vw;
		height: 2.859vw;
	}

	.menu-toggle span {
		left: 0.572vw;
		width: 1.430vw;
		height: 0.143vw;
	}

	.menu-toggle span:nth-child(1) {
		top: 1.072vw;
	}

	.menu-toggle span:nth-child(2) {
		bottom: 1.072vw;
	}

	.menu-toggle.active span:nth-child(1) {
		top: 1.358vw;
	}

	.menu-toggle.active span:nth-child(2) {
		bottom: 1.358vw;
	}

	.mobile-menu {
		width: 0.000vw;
	}

	.mobile-menu.is-open {
		max-height: 35.740vw;
	}

	.mobile-menu__nav {
		padding: 8.578vw 2.502vw 2.859vw;
	}

	.mobile-menu__list li {
		margin-bottom: 0.715vw;
	}

	.mobile-menu__list li a {
		height: 2.573vw;
		padding: 0 0.715vw;
		border-radius: 71.408vw;
		font-size: 1.072vw;
	}
}

@media (max-width:991px) {
	.desktop-nav {
		display: none;
	}

	.header-action {
		display: none;
	}

	.menu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.site-header {
		top: 15px;
	}

	.header-wrapper {
		width: 110px;
		max-height: 60px;
		overflow: hidden;
		display: flex;
		flex-direction: column;
		padding: 10px 15px;
		border-radius: 22px;
		transition:
			width .55s cubic-bezier(.22, 1, .36, 1),
			max-height .55s cubic-bezier(.22, 1, .36, 1),
			border-radius .55s cubic-bezier(.22, 1, .36, 1),
			padding .55s cubic-bezier(.22, 1, .36, 1);
	}

	.header-wrapper.is-open,
	.header-wrapper.is-closing {
		width: 320px;
		max-height: 650px;
	}

	.header-menu {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}

	.site-logo img {
		width: 40px;
		height: 40px;
	}

	.mobile-menu {
		overflow: hidden;
		opacity: 0;
		transform: translateY(-18px);
		visibility: hidden;
		pointer-events: none;
		transition:
			opacity .35s ease,
			transform .45s cubic-bezier(.22, 1, .36, 1);
	}

	.header-wrapper.is-open .mobile-menu {
		opacity: 1;
		transform: none;
		visibility: visible;
		pointer-events: auto;
		transition-delay: .15s;
		width: max-content;
		max-height: min-content;
	}

	.header-wrapper.is-closing .mobile-menu {
		opacity: 0;
		transform: translateY(-18px);
		visibility: visible;
		pointer-events: none;
	}

	.mobile-menu__nav {
		padding: 28px 24px 10px;
		text-align: center;
	}

	.mobile-menu__list {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.mobile-menu__list li {
		opacity: 0;
		transform: translateY(25px);
		transition:
			opacity .35s ease,
			transform .45s cubic-bezier(.22, 1, .36, 1);
		transition-delay: calc(var(--i) * 60ms);
	}

	.header-wrapper.is-open .mobile-menu__list li {
		opacity: 1;
		transform: none;
	}

	.header-wrapper.is-closing .mobile-menu__list li {
		opacity: 0;
		transform: translateY(20px);
		transition-delay: 0s;
	}
}


/* =========================
   FOOTER Section
========================= */
.site-footer {
	width: 100%;
	background: var(--footer-bg);
	font-family: var(--footer-font);
	padding: 40px 0 180px;
}

.site-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.site-footer__brand {
	display: flex;
	align-items: center;
	gap: 24px;
}

.site-footer__logo {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

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

.site-footer__meta {
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-footer__copyright,
.site-footer__owner {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1;
	color: #636363;
	white-space: nowrap;
	font-family: var(--font-secondary);
}

.site-footer__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--footer-dot);
	flex-shrink: 0;
}

.site-footer__links {
	display: flex;
	align-items: center;
	gap: 40px;
}

.site-footer__follow-label {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.4;
	color: var(--footer-teal);
	font-family: var(--font-secondary);
	transition: var(--transition-primary);
}

.site-footer__social {
	display: flex;
	align-items: center;
	gap: 40px;
}

.site-footer__social-link {
	font-size: 15px;
	font-weight: 500;
	font-family: var(--font-secondary);
	letter-spacing: -0.02em;
	line-height: 1.5;
	color: #141414;
	text-decoration: none;
	opacity: 0.5;
	transition: opacity 0.3s var(--footer-ease);
	transition: var(--transition-primary);
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
	opacity: 1;
}

.site-footer__social-link:focus-visible {
	outline: 2px solid var(--footer-teal);
	outline-offset: 3px;
	border-radius: 2px;
}

@media (max-width: 767px) {
	.site-footer {
		padding: 36px 20px;
	}

	.site-footer__inner {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}

	.site-footer__links {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.site-footer__social {
		gap: 16px;
	}
}