body {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

#cookie-notice {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	z-index: 9999;
	justify-content: center;
	background: linear-gradient(90deg, #FACB2E 0%, #F48400 100%) !important;
	padding: .5rem 0;
	gap: 1rem;
}

#cookie-notice p {
	margin: 0;
}

#cookie-notice button {
	border-radius: .5rem;
}

html {
	scroll-behavior: smooth;
}

body {
	font-size: 1.6rem;
	font-family: "Inter", sans-serif;
}

header {
	position: relative;
	z-index: 1040;
}

.bg-main {
	background: var(--color-main) !important;
}

/*--------------------------------------------------------------------------
|  Header
--------------------------------------------------------------------------*/
.setting-menu {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1933;
	background: #1F6497;
	background: -moz-linear-gradient(left, #1F6497 0%, #03AF14 100%);
	background: -webkit-linear-gradient(left, #1F6497 0%, #03AF14 100%);
	background: linear-gradient(to right, #1F6497 0%, #03AF14 100%);
}

.bg-attachment {
	background-attachment: fixed;
}

.bg-attachment:before {
	content: "";
	background: rgb(12 112 62 / 70%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.entire-action-header {
	position: relative;
}

.entire-action-header .form-dropdown {
	position: absolute;
	padding: 10px;
	background-color: #ffffff;
	width: 300px;
	top: 100%;
	left: auto;
	right: 0;
	z-index: 1000;
	margin-bottom: 0;
	-webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
	-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
}

.entire-action-header:hover .form-dropdown {
	-webkit-animation: nav_menu_anim_open 0.3s both;
	-o-animation: nav_menu_anim_open 0.3s both;
	animation: nav_menu_anim_open 0.3s both;
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
	pointer-events: unset;
}

.login-section {
	border: 1px solid white;
	padding: 0.6rem 1rem;
	border-radius: 1rem;
}

.language-active a {
	text-transform: uppercase;
	color: white;
}

/*--------------------------------------------------------------------------
|  Main
--------------------------------------------------------------------------*/
.box-animation {
	position: relative;
}

.image-main {
	position: relative;
	z-index: 0;
}

.absolute-bottom {
	position: absolute;
	bottom: 0;
	animation-name: up-side;
}

.image-windmill1 {
	right: calc(10rem + 20vw);
	bottom: calc(10rem + 5vw);
	z-index: 1;
	animation-duration: 3s;
	animation-name: wind-1;
}

.image-windmill2 {
	z-index: 1;
	left: calc(5rem + 10vw);
	bottom: calc(1rem + 5vw);
	animation-duration: 3.2s;
	animation-name: wind-2;
}

.image-windmill3 {
	z-index: 1;
	left: calc(5rem + 28vw);
	bottom: calc(1rem + 7vw);
	animation-duration: 3.4s;
	animation-name: wind-3;
}

.image-windmill2 img {
	height: calc(45rem + 15vw);
}

.image-windmill1 img {
	height: calc(40rem + 15vw);
}

.image-mountain1 {
	animation-duration: 2.8s;
}

.image-mountain2 {
	animation-duration: 3s;
}

.image-grass {
	z-index: 99;
	animation-duration: 4s;
}

.image-energy {
	z-index: 98;
	animation-duration: 2.5s;
}

@keyframes up-side {
	0% {
		bottom: -150px;
	}

	100% {
		bottom: 0px;
	}
}

@keyframes wind-1 {
	0% {
		bottom: -150px;
	}

	100% {
		bottom: calc(10rem + 5vw);
	}
}

@keyframes wind-2 {
	0% {
		bottom: -150px;
	}

	100% {
		bottom: calc(1rem + 5vw);
	}
}

@keyframes wind-3 {
	0% {
		bottom: -150px;
	}

	100% {
		bottom: calc(1rem + 7vw);
	}
}

.text-animation {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 calc((100% - 80vw) / 2);
	text-align: center;
	z-index: 1015;
	color: white;
}

.text-animation h1 {
	font-size: 6rem;
	text-transform: uppercase;
	font-weight: bold;
	text-shadow: 0px 3px 5px #2d2d2d;
}

.text-animation p {
	font-size: 1.6rem;
}

.item-countdown {
	position: absolute;
	z-index: 1016;
	bottom: 0;
	text-align: center;
	right: calc((100% - 90vw) /2);
	margin-bottom: 2rem;
	-webkit-animation: slide-in-fwd-center 4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-in-fwd-center 4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-fwd-center {
	0% {
		-webkit-transform: translateZ(-1400px);
		transform: translateZ(-1400px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}

@keyframes slide-in-fwd-center {
	0% {
		-webkit-transform: translateZ(-1400px);
		transform: translateZ(-1400px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}

.item-countdown .countdown {
	display: inline-block;
}

.item-countdown .countdown ul {
	padding: 0;
	list-style: none;
	margin: 0;
}

.item-countdown .countdown li {
	display: inline-flex;
	list-style-type: none;
	padding: .5rem;
	background: var(--color-highlight);
	margin: 0 .5rem;
	font-size: 1.5rem;
	color: white;
	text-transform: uppercase;
	width: 77px;
	height: 77px;
	overflow: hidden;
	aspect-ratio: 1/1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.item-countdown .countdown li span {
	display: block;
	font-size: 3rem;
	font-weight: bold;
}

.btn-reg-countdown {
	display: block;
	background: #03AF14;
	background: -moz-linear-gradient(left, #03AF14 0%, #1F6497 100%);
	background: -webkit-linear-gradient(left, #03AF14 0%, #1F6497 100%);
	background: linear-gradient(to right, #03AF14 0%, #1F6497 100%);
	color: white;
	padding: 1rem 2rem;
	margin: 0 .5rem;
	font-size: 1.6rem;
	cursor: pointer;
}

.item-countdown>p {
	color: var(--color-highlight);
	text-align: left;
	margin-left: .5rem;
	font-size: 2rem;
	font-weight: bold;
}

.mission--wrap {
	text-align: center;
	background: var(--green-light);
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	padding: 6rem 3rem;
	font-size: 2rem;
	text-transform: uppercase;
	border-radius: 6rem;
}

.mission--description {
	font-size: 3.6rem;
	font-weight: bold;
	color: #03AF14;
}

.bg-mission .mission--wrap {
	background: var(--orange-light);
	;
}

.bg-mission .mission--wrap .mission--description {
	color: #FF9600;
}

.info-mission {
	position: relative;
}

.info-mission:before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 80%;
	height: 80%;
	border: 2px dashed var(--color-highlight);
	border-radius: 100%;
	bottom: 4rem;
	left: -4rem;
}

.info-mission:after {
	content: "";
	display: inline-block;
	position: absolute;
	width: 4rem;
	height: 4rem;
	background: var(--color-highlight);
	border-radius: 100%;
	bottom: 2rem;
	left: 12rem;
	z-index: -1;
}

.ratio-mission {
	position: relative;
	padding: 0 0 3rem 0;
}

.ratio-mission:before {
	content: "";
	display: inline-block;
	width: 56rem;
	height: 56rem;
	position: absolute;
	right: -8rem;
	bottom: -3rem;
	background: var(--green-light);
	border-radius: 100%;
	aspect-ratio: 1/1;
	z-index: -1;
}

.ratio-mission:after {
	content: "";
	display: inline-block;
	width: 10rem;
	height: 10rem;
	position: absolute;
	right: -8rem;
	bottom: 3rem;
	background: var(--orange-light);
	border-radius: 100%;
	aspect-ratio: 1/1;
	z-index: -1;
}

.line-tilte {
	width: 10rem;
	border-top: 4px solid var(--color-highlight);
}

.item-activity {
	text-align: center;
	padding: 1.5rem;
	border-radius: 2rem;
	overflow: hidden;
}

.ratio-activity {
	border: 4px solid #FFCE88;
	display: inline-block;
	padding: 2rem;
	border-radius: 100%;
	background: var(--orange-light);
	margin-bottom: 3rem;
	position: relative;
	overflow: hidden;
}

.ratio-activity img {
	height: 8rem;
	width: 8rem;
	object-fit: contain;
	aspect-ratio: 1/1;
}

.activity--title {
	color: var(--color-main);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: .5rem;
}

.btn-activity {
	position: relative;
	bottom: -10rem;
}

.item-activity:hover .btn-activity {
	animation-name: up-side;
	bottom: 0 !important;
}

.ratio-activity:before {
	content: "";
	background: green;
	position: absolute;
	bottom: -100%;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	transition: all 0.25s ease;
}

.item-activity:hover .ratio-activity:before {
	bottom: 0 !important;
}

.item-activity:hover .ratio-activity img {
	filter: brightness(0) invert(1);
}

.item-activity:hover .ratio-activity {
	border: 4px solid #C1F9C6;
}

.item-activity:hover {
	background: var(--green-light);
}

.activity-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
}

.activity-navigation .swiper-button-prev,
.activity-navigation .swiper-button-next {
	position: relative;
	right: 0;
	left: 0;
}

.activity-navigation>div {
	background: lightgray;
	border-radius: 100%;
	padding: .5rem .5rem;
	font-size: 1.4rem;
	margin: 0 .5rem;
	top: 0;
	transform: none;
}

.activity-navigation>div:hover {
	background: var(--green-light);
	color: green;
}

.bg-content {
	background-size: cover;
	background-position: center;
	padding: 3rem 0;
	position: relative;
}

.swiper-expert .swiper-wrapper {
	height: 43rem;
}

.article-expert {
	overflow: hidden;
	transition: .5s;
	margin: 0 0%;
	box-shadow: 0 20px 30px rgba(0, 0, 0, .1);
	position: relative;
	z-index: 1;
}

.article-expert:hover {
	width: 50% !important;
}

.article-expert .inner-content {
	position: absolute;
	z-index: 9999;
	padding: 3.5rem 2rem;
	bottom: 0px;
	transition: all 0.5s linear;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
	width: 100%;
	color: white;
	opacity: 0;
}

.article-expert:hover .inner-content {
	opacity: 1;
}

.article-expert img {
	width: 200%;
	height: calc(100%);
	object-fit: cover;
	transition: .5s;
	position: relative;
	border-radius: 12px;
}

.article-expert:hover .ratio-expert img {
	width: 100%;
	height: 100%;
}

.expert-title a {
	font-size: 2.4rem;
	font-weight: bold;
	text-transform: uppercase;
	color: white;
}

.expert-description {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 1rem;
}

.expert-navigationd.international {
	display: none !important;
}

.article-view-more {
	color: #ef8a00;
	text-decoration: underline;
}

.article-view-more:hover {
	text-decoration: none;
}

.tab-ev.ev-main.block-tab.nav .nav-item .nav-link {
	color: white;
	border: 1px solid white;
}

.tab-ev.block-tab.nav .nav-item .nav-link {
	border-radius: 8px;
	color: var(--color-main);
	border: 1px solid var(--color-main);
	margin-left: 1rem;
}

.tab-ev.block-tab.nav .nav-item .nav-link.active,
.tab-ev.block-tab.nav .nav-item .nav-link:hover {
	background: linear-gradient(90deg, #FACB2E 0%, #F48400 100%) !important;
	border-color: transparent !important;
	color: white;
}

.tab-ev.block-tab.nav .nav-item .nav-link:after {
	display: none;
}

.expert-navigationd>div {
	background: rgb(91 86 86 / 60%);
	border-radius: 100%;
	padding: .3rem .5rem;
	margin: 0 .5rem;
	width: 3rem;
	text-align: center;
}

.expert-navigationd>div>i {
	font-size: 2rem;
	margin: 0;
}

.expert-navigationd>div:hover {
	background: rgb(255 165 0 / 60%);
	color: orange;
}

.tab-category-child {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	position: relative
}

.tab-category-child>a {
	color: black;
	margin: 0 .5rem;
}

.tab-category-child>a:hover {
	color: var(--color-highlight);
	border-bottom: 1px solid;
}

.article-entry-info {
	display: flex;
	justify-content: space-between;
	font-size: 1.4rem;
}

.article-entry-info span:before {
	content: "";
	width: 1.6rem;
	height: 1.4rem;
	background: var(--color-highlight);
	display: inline-block;
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	position: relative;
	top: 2px;
	margin-right: .5rem;
}

.article-item-first .inner-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1rem;
}

.article-item-first .inner-content .article-title a {
	color: white;
}

.grid-container {
	columns: 3;
	column-gap: 1.5rem;
	width: 100%;
	margin: 0 auto;
}

.grid-container>.grid-colum {
	margin-bottom: 1rem;
	display: inline-block;
	width: 100%;
	border-radius: 1rem;
	overflow: hidden;
}

.grid-container>.grid-colum:nth-child(3n+1) .inner-image,
.grid-container>.grid-colum:nth-child(4n+1) .inner-image {
	padding-top: 75%;
}

.tab-category-child2 {
	display: flex;
	flex-wrap: wrap;
	position: relative;
}

.tab-category-child2>a {
	color: black;
	margin: 0 .5rem;
	border-bottom: 1px solid transparent;
}

.tab-category-child2>a:hover {
	color: var(--color-highlight) !important;
	border-bottom: 1px solid;
}

.item-file .inner-image {
	background: #142654;
}

.item-file .inner-content {
	padding: 1.5rem !important;
}

.item-file .article-title a {
	color: var(--color-main) !important;
}

.item-file .inner-content i {
	color: #03AF14;
	font-size: 2rem;
	margin-right: .5rem;
}

.item-file .article-title {
	font-size: 2rem;
}

.view-detail {
	background: linear-gradient(90deg, #FACB2E 0%, #F48400 100%);
	display: inline-flex;
	padding: 8px 10px;
	justify-content: center;
	align-items: center;
	color: white !important;
}

.box-kienthuc .tab-content>.active .swiper-wrapper {
	height: 30rem;
	overflow: hidden;
}

.item-kienthuc {
	flex: 1;
	width: 200%;
	height: calc(100%);
	object-fit: cover;
	transition: .5s;
	position: relative;
	border-radius: 12px;
	display: flex;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
	flex-direction: row;
	margin: 0 .75rem;
	padding: .3rem;
}

.item-kienthuc .inner-image {
	position: relative;
	height: 100%;
	width: 100%;
	display: block;
}

.item-kienthuc .inner-content {
	display: none;
	padding: 1.5rem .5rem 1.5rem 1.5rem;
}

.item-kienthuc .article-title a {
	font-size: 2rem;
	color: var(--color-highlight);
	font-weight: 700;
}

.item-kienthuc .article-description {
	white-space: pre-wrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	display: -webkit-box;
}

.item-kienthuc:hover {
	flex: 0 0 50%;
	max-width: 50%;
}

.item-kienthuc:hover .inner-content {
	display: block;
	width: 66.66667%;
}

.item-kienthuc:hover .inner-image {
	width: 33.3333%;
}

.item-kienthuc .inner-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	display: block;
}

.box-partner .nav-link {
	border: 1px solid;
	border-radius: 1rem;
}

.box-partner .nav-item {
	margin: 0 .5rem;
}

.box-partner .nav-item .nav-link.active {
	background: #03AF14;
	background: -moz-linear-gradient(left, #03AF14 0%, #1F6497 100%);
	background: -webkit-linear-gradient(left, #03AF14 0%, #1F6497 100%);
	background: linear-gradient(to right, #03AF14 0%, #1F6497 100%);
	color: white !important;
}

#modalWindow {
	position: fixed;
	right: 1rem;
	top: 35%;
	z-index: 1019;
}

/*page ve chung toi*/
.item-target img {
	width: 12.8rem;
	aspect-ratio: 1/1;
	object-fit: contain;
}

.target--title {
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--color-main);
	margin: 2rem 0 1rem 0;
	padding-top: 1rem;
	position: relative;
}

.target--title:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4rem;
	height: .4rem;
	background: var(--color-main);
}

.target--description {
	text-align: justify;
	color: #5B5656;
}

.item-left .title-section {
	position: absolute;
	right: calc(12%);
	top: 55%;
	transform: translateY(-50%);
}

.text-manage {
	background: #1C6B29;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 3rem;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	border-radius: 17px;
	margin-top: 2rem;
}

.ratio-key0 {
	padding-top: 39.65%;
}

.image-standing {
	width: 15rem;
	height: 15rem;
	overflow: hidden;
	margin: 0 auto;
	border-radius: 100%;
	border: 3px solid var(--color-highlight);
}

.image-standing img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.info-standing {
	padding: 0;
	list-style: none;
}

.title-standing {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1.8rem;
}

.box-standing .block-tab.nav .nav-item .nav-link {
	background: whitesmoke;
	color: var(--color-main);
	text-transform: uppercase;
	font-weight: 700;
	margin: 0 .5rem;
}

.box-standing .block-tab.nav .nav-item .nav-link.active,
.box-standing .block-tab.nav .nav-item .nav-link:hover {
	background: #078E15;
	color: white;
}

.banner-right {
	position: fixed;
	right: calc((100% - 80vw) / 2);
	top: 27%;
	z-index: 9;
}

.banner-left {
	position: fixed;
	left: calc((100% - 80vw) / 2);
	top: 27%;
	z-index: 9;
}

.nav-scroll {
	position: fixed;
	left: calc((100% - 80vw) / 2);
	top: 18%;
	z-index: 1;
}

.nav-scroll>li>a {
	font-size: 53px;
	color: #fff;
	text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
	cursor: pointer;
}

.banner-x.stop {
	top: 70%;
}

.nav-scroll>li>a.active {
	color: var(--color-highlight) !important;
	text-shadow: none;
}

/*page du an*/
.tab-list.nav .nav-item .nav-link.active,
.tab-list.nav .nav-item .nav-link:hover {
	color: white;
	background: var(--green);
}

.tab-list .nav-item .nav-link {
	border: 1px solid;
	border-radius: .8rem;
	margin-right: 1rem;
}

.tab-list .nav-item .nav-link::after {
	display: none;
}

.tab-list-child>a {
	display: inline-block;
	position: relative;
	color: var(--color-main);
	font-weight: 500;
	padding: .8rem 2.5rem;
	margin-bottom: -0.1rem;
	border: 1px solid var(--color-main);
	border-radius: .8rem;
	margin-right: 1rem;
}

/*page ky nang*/
.skill-item {
	background: whitesmoke;
	padding: 1.5rem;
	border-radius: .8rem;
}

.ratio-skill {
	display: inline-block;
	background: white;
	padding: 1rem;
	border-radius: 100%;
	overflow: hidden;
}

.ratio-skill img {
	width: 6.4rem;
	height: 6.4rem;
	aspect-ratio: 1/1;
	object-fit: contain;
}

.skill-title a {
	font-size: 1.9rem;
	color: black;
	font-weight: 700;
}

.ratio-image-cate {
	padding-top: 25%;
}

#example-popup .modal-dialog {
	max-width: max-content;
}

#example-popup .close {
	position: absolute;
	right: 1rem;
	top: 0rem;
}

.modal-form-reg .modal-content {
	border-radius: 1.5rem;
}

.modal-header-form {
	position: relative;
	margin-bottom: 2rem;
}

.modal-header-form img {
	filter: invert(48%) sepia(100%) saturate(1554%) hue-rotate(10deg) brightness(103%) contrast(102%);
	max-height: 7rem;
}

.modal-header-form .close {
	position: absolute;
	right: -1rem;
	top: -2rem;
}

.title-form {
	color: #1F6497;
	font-size: 2rem;
	font-weight: 700;
	margin-top: 1.7rem;
}

.desc-form {
	font-size: 1.6rem;
	color: #5B5656;
}

.modal-body-form .btn-submit {
	background: linear-gradient(90deg, #03AF14 0%, #1F6497 100%);
	border: 0;
}

.faq-main .card {
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
	border: 1px solid var(--color-highlight);
	border-radius: 8px;
	margin-bottom: 1.5rem;
	overflow: hidden;
}

.faq-main .card-header h5 button {
	width: 100%;
	text-align: left;
	font-size: 18px;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: bold;
	color: var(--color-highlight);
}

.faq-main .card-body {
	color: black;
	padding: 1.5rem;
}

.modal-form-reg-faq .modal-dialog {
	max-width: 60rem;
}

.modal-form-reg-faq .modal-content {
	border-radius: 1rem;
	overflow: hidden;
}

.modal-form-reg-faq .modal-header-form {
	background: linear-gradient(90deg, #03AF14 0%, #1F6497 100%);
	padding: 3rem 2rem;
	margin: 0;
}

.modal-form-reg-faq .modal-header-form .title-form {
	margin: 0 !important;
	color: white;
	font-size: 2.5rem;
}

.modal-form-reg-faq .modal-header-form .close {
	right: 1rem;
	top: 1rem;
	background: white;
	width: 3rem;
	height: 3rem;
	border-radius: 100%;
}

.modal-form-reg-faq .modal-body-form {
	padding: 2rem;
}

.modal-form-reg-faq .btn-submit {
	display: block;
	background: #ef8a00;
	color: white;
}

.modal-form-reg-faq .form-check {
	display: flex;
	align-items: center;
	padding-left: 2.25rem;
}

.modal-form-reg-faq .form-check label {
	font-weight: 400;
}

.modal-form-reg-faq .form-check-input {
	margin-top: 0;
	margin-left: -2rem;
}

/*--------------------------------------------------------------------------
|  Footer
--------------------------------------------------------------------------*/
footer {
	background: url(https://cdn3066.cdn4s6.io.vn/media/template/renewable-energy-wallpapers.webp) no-repeat center center;
	position: relative;
	background-size: cover;
}

.footer-blur:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgb(0 0 0 / 55%);
}

.footer-blur {
	position: relative;
}

.social-inline {
	flex-wrap: wrap;
	gap: 2rem;
}

.social-inline a {
	display: inline-flex;
	background: var(--color-highlight);
	width: 4rem;
	height: 4rem;
	aspect-ratio: 1/1;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}

.social-inline a:hover {
	background: #03AF14;
	background: -moz-linear-gradient(left, #03AF14 0%, #1F6497 100%);
	background: -webkit-linear-gradient(left, #03AF14 0%, #1F6497 100%);
	background: linear-gradient(to right, #03AF14 0%, #1F6497 100%);
}

.footer-menu-section .desc-footer {
	color: white;
	font-size: 1.3rem;
}

.footer-menu-section form .btn-submit {
	display: block;
	background: #03AF14;
	background: -moz-linear-gradient(left, #03AF14 0%, #1F6497 100%);
	background: -webkit-linear-gradient(left, #03AF14 0%, #1F6497 100%);
	background: linear-gradient(to right, #03AF14 0%, #1F6497 100%);
	border: 0;
}

/*--------------------------------------------------------------------------
|  Responsive
--------------------------------------------------------------------------*/
/* Portrait */
@media (min-width: 320px) and (max-width: 812px) {
	.box-animation {
		height: 60rem;
	}

	.box-animation .image-main img {
		height: 60rem;
		object-fit: cover;
	}

	.text-animation h1 {
		font-size: 3rem;
	}

	.box-animation .image-energy img {
		height: 25rem;
	}

	.box-animation .image-windmill1 img,
	.box-animation .image-windmill2 img,
	.box-animation .image-windmill3 img {
		height: 30rem;
	}

	.box-animation .image-windmill3 {
		left: calc(5rem + 46vw);
	}

	.box-animation .image-windmill1 {
		right: calc(10rem + 55vw);
	}

	.box-kienthuc .tab-content>.active>.row {
		height: 20rem;
	}

	.nav-scroll {
		background: rgb(255 255 255 / 50%);
		z-index: 1;
		border-radius: .5rem;
	}

	.nav-scroll>li>a {
		font-size: 2rem;
	}
}

@media (max-width: 1349px) {

	.banner-right,
	.banner-left {
		display: none;
	}

	.nav-scroll {
		left: 0;
	}
}

@media (min-width: 992px) {
	.desc-section {
		width: 75%;
		margin: 0 auto;
	}

	.tab-category-child {
		top: -6rem;
	}

	.tab-category-child2 {
		top: -2rem;
	}
}

.setting-menu .btn-menu-mobile {
	float: right;
}

.box-animation img {
	width: 100%;
	object-fit: cover;
}

.box-animation .swiper-banner-top .swiper-slide {
	height: 100vh;
}

.box-animation .swiper-banner-top .swiper-slide img {
	height: 100%;
}

.footer-menu-section {
	margin-bottom: 2rem;
}

.tab-list-cate .nav-item.has-child {
	/*padding-bottom: 6rem;*/
}

.tab-list-cate .nav-item.has-child .cate-child {
	padding: 0;
	list-style: none;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	display: none;
	align-items: center;
}

.tab-list-cate .nav-item .cate-child .nav-link.active {
	color: var(--green);
	background: #d9fedd;
}

#scroll-height {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	position: fixed;
	left: 0;
	top: 23.5%;
	height: calc(100vh - 25%);
	line-height: 1;
	color: #d4ca9f;
	z-index: 9999;
}

#scroll-height>div {
	display: flex;
	justify-content: flex-end;
	padding-left: 4rem;
	position: relative;
}

#scroll-height>div:before {
	content: " ";
	display: block;
}

#scroll-height>div:nth-child(2n+1):before {
	content: "";
	position: absolute;
	width: 3rem;
	height: 1px;
	top: 50%;
	left: 0;
	background: #d4ca9f;
}

#login-modal .logo-modal {
	text-align: center;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 3rem;
}

#login-modal .logo-modal img {
	height: 6rem;
	filter: invert(48%) sepia(100%) saturate(1554%) hue-rotate(10deg) brightness(103%) contrast(102%);
}

.banner-qc img {
	max-height: 50vh;
}

button.btn.dropdown-toggle {
	border-radius: 1rem !important;
}

.mx--5 {
	margin-right: -5px;
	margin-left: -5px;
}

/*he thong cua hang*/
.map-info iframe {
	width: 100%;
	height: 550px;
}

.title-section-map-infor {
	font-size: 26px;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 45px;
	color: var(--color-highlight);
}

.bg-color-map-ht {
	background-color: #F9F9F9;
	border-radius: 12px;
	padding: 15px;
}

.bg-color-map-ht2 {
	background-color: #F9F9F9;
	border-radius: 12px;
}

.cus-filter-map-ht button {
	border: 1px solid #ccc;
}

.cus-list-map-ht .item {
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
	padding: 12px;
	cursor: pointer;
}

.cus-list-map-ht .item.active {
	background-color: #ef8a0021;
	padding: 12px;
}

.store-system .address {
	max-height: 46rem;
	overflow-y: auto;
}

.store-system .address {
	max-height: 44rem;
	overflow-y: auto;
}

.store-system .address::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #F5F5F5;
}

.store-system .address::-webkit-scrollbar {
	width: 8px;
	background-color: #F5F5F5;
}

.store-system .address::-webkit-scrollbar-thumb {
	background-color: #000000;
	border: 1px solid #555555;
}

.ten-chi-nhanh-vn {
	font-size: 19px;
	font-weight: 600;
}

.table-chi-nhanh-vn tr>td {
	width: 50%;
}

.color-dia-diem-vn {
	color: #5B5656;
	font-weight: 700;
}

.table-chi-nhanh-vn {
	margin-top: 15px;
	margin-bottom: 15px;
}

.img-ban-do-chi-nhanh-vn img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 12px;
}

.cus-border-top-gioi-thieu-vn {
	border-top: 1px solid #CECECE;
	padding-top: 15px;
}

.bg-left-chi-nhanh-vn {
	background: #F9F9F9;
	padding: 20px;
	max-height: 500px;
	overflow-y: auto;
	border-radius: 12px;
}

.bg-left-chi-nhanh-vn::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #F5F5F5;
}

.bg-left-chi-nhanh-vn::-webkit-scrollbar {
	width: 8px;
	background-color: #F5F5F5;
}

.bg-left-chi-nhanh-vn::-webkit-scrollbar-thumb {
	background-color: #000000;
	border: 1px solid #555555;
}

.ratio-map {
	padding-top: 52%;
}

.topbar-section ul.topbar-dropdown {
	background: #03AF14;
	background: -moz-linear-gradient(left, rgb(3 175 20 / 70%) 0%, rgb(31 100 151 / 70%) 100%);
	background: -webkit-linear-gradient(left, rgb(3 175 20 / 70%) 0%, rgb(31 100 151 / 70%) 100%);
	background: linear-gradient(to right, rgb(3 175 20 / 70%) 0%, rgb(31 100 151 / 70%) 100%);
	border-radius: 1rem;
}

.topbar-section ul.topbar-dropdown a {
	color: white;
}

.topbar-section ul.topbar-dropdown a:hover {
	color: var(--color-highlight);
	background: none;
}

.search-section .form-dropdown {
	background: #03AF14;
	background: -moz-linear-gradient(left, rgb(3 175 20 / 70%) 0%, rgb(31 100 151 / 70%) 100%);
	background: -webkit-linear-gradient(left, rgb(3 175 20 / 70%) 0%, rgb(31 100 151 / 70%) 100%);
	background: linear-gradient(to right, rgb(3 175 20 / 70%) 0%, rgb(31 100 151 / 70%) 100%);
	border-radius: 1rem;
}

.search-section .form-dropdown .form-control {
	background: no-repeat;
	color: white;
	border: none;
	border-bottom: 1px solid white;
}

.search-section .form-dropdown .form-control::placeholder {
	color: white;
}

.search-section .form-dropdown .form-control::-ms-input-placeholder {
	color: white;
}

.search-section .form-dropdown .input-group-append .btn {
	background: none;
	border: none;
	border-bottom: 1px solid white;
}

.titie-page {
	color: var(--color-highlight);
	margin-bottom: 2rem;
	font-weight: bold;
}

.article-item:hover {
	background: var(--color-highlight);
	border-radius: 1rem;
}

.article-item:hover .inner-content {
	padding: 1rem;
	padding-top: 0;
}

.article-item .inner-content {
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.article-item:hover .inner-content .article-title a {
	color: white;
}

.article-item:hover .inner-content .article-entry-info .post-date {
	color: white;
}

.article-item:hover .inner-content .article-entry-info .post-date::before {
	background: white;
}


.item-countdown .countdown li {
	width: 65px;
	height: 65px;
}

@media (min-width: 1450px) {
	.box-anh-left img {
		position: absolute;
		top: 40px;
		left: -165px;
	}

	.box-anh-right img {
		position: absolute;
		top: 40px;
		right: -165px;
	}
}

@media (min-width: 768px) {
	.col-md-crt {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.col-md-crt-2 {
		flex: 0 0 40%;
		max-width: 40%;
		display: flex;
		flex-wrap: wrap;
		gap: 1rem;
	}

	.col-md-crt-2>div {
		flex: 1 1;
	}

	.width-pc .row>div:nth-child(1) {
		flex: 0 0 15%;
		max-width: 15%;
	}

	.width-pc .row>div:nth-child(2) {
		flex: 0 0 56%;
    max-width: 56%;
	}

	.width-pc .row>div:nth-child(3) {
		flex: 0 0 29%;
    max-width: 29%;
	}
}

@media (min-width: 1101px) {
	.width-pc .row>div:nth-child(1) {
		flex: 0 0 12%;
		max-width: 12%;
	}

	.width-pc .row>div:nth-child(2) {
		flex: 0 0 68%;
		max-width: 68%;
	}

	.width-pc .row>div:nth-child(3) {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (max-width: 1450px) {
	.box-anh-left img {
		display: none;
	}

	.box-anh-right img {
		display: none;
	}
}

@media (max-width: 1185px) and (min-width: 768px) {
	.width-pc .row>div:nth-child(2) {
		padding: 0;
	}
	.width-pc .row>div:nth-child(3) {
		padding-left: 0;
	}
	.menu-section ul {
		gap: 1rem;
	}
}

@media (max-width: 768px) {
	.map-info iframe {
		width: 100%;
		height: 250px;
		margin-top: 20px;
	}

	.store-system .address {
		max-height: 30rem;
		overflow-y: auto;
	}

	.bg-left-chi-nhanh-vn {
		max-height: 300px;
	}

	.nd-gioi-thieu-vn img {
		width: 100%;
		height: auto;
	}

	.img-ban-do-chi-nhanh-vn img {
		margin-top: 20px;
		height: 250px;
	}

	.ten-chi-nhanh-vn {
		font-size: 17px;
	}
}

@media (max-width: 767px) {
	#scroll-height {
		display: none;
	}
}

/*end he thong cua hang*/