* {
	box-sizing: border-box;
}


html {
	font-size: 16px;
	overflow-x: hidden;
}

body {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #000;
	background-color: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas {
	margin: 0;
	padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
menu {
	display: block;
}

ol,
ul,
dl {
	list-style-type: none;
}

b,
strong {
	font-weight: 700;
}

a {
	background-color: transparent;
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
	text-decoration: none;
}

img {
	vertical-align: middle;
	border-style: none;
	max-width: 100%;
}

table {
	border-collapse: collapse;
}

th {
	font-weight: 300;
	text-align: inherit;
	text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

select {
	word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

textarea {
	overflow: auto;
	resize: vertical;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	outline-offset: -2px;
	-webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

[hidden] {
	display: none !important;
}

.container {
	margin: auto;
	max-width: 1440px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}
.container-wrapper {
	margin: auto;
	padding-left: 70px;
	padding-right: 70px;
	width: 100%;
}

.table {
	width: 100%;
}

.d-none {
	display: none !important;
}

.d-block {
	display: block !important;
}

.d-flex {
	display: flex !important;
}

.text-justify {
	text-align: justify !important;
}

.text-wrap {
	white-space: normal !important;
}

.text-nowrap {
	white-space: nowrap !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}

.text-lowercase {
	text-transform: lowercase !important;
}

.text-uppercase {
	text-transform: uppercase !important;
}

.text-capitalize {
	text-transform: capitalize !important;
}

.mt-36 {
	margin-top: 36px;
}
.mb-30 {
	margin-bottom: 30px;
}
.mb-14 {
	margin-bottom: 14px;
}
.mt-22 {
	margin-top: 22px;
}
.mb-18 {
	margin-bottom: 18px;
}
.mb-50 {
	margin-bottom: 50px;
}
.mt-70 {
	margin-top: 70px;
}
/* ===============header============= */

.menuItem li
{
	text-align: center;
	padding: 10px 0;
	color: #154A65;
	font-size: 20px;
	font-style: normal;
	line-height: 30px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}
.menuItem li .nav-link.active {
	font-weight: 700;
}

.menuToggle {
	display: flex;
	flex-direction: column;
	align-items: end;
	position: relative;
	top: -29px;
	right: 0px;
	z-index: 1;
	-webkit-user-select: none;
	user-select: none;
	a {
		text-decoration: none;
		transition: all 0.3s ease;
	}
	input {
		display: block;
		width: 40px;
		height: 32px;
		position: absolute;
		top: -7px;
		right: 20px;
		cursor: pointer;
		opacity: 0;
		z-index: 2;
		-webkit-touch-callout: none;
	}
	span {
		position: relative;
		display: block;
		width: 33px;
		height: 4px;
		right: 20px;
		margin-bottom: 5px;
		background: #232323;
		border-radius: 3px;
		z-index: 1;
		transform-origin: 4px 0px;
		transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
		background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
		opacity 0.55s ease;
		&:first-child {
			transform-origin: 0% 0%;
		}
		&:nth-last-child(2) {
			transform-origin: 0% 100%;
		}
	}
}

.menuToggle {
	input {
		&:checked ~ span {
			opacity: 1;
			transform: rotate(45deg) translate(-2px, -1px);
			background: #232323;
			&:nth-last-child(3) {
				opacity: 0;
				transform: rotate(0deg) scale(0.2, 0.2);
			}
			&:nth-last-child(2) {
				transform: rotate(-45deg) translate(0, -1px);
			}
		}
		&:checked ~ .menuItem {
			transform: none;
			display: block;
		}

	}
}

.menuItem {
	/*position: absolute;*/
	/*width: 250px;*/
	width: 100%;
	padding: 20px 10px 0px 20px;
	background: #fff;
	list-style-type: none;
	-webkit-font-smoothing: antialiased;
	transform-origin: 0% 0%;
	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
	display: none;
}

.menu--right {
	.menuItem {
		margin: 2px 0 0 0;
		transform: translate(0,-100%);
		li {
			a {
				&:hover {
					padding-left: 5px;
					font-weight: 700;
				}
			}
		}
	}
}


/*.menu--right {*/
/*	!*position: relative;*!*/
/*	.menuToggle {*/
/*		position: absolute;*/
/*		right: -32px;*/
/*		top: -30px;*/
/*		input {*/
/*			right: 50px;*/
/*		}*/
/*		span {*/
/*			right: 50px;*/
/*		}*/
/*	}*/
/*	.menuItem {*/
/*		right: 0;*/
/*		margin: -100px 0 0 0;*/
/*		transform: translate(100%, 0);*/
/*		li {*/
/*			a {*/
/*				&:hover {*/
/*					padding-left: 5px;*/
/*					font-weight: 700;*/
/*				}*/
/*			}*/
/*		}*/
/*	}*/
/*}*/





#header .location-banner {
	background-color: #f2a624;
	color: #154a65;
	font-size: 20px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	padding: 3px 0px;
	text-align: right;
	line-height: 30px;
}
#header .nav-container {
	display: flex;
	align-items: star;
	justify-content: space-between;
	padding: 25px 0 28px;
}
#header .nav-container .logo {
	object-fit: contain;
}
#header .nav-container .nav-content .contact-info {
	text-align: right;
}
#header .nav-container .nav-content .contact-info .phone-number{
	color: #154A65;
	font-family: "Montserrat", sans-serif;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
	margin-bottom: 10px;

}

#header .nav-container .nav-content .contact-info .email{
	color:  #F2A624;
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 28px;

}
#header .nav-container .nav-content .nav-links a{
	text-decoration: none;
	transition: all 0.3s ease;
}
#header .nav-container .nav-content .nav-links a:hover{
	font-weight: 700;
}
#header .nav-container .nav-content .nav-links{
	color:  #154A65;
	font-size: 20px;
	font-style: normal;
	line-height: 30px;
	margin-top: 28px;
	display: flex;
	justify-content: flex-end;
}


#header .nav-container .nav-content .nav-links li {
	padding-right: 20px;
}

#header .nav-container .nav-content .nav-links li:last-child {
	padding-right: 0;
}

#header .nav-container .nav-content a  {
	padding-right: 20px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}
#header .nav-container .nav-content a:last-child {
	padding-right: 0px;
}
#header .nav-container .nav-content .current_page_item a  {
	font-weight: 700;
	font-family: "Montserrat", sans-serif;
}
/* ===============footer============= */
#footer .footer-grid{
	background:  #154A65;
	padding: 40px 0;

}
#footer .footer-grid .container{
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}

#footer .footer-grid .container .footer-contact .footer-title, .footer-links-title{
	color: #FFF;
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.48px;
	text-transform: uppercase;
}
.footer-underline, .footer-links-underline {
	background-color: #f2a624;
	margin-top: 10px;
	height: 4px;
	width: 191px;
}

#footer .footer-grid .container .footer-contact .contact-item {
	display: flex;
	margin-top: 15px;
}
#footer .footer-grid .container .footer-contact .contact-icon {
	flex-shrink: 0;
	padding-right: 15px;
}
#footer .footer-grid .container .footer-contact .contact-text {
	color: #FFF;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 28px;
}
#footer .footer-links-list {
	margin-top: 15px;
	color: #FFF;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 34px;
}

#footer .footer-logos .logo-grid .footer-logo-1 {
	vertical-align: bottom;
	padding-right: 30px;
}

#footer .footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 19px 0;
	color: #000;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.36px;
}


.breadcrumbs {
	margin-top: 15px;
	font-size: 16px;
	font-weight: 500;
	color: #154A65;
}

.section-services {
	background: #E8EDF0;
	padding-top: 40px;
	margin-top: 20px;
}

.section-services .service-item .service-title {
	color: #000;
	text-align: center;
	margin-bottom: 26px;
}

.section-services .service-item .service-title h3 {
	width: 60%;
	margin: 0 auto;
	font-weight: 500;
	font-size: 28px;
}

.section-services .service-item .service-description {
	font-size: 20px;
	font-weight: 400;
	text-align: center;
	color: rgba(0, 0, 0, 0.40);
}


.section-services .service-item {
	margin-bottom: 30px;
}


.section-description .description {
	font-size: 20px;
	font-weight: 400;
	color: #000;
	line-height: 28px;
}

.section-description .description p {
	margin-bottom: 20px;
}

.section-description {
	margin: 40px 0;
}

.section-description .projects-title {
	color: #154a65;
	letter-spacing: -0.64px;
	font: 500 32px Montserrat, sans-serif;
}

.divider {
	background-color: #f2a624;
	margin-top: 20px;
	width: 191px;
	height: 4px;
}

.section-description .project-image {
	aspect-ratio: 1.79;
	object-fit: cover;
	object-position: center;
	width: 100%;
	margin-top: 28px;
	max-height: 250px;
}

.section-description .view-projects-btn {
	display: inline-block;
	background-color: #154a65;
	margin-top: 34px;
	color: #fff;
	letter-spacing: -0.4px;
	justify-content: center;
	padding: 24px 19px;
	font: 600 20px Montserrat, sans-serif;
}

.main-content .container .content-text .content-paragraph-profile p{
	margin-bottom: 20px;
}

.section-title {
	color: #154a65;
	letter-spacing: -0.64px;
	font: 500 32px Montserrat, sans-serif;
	margin-top: 40px;
	position: relative;
	display: inline-block;
}

.section-title:after {
	content: "";
	position: absolute;
	width: 60%;
	height: 4px;
	background: #f2a624;
	bottom: -15px;
	left: 0;
}

.section-description {
	font-size: 20px;
	font-weight: 500;
	color: #000;
	line-height: 28px;
}

.section-description p {
	margin-bottom: 20px;
}


.section-project .project-card {
	margin-top: 30px;
}

.section-project .project-card .project-image {
	aspect-ratio: 1.79;
	object-fit: auto;
	object-position: center;
	width: 100%;
}

.section-project .project-card .project-title {
	color: #154A65;
	letter-spacing: -0.48px;
	margin-top: 30px;
	line-height: 32px;
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
}

.section-project .project-card .project-category {
	color: #f2a624;
	letter-spacing: -0.36px;
	font-size: 18px;
	font-weight: 600;
	line-height: 32px;
	text-transform: uppercase;
}

.section-project .project-card .project-description {
	color: #000;
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	margin-top: 15px;
	font-size: 20px;
}

.view-project-btn {
	font-family: Montserrat, sans-serif;
	border: 1px solid #154a65;
	align-self: start;
	margin-top: 18px;
	color: #154a65;
	letter-spacing: -0.4px;
	justify-content: center;
	padding: 24px 12px;
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
}

.view-project-btn:hover {
	background: #154a65;
	color: #fff;
}

.section-project {
	margin-bottom: 40px;
}

article.news-item {
	margin-top: 30px;
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}



.news-item .news-image {
	aspect-ratio: 1.79;
	object-fit: cover;
	width: 100%;
}

.news-item .news-title {
	font-family: Montserrat, sans-serif;
	letter-spacing: -0.48px;
	text-transform: uppercase;
	margin-top: 36px;
}

.news-item .news-excerpt {
	color: rgba(0, 0, 0, 0.4);
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	line-height: 34px;
	margin-top: 22px;
}

.news-item .read-more {
	border: 1px solid #154a65;
	align-self: start;
	margin-top: 31px;
	color: #154a65;
	letter-spacing: -0.4px;
	justify-content: center;
	padding: 24px 27px;
	font: 20px Montserrat, sans-serif;
	display: inline-block;
	font-weight: 600;
}

.news-item .read-more:hover {
	background: #154a65;
	color: #fff;
}

.main-image-column {
	display: flex;
	flex-direction: column;
	line-height: normal;
}

.main-image-column img {
	width: 100%;
	aspect-ratio: 1.79;
	object-fit: contain;
	object-position: center;
	flex-grow: 1;
	max-height: 470px;
}


.info-column {
	display: flex;
	flex-direction: column;
	line-height: normal;
	margin-left: 20px;
	min-height: 470px;
}

.info-box {
	background-color: #d9d9d9;
	display: flex;
	width: 100%;
	flex-grow: 1;
	flex-direction: column;
	font-size: 16px;
	color: #000;
	letter-spacing: -0.32px;
	margin: 0 auto;
	padding: 21px 26px 80px;
}

.info-title {
	letter-spacing: -0.48px;
	text-transform: uppercase;
	font: 600 24px Montserrat, sans-serif;
}

.info-row {
	background-color: #fff;
	display: flex;
	margin-top: 11px;
	gap: 20px;
	padding: 18px 13px;
}

.info-label {
	font-family: Montserrat, sans-serif;
	font-weight: 600;
	width: 52%;
}

.info-value {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	flex-grow: 1;
	flex-basis: auto;
	width: 48%;
}

#isotope-container {
	margin-top: 50px;
	margin-bottom: 80px;
}

.grid-item {
	width: calc(33.333% - 10px);
	margin: 5px;
	background: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.grid-item img {
	width: 100%;
	display: block;
}

.grid-item img:hover {
	cursor: pointer;
}

/* Modal (background) */
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.9);
}

/* Modal Content (Image) */
.modal-content {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
}

/* Caption of Modal Image */
#caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
}

.detail-post .post-thumbnail {
	margin-top: 40px;
}

.detail-post .post-thumbnail img {
	width: 100%;
	object-fit: cover;
}

.detail-post .entry-content {
	margin-top: 60px;
	font-size: 20px;
	color: #000;
	margin-bottom: 40px;
}

.detail-post .entry-content p {
	margin-bottom: 20px;
}

/* Add Animation - Zoom in the Modal */
.modal-content {
	animation-name: zoom;
	animation-duration: 0.6s;
}

@keyframes zoom {
	from {transform: scale(0);}
	to {transform: scale(1);}
}

/* The Close Button */
.close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}

.close:hover,
.close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}


.news-grid {
	display: flex;
	flex-wrap: nowrap;
}

/* Overlay cho hiá»‡u á»©ng loading */
.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Spinner */
.spinner {
	border: 16px solid #f3f3f3;
	border-top: 16px solid #3498db;
	border-radius: 50%;
	width: 120px;
	height: 120px;
	animation: spin 2s linear infinite;
}


.contact-sub-title {
	font-size: 26px;
	color: #154A65;
	font-weight: 400;
	line-height: 28px;
	margin-top: 25px;
}

.contact-description {
	font-size: 20px;
	font-weight: 400;
	line-height: 26px;
	color: rgba(0,0,0,0.4);
	margin-top: 30px;
}

.contact-description-2 {
	margin-bottom: 60px;
}

#contact-us .wpcf7-form .form-description {font-size: 22px;margin-bottom: 20px;color: #154A65;font-weight: 500;}

#contact-us .wpcf7-form .form-input {width: 100%;margin-bottom: 15px;border: 1px solid #154A65;padding: 10px; background: none}


#contact-us .wpcf7-form .form-submit {width: 100%;margin-bottom: 15px;border: 1px solid #154A65;padding: 10px;background: #154A65;color: #fff;font-weight: 500;cursor: pointer;}

#contact-us .wpcf7-form .form-input::placeholder {
	color: #154A65;
	font-size: 16px;
	font-weight: 400;
}

/* Hiá»‡u á»©ng quay cho spinner */
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


@media (max-width: 1020px) {
	#footer .footer-grid .container{
		display: block;

	}
	#footer .footer-grid .container .footer-contact {
		margin-bottom: 30px;
	}
	#footer .footer-grid .container .footer-logos {
		text-align: center;
	}
	#footer .footer-bottom {
		display: block;
		text-align: center;
	}
	#footer .footer-bottom .footer-abn {
		padding: 10px 0;
	}

}
@media (max-width: 945px) {
	#header .nav-container {
		display: block;
		padding: 25px 0 28px;
		width: auto;
	}
	#header .nav-container .logo {
		object-fit: contain;
		text-align: center;
		width: 300px;
		margin: 0 auto;
	}
	#header .nav-container .nav-content .contact-info {
		text-align: center;
	}
	#header .nav-container .nav-content .nav-links {
		text-align: center;
	}
	#header .location-banner {
		font-size: 18px;
	}
	#header .nav-container .nav-content .contact-info .phone-number {
		font-size: 28px;
	}
	#header .nav-container .nav-content .contact-info .email {
		font-size: 20px;
	}
}
@media (min-width: 768px) {
	.menuToggle {
		display: none;
	}
}
@media (max-width: 767px) {
	#header .nav-container {
		padding: 0px 0 28px;
	}

	.nav-content .nav-links {
		display: none !important;
	}
	#header .nav-container .logo {
		object-fit: contain;
		text-align: center;
		width: 200px;
	}
	#header .location-banner {
		text-align: center;
		font-size: 16px;
	}
	#header .nav-container .nav-content .contact-info .phone-number {
		font-size: 24px;
	}
	#header .nav-container .nav-content .contact-info .email {
		font-size: 18px;
	}
	#footer .footer-bottom {
		font-size: 16px;
	}
	#footer .footer-grid .container .footer-contact .footer-title, .footer-links-title {
		font-size: 18px;
	}
}
@media (max-width: 530px) {
	#footer .footer-logos .footer-logo-1{
		margin: 20px 0 30px;
	}

}