@font-face {
  font-family: 'MATURASC';
  src: url('/fonts/MATURASC.woff2') format('woff2'),
       url('/fonts/MATURASC.woff') format('woff'),
       url('/fonts/MATURASC.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GOTHIC';
  src: url('/fonts/CenturyGothic.woff2') format('woff2'),
       url('/fonts/CenturyGothic.woff') format('woff'),
       url('/fonts/CenturyGothic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    position: relative;
	justify-content: center;
    align-items: center;
}

#header {
    background: #f0f1f3;
	min-height: 55px;
}

#footer {
    background: #f0f1f3;
    padding-top: 1.5em;
    padding-bottom: 0.5em;
	min-height: 150px;
}

n1 {
    color:#007BC0;
}

n2 {
    color:#373435;
}

.main {
    max-width: 1;
    margin: 0 auto;
    padding: 10px;
}

.language-buttons {
    display: flex; /* Hiển thị các phần tử con theo hàng ngang */
    justify-content: center; /* Căn giữa các nút */
    align-items: center; /* Căn giữa theo chiều dọc */
    gap: 10px; /* Khoảng cách giữa hai nút */
	margin-left: 20px;
}

.language-buttons .nav-link {
    padding: 0; /* Loại bỏ padding mặc định của link */
}


.flag-icon {
    width: 30px;
    height: 20px;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
}

.flag-icon:hover {
    transform: scale(1.15);
}

.navbar-brand:hover {
    transform: scale(1.1);
	font-weight:bold;
	transition: transform 0.3s ease;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    margin-left: 10px;
}

.navbar-nav .nav-link {
    padding: 5px 10px; /* Giảm kích thước của các nút menu */
}

.navbar-nav .nav-link:hover {
    color: #007BC0;
    transition: background-color 0.3s, color 0.3s;
	transform: scale(1.1);
	/*font-weight:bold;*/
}
.navbar-nav .nav-link.active {
    font-weight: bold;
    color: #007BC0;
}

/* Tùy chỉnh kích thước nút */
.navbar-toggler {
  width: 45px;
  height: 30px;
  padding: 0px;
}
.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;             /* Loại bỏ viền xanh khi focus */
  box-shadow: none;          /* Loại bỏ hiệu ứng shadow khi active */
  border-width: 1px;         /* Giữ viền mỏng */
  transform: none;           /* Ngăn phóng to hoặc hiệu ứng */
}
.navbar-toggler:hover {
  background-color: #f0f0f0; /* Màu nền nhẹ khi hover */
}

/* Biểu tượng dấu chéo */
.navbar-toggler-icon.close-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath stroke='black' stroke-width='2' d='M2 2 L14 14 M14 2 L2 14'/%3E%3C/svg%3E");
	width: 20px;
	height: 20px;
	background-size: contain; /* Đảm bảo SVG co lại theo kích thước phần tử */
	background-repeat: no-repeat;
	background-position: center;
	display: block;
	margin: auto;
}

/*botton style*/
.filter-buttons {
}

.filter-buttons button {
    margin: 5px;
	padding: 5px 20px;
    cursor: pointer;
	border-radius:20px;
}

/* Slide */
.slider {
    position: relative;
    width: 100%;
    max-height: 720px;
	overflow: hidden;
	background: #f0f1f3;
	touch-action: pan-y; /* Allow vertical scrolling */
}

.image-title {
    position: absolute;
    top: 50px;
    left: 100px;
    color: #fff;
    z-index: 100;
    font-size: 24px; /* Chữ to */
    font-weight: bold; /* Chữ in đậm */
}

.slides {
    display: flex;
    width: 100%;
	height: auto; /* Đảm bảo chiều cao của slides */
	transition: transform 1s ease-in-out; /* Tăng thời gian chuyển động */
}

.slides img {
    width: 100%;
    height: auto;
    background-size: cover; /* Đảm bảo ảnh không bị co lại */
	bottom: 0; /* Chỉ cắt bên dưới */
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Tăng thời gian chuyển động */
}

.slides img.active {
    opacity: 1;
}

.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.navigation div {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    cursor: pointer;
}

.slider:hover .navigation {
    opacity: 1;
}

.dots {
    position: absolute;
    bottom: 32px;
    width: 100%;
    text-align: center;
}

.dots span {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dots .active {
    background-color: red;
    transform: scale(1.25);
}

/* End Slide */

/* ==========================================================================
      =projects
========================================================================== */

.portfolio-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 12px;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 40px;
}
@media (min-width: 900px) {
	.portfolio-container {
	grid-template-columns: repeat(3, 1fr);
	}
}
.portfolio-item {
	position: relative;
	overflow: hidden;
	background-color: #f0f1f3;
	aspect-ratio: 3 / 2;	
	display: flex;
	justify-content: center;
	top: 0;
	align-items: center;
	border-radius: 10px;
}
.portfolio-item img {
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform 0.3s ease;
	transition: opacity .3s;
}
.portfolio-item:hover img {
	transform: scale(1.1);
	opacity: .6;
}
.project-name {
	position: absolute;
	bottom: 0;
	left: 0px;
    right: 0px;
	color: white;
	font-size: 18px;
	font-weight: 600;
	background-color: rgba(0, 0, 0, .4);
	padding: 10px;
}
/*.portfolio-item:hover .project-name {
	display: block;
}

/* ==========================================================================
      =breadcrumbs
========================================================================== */
#breadcrumbs {
    padding: 20px 0 20px;
    color: white; 
    position: relative;
    -webkit-background-size: cover !important;
    background-size: cover !important;
}

#breadcrumbs h2 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

#breadcrumbs a {
    font-size: 18px;
	color: #fff;
	text-decoration:none;
}

#breadcrumbs a.active {
    color: rgba(0,123,192,.9);
    cursor: default;
}

.breadcrumbs01 {
    background: url(../images/breadcrumbs/01.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
}
.breadcrumbs02 {
    background: url(../images/breadcrumbs/contact.jpg) no-repeat;
    background-position: center center;
	background-size: cover;
}

/* ==========================================================================
      about us page
========================================================================== */
.about-info {
	padding: 20px 10px;
}

.about-info h4 {
    font-size: 24px;
    line-height: 32px;
	margin-top: 20px;
    margin-bottom: 20px;
}

.about-info p {
    font-size: 18px;
    margin-bottom: 20px;
}

.about-info img {
    margin: 20px 0;
}

.about-info .single-img {
    margin-top: 20px;
	aspect-ratio: 1 / 1;
	border-radius: 20px;
}

/* ==========================================================================
      =map
========================================================================== */
#google-map{
	margin: 20px 0 20px 0;
	border-radius:20px;
}

/* ==========================================================================
      =contact-details
========================================================================== */
#contact-details .image {
    overflow: hidden;
    position: relative;
    border-radius: 15px 15px 0 0;
}

#contact-details .image figure {
    position: relative;
}

#contact-details .image figure img {
    width: 100%;
}

#contact-details .image figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .4) 10%, rgba(255, 255, 255, 0) 90%);
    box-sizing: border-box;
    transition: opacity .3s;
}

#contact-details .carousel-item:hover figcaption {
    opacity: 1;
}

#contact-details .image figcaption .info {
    position: absolute;
    bottom: -10px;
    left: -100px;
    color: #007BC0;
    font-size: 18px;
    font-weight: 480;
    transition: all .3s;
}

#contact-details .carousel-item:hover figcaption .info {
    left: 20px;
}

#contact-details .details {
    background: #f7f8fa;
    padding: 20px;
    border-radius: 0 0 15px 15px;
    margin-bottom: 20px;
}

#contact-details .details li {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

#contact-details .details li i {
    margin-right: 12px;
}

#contact-details .details li span {
    margin-left: 25px;
}
		
/* ==========================================================================
      =message-box
========================================================================== */
#message-box{
	padding-top: 20px;
	padding-bottom: 20px;
}
#contact-form>div>div {
    position: relative;
}
#message-box .textarea-wrapper .error{
	left: 15px;
}
#message-box textarea{
	height: 144px;
}
#message-box .error{
	position: absolute;
    bottom: -5px;
    left: 0;
	margin-bottom: 10px;
	display: block;
	font-size: 16px;
	color: red;
}
#message-box .success{
	text-align: center;
	font-size: 18px;
}
#message-box .submit-button .btn{
	margin-right: 0;
}
#message-box label{
  display: none;
}

/* ==========================================================================
      =feedback
========================================================================== */
#feedback {
    background: #f0f1f3;
	padding-bottom: 40px;
    text-align: center;
}

#feedback .projects-info {
    padding-right: 0;
}

#feedback .projects-info h3 {
    font-size: 36px;
    font-weight: 480;
    margin: 30px 0 20px;
}

#feedback .projects-info h3 strong {
    font-weight: 600;
}

#feedback .projects-info p {
    font-size: 18px;
}

#feedback .projects-info a1 {
    font-size: 20px;
    font-style: italic;
    color: #FF0000;
    font-weight: 560;
}

#feedback .projects-counter .counter {
    font-size: 48px;
    font-weight: 600;
    line-height: 100px;
    margin-top: 20px;
}

#feedback .projects-counter .second-one .counter {
    color: #007BC0;
}

#feedback .projects-counter .third-one .counter {
    color: #f26522;
}

#feedback .projects-counter h4 {
    color: #6f797a;
    font-size: 28px;
    margin-top: -20px;
    line-height: 33px;
    font-weight: 400;
}

/* ==========================================================================
      =partners
========================================================================== */
#partners {
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
}

#partners img {
    width: 150px;
    height: 150px;
	border-radius: 20px;
	-webkit-transition: all .25s;
    transition: all .25s;
}

#partners img:hover {
    width: 160px;
    height: 160px;
}

#carousel-partners .carousel-control-prev,
#carousel-partners .carousel-control-next {
    width: 30px;
    height: 30px;
    background-color: #007BC0 !important;
    border-radius: 5px !important;
    text-indent: -999px;
    transition: .3s;
}

#carousel-partners .carousel-control-prev-icon,
#carousel-partners .carousel-control-next-icon {
    font-family: fontawesome;
    color: #fff !important;
    font-size: 25px;
    font-weight: 700;
}

#carousel-partners .carousel-control-prev-icon:before {
    content: "\f104";
}

#carousel-partners .carousel-control-next-icon:before {
    content: "\f105";
}

/* ==========================================================================
      =our-features
========================================================================== */
#our-features{
	padding-top: 20px;
	padding-bottom: 20px;
	overflow: hidden;
	
}
#our-features .icon{
	font-size: 32px;
	margin-top: 30px;
}
#our-features .icon-color1{
	color: #f26522;
}
#our-features .icon-color2{
	color: #8dc63f;
}
#our-features .icon-color3{
	color: #01bff3;
}
#our-features .icon-color4{
	color: #92278f;
}
#our-features h4{
	margin: 20px 0 15px;
	color: #007BC0;
	font-weight: 500;
	text-transform: uppercase;
}
#our-features p{
	line-height: 24px;
	margin-right: 50px;
}

/* ==========================================================================
      =why-choose-us
========================================================================== */
#why-choose-us{
	margin: 30px 0;
}
#why-choose-us .title{
	text-transform: uppercase;
}
#why-choose-us .details{
	margin-bottom: 30px;
}
#why-choose-us ul{
	font-weight: 300;
    margin-left: 20px;
}
#why-choose-us ul li{
	list-style: inherit;
	margin-bottom: 15px;
}

/* ==========================================================================
      =project details
========================================================================== */
.image-gallery {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 800px;
    margin: 30px auto 0;
}

#main-image {
    width: 100%;
    margin-bottom: 1em;
    border-radius: 20px;
    object-fit: cover;
    max-height: 600px;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 1s ease-in-out; /* Thêm hiệu ứng chuyển động */
}

.thumbnails {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail.active {
	border: 2px solid #007BC0;
}

.thumbnails img {
    width: 50px;
    height: 50px;
    margin: 5px;
    opacity: 0.4;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.3s ease; /* Thêm hiệu ứng chuyển động */
}

.thumbnails img:hover {
    opacity: 1;
}

.thumbnails img.active {
    opacity: 1;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 0.5em;
    cursor: pointer;
    font-size: 1em;
    line-height: 1;
    display: none; /* Ẩn các nút mặc định */
}

#prev {
    left: 0;
}

#next {
    right: 0;
}

.image-gallery:hover .nav-button {
    display: block; /* Hiển thị các nút khi di chuột vào khung xem ảnh */
}

.project-navigation {
    margin: 20px;
    text-align: center;
}

.project-navigation button {
    margin: 5px;
    padding: 5px 20px;
    cursor: pointer;
    border-radius: 20px;
}

#investor-web {
    color: #007BC0;
	font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease-in-out; /* Tạo hiệu ứng mượt */
}

#investor-web:hover {
    color: red; /* Đổi màu khi di chuột vào */
}

/* ==========================================================================
      =footer
========================================================================== */
#footer{
	padding-top: 10px;
	padding-bottom: 20px;
}
#footer h3{
	font-size: 24px;
	font-weight: 480;
	margin-top: 20px;
	margin-bottom: 16px;
}
#footer p{
	font-size: 16px;
	margin-top: 5px;
}

#footer h4{
	font-size: 20px;
	font-weight: 300;
	margin-bottom: 16px;
}

#footer .social-icon{
	display: block;
	overflow: hidden;
}
#footer .social-icon a{
	color: #fff;
	border-radius: 100%;
	display: block;
	font-size: 24px;
	width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    -webkit-text-shadow: 40px 40px 0 #1a336f, 39px 39px 0 #1a336f, 38px 38px 0 #1a336f, 37px 37px 0 #1a336f, 36px 36px 0 #1a336f, 35px 35px 0 #1a336f, 34px 34px 0 #1a336f, 33px 33px 0 #1a336f, 32px 32px 0 #1a336f, 31px 31px 0 #1a336f, 30px 30px 0 #1a336f, 29px 29px 0 #1a336f, 28px 28px 0 #1a336f, 27px 27px 0 #1a336f, 26px 26px 0 #1a336f, 25px 25px 0 #1a336f, 24px 24px 0 #1a336f, 23px 23px 0 #1a336f, 22px 22px 0 #1a336f, 21px 21px 0 #1a336f, 20px 20px 0 #1a336f, 19px 19px 0 #1a336f, 18px 18px 0 #1a336f, 17px 17px 0 #1a336f, 16px 16px 0 #1a336f, 15px 15px 0 #1a336f, 14px 14px 0 #1a336f, 13px 13px 0 #1a336f, 12px 12px 0 #1a336f, 11px 11px 0 #1a336f, 10px 10px 0 #1a336f, 9px 9px 0 #1a336f, 8px 8px 0 #1a336f, 7px 7px 0 #1a336f, 6px 6px 0 #1a336f, 5px 5px 0 #1a336f, 4px 4px 0 #1a336f, 3px 3px 0 #1a336f, 2px 2px 0 #1a336f, 1px 1px 0 #1a336f;
    text-shadow: 40px 40px 0 #1a336f, 39px 39px 0 #1a336f, 38px 38px 0 #1a336f, 37px 37px 0 #1a336f, 36px 36px 0 #1a336f, 35px 35px 0 #1a336f, 34px 34px 0 #1a336f, 33px 33px 0 #1a336f, 32px 32px 0 #1a336f, 31px 31px 0 #1a336f, 30px 30px 0 #1a336f, 29px 29px 0 #1a336f, 28px 28px 0 #1a336f, 27px 27px 0 #1a336f, 26px 26px 0 #1a336f, 25px 25px 0 #1a336f, 24px 24px 0 #1a336f, 23px 23px 0 #1a336f, 22px 22px 0 #1a336f, 21px 21px 0 #1a336f, 20px 20px 0 #1a336f, 19px 19px 0 #1a336f, 18px 18px 0 #1a336f, 17px 17px 0 #1a336f, 16px 16px 0 #1a336f, 15px 15px 0 #1a336f, 14px 14px 0 #1a336f, 13px 13px 0 #1a336f, 12px 12px 0 #1a336f, 11px 11px 0 #1a336f, 10px 10px 0 #1a336f, 9px 9px 0 #1a336f, 8px 8px 0 #1a336f, 7px 7px 0 #1a336f, 6px 6px 0 #1a336f, 5px 5px 0 #1a336f, 4px 4px 0 #1a336f, 3px 3px 0 #1a336f, 2px 2px 0 #1a336f, 1px 1px 0 #1a336f;
    overflow: hidden;
}
#footer .social-icon a.facebook{
	 background: #007BC0;
}

#footer .social-icon ul li{
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

/* Zalo botton Chat */
.zalo-chat {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 48px;
    height: 48px;
    background-color: #007BC0;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0 10px;
	animation: pulse 5s infinite;
}

.zalo-chat img {
    width: 32px;
    height: 32px;
}

.zalo-text {
    color: white;
    font-size: 16px;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
	margin-right: 5px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 143, 229, 0.8);
    }
    50% {
        box-shadow: 0 0 20px 20px rgba(0, 143, 229, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 143, 229, 0);
    }
}

.zalo-chat:hover {
    width: auto; /* Mở rộng khi hover */
}

.zalo-chat:hover .zalo-text {
    opacity: 1; /* Hiện chữ */
}

/* Call botton */
.call-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 48px;
    height: 48px;
	border: 1px solid #007BC0; /* Thêm viền */
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0 5px;
	animation: pulse 5s infinite;
}
.call-button img {
    width: 36px;
    height: 36px;
	transition: transform 0.3s ease;
}

.call-button img:hover {
    transform: scale(1.15);
}

/* Media queries for smaller screens */
@media (max-width: 768px) {
    .slider {
        max-height: 400px; /* Tăng chiều cao */
    }

    .slides img {
        width: auto;
        height: 320px; /* Cắt bớt chiều rộng */
		object-fit: cover; /* Đảm bảo ảnh không bị co lại */
        object-position: center; /* Đặt vị trí ảnh ở giữa */
    }

    .image-title {
        font-size: 20px; /* Giảm kích thước chữ */
		text-align: center;
		top: 30px;
		left: 20px;
		right: 20px;
    }
	.dots {
		bottom: 15px;
    }
	.language-buttons {
    margin-left: 0;
	}
	#partners img {
    width: 120px;
    height: 120px;
}

	#partners img:hover {
		width: 140px;
		height: 140px;
	}
		
    .navbar-nav {
        flex-direction: column;
        align-items: flex-end;
    }

    .navbar-nav .nav-item {
        margin-left: 0;
        margin-right: 10px;
    }
	
	.zalo-chat {
        width: auto;
        justify-content: start;
    }

    .zalo-text {
        opacity: 1;
        margin-left: 10px;
    }

}