:root {
	--primary-color: #128C76;
	--primary-hover: #0b6c5b;
	--primary-bg: #D8F1ED;

	--secondary-color: #F56B8D;
	--secondary-hover: #fd5a82;
	--secondary-bg: #ffd3e0;

	--transition-default: .3s all ease-in-out;
}

a {
	color: #00c9ff;
}

body {
	margin: 0;
	position: relative;
	width: 100%;
	color: #333;
	font: normal 400 14px/1.5 "Be Vietnam Pro", sans-serif;
	text-align: left;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent
}

.button-theme {
	text-decoration: none;
	box-shadow: none;
	outline: none;
	border: none;
	padding: 8px 18px;
	text-transform: uppercase;
	font-size: 1em;
	font-weight: 500;
	border-radius: 4px;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-default);
}

.button-theme.button-theme_primary {
	background: var(--primary-color);
	color: var(--bs-white);
}

a.button-theme.button-theme_primary:hover,
button.button-theme.button-theme_primary:hover {
	background: var(--primary-hover);
	color: var(--bs-white);
}

.button-theme.button-theme_primary__outline {
	background: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
}

a.button-theme.button-theme_primary__outline:hover,
button.button-theme.button-theme_primary__outline:hover {
	border: 1px solid var(--primary-hover);
	background: var(--primary-hover);
	color: var(--bs-white);
}

.button-theme.button-theme_secondary {
	background: var(--secondary-color);
	color: var(--bs-white);
}

a.button-theme.button-theme_secondary:hover,
button.button-theme.button-theme_secondary:hover {
	background: var(--secondary-hover);
	color: var(--bs-white);
}

.button-theme.button-theme_secondary__outline {
	background: transparent;
	border: 1px solid var(--secondary-color);
	color: var(--secondary-color);
}

a.button-theme.button-theme_secondary__outline:hover,
button.button-theme.button-theme_secondary__outline:hover {
	border: 1px solid var(--secondary-hover);
	background: var(--secondary-hover);
	color: var(--bs-white);
}

.header {
	box-shadow: 0 10px 15px rgba(8, 14, 28, 0.06);
	position: sticky;
	z-index: 6;
	top: 0;
	width: 100%;
	background: var(--bs-white);
}

.header.is-scroll {
	position: fixed;
	width: 100%;
}

.header .header-grid {
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: space-between;
	position: relative;
	padding: 12px 0;
}

.header .header-logo {
	text-transform: uppercase;
	color: var(--primary-color);
	font-size: 1.7em;
	text-decoration: none;
	font-weight: 700;
}

.header .header-navigation ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.header .header-navigation > ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 45px;
}

.header .header-navigation > ul > li {
	position: relative;
}

.header .header-navigation > ul > li > a,
.header .header-navigation > ul > li > button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	border: 0;
	outline: none;
	box-shadow: none;
	font-size: 1.15em;
	font-weight: 700;
	color: #333;
	text-decoration: none;
	transition: var(--transition-default);
	padding: 10px 0;
	white-space: nowrap;
}

.header .header-navigation > ul > li > a > svg,
.header .header-navigation > ul > li > button > svg,
.header .header-navigation > ul > li > a > svg > path,
.header .header-navigation > ul > li > button > svg > path {
	transition: .3s transform ease-in-out
}

.header .header-navigation > ul > li > ul > li > a,
.header .header-navigation > ul > li > ul > li > button {
	display: flex;
	align-items: center;
	gap: 5px;
	border: 0;
	outline: none;
	box-shadow: none;
	font-size: 1em;
	color: #545454;
	text-decoration: none;
	transition: var(--transition-default);
	padding: 12px 0;
}

.header .header-navigation > ul > li > ul > li + li {
	border-top: 1px solid var(--bs-gray-100);
}

.header .header-toolbar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.header .header-toolbar .header-hamburger {
	display: none;
}

.section-heading {
	text-align: center;
}

.section-heading .heading-title {
	font-size: 2.4em;
	font-weight: 700;
	line-height: 1.3;
	color: var(--bs-white);
}

.section-heading.section-heading_small .heading-title {
	font-size: 2em;
	font-weight: 700;
	color: var(--bs-white);
}

.section-heading .heading-sub {
	margin-top: 15px;
	font-size: 1.6em;
	font-weight: 500;
	color: var(--bs-white);
}

.section-heading .heading-sub > span {
	color: #EFC20D;
	font-weight: 700;
}

.section-heading .heading-description {
	font-size: 1.15em;
	color: #787575;
	max-width: 991px;
	margin: 8px auto 0;
}

.section-heading .heading-button {
	margin-top: 24px;
}

.section-heading .heading-button .button-theme {
	font-weight: 700;
	padding: 12px 18px;
	font-size: 1.15em;
}

.section-gap {
	padding: 50px 0;
}

.section-gap_large {
	padding: 60px 0 30px;
}

.section-hero {
	min-height: 75vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 70px 0;
	background: linear-gradient(132.87deg, rgba(255, 255, 255, 0.892442) 7.93%, #128C76 111.03%), linear-gradient(352.75deg, #F4FEE6 -5.77%, #FFFFFF 102.02%);
}

.section-hero .section-heading {
	text-align: left;
}

.section-hero .section-heading .heading-title {
	color: rgba(47, 47, 47, 1);
	font-weight: 400;
}

.section-hero .section-heading .heading-sub {
	font-size: 1.15em;
	font-weight: 400;
	color: rgba(120, 117, 117, 1);
}

.section-hero .section-heading .heading-sub > span {
	color: rgba(18, 140, 118, 1);
}

.section-hero .hero-content_button {
	margin-top: 30px;
}

.section-hero .hero-content_button .hero-content_button__text {
	margin-top: 12px;
	margin-bottom: 12px;
}

.section-hero .hero-content_button > img {
	width: 188px;
	height: auto;
}

.section-chart .section-heading .heading-title {
	color: #121212;
}

.section-chart .chart-image {
	margin-top: 50px;
}

.section-chart .chart-image .chart-image_decor {
	width: 250px;
	height: auto;
	left: 1.5%;
}

.section-chart .chart-info {
	margin-top: 50px;
}

.section-chart .chart-info .chart-info_list {
	margin-top: 30px;
}

.section-chart .chart-info .chart-info_item {
	background: var(--primary-bg);
	border-radius: 8px;
	padding: 16px;
	display: flex;
	gap: 16px;
}

.section-chart .chart-info .chart-info_item .chart-info_icon {
	flex-shrink: 0;
}

.section-chart .chart-info .chart-info_item .chart-info_title {
	font-size: 1.15em;
	font-weight: 700;
	color: #121212;
}

.section-chart .chart-info .chart-info_item .chart-info_description {
	font-size: 1em;
	color: #787575;
}

.section-chart .chart-info .chart-info_button {
	margin-top: 30px;
	text-align: center;
}

.section-chart .chart-info .chart-info_button .button-theme {
	font-weight: 700;
	padding: 14px 18px;
	font-size: 1.075em;
}

.section-experience .section-heading .heading-title {
	color: #121212;
}

.section-experience .section-heading .heading-title svg {
	width: 40px;
	height: 40px;
}

.section-experience .experience-list {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.section-experience .experience-list .experience-item {
	background: #F0F0F0;
	border-radius: 8px;
	padding: 16px;
	display: flex;
	gap: 16px;
}

.section-experience .experience-list .experience-item .experience-item_icon {
	flex-shrink: 0;
}

.section-experience .experience-list .experience-item .experience-item_title {
	font-size: 1.15em;
	font-weight: 500;
	color: #121212;
}

.section-experience .experience-list .experience-item .experience-item_description {
	font-size: 1.075em;
	color: #787575;
	margin-top: 8px;
}

.section-contact .section-heading .heading-title {
	color: #121212;
}

.section-contact .contact-form {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.section-contact .contact-form .contact-form_item .form-label {
	margin-bottom: 8px;
	font-size: 1em;
	font-weight: 500;
}

.section-contact .contact-form .contact-form_item .form-control {
	border-radius: 6px;
	font-size: 1em;
	font-weight: 400;
	color: #121212;
	padding: 10px 12px;
	outline: none !important;
	box-shadow: none !important;
}

.swal2-title {
	color: var(--bs-black);
	font-size: 1.5em;
}

.swal2-html-container {
	margin-top: .75em;
	font-size: 1em;
}

.footer {
	padding: 50px 0;
	background: #18584D;
	color: #232323;
}

.footer .footer-logo {
	text-transform: uppercase;
	color: #62FEE2;
	font-size: 1.7em;
	text-decoration: none;
	font-weight: 700;
}

.footer .footer-slogan {
	font-size: 1.225em;
	margin-top: 8px;
	color: #fff;
}

.footer .footer-info .footer-info_title {
	font-size: 1.3em;
	font-weight: 700;
	color: #fff;
}

.footer .footer-info .footer-info_list {
	margin-top: 15px;
	color: #fff;
}

.footer .footer-info .footer-info_list p {
	margin-bottom: 10px;
}

.footer .footer-info .footer-info_list p:last-child {
	margin-bottom: 0;
}

.footer .footer-info .footer-info_social img {
	width: auto;
	height: 30px;
}

.return-top {
	border: 0;
	padding: 0;
	outline: none;
	background: transparent;
}

.return-top svg {
	width: 40px;
	height: 40px;
}

.return-top svg rect {
	transition: var(--transition-default);
}

.return-top svg rect:hover {
	fill: var(--primary-hover);
}

@media screen and (min-width: 992px) {
	.header .header-navigation > ul > li:hover > a,
	.header .header-navigation > ul > li:hover > button {
		color: var(--primary-color);
	}

	.header .header-navigation > ul > li:hover > a > svg,
	.header .header-navigation > ul > li:hover > button > svg {
		transform: rotate(180deg);
	}

	.header .header-navigation > ul > li:hover > a > svg > path,
	.header .header-navigation > ul > li:hover > button > svg > path {
		stroke: var(--primary-color);
	}

	.header .header-navigation > ul > li > ul {
		position: absolute;
		top: calc(100% + 12px);
		padding: 0 16px;
		left: 0;
		min-width: 150px;
		border-radius: 0 0 4px 4px;
		background: var(--bs-white);
		border: 1px soli var(--bs-gray-300);
		box-shadow: 0 10px 15px rgba(8, 14, 28, 0.06);
		transition: var(--transition-default);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(10px);
	}


	.header .header-navigation > ul > li > ul:before {
		position: absolute;
		content: "";
		top: -12px;
		left: 0;
		width: 100%;
		height: 100%;
		display: block;
		background: transparent;
	}

	.header .header-navigation > ul > li:hover > ul {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.header .header-navigation > ul > li > ul > li:hover > a,
	.header .header-navigation > ul > li > ul > li:hover > button {
		color: var(--primary-color);
	}
}

@media screen and (max-width: 991px) {
	.section-heading .heading-title {
		font-size: 1.76em;
	}

	.section-heading .heading-sub {
		font-size: 1.225em;
	}

	.section-heading.section-heading_small .heading-title {
		font-size: 1.45em;
		line-height: 1.3;
	}

	.section-heading .heading-description {
		font-size: 1em;
	}

	.header .header-grid {
		gap: 16px;
		position: static;
	}

	.header .header-logo {
		font-size: 1.3em;
		line-height: 1.3;
	}

	.header .header-toolbar {
		gap: 6px;
	}

	.header .header-toolbar .header-hamburger {
		gap: 6px;
		width: 20px;
		height: 32px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		flex-direction: column;
		background: transparent;
		box-shadow: none;
		border: 0;
		outline: none;
		padding: 0;
	}

	.header .header-toolbar .header-hamburger span {
		position: relative;
		width: 20px;
		height: 20px;
		-webkit-transform: translateY(1px);
		-ms-transform: translateY(1px);
		transform: translateY(1px);
		display: block;
	}

	.header .header-toolbar .header-hamburger .hamburger-button > i {
		background-color: var(--bs-black);
		width: 100%;
		height: 2px;
		position: absolute;
		display: block;
		-webkit-transition: var(--transition-default);
		-o-transition: var(--transition-default);
		transition: var(--transition-default);
		left: 0;
	}

	.header .header-toolbar .header-hamburger .hamburger-button > i:nth-child(1) {
		top: 2px;
	}

	.header .header-toolbar .header-hamburger .hamburger-button > i:nth-child(2) {
		top: 10px;
	}

	.header .header-toolbar .header-hamburger .hamburger-button > i:nth-child(3) {
		bottom: 0;
		width: 15px;
		left: auto;
		right: 0;
	}

	.is-navigation .header .header-toolbar .header-hamburger .hamburger-button > i:nth-child(1) {
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 9px;
	}

	.is-navigation .header .header-toolbar .header-hamburger .hamburger-button > i:nth-child(2) {
		left: 50%;
		width: 0;
	}

	.is-navigation .header .header-toolbar .header-hamburger .hamburger-button > i:nth-child(3) {
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
		bottom: 9px;
		width: 100%;
	}

	.header .header-navigation {
		position: absolute;
		top: 100%;
		width: 100%;
		margin: 0 auto;
		left: 0;
		z-index: 10;
		transition: var(--transition-default);
		background-color: var(--bs-white);
		display: flex;
		flex-direction: column;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		height: 0;
		border-top: 1px solid var(--bs-gray-300);
	}

	.header .header-navigation > ul {
		gap: 0;
		flex-direction: column;
		padding: 15px;
	}

	.header .header-navigation > ul > li {
		width: 100%;
	}

	.header .header-navigation > ul > li > a,
	.header .header-navigation > ul > li > button {
		width: 100%;
		justify-content: space-between;
		background: transparent;
		padding: 12px 0;
		font-weight: 500;
	}

	.header .header-navigation > ul > li > a:active,
	.header .header-navigation > ul > li > button[aria-expanded=true] {
		color: var(--primary-color);
	}

	.header .header-navigation > ul > li > a:active svg,
	.header .header-navigation > ul > li > button[aria-expanded=true] svg {
		transform: rotate(180deg);
	}

	.header .header-navigation > ul > li > a:active svg path,
	.header .header-navigation > ul > li > button[aria-expanded=true] svg path {
		stroke: var(--primary-color);
	}

	.header .header-navigation > ul > li + li,
	.header .header-navigation > ul > li > ul {
		border-top: 1px solid var(--bs-gray-300);
	}

	.is-navigation .header .header-navigation {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		height: calc(100vh - 63px);
	}

	.section-hero .hero-content {
		padding: 16px;
	}

	.section-chart .chart-info .chart-info_item {
		padding: 12px;
		gap: 12px;
	}

	.section-chart .chart-info .chart-info_item .chart-info_title {
		font-size: 1.075em;
	}

	.section-experience .section-heading .heading-title svg {
		width: 32px;
		height: 32px;
	}

	.section-experience .experience-list .experience-item {
		padding: 12px;
		gap: 12px;
	}

	.section-experience .experience-list .experience-item .experience-item_title {
		font-size: 1.075em;
	}

	.section-experience .experience-list .experience-item .experience-item_description {
		margin-top: 4px;
		font-size: 1em;
	}

	.footer {
		position: relative;
		padding: 30px 0;
	}

	.footer .footer-logo {
		font-size: 1.3em;
		white-space: nowrap;
	}

	.footer .footer-slogan,
	.footer .footer-info .footer-info_title {
		font-size: 1.075em;
	}

	.footer .footer-info .footer-info_social img {
		height: 30px;
	}

	.return-top {
		position: absolute;
		bottom: 50px;
		right: 15px;
	}

	.return-top svg {
		width: 36px;
		height: 36px;
	}
}

@media screen and (min-width: 768px) and (max-width: 992px) {
	.header .header-navigation > ul {
		max-width: 720px;
		margin: 0 auto;
		width: 100%;
	}
}

@media screen and (min-width: 575px) and (max-width: 768px) {
	.header .header-navigation > ul {
		max-width: 540px;
		margin: 0 auto;
		width: 100%;
	}
}


@media screen and (max-width: 575px) {
	.header .header-logo {
		font-size: 1.3em;
	}

	.header .button-theme {
		font-size: 0.85em;
		padding: 5px 6px;
	}

	.header .header-toolbar .header-hamburger {
		margin-top: -3px;
	}
}

@media screen and (max-width: 434px) {
	.is-navigation .header .header-navigation {
		height: calc(100vh - 71.31px);
	}
}