:root {
	--font-family-base: "Open Sans", sans-serif;

	--dark: #000000;
	--white: #fff;
	--white-50: #f8f0d9;
	--white-100: #f5f5f5;
	--primary: #00473c;

	--gray: #666666;
	--gray-50: #c4d5d2;
	--gray--100: #3d3f3c;

	--green-50: rgba(0, 71, 60, 0.6);
	--green-100: rgba(153, 182, 177, 0.6);
	--green-150: #598880;
	--orange: #ffa500;
	--bg-green-gradient: linear-gradient(180deg, #112f38 0%, #00473c 100%);
	--bg-green-gradient-light: linear-gradient(
		to right,
		#e5ff5e 0%,
		#00473c 100%
	);

	--border-white: 1px solid var(--white);
	--border-green: 1px solid var(--primary);

	--box-shadow: 0 6px 12px rgba(139, 138, 138, 0.25),
		0 -4px 8px rgba(139, 138, 138, 0.15);

	/* Font Weight */
	--fontWeightLight: 300;
	--fontWeightRegular: 400;
	--fontWeightSemiBold: 600;
	--fontWeightBold: 700;
	--fontWeightExtraBold: 800;

	/* Font Size */
	--text-10: 10px;
	--text-14: 14px;
	--text-16: 16px;
	--text-18: 18px;
	--text-20: 20px;
	--text-24: 24px;
	--text-26: 26px;
	--text-30: 30px;
	--text-35: 35px;
	--text-40: 40px;
	--text-50: 50px;

	/* Line Height */
	--lineHeightTight: 1;
	--lineHeightRegular: 1.5;

	--radius-50: 50px;
	--radius-40: 40px;
	--radius-20: 20px;
	--transition: 0.3s ease-in-out;
}
body {
	font-family: "Open Sans", sans-serif;
	line-height: normal;
	font-size: var(--text-18);
	font-weight: var(--fontWeightRegular);
}

h1,
h2 {
	font-size: var(--text-50);
	font-weight: var(--fontWeightBold);
	color: var(--gray--100);
}

h3 {
	font-size: var(--text-30);
	font-weight: var(--fontWeightSemiBold);
	color: var(--white);
}

h4 {
	font-size: var(--text-24);
	font-weight: var(--fontWeightSemiBold);
}

p {
	color: var(--gray);
	line-height: var(--lineHeightRegular);
}

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 10px;
	font-size: var(--text-24);
	font-weight: var(--fontWeightRegular);
	overflow: hidden;
	border-radius: var(--radius-50);
	cursor: pointer;
	transition: scale var(--transition), color var(--transition),
		background-color var(--transition), border-color var(--transition),
		box-shadow var(--transition);
}

.btn-green {
	height: 90px;
	color: var(--white);
	background-color: var(--white);
	border: var(--border-green);
	border-color: transparent;
}

.btn-green::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--bg-green-gradient-light);
	z-index: 0;
	transition: transform 0.5s ease;
	transform: translateX(0);
}

.btn-green:hover::before {
	transform: translateX(100%);
}

.btn-green span {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
}

.btn-green:hover {
	color: var(--primary);
	scale: 1.05;
	border-color: currentColor;
	box-shadow: var(--box-shadow);
}

.btn-green:active::before {
	transform: translateX(-100%) scale(1.05);
	opacity: 0.6;
}

.btn-white {
	height: 64px;
	color: var(--primary);
	background-color: var(--white);
	border: var(--border-white);
}

.btn-white:hover {
	color: var(--white);
	background-color: var(--primary);
	border: var(--border-green);
	scale: 1.05;
}

.section {
	padding-bottom: 150px;
}

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

.visibility-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	border: 0 !important;
	padding: 0 !important;
	white-space: nowrap !important;
	clip-path: inset(100%) !important;
	clip: rect(0 0 0 0) !important;
	overflow: hidden !important;
}
.subtitle {
	font-size: var(--text-24);
	font-weight: var(--fontWeightSemiBold);
	background: var(--bg-green-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	margin-bottom: 16px;
}

.subtitle::before {
	content: "";
	display: inline-block;
	width: 20px;
	aspect-ratio: 1;
	background: var(--bg-green-gradient);
	margin-right: 8px;
}

.form-wrapper {
	max-width: 435px;
	width: 100%;
}

.divider {
	width: 100%;
	height: 1px;
	background: var(--green-150);
}
.container {
	max-width: 1440px;
	width: 100%;
	padding-inline: 80px;
	margin-inline: auto;
}
.header {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	background: var(--bg-green-gradient);
	background-size: 200% 200%;
	animation: gradientMove 8s ease infinite;
	color: var(--white);
	padding-bottom: 88px;
}
@keyframes gradientMove {
	0% {
		background-position: 0% 0%;
	}
	50% {
		background-position: 100% 100%;
	}
	100% {
		background-position: 0% 0%;
	}
}
.header__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-block: 16px;
	padding-inline: 30px;
	max-width: 1060px;
	width: 100%;
}
.nav {
	transition: transform var(--transition);
}

.nav__list {
	display: flex;
	gap: 50px;
}

.nav__item a {
	position: relative;
	font-weight: var(--fontWeightSemiBold);
	color: currentColor;
}

.nav__item a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background-color: currentColor;
	transition: width var(--transition);
}

.nav__item a:hover::before {
	width: 100%;
}

.burger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
	cursor: pointer;
	z-index: 1001;
}

.burger span {
	display: block;
	height: 2px;
	background: var(--white);
	transition: 0.3s;
}

.burger.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
	opacity: 0;
}

.burger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* #region FAQ */

.faq__inner {
	display: flex;
	gap: 94px;
}

.faq__title {
	margin-bottom: 30px;
	text-wrap: balance;
}

.faq__description {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 450px;
}

.faq__contact-link {
	color: var(--primary);
	text-decoration: underline;
}

.faq__accordion {
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: var(--primary);
	width: 100%;
	max-width: 627px;
}

.faq-accordion__button {
	background-color: var(--white-50);
	color: inherit;
	cursor: pointer;
	padding: 26px;
	width: 100%;
	border: var(--border-green);
	border-radius: var(--radius-20);
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color var(--transition), box-shadow var(--transition);

	span {
		font-size: var(--text-24);
		font-weight: var(--fontWeightSemiBold);
	}
}

.faq-accordion__button:hover {
	background-color: var(--white-100);
	box-shadow: var(--box-shadow);
}

.faq-accordion__button .faq-accordion__arrow {
	width: 20px;
	aspect-ratio: 1;
	transition: transform var(--transition);
}

.faq-accordion__button.active .faq-accordion__arrow {
	transform: rotate(90deg);
}

.faq-accordion__panel {
	max-height: 0;
	overflow: hidden;
	width: 100%;
	color: var(--gray);
	transition: max-height var(--transition);
}

.faq-accordion__panel p {
	padding: 30px;
	margin-top: 10px;
	line-height: normal;
	border: var(--border-green);
	border-radius: var(--radius-20);
	background-color: var(--white-50);
}

@media (max-width: 1199.98px) {
	.faq__inner {
		gap: 50px;
	}
}

@media (max-width: 991.98px) {
	.faq__inner {
		flex-direction: column;
		align-items: center;
	}
	.faq__accordion {
		order: 2;
		max-width: 684px;
	}

	.faq__content {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.faq__description {
		max-width: 100%;
	}
}

@media (max-width: 575.98px) {
	.faq__content {
		align-items: flex-start;
		text-align: start;
	}
	.faq__inner {
		gap: 26px;
	}

	.faq-accordion__button {
		padding: 18px 10px;

		span {
			font-size: var(--text-14);
		}

		.faq-accordion__arrow {
			width: 12px;
		}
	}

	.faq-accordion__panel p {
		padding: 20px 13px;
	}
}
/* #endregion FAQ */

/* #region FOOTER */
.footer {
	background: var(--bg-green-gradient);
	background-size: 200% 200%;
	animation: gradientMove 8s ease infinite;
	color: var(--white);
	padding-block: 24px;
}

.footer__nav {
	margin-bottom: 40px;
}

.footer__nav-list {
	display: flex;
	justify-content: center;
	gap: 36px;
}

.footer__nav-link {
	position: relative;
	font-weight: var(--fontWeightSemiBold);
}

.footer__nav-link::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background-color: currentColor;
	transition: width var(--transition);
}

.footer__nav-link:hover::before {
	width: 100%;
}

.footer__disclaimer,
.footer__sidebar {
	font-size: var(--text-14);
	color: currentColor;
	text-align: center;
}

.footer__sidebar {
	margin-top: 10px;

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

.footer__separator {
	border: 0;
	height: 1px;
	background-color: var(--gray-50);
	margin-block: 10px;
}

.footer__copyright {
	font-size: var(--text-14);
	color: currentColor;
	text-align: center;
}

@media (max-width: 744.98px) {
	.footer {
		padding-block: 30px;
	}
	.footer__nav {
		margin-bottom: 30px;
	}
	.footer__disclaimer {
		text-align: start;
	}
}

@media (max-width: 575.98px) {
	.footer {
		padding-block: 18px;
	}
	.footer__nav-list {
		justify-content: flex-start;
		flex-direction: column;
		gap: 14px;
		font-size: var(--text-16);
	}
	.footer__disclaimer,
	.footer__sidebar {
		font-size: var(--text-10);
	}

	.footer__separator {
		margin-block: 20px 10px;
	}
	.footer__copyright {
		font-size: var(--text-10);
	}
}
/* #endregion FOOTER */

/* #region MEDIA QUERIES */

@media (max-width: 1199.98px) {
	.container {
		max-width: 1140px;
		padding-inline: 30px;
	}
}

@media (max-width: 991.98px) {
	.container {
		max-width: 960px;
	}
	.section {
		padding-bottom: 100px;
	}
}

@media (max-width: 744.98px) {
	.container {
		max-width: 684px;
	}

	.header {
		padding-bottom: 133px;
	}

	.burger {
		display: flex;

		&.active {
			position: fixed;
			z-index: 1001;
			right: 16px;
		}
	}

	.nav {
		position: fixed;
		top: 0;
		right: 0;
		height: 380px;
		width: 250px;
		background: var(--gray--100);
		transform: translateX(100%);
		padding-top: 60px;
		z-index: 1000;
	}

	.nav.active {
		transform: translateX(0);
	}

	.nav__list {
		flex-direction: column;
		gap: 20px;
		padding-left: 20px;
	}
}

@media (max-width: 575.98px) {
	.container {
		max-width: 540px;
		padding-inline: 16px;
	}

	h2 {
		font-size: var(--text-30);
	}

	h3,
	h4 {
		font-size: var(--text-20);
	}

	p {
		font-size: var(--text-16);
	}

	.section {
		padding-bottom: 70px;
	}

	.subtitle {
		font-size: var(--text-20);
	}

	.btn-green {
		height: 80px;
	}

	.header {
		padding-bottom: 208px;
	}

	.header__top {
		padding-inline: 16px;
	}
}

/* #endregion MEDIA QUERIES */
