@font-face {
	font-family: "Stacion-Regular";
	src: url("../fonts/Stacion-Regular.woff2") format("woff2"),
		url("../fonts/Stacion-Regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Stacion-Italic";
	src: url("../fonts/Stacion-Italic.woff2") format("woff2"),
		url("../fonts/Stacion-Italic.woff") format("woff");
	font-weight: normal;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Stacion-Light";
	src: url("../fonts/Stacion-Light.woff2") format("woff2"),
		url("../fonts/Stacion-Light.woff") format("woff");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Stacion-LightItalic";
	src: url("../fonts/Stacion-LightItalic.woff2") format("woff2"),
		url("../fonts/Stacion-LightItalic.woff") format("woff");
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* ////////////////// */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ////////////////// */

:root {
	--stacion: "Stacion-Regular";
	--inter: "Inter, sans-serif";
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
img {
	max-width: 100%;
}
html,
body {
	overflow-x: hidden;
}
body {
	font-family: "Stacion-Regular";
	background-color: #fff;
}
.mb {
	display: none !important;
}
/* //////////////////////////// */
.container {
	max-width: 1230px;
	padding: 0 15px;
	margin: 0 auto;
}

.d-none {
	display: none;
}
/* ///////////////////////////// */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 9;

	background-color: #fff;
	min-height: 91px;
	border-bottom: 2px solid #0dd20a;
}

header .row {
	display: flex;
	justify-content: space-between;
}
.box-logo {
	/* max-width: 99px; */
	padding: 15px 0px;
}

.list-menu {
	display: flex;
	gap: 50px;
}
.menu-item {
	position: relative;
	display: inline-block;
	padding: 39px 13px 23px;

	font-family: var(--stacion);
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 15px;
	color: #000;
	text-decoration: none;
}
.menu-item::after {
	content: " ";
	position: absolute;
	bottom: 3px;
	left: 0;
	width: 0;
	height: 3px;
	background-color: #000;

	transition: all 0.5s ease;
	color: #000000;
}
.menu-item:hover::after {
	width: 100%;
}
.list-menu .active:hover::after {
	display: none;
}
.list-menu .active {
	transition: all 0.5s ease;
	color: #ffffff;
	border-radius: 0 0 5px 5px;

	background: url(../images/bg-active.png) no-repeat bottom center;
	background-size: cover;

	animation: showActive 0.5s ease;
}
@keyframes showActive {
	from {
		background-position-y: -100px;
	}
	to {
		background-position-y: 0px;
	}
}

/* //////////////////// */
.left-to-animation {
	position: relative;
	animation: showLeftToRight 1s ease-out;
}
@keyframes showLeftToRight {
	from {
		left: -100%;
		opacity: 0;
	}
	to {
		left: 0;
		opacity: 1;
	}
}
.right-to-animation {
	position: relative;
	animation: showRightToLeft 1s ease-in-out;
}
.right-to-animation-2 {
	position: relative;
	animation: showRightToLeft 1.5s ease-in-out;
}
.right-to-animation-3 {
	position: relative;
	animation: showRightToLeft 2s ease-in-out;
}
.right-to-animation-4 {
	position: relative;
	animation: showRightToLeft 2.5s ease-in-out;
}
@keyframes showRightToLeft {
	from {
		right: -100%;
		opacity: 0;
	}
	to {
		right: 0;
		opacity: 1;
	}
}

/* /////////////// */
.about {
	padding-bottom: 49px;
}
.about-top {
	display: flex;
	align-items: center;
	padding: 35px 41px;
}
.about-top-left {
	position: relative;
	padding: 37px 26px 37px 0;

	width: 32%;
}
.about-top-right {
	width: 68%;
}
.about-top-left::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 100vw;
	height: 100%;
	border-radius: 5px;
	background: linear-gradient(90deg, #6cec6a 66%, #2da56d 100%);
	z-index: -1;
}
.about-top-left h1 {
	margin-bottom: 8px;

	font-family: var(--stacion);
	text-transform: uppercase;
	font-style: normal;
	font-weight: 400;
	font-size: 50px;
	line-height: 55px;
	/* identical to box height */

	color: #ffffff;
}
.about-top-left p {
	font-family: var(--stacion);
	font-style: italic;
	font-weight: 400;
	font-size: 20px;
	line-height: 22px;

	color: #ffffff;
}
.about-top-right {
	padding-left: 45px;
}
.about-top-right p {
	font-family: "Inter", sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;

	color: #171717;
}

.about-main-left {
	width: 36%;
}
.about-main-right {
	width: 64%;

	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 65px;
}
.about-main {
	display: flex;
	justify-content: space-between;
}

.item-about-right {
	display: flex;
	align-items: center;
}
.item-about-right h3 {
	display: flex;
	align-items: center;
	padding-left: 39px;
	border-radius: 0 8px 8px 0;
	margin-left: -125px;

	height: 65px;
	min-width: 226px;

	font-style: normal;
	font-weight: 400;
	font-size: 30px;
	line-height: 33px;
	color: #ffffff;

	background: linear-gradient(90deg, #6cec6a 0%, #2da56d 100%);
}
.item-about-right ul {
	margin-left: 24px;
}
.item-about-right ul li {
	position: relative;
	padding-left: 14px;

	font-family: "Inter", sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;

	color: #171717;
}
.item-about-right ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 5px;
	height: 5px;
	background-color: #000;

	border-radius: 50%;
}
/* //////////////// */
.services {
	padding-bottom: 40px;
}
.services .title {
	padding: 37px 0 12px;
	font-family: var(--stacion);
	font-style: normal;
	font-weight: 400;
	font-size: 50px;
	line-height: 55px;

	color: #171717;
}
.main-services {
	position: relative;
	padding: 29px 39px 29px 12px;
}
.main-services-first {
	margin-bottom: 43px;
}
.main-services::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 200px;
	z-index: -1;

	height: 100%;

	background: linear-gradient(260deg, #6cec6a 0%, #2da56d 100%);
	border-radius: 10px;
}
.main-services .item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 28px;
}
.main-services .item:last-child {
	margin-bottom: 0;
}
.main-services .item h3 {
	min-width: 200px;
	padding-right: 39px;

	font-family: var(--stacion);
	font-style: normal;
	font-weight: 400;
	font-size: 30px;
	line-height: 33px;
	text-align: right;
	color: #171717;
}
.main-services .item p {
	padding-left: 20px;

	font-family: "Inter", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;

	color: #ffffff;
}
/* //////////////// */
.solutions {
	padding-bottom: 40px;
}
.solutions .banner {
	position: relative;
	min-height: 528px;

	width: 100%;
	background: url(../images/bg-solution.png) no-repeat center center;
	background-size: cover;
}
.solutions .banner .btn span {
	font-family: var(--stacion);
	font-style: normal;
	font-weight: 400;
	font-size: 50px;
	line-height: 55px;

	background: linear-gradient(180deg, #6cec6a 0%, #2da56d 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.solutions .banner .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	display: inline-block;
	padding: 26px 118px;

	background: #ffffff;
	mix-blend-mode: normal;
	box-shadow: 0px 8px 3px rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.5s ease;
}
.solutions .banner .btn:hover {
	background: #000000;
	transform: translate(-50%, calc(-50% - 5px));
	box-shadow: 0px 8px 3px rgba(3, 248, 97, 0.989);
}
.solutions .banner .btn span:hover {
	color: #fff !important;
}
.solutions-list {
	display: flex;
	justify-content: center;
	gap: 58px;
	padding-left: 15px;
	padding-right: 15px;
}
.solution-item {
	margin-top: -102px;

	text-align: center;
	border-radius: 10px;
	overflow: hidden;
}
.solution-item:nth-child(even) .item-top {
	background: linear-gradient(180deg, #6cec6a 0%, #2da56d 100%);
}
.solution-item:nth-child(odd) .item-top {
	background: #ffffff;
}
.solution-item:nth-child(even) .item-top h3 {
	color: #fff;
}
.solution-item:nth-child(odd) .item-top h3 {
	color: #216038;
}
.solution-item h3 {
	min-height: 102px;
	display: flex;
	align-items: center;
	justify-content: center;

	font-family: var(--stacion);
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 22px;
	text-align: center;
	text-transform: uppercase;
}
/* //////////// */
.career {
	padding: 78px 0 40px;
}
.career .row {
	display: flex;
	min-height: 597px;
}
.career .col-left {
	position: relative;
	z-index: 2;
	width: 50%;
	/* background: url(../images/career-left.png) no-repeat center center;
	background-size: cover; */
}
.career .col-right {
	width: 50%;
}
.content-career {
	position: relative;

	margin-top: 67px;
	padding: 30px 22px 79px 39px;
}
.content-career::before {
	content: " ";
	position: absolute;
	right: 0;
	top: 0;
	left: -220px;
	z-index: -1;

	width: calc(100% + 220px);
	height: 100%;
	border-radius: 10px;

	background: url(../images/career-right.png) no-repeat center center;
	background-size: cover;
}
.content-career .logo {
	margin-bottom: 29px;
}
.content-career h1 {
	margin-bottom: 15px;

	font-family: var(--stacion);
	font-style: normal;
	font-weight: 400;
	font-size: 50px;
	line-height: 55px;

	background: linear-gradient(180deg, #6cec6a 0%, #2da56d 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.career-item {
	position: relative;
	padding-left: 15px;
	margin: 0 0 15px 10px;

	font-family: "Inter", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;

	color: #ffffff;
}
.career-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;

	width: 5px;
	height: 5px;
	border-radius: 50%;

	background-color: #fff;
}
/* //////////// */
footer {
	background: url(../images/bg-ft.png) no-repeat center center;
	background-size: cover;
}

footer .row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0px 10px;
}
.footer-right {
	width: 50%;
	display: flex;
	justify-content: space-between;
}
.footer-right img {
	margin-right: 15px;
	object-fit: contain;
}
.footer-right .phone {
	margin-bottom: 14px;
	display: flex;
}
.footer-right .phone a {
	font-family: "Inter", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	text-decoration: none;

	color: #ffffff;
}
.footer-right .address {
	display: flex;
	flex-wrap: wrap;
}
.footer-right .address p {
	font-family: "Inter", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;

	color: #ffffff;
	width: 50%;
	display: inline-block;
	margin-bottom: 10px;
}
.footer-right .address p > span {
	font-weight: 700;
	text-decoration: underline;
}
.socal {
	display: flex;
	gap: 34px;
	align-items: center;
	margin-left: 38px;
}

@media screen and (max-width: 1400px) {
	.contact {
		padding-left: 15px;
		padding-right: 15px;
	}
}
@media screen and (max-width: 850px) {
	/* solution */
	.solution-item h3 {
		font-size: 14px;
		line-height: 20px;
	}
	/* solution */
	/* career */
	.career .row {
		flex-direction: column;
	}
	.career .col-left {
		width: 100%;
	}
	.career .col-right {
		width: 100%;
	}
	/* career */
}
@media screen and (max-width: 700px) {
	.mb {
		display: block !important;
	}
	.desk {
		display: none !important;
	}
	/* header */

	header {
		min-height: unset;
	}
	header .col-left {
		min-height: 67px;
		position: relative;

		display: flex;
		align-items: center;
	}
	header .row {
		flex-direction: column;
	}
	.list-menu {
		transition: all 0.6s ease-out;
		padding: 15px 0;
		width: calc(100% + 30px);
		margin: 0 -15px;
		flex-direction: column;
		gap: 0;

		background: linear-gradient(180deg, #6cec6a 0%, #2da56d 100%);
	}
	.menu-item {
		text-align: center;
		padding: 8px 0;
		color: #fff;

		font-size: 14px;
		line-height: 100%;
	}
	.list-menu .active {
		background: none;
		color: #000;
	}

	.menu-icon {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);

		width: 18px;
		height: 16px;
		transition: all 0.5s ease;

		background: url(../images/menu-icon.png) no-repeat center center;
		background-size: 100%;
		cursor: pointer;
	}
	.icon-menu-show {
		transform: translateY(-50%) rotate(270deg);
	}
	.menu-list-hide {
		margin-top: -500px;
	}
	.box-logo {
		padding: 13px 0px;
	}
	/* header */
	/* about */
	.about-top {
		flex-direction: column;
		padding: 23px 0 25px;
	}
	.about-top-left {
		width: 100%;
		margin-bottom: 19px;
	}
	.about-top-right {
		width: 100%;
		padding-left: 0;
	}
	.about-main {
		flex-direction: column;
	}
	.about-main-left {
		width: 100%;
		text-align: center;
		margin-bottom: 32px;
	}
	.item-about-right {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
	}
	.about-main-right {
		width: 100%;
		gap: 26px;
	}
	.item-about-right h3 {
		margin-left: -15px;
		margin-bottom: 20px;
	}
	/* about */
	/* solution */
	.solutions-list {
		flex-wrap: wrap;
	}
	.solution-item {
		width: 50%;
		margin-top: 0;
	}
	.solution-item:nth-child(odd) .item-top {
		background: #171717;
	}
	.solution-item:nth-child(odd) .item-top h3 {
		background: linear-gradient(180deg, #6cec6a 0%, #2da56d 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	.solutions .img-bottom img {
		width: 100%;
	}
	/* solution */
	/* footer */
	footer .row {
		flex-direction: column;
	}
	.footer-left {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;

		margin-bottom: 12px;
	}
	.footer-right {
		width: 100%;
	}
	.contact {
		padding-left: 0;
	}
	.footer-left .socal {
		display: flex !important;
		gap: 17px;
	}
	/* footer */
}

@media screen and (max-width: 600px) {
	/* about */
	.item-about-right ul {
		margin-left: 10px;
	}
	.about {
		padding-bottom: 24px;
	}
	.about-top-left {
		width: 100%;
		padding: 22px 24px;
	}
	.about-top-left h1 {
		font-size: 35px;
		line-height: 39px;

		margin-bottom: 0;
	}
	.about-top-left p {
		font-size: 18px;
		line-height: 20px;
	}
	.about-top-left::before {
		background: linear-gradient(90deg, #6cec6a 0%, #2da56d 100%);
	}
	.about-main-left {
		max-width: 295px;
		margin: 0 auto 32px;
	}
	.item-about-right h3 {
		height: unset;
		padding: 13px 39px;

		font-size: 25px;
		line-height: 28px;
	}
	.item-about-right ul li {
		font-size: 14px;
		line-height: 17px;
	}
	/* about */
	/* footer */
	.footer-left .logo {
		max-width: 119px;
	}
	.footer-left .socal img {
		max-width: 15px;
	}
	.footer-right img {
		max-width: 14.4px;
		margin-right: 11px;
	}
	.footer-right .phone a {
		font-size: 12px;
		line-height: 15px;
	}
	.footer-right .address span {
		font-size: 12px;
		line-height: 15px;
	}
	.footer-right .phone {
		margin-bottom: 8px;
	}
	.contact {
		padding-left: 8px;
	}
	/* footer */
	/* services */
	.services {
		padding-bottom: 15px;
	}
	.services .title {
		padding: 24px 0 18px;

		font-size: 35px;
		line-height: 39px;
	}
	.main-services {
		padding: 0;
	}
	.main-services-first {
		margin-bottom: 18px;
	}
	.main-services .item {
		flex-direction: column;
		margin-bottom: 18px;
	}
	.main-services::before {
		display: none;
	}
	.services .desc {
		padding: 16px 19px;

		background: linear-gradient(260deg, #6cec6a 0%, #2da56d 100%);
		border-radius: 10px;
	}
	.main-services .item h3 {
		width: 100%;
		padding-right: 0;
		padding-left: 19px;
		margin-bottom: 9px;

		font-size: 25px;
		line-height: 28px;
		text-align: left;
	}
	.main-services .item p {
		padding-left: 0;
		font-size: 14px;
		line-height: 17px;
	}
	/* services */
	/* solution */
	.solutions .banner {
		min-height: 198px;
		margin-bottom: 57px;
	}
	.solutions .banner .btn {
		padding: 10px 87px;
		bottom: -29.5px;
		top: unset;
		transform: translate(-50%, 0);
		left: 50%;

		box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
	}
	.solutions .banner .btn span {
		font-size: 35px;
		line-height: 39px;
	}
	.solution-item {
		width: 100%;
		max-width: 290px;
	}
	.solution-item h3 {
		min-height: 102px;
		font-size: 20px;
		line-height: 22px;
	}
	.solutions-list {
		gap: 24px;
	}
	/* solution */
	/* career */
	.career {
		padding: 29px 0px 34px;
	}
	.career .col-left {
		width: calc(100% + 30px);
		margin: 0 -15px;
	}
	.content-career {
		margin-top: -7px;
		padding: 30px 24px;
	}
	.content-career::before {
		left: 0;
		width: 100%;
	}
	.career .col-right {
		padding: 0 15px;
	}
	.career .logo {
		max-width: 43px;
		margin-bottom: 14px;
	}
	.content-career h1 {
		font-size: 35px;
		line-height: 39px;
	}
	.career-item {
		font-size: 14px;
		line-height: 17px;
	}
	/* career */

	.footer-right .address {
		display: flex;
		flex-wrap: wrap;
	}
	.footer-right .address p {
		font-family: "Inter", sans-serif;
		font-style: normal;
		font-weight: 500;
		font-size: 12px;
		line-height: 17px;

		color: #ffffff;
		width: 50%;
		display: inline-block;
		margin-bottom: 5px;
	}
	.footer-right .address p > span {
		font-weight: 700;
		text-decoration: underline;
	}
}
