.box-form-resgeter-select .header-icons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
	animation: fadeIn 0.6s ease-out;
}
#page-home{
	overflow-x: hidden;
}
.box-form-resgeter-select .icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	animation: bounce 2s infinite;
}

.box-form-resgeter-select .icon:nth-child(1) {
	background: #00bcd4;
	animation-delay: 0s;
}

.box-form-resgeter-select .icon:nth-child(2) {
	background: #4caf50;
	animation-delay: 0.2s;
}

.box-form-resgeter-select .icon:nth-child(3) {
	background: #ff9800;
	animation-delay: 0.4s;
}

.box-form-resgeter-select .icon:nth-child(5) {
	background: #e91e63;
	animation-delay: 0.8s;
}

.box-form-resgeter-select .icon:nth-child(6) {
	background: #9c27b0;
	animation-delay: 1s;
}

.box-form-resgeter-select .icon:nth-child(7) {
	background: #f44336;
	animation-delay: 1.2s;
}

.box-form-resgeter-select .free-badge {
	width: 65px;
	height: 65px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	animation: bounce 2s infinite;
	animation-delay: 0.6s;
}

.box-form-resgeter-select .free-badge div {
	color: #ffa500;
	font-weight: bold;
	font-size: 11px;
	text-align: center;
	line-height: 1.2;
}



.box-form-resgeter-select .contact-form {
	display: flex;
	gap: 15px;
	margin-bottom: 0px;
	flex-wrap: wrap;
}

.box-form-resgeter-select .contact-form input {
	flex: 1;
	min-width: 200px;
	padding: 10px 25px;
	border: none;
	border-radius: 50px;
	font-size: 14px;
	outline: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.box-form-resgeter-select .contact-form input:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.box-form-resgeter-select .contact-form input:focus {
	border-color: #ffa500;
	box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}



.box-form-resgeter-select .selection-row {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.box-form-resgeter-select .selection-row select {
	flex: 1;
	min-width: 200px;
	padding: 15px 20px;
	border: none;
	border-radius: 5px;
	font-size: 14px;
	background: white;
	cursor: pointer;
	outline: none;
	transition: all 0.3s ease;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	padding-right: 40px;
	border: 2px solid transparent;
}

.box-form-resgeter-select .selection-row select:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.box-form-resgeter-select .selection-row select:focus {
	border-color: #ffa500;
	box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.box-form-resgeter-select .btn-search {
	flex: 1;
	min-width: 200px;
	padding: 15px 30px;
	background: #e53935;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.box-form-resgeter-select .btn-search:hover {
	background: #c62828;
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.box-member-header-form {}

.box-form-resgeter-select .header-icons img {
	height: 50px;
}


section.section.cacbuoc .title {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 35px;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 20px 0;
}

section.section.cacbuoc .title span {}

section.section.cacbuoc .title::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--color-main2), transparent);
	border-radius: 2px;
	animation: lineExpand 2s ease-in-out infinite;
}

@keyframes titleGlow {

	0%,
	100% {
		filter: drop-shadow(0 0 5px rgba(231, 76, 60, 0.3));
	}

	50% {
		filter: drop-shadow(0 0 15px rgba(231, 76, 60, 0.6));
	}
}

@keyframes bounce {

	0%,
	100% {
		transform: translateX(-50%) translateX(-280px) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateX(-280px) translateY(-5px);
	}
}

@keyframes lineExpand {

	0%,
	100% {
		width: 150px;
		opacity: 0.5;
	}

	50% {
		width: 250px;
		opacity: 1;
	}
}

section.section.cacbuoc .cards-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

section.section.cacbuoc .card {
	background: linear-gradient(135deg, #2e85c2 0%, #2f8aba 100%);
	border-radius: 15px;
	padding: 15px 10px;
	text-align: center;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	color: white;
}

section.section.cacbuoc .card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

section.section.cacbuoc .card:hover::before {
	left: 100%;
}

section.section.cacbuoc .card:hover {
	transform: translateY(-10px) scale(1.03);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

section.section.cacbuoc .icon-wrapper {
	width: 100px;
	height: 100px;
	margin: 0 auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.4s ease;
}

section.section.cacbuoc .card:hover .icon-wrapper {
	transform: scale(1.1) rotate(5deg);
}

section.section.cacbuoc .icon-wrapper svg {
	width: 80px;
	height: 80px;
}

section.section.cacbuoc .card-title {}

section.section.cacbuoc .card:hover .card-title {
	color: #e74c3c;
}

section.section.cacbuoc .card-subtitle {}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

section.section.cacbuoc .card {
	animation: fadeInUp 0.6s ease forwards;
}

section.section.cacbuoc .card:nth-child(1) {
	animation-delay: 0.1s;
}

section.section.cacbuoc .card:nth-child(2) {
	animation-delay: 0.2s;
}

section.section.cacbuoc .card:nth-child(3) {
	animation-delay: 0.3s;
}

section.section.cacbuoc .card:nth-child(4) {
	animation-delay: 0.4s;
}

section.section.cacbuoc .card:nth-child(5) {
	animation-delay: 0.5s;
}

section.section.cacbuoc .card:nth-child(6) {
	animation-delay: 0.6s;
}



.box-visa-member .ctnr {

	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.box-visa-member .section {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.box-visa-member .main-slider {
	position: relative;
	height: 500px;
}

.box-visa-member .slide-item {
	position: relative;
	height: 500px;
	outline: none;
}

.box-visa-member .slide-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.box-visa-member .slide-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	padding: 30px;
	color: white;
}

.box-visa-member .slide-badge {
	display: inline-block;
	background: white;
	color: #333;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}

.box-visa-member .slick-prev,
.box-visa-member .slick-next {
	width: 50px;
	height: 50px;
	z-index: 100;
	background: rgba(255, 255, 255, 0.9) !important;
	border-radius: 50%;
}

.box-visa-member .slick-prev:hover,
.box-visa-member .slick-next:hover {
	background: white !important;
}

.box-visa-member .slick-prev:before,
.box-visa-member .slick-next:before {
	font-size: 30px;
	color: #333;
}

.box-visa-member .slick-prev {
	left: 20px;
}

.box-visa-member .slick-next {
	right: 20px;
}

.box-visa-member .slick-dots {
	bottom: 20px;
}

.box-visa-member .slick-dots li button:before {
	font-size: 12px;
	color: white;
	opacity: 0.5;
}

.box-visa-member .slick-dots li.slick-active button:before {
	color: white;
	opacity: 1;
}

.box-visa-member .thumbnail-slider {}

.box-visa-member .thumbnail-item {
	outline: none;
	padding: 0 5px;
	cursor: pointer;
}

.box-visa-member .thumbnail-inner {
	height: 122px;
	border-radius: 8px;
	margin: 3px 0;
	overflow: hidden;
	border: 3px solid transparent;
	transition: all 0.3s;
}

.box-visa-member .thumbnail-item:hover .thumbnail-inner,
.box-visa-member .thumbnail-item.slick-current .thumbnail-inner {
	border-color: var(--color-main);
	
}

.box-visa-member .thumbnail-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.box-visa-member .visa-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	padding: 20px;
}

.box-visa-member .visa-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	cursor: pointer;
}

.box-visa-member .visa-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.box-visa-member .visa-image {
	position: relative;
	height: 180px;
}

.box-visa-member .visa-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.box-visa-member .edu-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: linear-gradient(135deg, #ff6b00 0%, #f00 100%);
	color: white;
	padding: 5px 12px;
	border-radius: 5px;
	font-size: 12px;
	font-weight: bold;
}

.box-visa-member .visa-content {}

.box-visa-member .visa-title {}

.box-visa-member .visa-description {
	font-size: 13px;
	color: #666;
	line-height: 1.5;
}


.box-edutime {
	/* Custom Slick Arrows */
	/* Megaphone Icon */
	/* Responsive */
	background: url(https://duhocedutime.edu.vn/wp-content/uploads/2020/07/nen_01-min-1024x612-1.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.box-edutime h1 {
	color: #eb2227 !important;
	font-size: 31px;
	font-weight: 700;
	margin-bottom: 25px;
	text-align: center;
}

.box-edutime .testimonial-wrapper {
	display: grid;
	align-items: center;
	gap: 50px;
	border-radius: 30px;
	padding: 60px;
	grid-template-columns: 49% 45%;
}

.box-edutime .testimonial-content {
	flex: 1;
}

.box-edutime .testimonial-slider {
	position: relative;
}

.box-edutime .testimonial-item {
	outline: none;
	padding: 20px;
	background: #fff;
	border-radius: 5px;
	border: 2px solid #f5f5f5;
}

.box-edutime .testimonial-text {
	font-size: 18px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 30px;
}

.box-edutime .testimonial-author {
	display: flex;
	align-items: center;
	gap: 20px;
}

.box-edutime .author-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.box-edutime .author-info h3 {
	color: #f36;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 5px;
}

.box-edutime .author-info p {
	color: #666;
	font-size: 16px;
}

.box-edutime .testimonial-illustration {
	flex: 0 0 450px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.box-edutime .illustration-container {
	position: relative;
}

.box-edutime .illustration-bg {
	position: absolute;
	width: 350px;
	height: 350px;
	background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
	border-radius: 50% 50% 50% 30%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.box-edutime .person-illustration {
	position: relative;
	z-index: 2;
	animation: float 3s ease-in-out infinite;
}

.box-edutime .star {
	position: absolute;
	color: #ffd700;
	font-size: 24px;
	animation: twinkle 2s ease-in-out infinite;
}

.box-edutime .star-1 {
	top: 20%;
	right: 15%;
	animation-delay: 0s;
}

.box-edutime .star-2 {
	top: 35%;
	right: 5%;
	animation-delay: 0.5s;
}

.box-edutime .star-3 {
	top: 50%;
	right: 18%;
	animation-delay: 1s;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}
}

@keyframes twinkle {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.5;
		transform: scale(0.8);
	}
}

.box-edutime .slick-arrow {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #f5f5f5 !important;
	transition: all 0.3s ease;
	z-index: 10;
}

.box-edutime .slick-arrow:hover {
	background: #f36 !important;
}

.box-edutime .slick-arrow:before {
	font-size: 20px;
	color: #666;
	transition: all 0.3s ease;
}

.box-edutime .slick-arrow:hover:before {
	color: white;
}

.box-edutime .slick-prev {
	left: -25px;
}

.box-edutime .slick-next {
	right: -25px;
}

.box-edutime .slick-dots {
	bottom: -50px;
	display: none !important;
}

.box-edutime .slick-dots li button:before {
	font-size: 12px;
	color: #f36;
}

.box-edutime .slick-dots li.slick-active button:before {
	color: #f36;
}

.box-edutime .megaphone-icon {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #ff6b9d 0%, #f36 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(255, 51, 102, 0.3);
	animation: pulse 2s ease-in-out infinite;
}

.box-edutime .megaphone-icon:after {
	content: 'Ã°Å¸â€œÂ¢';
	font-size: 30px;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

.block-news {
	/* Custom Slick Arrows */
	/* Slick Dots */
}

.block-news h1 {}

.block-news .news-slider {
	position: relative;
}

.block-news .news-card {
	margin: 0 10px 29px;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.block-news .news-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.block-news .card-image {
	position: relative;
	height: 280px;
	overflow: hidden;
}

.block-news .card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.block-news .news-card:hover .card-image img {
	transform: scale(1.08);
}

.block-news .card-badge {
	position: absolute;
	bottom: 10px;
	left: 10px;
	background: linear-gradient(90deg, #61c73f, #1f8538);
	color: white;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.block-news .card-content {
	padding: 10px 20px;
}

.block-news .card-date {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #999;
	font-size: 14px;
	margin-bottom: 10px;
}

.block-news .card-date svg {
	width: 18px;
	height: 18px;
}

.block-news .card-title:hover {
	color: var(--color-main2);
}

.block-news .card-description {}

.block-news .card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #4caf50;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.block-news .card-link:hover {
	gap: 12px;
	color: #45a049;
}

.block-news .slick-prev,
.block-news .slick-next {
	width: 50px;
	height: 50px;
	background: white;
	border-radius: 50%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	z-index: 10;
	transition: all 0.3s ease;
}

.block-news .slick-prev:hover,
.block-news .slick-next:hover {
	background: #4caf50;
}

.block-news .slick-prev {
	left: 0;
}

.block-news .slick-next {
	right: 0;
}

.block-news .slick-prev:before,
.block-news .slick-next:before {
	font-size: 24px;
	opacity: 1;
	color: #2c3e50;
}

.block-news .slick-prev:hover:before,
.block-news .slick-next:hover:before {
	color: white;
}

.block-news .slick-dots {
	bottom: -45px;
}

.block-news .slick-dots li button:before {
	font-size: 12px;
	color: #4caf50;
	opacity: 0.3;
}

.block-news .slick-dots li.slick-active button:before {
	opacity: 1;
	color: #4caf50;
}

@media (max-width: 768px) {

	.block-news h1 {
		font-size: 28px;
	}

	.block-news .slick-prev,
	.block-news .slick-next {
		width: 40px;
		height: 40px;
	}

	.block-news .slick-prev:before,
	.block-news .slick-next:before {
		font-size: 20px;
	}
}



@media (max-width: 968px) {
	.box-edutime .testimonial-wrapper {
		flex-direction: column;
		padding: 40px;
	}

	.box-edutime .testimonial-illustration {
		flex: 0 0 auto;
		margin-top: 40px;
	}

	.box-edutime h1 {
		font-size: 32px;
		text-align: center;
		padding: 0;
	}
}

@media (max-width: 576px) {
	.box-edutime .testimonial-wrapper {
		padding: 30px 20px;
	}

	.box-edutime .testimonial-text {
		font-size: 16px;
	}

	.box-edutime .illustration-bg {
		width: 280px;
		height: 280px;
	}
}


.box-edutime .slick-next i {
	font-size: 20px;
	width: 20px;
	height: 20px;
}

@media (max-width: 1200px) {
	.box-visa-member .container {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.box-visa-member .visa-grid {
		grid-template-columns: 1fr;
	}

	.box-visa-member .main-slider,
	.box-visa-member .slide-item {
		height: 400px;
	}
}


section.box-visa-member {
	padding: 50px 0px;
}

@media (max-width: 768px) {
	section.section.cacbuoc .cards-container {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 20px;
	}

	section.section.cacbuoc .title {
		font-size: 22px;
	}
}



@media (max-width: 768px) {
	.box-form-resgeter-select h1 {
		font-size: 24px;
	}

	.box-form-resgeter-select h2 {
		font-size: 20px;
	}

	.box-form-resgeter-select .header-icons {
		gap: 8px;
	}

	.box-form-resgeter-select .icon {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}

	.box-form-resgeter-select .free-badge {
		width: 50px;
		height: 50px;
	}

	.box-form-resgeter-select .contact-form,
	.box-form-resgeter-select .selection-row {
		flex-direction: column;
	}

	.box-form-resgeter-select .contact-form input,
	.box-form-resgeter-select .selection-row select,
	.box-form-resgeter-select .btn-callback,
	.box-form-resgeter-select .btn-search {
		width: 100%;
	}
}

a .box-form-resgeter-select .header-icons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
	animation: fadeIn 0.6s ease-out;
}

.box-form-resgeter-select .icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	animation: bounce 2s infinite;
}

.box-form-resgeter-select .icon:nth-child(1) {
	background: #00bcd4;
	animation-delay: 0s;
}

.box-form-resgeter-select .icon:nth-child(2) {
	background: #4caf50;
	animation-delay: 0.2s;
}

.box-form-resgeter-select .icon:nth-child(3) {
	background: #ff9800;
	animation-delay: 0.4s;
}

.box-form-resgeter-select .icon:nth-child(5) {
	background: #e91e63;
	animation-delay: 0.8s;
}

.box-form-resgeter-select .icon:nth-child(6) {
	background: #9c27b0;
	animation-delay: 1s;
}

.box-form-resgeter-select .icon:nth-child(7) {
	background: #f44336;
	animation-delay: 1.2s;
}

.box-form-resgeter-select .free-badge {
	width: 65px;
	height: 65px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	animation: bounce 2s infinite;
	animation-delay: 0.6s;
}

.box-form-resgeter-select .free-badge div {
	color: #ffa500;
	font-weight: bold;
	font-size: 11px;
	text-align: center;
	line-height: 1.2;
}

.contact-form__heading {

	margin-bottom: 15px;
}

.contact-form__ttl {
	color: var(--color-main2);
	font-size: 20px;
	font-weight: bold;
}

.box-form-resgeter-select .contact-form {
	display: flex;
	gap: 15px;
	margin-bottom: 0px;
	flex-wrap: wrap;
}

.box-form-resgeter-select .contact-form input {
	flex: 1;
	min-width: 200px;
	padding: 10px 25px;
	border: none;
	border-radius: 50px;
	font-size: 14px;
	outline: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.box-form-resgeter-select .contact-form input:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.box-form-resgeter-select .contact-form input:focus {
	border-color: #ffa500;
	box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.box-form-resgeter-select .btn-callback {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 15px;
    background: var(--color-main2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: white;
    /* border: none; */
    border-radius: 10px;
    font-size: 16px;
    gap: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #fff;
}

.box-form-resgeter-select .btn-callback::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	width: 100%;
	height: 100%;
	background: #072134;
	z-index: -1;
	transform: translateX(-50%) scale(0);
	transition: all .3s ease;
}

.btn-callback__icon {
	width: 22px;
	height: 22px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(-40deg);
	transition: all .3s ease-in-out;
}

.btn-callback__icon svg {
	width: 15px;
	height: 15px;
}

.btn-callback__icon svg {
	fill: var(--color-main2);
}

.box-form-resgeter-select .btn-callback:hover::before {
	transform: translateX(-50%) scale(1);
}

.box-form-resgeter-select .btn-callback:hover .btn-callback__icon {
	transform: rotate(0);
}



.box-form-resgeter-select .selection-row {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.box-form-resgeter-select .selection-row select {
	flex: 1;
	min-width: 200px;
	padding: 15px 20px;
	border: none;
	border-radius: 5px;
	font-size: 14px;
	background: white;
	cursor: pointer;
	outline: none;
	transition: all 0.3s ease;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	padding-right: 40px;
	border: 2px solid transparent;
}

.box-form-resgeter-select .selection-row select:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.box-form-resgeter-select .selection-row select:focus {
	border-color: #ffa500;
	box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.box-form-resgeter-select .btn-search {
	flex: 1;
	min-width: 200px;
	padding: 15px 30px;
	background: #e7d835;
	color: #333;
	border: none;
	border-radius: 5px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.box-form-resgeter-select .btn-search:hover {
	background: #c62828;
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
}

.contact-form__child {
	position: relative;
}

.contact-form__icon {
	width: 20px;
	height: 20px;
	position: absolute;
	left: 15px;
	top: 13px;
}

.contact-form__icon svg,
.contact-form__icon img {
	width: 100%;
	height: 100%;
}

.contact-form__icon svg path {
	stroke: var(--color-main2);
}

.contact-form__input {
	padding: 8px 20px 8px 44px;
	border: 1px solid #00000014;
	color: #03204b;
	height: 45px;
	font-size: 15px;
	width: 100%;
	background: white;
	border-radius: 10px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.box-member-header-form {
	position: relative;
	/* background: #072134; */
	background: white;
	border-radius: 15px;
	padding: 25px;
	box-shadow: 0 0 10px 1px rgb(0 0 0 / 42%);
	z-index: 2;
	/* max-width: 880px; */
	transform: translateY(-50%);
}

.box-form-resgeter-select .header-icons img {
	height: 50px;
}


section.section.cacbuoc .title {
	text-align: center;
	font-size: 31px;
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 0px 0 20px;
	color: var(--color-main2);
}
.c-ttl-01{
	text-align: center;
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0 0 20px;
	color: var(--color-main2);
}
.c-ttl-01 span {
	background-clip: text;
	display: inline-block;
	
	font-size: 27px;
}

.c-ttl-01::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--color-main2), transparent);
	border-radius: 2px;
	animation: lineExpand 2s ease-in-out infinite;
}

@keyframes titleGlow {

	0%,
	100% {
		filter: drop-shadow(0 0 5px rgba(231, 76, 60, 0.3));
	}

	50% {
		filter: drop-shadow(0 0 15px rgba(231, 76, 60, 0.6));
	}
}

@keyframes bounce {

	0%,
	100% {
		transform: translateX(-50%) translateX(-280px) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateX(-280px) translateY(-5px);
	}
}

@keyframes lineExpand {

	0%,
	100% {
		width: 150px;
		opacity: 0.5;
	}

	50% {
		width: 250px;
		opacity: 1;
	}
}

/* 
section.section.cacbuoc .cards-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	gap: 15px;
}

section.section.cacbuoc .card {
	background: #2584c3;
	border-radius: 15px;
	padding: 15px 10px;
	text-align: center;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	position: relative;
	color: white;
	overflow: hidden;
}

section.section.cacbuoc .card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

section.section.cacbuoc .card:hover::before {
	left: 100%;
}

section.section.cacbuoc .card:hover {
	transform: translateY(-10px) scale(1.03);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

section.section.cacbuoc .icon-wrapper {
	width: 100px;
	height: 100px;
	margin: 0 auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.4s ease;
}

section.section.cacbuoc .card:hover .icon-wrapper {
	transform: scale(1.1) rotate(5deg);
}

section.section.cacbuoc .icon-wrapper svg {
	width: 80px;
	height: 80px;
}

section.section.cacbuoc .card-title {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 8px;
	transition: color 0.3s ease;
}

section.section.cacbuoc .card:hover .card-title {
	color: #fff;
}

section.section.cacbuoc .card-subtitle {
	font-size: 15px;
	color: #dedede;
	font-weight: 500;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

section.section.cacbuoc .card {
	animation: fadeInUp 0.6s ease forwards;
}

section.section.cacbuoc .card:nth-child(1) {
	animation-delay: 0.1s;
}

section.section.cacbuoc .card:nth-child(2) {
	animation-delay: 0.2s;
}

section.section.cacbuoc .card:nth-child(3) {
	animation-delay: 0.3s;
}

section.section.cacbuoc .card:nth-child(4) {
	animation-delay: 0.4s;
}

section.section.cacbuoc .card:nth-child(5) {
	animation-delay: 0.5s;
}

section.section.cacbuoc .card:nth-child(6) {
	animation-delay: 0.6s;
} */



.box-visa-member .ctnr {

	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.box-visa-member .section {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.box-visa-member .section-header {
	padding: 11px 25px;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: white;
	background: #2e85c1;
	text-align: center;
	font-weight: 600;
}

.box-visa-member .main-slider {
	position: relative;
	height: 407px;
}

.box-visa-member .slide-item {
	position: relative;
	height: 407px;
	outline: none;
}

.box-visa-member .slide-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.box-visa-member .slide-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	padding: 30px;
	color: white;
}

.box-visa-member .slide-badge {
	display: inline-block;
	background: white;
	color: #333;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}

.box-visa-member .slick-prev,
.box-visa-member .slick-next {
	width: 50px;
	height: 50px;
	z-index: 100;
	background: rgba(255, 255, 255, 0.9) !important;
	border-radius: 50%;
}

.box-visa-member .slick-prev:hover,
.box-visa-member .slick-next:hover {
	background: white !important;
}

.box-visa-member .slick-prev:before,
.box-visa-member .slick-next:before {
	font-size: 30px;
	color: #333;
}

.box-visa-member .slick-prev {
	left: 20px;
}

.box-visa-member .slick-next {
	right: 20px;
}

.box-visa-member .slick-dots {
	bottom: 20px;
}

.box-visa-member .slick-dots li button:before {
	font-size: 12px;
	color: white;
	opacity: 0.5;
}

.box-visa-member .slick-dots li.slick-active button:before {
	color: white;
	opacity: 1;
}

.box-visa-member .thumbnail-slider {
	padding: 10px 15px 0px;
}

.box-visa-member .thumbnail-item {
	outline: none;
	padding: 0 5px;
	cursor: pointer;
}



.box-visa-member .thumbnail-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.box-visa-member .visa-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	padding: 20px;
}

.box-visa-member .visa-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	cursor: pointer;
}

.box-visa-member .visa-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.box-visa-member .visa-image {
	position: relative;
	height: 180px;
}

.box-visa-member .visa-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.box-visa-member .edu-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: linear-gradient(135deg, #ff6b00 0%, #f00 100%);
	color: white;
	padding: 5px 12px;
	border-radius: 5px;
	font-size: 12px;
	font-weight: bold;
}

.box-visa-member .visa-content {
	text-align: center;
	padding: 15px;
	background: #edf8ff;
}

.box-visa-member .visa-title {
	font-size: 15px;
	font-weight: bold;
	color: #333;
	margin-bottom: 0;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.box-visa-member .visa-description {
	font-size: 13px;
	color: #666;
	line-height: 1.5;
}


.box-edutime {
	/* Custom Slick Arrows */
	/* Megaphone Icon */
	/* Responsive */
	background: url(https://duhocedutime.edu.vn/wp-content/uploads/2020/07/nen_01-min-1024x612-1.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.box-edutime h1 {
	color: #eb2227 !important;
	font-size: 31px;
	font-weight: 700;
	margin-bottom: 25px;
	text-align: center;
}

.box-edutime .testimonial-wrapper {
	display: grid;
	align-items: center;
	gap: 50px;
	border-radius: 30px;
	padding: 60px;
	grid-template-columns: 49% 45%;
}

.box-edutime .testimonial-content {
	flex: 1;
}

.box-edutime .testimonial-slider {
	position: relative;
}

.box-edutime .testimonial-item {
	outline: none;
	padding: 20px;
	background: #fff;
	border-radius: 5px;
	border: 2px solid #f5f5f5;
}

.box-edutime .testimonial-text {
	font-size: 18px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 30px;
}

.box-edutime .testimonial-author {
	display: flex;
	align-items: center;
	gap: 20px;
}

.box-edutime .author-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.box-edutime .author-info h3 {
	color: #f36;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 5px;
}

.box-edutime .author-info p {
	color: #666;
	font-size: 16px;
}

.box-edutime .testimonial-illustration {
	flex: 0 0 450px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.box-edutime .illustration-container {
	position: relative;
}

.box-edutime .illustration-bg {
	position: absolute;
	width: 350px;
	height: 350px;
	background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
	border-radius: 50% 50% 50% 30%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.box-edutime .person-illustration {
	position: relative;
	z-index: 2;
	animation: float 3s ease-in-out infinite;
}

.box-edutime .star {
	position: absolute;
	color: #ffd700;
	font-size: 24px;
	animation: twinkle 2s ease-in-out infinite;
}

.box-edutime .star-1 {
	top: 20%;
	right: 15%;
	animation-delay: 0s;
}

.box-edutime .star-2 {
	top: 35%;
	right: 5%;
	animation-delay: 0.5s;
}

.box-edutime .star-3 {
	top: 50%;
	right: 18%;
	animation-delay: 1s;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}
}

@keyframes twinkle {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.5;
		transform: scale(0.8);
	}
}

.box-edutime .slick-arrow {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #f5f5f5 !important;
	transition: all 0.3s ease;
	z-index: 10;
}

.box-edutime .slick-arrow:hover {
	background: #f36 !important;
}

.box-edutime .slick-arrow:before {
	font-size: 20px;
	color: #666;
	transition: all 0.3s ease;
}

.box-edutime .slick-arrow:hover:before {
	color: white;
}

.box-edutime .slick-prev {
	left: -25px;
}

.box-edutime .slick-next {
	right: -25px;
}

.box-edutime .slick-dots {
	bottom: -50px;
	display: none !important;
}

.box-edutime .slick-dots li button:before {
	font-size: 12px;
	color: #f36;
}

.box-edutime .slick-dots li.slick-active button:before {
	color: #f36;
}

.box-edutime .megaphone-icon {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #ff6b9d 0%, #f36 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(255, 51, 102, 0.3);
	animation: pulse 2s ease-in-out infinite;
}

.box-edutime .megaphone-icon:after {
	content: 'Ã°Å¸â€œÂ¢';
	font-size: 30px;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

.block-news {
	/* Custom Slick Arrows */
	/* Slick Dots */
}

.block-news h1 {
	text-align: center;
	font-size: 27px;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 20px 0;
	color: #2785c3;
}

.block-news .news-slider {
	position: relative;
}

.block-news .news-card {
	margin: 0 10px 29px;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}
.news-card .mh-desc{
	margin-bottom: 10px;
}
.news-card__desc{
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
.block-news .news-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.block-news .card-image {
	position: relative;
	height: 280px;
	overflow: hidden;
}

.block-news .card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.block-news .news-card:hover .card-image img {
	transform: scale(1.08);
}

.block-news .card-badge {
	position: absolute;
	bottom: 10px;
	left: 10px;
	background: #2584c3;
	color: white;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.block-news .card-content {
	padding: 10px 20px;
}

.block-news .card-date {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #999;
	font-size: 14px;
	margin-bottom: 10px;
}

.block-news .card-date svg {
	width: 18px;
	height: 18px;
}

.block-news .card-title {
	font-size: 17px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 6px;
	line-height: 1.4;
	min-height: 51px;
}

.block-news .card-description {
	color: #7f8c8d;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 10px;
	min-height: 54px;
}

.block-news .card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #2584c3;
	font-weight: 400;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.block-news .card-link:hover {
	gap: 12px;
	color: #45a049;
}

.block-news .slick-prev,
.block-news .slick-next {
	width: 50px;
	height: 50px;
	background: white;
	border-radius: 50%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	z-index: 10;
	transition: all 0.3s ease;
}

.block-news .slick-prev:hover,
.block-news .slick-next:hover {
	background: #4caf50;
}

.block-news .slick-prev {
	left: 0;
}

.block-news .slick-next {
	right: 0;
}

.block-news .slick-prev:before,
.block-news .slick-next:before {
	font-size: 24px;
	opacity: 1;
	color: #2c3e50;
}

.block-news .slick-prev:hover:before,
.block-news .slick-next:hover:before {
	color: white;
}

.block-news .slick-dots {
	bottom: -45px;
}

.block-news .slick-dots li button:before {
	font-size: 12px;
	color: #4caf50;
	opacity: 0.3;
}

.block-news .slick-dots li.slick-active button:before {
	opacity: 1;
	color: #4caf50;
}

@media (max-width: 768px) {
	.box-member-header-form {
		grid-template-columns: 1fr;
		gap: 20px 0px;
	}

	.block-news h1 {
		font-size: 22px;
	}

	.block-news .slick-prev,
	.block-news .slick-next {
		width: 40px;
		height: 40px;
	}

	.block-news .slick-prev:before,
	.block-news .slick-next:before {
		font-size: 20px;
	}
}



@media (max-width: 968px) {
	.box-edutime .testimonial-wrapper {
		flex-direction: column;
		padding: 40px;
	}

	.box-edutime .testimonial-illustration {
		flex: 0 0 auto;
		margin-top: 40px;
	}

	.box-edutime h1 {
		font-size: 32px;
		text-align: center;
		padding: 0;
	}
}

@media (max-width: 576px) {
	.box-edutime .testimonial-wrapper {
		padding: 30px 20px;
	}

	.box-edutime .testimonial-text {
		font-size: 16px;
	}

	.box-edutime .illustration-bg {
		width: 280px;
		height: 280px;
	}
}


.box-edutime .slick-next i {
	font-size: 20px;
	width: 20px;
	height: 20px;
}

@media (max-width: 1200px) {
	.box-visa-member .container {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.box-visa-member .visa-grid {
		grid-template-columns: 1fr;
	}

	.box-visa-member .main-slider,
	.box-visa-member .slide-item {
		height: 400px;
	}
}


section.box-visa-member {
	padding: 50px 0;
	background: #fff;
}

/* @media (max-width: 768px) {
	section.section.cacbuoc .cards-container {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 20px;
	}

	section.section.cacbuoc .title {
		font-size: 22px;
	}
} */



@media (max-width: 768px) {


	.box-form-resgeter-select h2 {
		font-size: 20px;
	}

	.box-form-resgeter-select .header-icons {
		gap: 8px;
	}

	.box-form-resgeter-select .icon {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}

	.box-form-resgeter-select .free-badge {
		width: 50px;
		height: 50px;
	}

	.box-form-resgeter-select .contact-form,
	.box-form-resgeter-select .selection-row {
		flex-direction: column;
	}

	.box-form-resgeter-select .contact-form input,
	.box-form-resgeter-select .selection-row select,
	.box-form-resgeter-select .btn-callback,
	.box-form-resgeter-select .btn-search {
		width: 100%;
	}
}




.box-form-resgeter-select {
	margin-bottom: -50px;
}


.slider-doitacc .partner-section {
	border-radius: 5px;
	padding: 30px 10px 0px;
}

.slider-doitacc .section-title {
	text-align: center;
	margin-bottom: 10px;
}

.slider-doitacc .section-title h2 {
	text-align: center;
	font-size: 27px;
	font-weight: 700;
	margin-bottom: 9px;
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 0px 0px 20px;
	color: #2785c3;
}

.slider-doitacc .section-title p {
	color: #7f8c8d;
	font-size: 15px;
}

.slider-doitacc .partner-slider {
	padding: 20px 0;
}

.slider-doitacc .partner-item {
	padding: 0 5px;
	outline: none;
}

.slider-doitacc .partner-logo {
	background: #ffffff;
	border-radius: 5px;
	padding: 30px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	height: 150px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.slider-doitacc .partner-logo:hover, .slider-doitacc .partner-logo {

	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border-color: #3498db;
	background: white;
}

.slider-doitacc .partner-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.slider-doitacc .partner-logo:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

.slider-doitacc .slick-prev,
.slider-doitacc .slick-next {
	width: 50px;
	height: 50px;
	z-index: 1;
}

.slider-doitacc .slick-prev:before,
.slider-doitacc .slick-next:before {
	font-size: 40px;
	opacity: 0.5;
	color: #3498db;
}

.slider-doitacc .slick-prev:hover:before,
.slider-doitacc .slick-next:hover:before {
	opacity: 1;
}

.slider-doitacc .slick-prev {
	left: -60px;
}

.slider-doitacc .slick-next {
	right: -60px;
}

.slider-doitacc .slick-dots {
	bottom: -40px;
}

.slider-doitacc .slick-dots li button:before {
	font-size: 12px;
	color: #3498db;
	opacity: 0.3;
}

.slider-doitacc .slick-dots li.slick-active button:before {
	opacity: 1;
	color: #3498db;
}

.block-news h1:after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #2785c3, transparent);
	border-radius: 2px;
	animation: lineExpand 2s ease-in-out infinite;
}

section.section.cacbuoc {
	padding: 10px 0 50px 0px;
}

section.slider-doitacc {
	background: #eeeeee85;
}

.slider-doitacc .section-title h2:after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #2785c3, transparent);
	border-radius: 2px;
	animation: lineExpand 2s ease-in-out infinite;
}

section.Check_Availability {
	background: url(https://dev24.kodesolution.com/hoexr/wp-content/uploads/2023/10/bg-booking.jpeg);
	background-position: center right !important;
	background-repeat: no-repeat !important;
	position: relative;
}

section.Check_Availability .hedding-item-right-Check_Availability p {
	position: relative;
	display: inline-block;
	z-index: 1;
	color: #d2d2d2;
	font-size: 16px;
	line-height: 1.4;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

section.Check_Availability .hedding-item-right-Check_Availability p:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 100%;
	margin-left: 5px;
	width: 37px;
	height: 10px;
	background-image: url(https://dev24.kodesolution.com/hoexr/wp-content/themes/hoexr/assets/images/current-theme/before.png);
}

section.Check_Availability .hedding-item-right-Check_Availability h2 {
	color: #fff;
	font-size: 37px;
	font-weight: 200;
	margin-bottom: 15px;
}

section.Check_Availability .content-item-right-Check_Availability {
	color: #Fff;
}

section.Check_Availability .content-item-right-Check_Availability p {
	padding-bottom: 20px;
}

section.Check_Availability .hotline-item-right-Check_Availability {
	display: flex;
	align-items: center;
	gap: 0px 20px;
}

section.Check_Availability .content p {
	margin-bottom: 0px;
	padding-bottom: 0px;
}

section.Check_Availability h5.icon-box-title {
	font-size: 24px;
	color: #fff;
}


section.Check_Availability .ctnr:before {
	/* background: url(https://dev24.kodesolution.com/hoexr/wp-content/uploads/2023/10/bk-shape.png); */
	position: absolute;
	z-index: 0;
	background-repeat: no-repeat;
	background-position: center;
	left: -59px;
	width: 439px;
	height: 640px;
	content: "" "";
}

section.Check_Availability .ctnr {
	position: relative;
}

section.Check_Availability .box-content-desc-right-Check_Availability {
	margin-top: 70px;
}



section.Check_Availability .item-left-Check_Availability {
	width: 40%;
	background-color: #F8F5F0;
	padding: 40px 15px 20px;
	border-top: 4px solid #ab8554;
}

section.Check_Availability .box-form-Check_Availability p {
	position: relative;
	display: inline-block;
	z-index: 1;
	color: #666666;
	font-size: 16px;
	line-height: 1.4;
	letter-spacing: 3.8px;
	text-transform: uppercase;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

section.Check_Availability .box-form-Check_Availability h2 {
	font-size: 40px;
	font-weight: 500;
	color: #222;
	margin-bottom: 20px;
}

section.Check_Availability .field-input-wrap.checkin-date input {
	height: 48px;
	font-size: 14px;
	background: none;
	border-color: rgba(170, 132, 83, 0.3);
	border-style: solid;
	border-width: 1px;
	border-radius: 0;
	color: #666666;
	width: 100%;
	padding: 0px 12px;
}

section.Check_Availability .field-wrap {
	width: 100%;
}

section.Check_Availability .kodelisting-form-label {
	margin-bottom: 5px;
	font-weight: 400;
}

section.Check_Availability .btn-theme-colored1 {
	width: 100%;
	font-weight: 600;
	font-size: 16px;
}

section.Check_Availability .kodelisting-form-field {
	margin-bottom: 20px;
}


section.Check_Availability .container-Check_Availability {
	display: flex;
	height: 100%;
	align-items: center;
	position: relative;
	top: -50px;
}

section.Check_Availability .item-right-Check_Availability {
	height: 100%;
	padding: 0px 80px;
	width: 60%;
	display: flex;
	align-items: center;
	padding-right: 0px;
}

.icon-item-right-Check_Availability img {
	height: 46px;
}

.field-input-wrap.checkin-date select {
	height: 48px;
	font-size: 14px;
	background: none;
	border-color: rgba(170, 132, 83, 0.3);
	border-style: solid;
	border-width: 1px;
	border-radius: 0;
	color: #666666;
	width: 100%;
	padding: 0px 12px;
}

section.Check_Availability .kodelisting-form-field {
	margin-bottom: 20px;
}

.kodelisting-form-field {
	display: flex;
	align-items: center;
	gap: 0px 14px;
}

section.Check_Availability .btn-theme-colored1 {
	width: 100%;
	font-weight: 600;
	font-size: 16px;
}

.hover-btn {
	position: relative;
}

.btn-theme-colored1 {
	color: #fff;
	background-color: #ff8b00;
	border-color: #ff8b00;
	min-height: 56px;
	padding: 0 15px;
	text-align: center;
	width: 267px;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 500;
}

section.Check_Availability:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: #00000063;
}

.box-visa-member .slick-dots button:before {
	content: "";
}

.box-visa-member .main-slider .slick-dots li {
	height: 13px;
	width: 13px;
}

section.asia-all .cards-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 60px;
}

section.asia-all .card {
	background: #2584c3;
	border-radius: 20px;
	padding: 20px 20px;
	text-align: center;
	box-shadow: 0 8px 25px rgba(139, 0, 0, 0.2);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

section.asia-all .card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
	transition: left 0.5s;
}

section.asia-all .icon {
	margin-bottom: 0px;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

section.asia-all .country-name {
	font-size: 21px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 5px;
}

section.asia-all .country-english {
	font-size: 1.1em;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 400;
}

section.asia-all {
	padding: 40px 0;
	background: #edf8ff;
}

section.asia-all h1 {
	text-align: center;
	padding-bottom: 23px;
}

section.asia-all h1 {
	background-clip: text;
	position: relative;
	display: inline-block;
	color: #2785c3;
	font-size: 27px;
	text-transform: uppercase;
}

section.asia-all h1:before {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #2785c3, transparent);
	border-radius: 2px;
	animation: lineExpand 2s ease-in-out infinite;
}

section.asia-all .title {
	text-align: center;
	margin-bottom: 10px;
}

section.asia-all {
	
}

section.asia-all .card img {
	height: 100px;
	border-radius: 100%;
}

.card-services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	counter-reset: number;
}

.card-service {
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	border-radius: 0 50px 50px 50px;
	padding: 20px;
	position: relative;
}

.card-service::after {
	content: "";
	position: absolute;
	left: 90px;
	width: calc(100% - 150px);
	height: 2px;
	bottom: 0;
	background: var(--color-main2);
}

.card-service__left {
	width: 70px;
}

.card-service__icon {
	width: 70px;
	height: 70px;
	border-radius: 0 50% 50% 50%;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px dashed #f9a40d;
}

.card-service__icon:hover img {
	transform: rotateY(180deg);
}

.card-service__icon::before {
	content: "";
	background: #f9a40d;
	position: absolute;
	left: 5px;
	top: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 0 50% 50% 50%;
	z-index: -1;
}

.card-service__icon img {
	width: 45px;
	height: 45px;
	transition: all .3s ease-in;
}

.card-service__info {
	width: calc(100% - 85px);
}

.card-service__info h3 {
	font-size: 20px;
	margin-bottom: 5px;
	color: var(--color-main2);
}

.card-service__number {
	font-size: 37px;
	font-family: var(--font-ubuntu);
	/* text-align: center; */
	font-weight: 700;
	-moz-text-fill-color: white;
	-webkit-text-fill-color: white;
	-moz-text-stroke-color: var(--color-main2);
	-webkit-text-stroke-color: var(--color-main2);
	-moz-text-stroke-width: 2px;
	-webkit-text-stroke-width: 1px;
}

.card-service__number::before {
	counter-increment: number;
	content: "0" counter(number);
}

.visa-content__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

.visa-content {
	display: flex;
	gap: 15px;
	position: relative;
}
.visa-content__left{
	width: 80px;
}
.visa-content__number {
	line-height: 1;
	font-weight: 800;
	font-size: 70px;
	font-family: var(--font-ubuntu);
	color: transparent;
	-webkit-text-stroke: 1px var(--color-main);
	opacity: .2;
}

.visa-content__icon {
	width: 80px;
	height: 80px;
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	border-radius: 0 50px 50px 50px;
	background: var(--color-main);
	margin-bottom: 10px;
	box-shadow: 8px 8px 0 #d9792b26;
	transition: all .5s ease-in-out;
	position: relative;
}

.visa-content__icon img {
	width: 50px;
}

.visa-content__info {
	flex: 1;
}

.visa-content__ttl {
	color: #03204b;
}

.visa-content__desc {
	color: #757f95;
	margin-top: 5px;
	margin-bottom: 10px;
}

.visa-content__btn {
	font-size: 16px;
	color: white;
	padding: 10px 20px;
	transition: all 0.5s;
	text-transform: capitalize;
	position: relative;
	border-radius: 18px;
	font-weight: 500;
	cursor: pointer;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
	border: none;
	background: var(--color-main2);
	box-shadow: 83px 0 40px 5px rgb(0 0 0 / 5%);
	z-index: 1;
}

.visa-content__btn::before {
	content: "";
	height: 300px;
	width: 300px;
	background: #03204b;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%) scale(0);
	transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: -1;
}

.visa-content__btn:hover {
	color: white;
}


.visa-content__btn:hover::before {
	transform: translateY(-50%) translateX(-50%) scale(1);
}
.visa-slider{
	
}
.visa-slider .slick-track{
	margin: 0 auto;
}
.visa-slider .slick-list{
	margin: 0 -10px;
}
.visa-slider__item{
	margin: 0 10px;
}
.visa-slider__ttl{
	font-size: 16px;
	font-weight: 500;
	text-align: center;
}
.visa-slider__icon{
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
	padding: 10px;
	margin-top: 10px;
	transition: all .6s;
}
.visa-slider__icon:hover{
	transform: scale(1.09);
}
.visa-slider__icon::before{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: 1px dashed var(--color-main);
	width: calc(100% - 3px);
	height: calc(100% - 3px);
	border-radius: 50%;
	transition: all .3s ease-in;
}
.visa-slider__icon>a::before{
	content: "";
	padding-top: 100%;
	display: block;
}
.visa-slider__icon img{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 16px);
	height: calc(100% - 16px);
	object-fit: cover;
	border-radius: 50%;
	transition: all .6s ease-in;
}
.visa-slider__icon:hover::before{
	transform: translate(-50%, -50%) rotate(360deg);
}
@media (max-width: 768px) {
	.box-visa-member .ctnr {
		grid-template-columns: 1fr;
	}

	.slider-doitacc .partner-section {
		padding: 20px 0px;
	}

	.slider-doitacc .section-title h2 {
		font-size: 22px;
	}

	.slider-doitacc .slick-prev {
		left: -10px;
	}

	.slider-doitacc .slick-next {
		right: -10px;
	}

	.slider-doitacc .partner-logo {
		height: 140px;
        padding: 10px;
	}
}

@media (max-width: 990px) {
	section.Check_Availability .item-left-Check_Availability {
		width: 50%;
		padding: 20px 20px 20px;
	}
	.card-services{
		grid-template-columns: repeat(2, 1fr);
	}
	section.box-visa-member{
		padding: 30px 0 5px;
	}
	section.section.cacbuoc .title{
		font-size: 24px;
	}
	.block-news h1{
		margin-bottom: 10px;
	}
	.card-service{
	    padding: 15px;	
	}
	.card-service{
		border-radius: 0 25px 25px 25px;
	}
	section.asia-all {
    	padding: 30px 0;
	}
	.c-ttl-01{
		font-size: 22px;
	}
	section.section.cacbuoc{
		padding-bottom: 30px;
	}
	.box-visa-member .visa-content{
		padding: 15px 20px;
	}
}

@media (max-width: 767px) {
	.card-services{
		grid-template-columns: 1fr;
	}
	.box-member-header-form{
		transform: translateY(0);
	}
	.box-form-resgeter-select{
		margin-bottom: 0;
		padding: 20px 0;
	}
	.box-visa-member .section-header {
    	padding: 10px 15px;
    	font-size: 15px;
	}
}
@media (max-width: 550px) {
	section.Check_Availability .box-content-desc-right-Check_Availability {
		margin-top: 30px;
	}

	section.Check_Availability .hedding-item-right-Check_Availability h2 {
		font-size: 37px;
	}

	section.Check_Availability .item-left-Check_Availability {
		width: 100%;
	}

	section.Check_Availability .item-right-Check_Availability {
		width: 100%;
		padding-left: 0px;
	}

	section.Check_Availability .container-Check_Availability {
		flex-wrap: wrap;
		/* top: 0px; */
	}

	section.Check_Availability {
		background-size: cover !important;
		background-position: center right !important;
	}
	section.section.cacbuoc .title {
        font-size: 20px;
		margin-bottom: 10px;
    }
}