﻿/* init css */
:root {
	--primary-color: #224c96;
	--secondary-color: #429ad4;
	--btn-color: #ee4e27;
	--black: #333333;
	--white-FB: #fbfbfe;
}

.fs-14 {
	font-size: 14px;
}

.fs-16 {
	font-size: 16px;
}

.fs-18 {
	font-size: 18px;
}

.fs-20 {
	font-size: 20px;
}

.fs-24 {
	font-size: 24px;
	line-height: 1.5;
}

.fs-28 {
	font-size: 28px;
	line-height: 1.5;
}

.fs-36 {
	font-size: 36px;
}

.fs-48 {
	font-size: 48px;
}

.fs-64 {
	font-size: 64px;
}

.fs-72 {
	font-size: 72px;
}

.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.inc-text-primary {
	color: var(--primary-color);
}

.inc-text-secondary {
	color: var(--secondary-color);
}

.inc-text-btn {
	color: var(--btn-color);
}

.inc-bg-primary {
	background-color: var(--primary-color);
}

.inc-bg-secondary {
	background-color: var(--secondary-color);
}

.section-title {
	font-family: "Archivo Narrow", sans-serif;
	font-size: 64px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1.3;
}

.banner-title {
	font-family: "Archivo Narrow", sans-serif;
	font-size: 72px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1.3;
}

.footer-title {
	font-family: "Roboto", sans-serif;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
}

button[type="submit"].inc-btn,
.inc-btn {
	padding: 20px 36px;
	border-radius: 8px;
	border: none;
	font-weight: bold;
	cursor: pointer;
	text-transform: uppercase;
}

.inc-btn:hover {
	opacity: 0.8;
}

button[type="submit"].inc-btn,
.btn-primary {
	background-color: var(--primary-color);
	color: var(--white-FB);
}

.btn-primary:hover,
.btn-secondary:hover {
	background-color: var(--secondary-color);
	color: var(--white-FB);
}

button[type="submit"].inc-btn,
.btn-secondary {
	background-color: var(--btn-color);
	color: var(--white-FB);
}

.inc-btn-news {
	display: flex;
	align-items: center;
	gap: 12px;
	width: fit-content;
}

.inc-btn-activity {
	display: none;
}

.inc-btn-activity:hover {
	padding: 10px;
	border-radius: 8px;
	background-color: var(--primary-color);
	color: var(--white-FB);
}

.inc-btn-news:hover {
	padding: 10px;
	border-radius: 8px;
	background-color: var(--btn-color);
	color: var(--white-FB);
}

.inc-btn-news:hover span,
.inc-btn-activity:hover span {
	color: var(--white-FB);
}

.inc-btn-activity span {
	color: var(--primary-color);
	font-size: 24px;
	font-weight: 500;
}

.inc-btn-news span {
	color: var(--btn-color);
	font-size: 24px;
	font-weight: 500;
}

.inc-btn-activity i {
	color: var(--white-FB);
	border-radius: 100%;
	background-color: var(--primary-color);
	width: 28px;
	height: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.inc-btn-news i {
	color: var(--white-FB);
	border-radius: 100%;
	background-color: var(--btn-color);
	width: 28px;
	height: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* end init css */

/* custom css for site */
div.main-menu ul > li > a {
	color: var(--primary-color);
	font-weight: 500;
	font-size: 18px;
}

div.main-menu ul > li > a:hover,
div.main-menu ul > li.active > a {
	font-weight: 800;
	color: var(--primary-color);
}

div.main-menu ul > li.active::before,
div.main-menu ul li a.navlink:before {
	background: var(--primary-color);
}
ul.footer-info > li > a {
	color: var(--white-FB);
}

ul.breadcrumb-list {
	display: flex;
	align-items: center;
	gap: 28px;
	color: var(--primary-color);
	font-size: 20px;
	overflow-x: scroll;
	padding-bottom: 10px;
}

ul.breadcrumb-list li a {
	color: var(--primary-color);
	font-size: 20px;
	text-wrap: nowrap;
}

ul.breadcrumb-list li a:hover {
	color: var(--secondary-color);
}

ul.breadcrumb-list li:last-child {
	font-weight: bold;
	text-wrap: nowrap;
}

section.banner-home::after {
	content: "";
	background-image: linear-gradient(
			180deg,
			rgba(34, 76, 150, 1) 0%,
			rgba(34, 76, 150, 0) 100%
		),
		url("../Content/images/banner-home.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

section.section-2::after {
	content: "";
	background-image: url("../Content/images/polygon-map.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

section.section-3::after {
	content: "";
	background-image: url("../Content/images/banner-nang-luc.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

section.section-4::after {
	content: "";
	background-image: url("../Content/images/banner-project.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

section.section-5::after {
	content: "";
	background-image: url("../Content/images/banner-form.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

section.activity-banner::after {
	content: "";
	background-image: url("../Content/images/banner-activity.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

section.activity-section-2::after {
	content: "";
	background: url("../Content/images/banner-activity-2.png"),
		var(--primary-color);
	background-size: auto;
	background-repeat: no-repeat;
	background-position: left bottom;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

section.banner-project::after {
	content: "";
	background: url("../Content/images/banner-project-page.png"),
		var(--primary-color);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	filter: blur(4px);
	-webkit-filter: blur(4px);
}
section.banner-activity::after {
	content: "";
	background: url("../Content/images/banner-activity-page.png"),
		var(--primary-color);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	filter: blur(4px);
	-webkit-filter: blur(4px);
}

section.banner-contact::after {
	content: "";
	background: url("../Content/images/banner-contact.png"),
		var(--primary-color);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	filter: blur(4px);
	-webkit-filter: blur(4px);
}

section.banner-news::after {
	content: "";
	background: url("../Content/images/banner-news.png"), var(--primary-color);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	filter: blur(4px);
	-webkit-filter: blur(4px);
}

section.banner-news-detail::after {
	content: "";
	background: url("../Content/images/banner-news-detail.png"),
		var(--primary-color);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	filter: blur(4px);
	-webkit-filter: blur(4px);
}

section.banner-news::before,
section.banner-news-detail::before,
section.banner-contact::before,
section.banner-activity::before,
section.banner-project::before {
	content: "";
	background-color: rgba(102, 102, 102, 0.3);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

section.banner-news,
section.banner-news-detail,
section.banner-contact,
section.banner-activity,
section.banner-project {
	height: 488px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

section.banner-news h1,
section.banner-news-detail h1,
section.banner-contact h1,
section.banner-activity h1,
section.banner-project h1 {
	z-index: 2;
}

.banner-news-detail .breadcrumb a,
.banner-news-detail .breadcrumb i {
	color: var(--white-FB);
	font-size: 28px;
	font-weight: 300;
	z-index: 2;
}

.talent-item {
	clip-path: polygon(92% 0, 100% 33%, 100% 100%, 0 100%, 0 0);
	background-color: var(--white-FB);
	padding: 36px;
	display: flex;
	gap: 32px;
	align-items: center;
	height: 153px;
	transition: all 0.5s ease;
}

.contact-info-item:hover,
.talent-item:hover {
	scale: 1.05;
	transition: all 0.5s ease;
}

.talent-item-red {
	background-color: var(--btn-color);
	color: var(--white-FB);
}

.contact-info-item h3,
.contact-info-item a,
.talent-item-red .talent-item-content h3,
.talent-item-red .talent-item-content h5 {
	color: var(--white-FB);
}

.activity-section-2 .right .talent-item:first-child {
	margin-top: 5px;
}

@media (max-width: 769px) {
	.activity-section-2 .right .talent-item:first-child {
		margin-top: 30px;
	}
}

.contact-info-item {
	clip-path: polygon(92% 0, 100% 33%, 100% 100%, 0 100%, 0 0);
	background-color: var(--primary-color);
	padding: 30px 36px;
	display: flex;
	gap: 32px;
	align-items: center;
	height: 152px;
	transition: all 0.5s ease;
}

section.banner-section {
	padding: 20px 0;
}

section.banner-section .inc-btn {
	display: inline-block;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 56px;
}

section.section-py {
	padding: 20px 0;
}

.navigation .nav-item {
	padding: 1rem 1.5rem;
	border-radius: 100%;
	color: var(--white-FB);
	background-color: var(--primary-color);
	border: 1px solid var(--white-FB);
}

.navigation .nav-item:hover {
	padding: 1rem 1.5rem;
	background-color: var(--white-FB);
	color: var(--secondary-color);
	border: 1px solid var(--secondary-color);
}

.slide-related-project .navigation {
	display: flex;
	justify-content: center;
	gap: 10px;
	align-items: center;
	margin-top: 30px;
}

.slide-project-image {
	margin-bottom: 30px;
}

.slide-project-image .navigation {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	z-index: 1;
	width: 100%;
	height: 1px;
}

.slide-project-image .navigation .nav-item {
	background: transparent;
	color: var(--primary-color);
	border: none;
	font-size: 28px;
	font-weight: bold;
	padding: 0;
}

.slide-related-project .navigation .nav-item:hover,
.slide-project-image .navigation .nav-item:hover {
	color: var(--btn-color);
}

/* .navigation .nav-prev-project {
	transform: translate(-40%);
}

.navigation .nav-next-project {
	transform: translate(40%);
} */

.acitivity-slider .swiper-slide:nth-child(2n) {
	margin-top: 0;
}

section.section-3 .tpl-list .tpl-item {
	padding: 24px 34px;
	background: rgba(66, 154, 212, 0.25);
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
}

.construction-bg {
	background: linear-gradient(
		180deg,
		rgba(66, 154, 212, 0.45) 0%,
		rgba(66, 154, 212, 0) 100%
	);
	padding: 12px 24px;
	border-radius: 8px;
	margin-top: 36px;
	margin-bottom: 30px;
}

.construction-link {
	background-color: white;
	padding: 6px 24px;
	width: 100%;
	border-radius: 1000px;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.tpl-number .text-with-bgcolor {
	font-size: 64px;
	font-weight: bold;
	background: linear-gradient(
		90deg,
		rgba(190, 62, 31, 1) 0%,
		rgba(255, 136, 0, 1) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.project-item {
	border-radius: 24px;
	padding: 36px 24px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	height: 15rem;
}

.project-item::before {
	content: "";
	background: linear-gradient(
		0deg,
		rgba(34, 76, 150, 1) 0%,
		rgba(34, 76, 150, 0) 100%
	);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 24px;
}

.project-item:hover {
	scale: 1.05;
	transition: all 0.3s ease;
}

.project-item-content {
	position: relative;
	z-index: 1;
}

.projects-list {
	display: flex;
	flex-direction: column;
	height: 100vh;
	gap: 20px;
}

.news-sidebar {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.news-sidebar .news-sidebar-item {
	padding: 48px 24px;
	background-color: #f4e9cd;
}

.news-sidebar .news-sidebar-item:first-child {
	padding: 24px;
}

.news-sidebar-item-title {
	padding-bottom: 48px;
	margin-bottom: 48px;
	border-bottom: 1px solid #3333334d;
}

ul.sidebar-item-list {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.sidebar-item-list img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: 70px;
	max-height: 70px;
	aspect-ratio: 1/1;
}

ul.sidebar-item-list-tags {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

ul.sidebar-item-list-tags li a {
	background: #fbfbfe;
	padding: 6px 24px;
	border-radius: 1000px;
	box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
}

ul.sidebar-item-list-tags li:hover a {
	background: var(--btn-color);
	color: #fff;
}

.news-item .news-item-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.news-pagination {
	margin: 30px 0;
}

.news-pagination li a {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fbfbfe;
	border-radius: 1000px;
	box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.news-pagination li:hover a,
.news-pagination li.active a {
	background: var(--btn-color);
}

.news-pagination li:hover a,
.news-pagination li.active a {
	color: #fff;
}

.list-social-share {
	display: flex;
	gap: 11px;
	align-items: center;
}

.list-social-share li a {
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.list-social-share li a i {
	font-size: 20px;
}

.list-social-share li a:hover {
	background: var(--primary-color);
	color: #fff;
}

.news-detail-bottom {
	border: 1px solid rgba(51, 51, 51, 0.5);
	padding: 30px 24px;
	margin: 30px 0;
}

@media (min-width: 1024px) {
	ul.breadcrumb-list {
		overflow: visible;
		padding-bottom: 0;
	}
	.projects-list {
		display: grid;
		grid-template-columns: repeat(12, 1fr);
		grid-template-rows: repeat(2, 1fr);
		grid-column-gap: 30px;
		grid-row-gap: 30px;
		height: 832px;
	}

	.project-item {
		height: 100%;
	}

	.project-item-1 {
		grid-column: 1 / 5;
		grid-row: 1 / 3;
	}
	.project-item-2 {
		grid-column: 5 / 13;
		grid-row: 1 / 2;
	}
	.project-item-3 {
		grid-column: 5 / 9;
		grid-row: 2 / 3;
	}
	.project-item-4 {
		grid-column: 9 / 13;
		grid-row: 2 / 3;
	}
	.inc-btn-activity {
		display: flex;
		align-items: center;
		gap: 12px;
		width: fit-content;
	}
	.slide-related-project .navigation {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		z-index: 1;
		width: 100%;
		height: 1px;
		display: flex;
		justify-content: space-between;
	}

	.slide-related-project .navigation .nav-item {
		background: transparent;
		color: var(--primary-color);
		border: none;
		font-size: 28px;
		font-weight: bold;
		padding: 0;
	}
	.slide-related-project .navigation .nav-item:hover {
		color: var(--btn-color);
	}
	.navigation .nav-prev-related-project {
		transform: translate(-90%);
	}
	.navigation .nav-next-related-project {
		transform: translate(90%);
	}
}
.contact-form input {
	border-radius: 12px;
	background-color: var(--white-FB);
	min-width: 100%;
	height: 64px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.contact-form textarea {
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	max-height: 192px;
	min-width: 100%;
	border-radius: 12px;
	background-color: var(--white-FB);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #808080;
	font-style: italic;
}

.section-form-bg {
	background-color: #f4e9cd;
}

.activity-info-item {
	max-width: 587.5px;
	width: 100%;
}

.form-send-mail {
	position: relative;
}
.form-send-mail input {
	min-width: 100%;
	border: none;
	border-bottom: 1px solid #a9a9ac;
}

.form-send-mail input::placeholder {
	color: #a9a9ac;
	font-size: 20px;
	font-weight: 500;
}

.form-send-mail button {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background-color: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	color: #a9a9ac;
	font-size: 20px;
}

.section-form-bg form button[type="submit"] {
	width: inherit;
}

p {
	font-size: 16px;
	line-height: 1.3;
}

.content-project ul,
.content-project li,
.content-activity ul,
.content-activity li {
	list-style-type: disc;
	padding-left: 20px;
	line-height: 1.3;
}

.content-project,
.content-activity img {
	max-width: 100%;
	height: auto;
	width: 100%;
	object-fit: cover;
}

.list-detail {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.list-detail li:not(:last-child) {
	border-bottom: 1px solid #333333;
	padding-bottom: 16px;
}

.slide-project-image .slide-thumbs .swiper-slide {
	text-align: center;
	cursor: pointer;
}

.slide-project-image .slide-thumbs img {
	width: 100px;
	height: auto;
	object-fit: cover;
}

.slide-related-project .card-project__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 3/2;
	overflow: hidden;
}

@media (min-width: 769px) {
	section.section-py {
		padding: 96px 0;
	}
	section.banner-section {
		padding: 96px 0 270px 0;
	}
	.acitivity-slider .swiper-slide:nth-child(2n) {
		margin-top: 96px;
	}
	.slide-project-image {
		margin-bottom: 0;
	}
}

@media (max-width: 768px) {
	.fs-24 {
		font-size: 16px;
	}

	.fs-36 {
		font-size: 20px;
	}

	.fs-64,
	.fs-48 {
		font-size: 30px;
	}

	.fs-72 {
		font-size: 32px;
	}

	.banner-title,
	.section-title,
	.tpl-number .text-with-bgcolor {
		font-size: 1.7rem;
	}
	.inc-btn {
		padding: 12px 18px;
	}
	.section-form-bg form button[type="submit"],
	button[type="submit"].inc-btn {
		width: 100%;
	}
	section.banner-section .inc-btn,
	.mt-35,
	.mt-50 {
		margin-top: 20px;
	}

	.projects-list {
		height: 100%;
	}
	section.banner-activity,
	section.banner-project {
		height: 200px;
	}
	.activity-section-2 .right .talent-item:first-child {
		margin-top: 30px;
	}
}

@media (max-width: 1281px) and (min-width: 1024px) {
	.fs-24 {
		font-size: 18px;
	}

	.fs-36 {
		font-size: 24px;
	}

	.fs-64,
	.fs-48 {
		font-size: 36px;
	}

	.fs-72 {
		font-size: 48px;
	}

	.banner-title,
	.section-title,
	.tpl-number .text-with-bgcolor {
		font-size: 3rem;
	}
	.activity-section-2 .right .talent-item:first-child {
		margin-top: 46px;
	}
	.section-form-bg form button[type="submit"],
	button[type="submit"].inc-btn {
		width: 100%;
	}
}
/* end custom css */
