@charset "UTF-8";

:root {
  --white: #fff;
  --black: #000;
  --primary: #faaa3f;
  --second: #ffddb3;
  --body: #140f08;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all ease 0.4s;
  --spacing: 0.25rem;
  --radius: 0.5rem;
  --radius-large: 100px;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  --vuta-shadow: 0px 0px 10px 2px #00000033;
  --main-color: #b84221;
  --text-color: #5b2519;
  --gray-text: #334862;
  --primary-ldp: #1e3a8a;
  --secondary-ldp: #3b82f6;
  --accent-ldp: #f59e0b;
  --danger-ldp: #ef4444;
  --success-ldp: #10b981;
  --bg-red-light-ldp: #fff1f2;
  --bg-green-light-ldp: #f0fdf4;
  --bg-blue-light-ldp: #eff6ff;
  --bg-yellow-light-ldp: #fffbeb;
  --text-gray-900-ldp: #111827;
  --text-gray-800-ldp: #1f2937;
  --text-gray-600-ldp: #4b5563;
  --text-gray-500-ldp: #6b7280;
  --text-gray-400-ldp: #9ca3af;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

a,
button,
i,
img {
  transition: var(--transition);
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeindown {
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@media screen and (max-width: 996px) {
  .fadeindown {
    animation: none;
  }
}

.line-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.line-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.hero-section {
  background: var(--gradient-primary);
  color: #fff;
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {

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

  33% {
    transform: translateY(-10px) rotate(1deg);
  }

  66% {
    transform: translateY(5px) rotate(-1deg);
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .hero-description {
    text-align: center;
  }
}

.hero-buttons {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .hero-buttons {
    text-align: center;
  }
}

.hero-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.hero-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-buttons .btn:active {
  transform: translateY(0);
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.hero-image img:hover {
  transform: scale(1.05) rotate(2deg);
}

.features-section {
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .features-section {
    padding: 40px 0;
  }
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  padding: 2rem;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.feature-icon {
  font-size: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media screen and (max-width: 767px) {
  .feature-icon {
    font-size: 2.5rem;
  }
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin: 1rem 0;
}

.feature-description {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #5a6fd8, #654a92);
  color: #fff;
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-outline-secondary {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: 0 0;
}

.btn-outline-secondary:hover {
  background: #fff;
  color: #333;
  border-color: #fff;
}

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-custom {
  box-shadow: var(--shadow);
}

.about-hero {
  background: var(--gradient-primary);
}

.about-hero .display-4 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.team-card {
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card .team-avatar img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid var(--primary);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  overflow: hidden;
  font-family: "Work Sans", sans-serif;
}

.vuta-section {
  padding-top: 32px;
  transition: transform 1s, opacity 1s;
}

.vuta-row-center {
  display: flex;
  align-items: center;
}

.menu__page {
  margin-top: 0;
}

.btn__global-register {
  display: flex;
  justify-content: center;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 575.98px) {
  .vuta-order-sm-first {
    order: -1;
  }
}

.section--hidden {
  opacity: 0;
  transform: translateY(8rem);
}

.section__bg {
  background-image: url(https://latien.datnenkhanhhoa.net/wp-content/uploads/2025/10/backgroung-La-Tien-Villa-Nha-trang.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center !important;
  align-self: center !important;
  vertical-align: middle !important;
  background-position: center;
}

.box-content {
  margin-bottom: 48px;
}

.box-content h2 {
  font-size: 36px;
  color: #0f172a;
  text-align: center;
  margin-bottom: 16px;
}

@media (max-width: 575.98px) {
  .box-content h2 {
    font-size: 28px;
  }
}

.box-content p {
  font-size: 20px;
  color: #334155;
  text-align: center;
  margin-bottom: 0;
}

.star-icon {
  fill: #facc15;
  color: #facc15;
  width: 16px;
  height: 16px;
}

.gradient-text {
  background: linear-gradient(to right, #fb923c, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-2 {
  background-image: linear-gradient(to right, #60a5fa, #c084fc, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
}

.btn-global--register {
  padding: 8px 24px;
  background-image: linear-gradient(to bottom right, #eab308, #ea580c);
  border-radius: 100px;
  font-size: 18px;
  color: #fdf3e7;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.btn-global--register:hover {
  background-image: linear-gradient(to bottom right, #f59e0b, #f97316);
  color: #fff;
  transform: scale(1.01);
}

.header {
  padding: 8px 0;
  top: 0;
  width: 100%;
  z-index: 99;
  border-bottom: 3px solid #b84221;
}

.header .header__main {
  position: relative;
  width: 100%;
  top: 0;
}

.header__logo .box-img {
  display: block;
  max-width: 125px;
  max-height: 70px;
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .header__logo .box-img {
    max-width: 120px;
  }
}

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

.header .vuta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .vuta-container .header-menu .accordion {
  display: flex;
  gap: 16px;
}

.header .vuta-container .header-menu .accordion li {
  position: relative;
  z-index: 1;
}

.header .vuta-container .header-menu .accordion li::before {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background-color: var(--main-color);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  opacity: 0;
  filter: alpha(opacity=0);
}

.header .vuta-container .header-menu .accordion li:hover::before {
  width: 100%;
  opacity: 1;
}

.header .vuta-container .header-menu .accordion li a {
  color: #000;
  font-size: 16px;
  color: var(--main-color);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px;
}

.header .vuta-container .header-menu .accordion li a:hover {
  color: var(--main-color);
}

@media (max-width: 991.98px) {
  .header .vuta-container .header-menu .accordion {
    display: none;
  }
}

.header .vuta-container .header-menu .accordion .dropdown .link a i {
  position: relative;
  right: -6px;
}

.header .vuta-container .header-menu .accordion .dropdown .sub-menu li a {
  white-space: nowrap;
  padding: 10px 15px;
  border-bottom: 1px dashed #cdcdcd;
  display: flex;
  color: #000;
}

.header .vuta-container .header-menu .accordion .dropdown .sub-menu li a:hover {
  background: #000;
  color: #fff;
}

.header .vuta-container .header-menu .accordion .dropdown:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.header .vuta-container .header-menu .accordion .dropdown .sub-menu {
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  display: block;
  z-index: 99;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.header__hotline-link {
  border-radius: var(--radius);
  padding: 12px 20px;
  background-color: var(--vuta-blue);
  color: #fff;
  background-image: linear-gradient(120deg,
      transparent 0,
      transparent 50%,
      #fff 50%);
  background-size: 220%;
  transition: all 0.4s;
  border-radius: var(--radius);
  border: 3px solid var(--vuta-blue);
}

.header__hotline-link:hover {
  background-position: 100%;
  color: var(--vuta-blue);
  background-color: #ccc;
  border-radius: var(--radius);
}

.header__hotline-link span {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .header__bottom {
    position: fixed;
    top: 0;
    background-color: #fff !important;
    left: 0;
    width: 100%;
    z-index: 991;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
  }
}

.footer .box-img {
  text-align: center;
  display: block;
  max-width: 150px;
  overflow: hidden;
}

.footer__info h2 {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer__info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__info-item {
  display: flex;
  gap: 8px;
  font-size: 16px;
  line-height: 1.6;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  filter: grayscale(50%);
  transition: translate, filter;
  transition-duration: 0.3s;
}

@media (max-width: 575.98px) {
  .footer__social-link {
    width: 42px;
    height: 42px;
  }
}

.footer__social-link--facebook {
  background: #4863a9;
}

.footer__social-link--youtube {
  background: red;
}

.footer__social-link--tiktok {
  background: #000;
}

.footer__social-link--twitter {
  background: #4999e6;
}

.footer__social-link--linkedin {
  background: #2f71ab;
}

.footer__social-link:hover {
  filter: grayscale(0);
  translate: 0 -3px;
}

.footer__social-icon {
  width: 14px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0) saturate(7482%) hue-rotate(72deg) brightness(99%) contrast(99%);
}

@media (max-width: 575.98px) {
  .footer__social-icon {
    width: 18px;
  }
}

.footer .footer__inner-left {
  padding: 24px 0;
  background: var(--main-color);
  color: #fff;
}

.footer .footer__inner-left .footer__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer .footer__inner-left .footer__content p {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer .footer__inner-right {
  padding: 16px 0;
  background-color: #5b5b5b;
  display: grid;
  place-items: center;
}

.footer .footer__inner-right p {
  color: #fff;
  font-size: 14px;
}

@media (max-width: 575.98px) {
  .footer .getprice {
    margin-top: 24px;
  }
}

.footer-main {
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(8px);
  color: #fff;
  padding-top: 60px;
  padding-bottom: 40px;
  border-radius: 1.5rem 1.5rem 0 0;
}

@media (min-width: 768px) {
  .footer-main {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

.footer-container {
  max-width: 72rem;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-col-wide {
    grid-column: span 2;
  }
}

.footer-heading {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact-item a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-contact-item a:hover {
  opacity: 0.8;
}

.footer-icon {
  font-size: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #d1d5db;
}

.footer-links li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  border-radius: 0.5rem;
}

.footer-links li a:hover {
  color: #fff;
}

.footer-desc {
  color: #d1d5db;
  line-height: 1.6;
}

.footer-rating {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-stars {
  color: #facc15;
}

.footer-rating-text {
  font-size: 0.875rem;
  color: #d1d5db;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
  border-radius: 0.5rem 0.5rem 0 0;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom-contact {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.footer-copyright {
  font-size: 0.875rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #f3f4f6;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 575.98px) {
  .service-about {
    text-align: center;
  }
}

.hero {
  background: linear-gradient(135deg, #5e027e 0, #3a0048 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero .hero-blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  pointer-events: none;
}

.hero .hero-blob-1 {
  background: #9333ea;
  top: -10%;
  left: -10%;
}

.hero .hero-blob-2 {
  background: #2563eb;
  bottom: -10%;
  right: -10%;
}

.hero .hero-wrapper {
  position: relative;
  z-index: 10;
}

.hero .hero-wrapper .vuta-row {
  align-items: center;
}

.hero .hero-wrapper .hero-content {
  text-align: left;
}

@media (max-width: 575.98px) {
  .hero .hero-wrapper .hero-content {
    text-align: center;
  }
}

.hero .hero-wrapper .hero-badge {
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid #60a5fa;
  color: #93c5fd;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.hero .hero-wrapper .hero-headline {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (max-width: 575.98px) {
  .hero .hero-wrapper .hero-headline {
    text-align: center;
  }
}

.hero .hero-wrapper .hero-headline .text-gradient {
  background: linear-gradient(to right, #60a5fa, #67e8f9);
  -webkit-background-clip: text;
  color: transparent;
}

.hero .hero-wrapper .hero-quote {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  border-left: 4px solid #2563eb;
  padding-left: 1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

@media (max-width: 575.98px) {
  .hero .hero-wrapper .hero-quote {
    text-align: left;
  }
}

.hero .hero-wrapper .hero-desc {
  color: #fff;
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}

@media (max-width: 575.98px) {
  .hero .hero-wrapper .hero-desc {
    text-align: justify;
  }
}

.hero .hero-wrapper .btn-heros {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero .hero-wrapper .btn-heros .btn-cta {
  background: #2563eb;
  color: #fff;
  padding: 12px 16px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
  transition: transform 0.2s, background 0.2s;
}

@media (max-width: 575.98px) {
  .hero .hero-wrapper .btn-heros .btn-cta {
    width: 100%;
  }
}

.hero .hero-wrapper .btn-heros .btn-cta:hover {
  background: #1d4ed8;
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.4);
}

.hero .hero-wrapper .btn-heros .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}

.hero .hero-wrapper .btn-heros .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero .hero-wrapper .hero-image-container {
  position: relative;
  perspective: 1000px;
  margin-top: 3rem;
}

.hero .hero-wrapper .hero-image-container .hero-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s;
}

.hero .hero-wrapper .hero-image-container .hero-card:hover .hero-card {
  transform: scale(1.02);
}

.hero .hero-wrapper .hero-image-container .hero-card .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.hero .hero-wrapper .hero-image-container .hero-card .hero-overlay .hero-card-badge {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: #1e3a8a;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hero .hero-wrapper .hero-image-container .hero-card .price-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #2563eb;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  animation: pulse 2s infinite;
}

.problem {
  padding: 80px 0;
  background: #fef2f1;
}

@media (max-width: 575.98px) {
  .problem {
    padding: 60px 0;
  }
}

.problem .problem-wrapper .card {
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  display: grid;
  place-items: center;
  background: #fff;
  margin-bottom: 24px;
}

.problem .problem-wrapper .card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.problem .problem-wrapper .card .problem-icon-svg {
  color: #dc2626;
  width: 32px;
  height: 32px;
}

.problem .problem-wrapper .card .card-icon-wrapper {
  background-color: #fee2e2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.problem .problem-wrapper .card .card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  margin-top: 16px;
  color: #0f172a;
}

.problem .problem-wrapper .card .card-desc {
  font-size: 16px;
  color: #475569;
  text-align: center;
  line-height: 1.6;
}

.problem .problem-wrapper .card-content {
  display: flex;
  justify-content: center;
}

.benefit {
  padding: 80px 0;
  background-color: #f0fdf4;
}

@media (max-width: 575.98px) {
  .benefit {
    padding: 60px 0;
  }
}

.benefit .benefit-wrapper .card-benefit {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 24px;
  background-color: #fff;
  justify-content: space-between;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.benefit .benefit-wrapper .card-benefit .card-icon-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #dcfce7;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
}

.benefit .benefit-wrapper .card-benefit .card-icon-wrapper .benefit-icon {
  color: #16a34a;
  width: 32px;
  height: 32px;
}

.benefit .benefit-wrapper .card-benefit .card-content {
  flex: 1;
}

.benefit .benefit-wrapper .card-benefit .card-content h3 {
  font-size: 18px;
  color: #0f172a;
}

.benefit .benefit-wrapper .benefit-result {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.benefit .benefit-wrapper .benefit-result .content {
  padding: 24px;
  background-color: #d3fbe6;
  border: 2px solid #a7f3d0;
  max-width: 600px;
  text-align: center;
  border-radius: var(--radius);
}

.course {
  padding: 80px 0;
}

@media (max-width: 575.98px) {
  .course {
    padding: 60px 0;
  }
}

.course .course-wrapper .card-course {
  display: flex;
  gap: 16px;
  padding: 24px;
  background-color: #fafcfe;
  justify-content: space-between;
  border: 2px solid #dbeafe;
  border-radius: var(--radius);
  margin-bottom: 16px;
  height: 180px;
  transition: all 0.3s ease;
}

@media (max-width: 575.98px) {
  .course .course-wrapper .card-course {
    height: auto;
  }
}

.course .course-wrapper .card-course:hover {
  border-color: #2563eb;
}

.course .course-wrapper .card-course .card-icon-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #dbeafe;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
}

.course .course-wrapper .card-course .card-icon-wrapper .course-icon {
  color: #2563eb;
  width: 32px;
  height: 32px;
}

.course .course-wrapper .card-course .card-content {
  flex: 1;
}

.course .course-wrapper .card-course .card-content h3 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 16px;
}

.course .course-wrapper .card-course .card-content p {
  font-size: 16px;
  color: #475569;
  margin-bottom: 0;
}

.course .course-wrapper .course-result {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.course .course-wrapper .course-result .content {
  background-color: #dbeafe;
  text-align: center;
  border-radius: 100px;
  display: flex;
  padding: 16px 24px;
  align-items: center;
  gap: 8px;
}

.course .course-wrapper .course-result .content span {
  color: #1e40af;
}

.course .course-wrapper .course-result .content p {
  margin-bottom: 0;
  color: #1e40af;
}

.testimonial {
  background-color: #f6f9fc;
  padding: 80px 0;
}

@media (max-width: 575.98px) {
  .testimonial {
    padding: 60px 0;
  }
}

.testimonial .testimonial-content .rating-heading {
  text-align: center;
  margin-bottom: 24px;
}

.testimonial .testimonial-content .rating-heading span {
  background: #dcfce7;
  color: #15803d;
  padding: 8px 16px;
  border-radius: 100px;
}

.testimonial .testimonial-wrapper .testimonial-card {
  flex-direction: column;
  padding: 24px;
  border: 1px solid #e5e7eb;
  justify-content: space-around;
  display: flex;
  border-radius: 16px;
  height: 300px;
  margin-bottom: 16px;
  background-color: #fff;
}

.testimonial .testimonial-wrapper .testimonial-card .user-info {
  display: flex;
  margin-bottom: 16px;
  justify-content: space-between;
}

.testimonial .testimonial-wrapper .testimonial-card .user-info .author {
  display: flex;
  align-items: center;
}

.testimonial .testimonial-wrapper .testimonial-card .user-info .author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 12px;
}

.testimonial .testimonial-wrapper .testimonial-card .user-info .author .introduce-info h4 {
  font-size: 16px;
  color: #0f172a;
}

.testimonial .testimonial-wrapper .testimonial-card .user-info .author .introduce-info p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 0;
}

.testimonial .testimonial-wrapper .testimonial-card .stars {
  margin-bottom: 16px;
}

.testimonial .testimonial-wrapper .testimonial-card .quote {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.testimonial .testimonial-wrapper .testimonial-card .metric-badge {
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.testimonial .testimonial-wrapper .testimonial-card .metric-badge span {
  background-color: #f0fdf4;
  color: #15803d;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
}

.testimonial .testimonial-wrapper .testimonial-join {
  display: grid;
  place-items: center;
  margin-top: 32px;
}

@media (max-width: 575.98px) {
  .testimonial .testimonial-wrapper .testimonial-join {
    display: none;
  }
}

.testimonial .testimonial-wrapper .testimonial-join .join-wrapper {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  padding: 8px 32px;
  border-radius: 100px;
  box-shadow: var(--light-shadow);
  gap: 16px;
}

@media (max-width: 575.98px) {
  .testimonial .testimonial-wrapper .testimonial-join .join-wrapper {
    display: none;
  }
}

.testimonial .testimonial-wrapper .testimonial-join .join-wrapper .images {
  display: flex;
}

.testimonial .testimonial-wrapper .testimonial-join .join-wrapper .images img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  margin-left: -10px;
}

.testimonial .testimonial-wrapper .testimonial-join .join-wrapper .join-text {
  font-size: 16px;
  color: #334155;
}

.bonus {
  padding: 80px 0;
  background: #fef9ea;
}

@media (max-width: 575.98px) {
  .bonus {
    padding: 60px 0;
  }
}

.bonus .bonus-content {
  display: grid;
  place-items: center;
}

.bonus .bonus-content .bonus-heading {
  text-align: center;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 24px;
  border-radius: 100px;
  background: #fef9c3;
}

.bonus .bonus-content .bonus-heading svg {
  width: 20px;
  height: 20px;
  color: #854d0e;
}

.bonus .bonus-content .bonus-heading span {
  font-weight: 500;
  color: #854d0e;
  padding: 8px 0;
  border-radius: 100px;
}

.bonus .bonus-wrapper .bonus-card {
  background: #fff;
  overflow: hidden;
  border: 2px solid #fef3c7;
  border-radius: 0.75rem;
  padding: 1.5rem;
  position: relative;
  margin-bottom: 22px;
  height: 258px;
  display: grid;
  height: 280px;
  place-items: center;
  transition: all 0.3s ease-in-out;
}

.bonus .bonus-wrapper .bonus-card:hover {
  transform: scale(1.05);
}

.bonus .bonus-wrapper .bonus-card .bonus-value {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to right, #facc15, #fb923c);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-bottom-left-radius: 0.5rem;
}

.bonus .bonus-wrapper .bonus-card .bonus-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #fef9c3;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bonus .bonus-wrapper .bonus-card .bonus-icon svg {
  color: #ca8a04 !important;
  width: 32px;
  fill: #ca8a04 !important;
  height: 32px;
}

.bonus .bonus-wrapper .bonus-card .bonus-icon .icon {
  color: #ca8a04;
  width: 32px;
  height: 32px;
}

.bonus .bonus-wrapper .bonus-card h3 {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  text-align: center;
}

.bonus .bonus-wrapper .bonus-card p {
  font-size: 16px;
  color: #475569;
  text-align: center;
}

.bonus .bonus-wrapper .total-value-box {
  max-width: 550px;
  margin: 32px auto 0;
  background: linear-gradient(to right, #fb923c, #f59e0b);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4);
  transform: rotate(-1deg);
  transition: transform 0.3s;
}

.bonus .bonus-wrapper .total-value-box:hover {
  transform: rotate(0);
}

.bonus .bonus-wrapper .total-value-box .price-title {
  font-weight: 700;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.bonus .bonus-wrapper .total-value-box .price-subtitle {
  font-size: 20px;
  color: #ffedd5;
  margin-bottom: 8px;
}

.bonus .bonus-wrapper .total-value-box .price-main {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.bonus .bonus-wrapper .total-value-box .price-note {
  font-size: 18px;
  color: #ffedd5;
}

.pricing {
  padding: 80px 0;
  background-image: linear-gradient(to bottom right, #0f172a, #1e3a8a, #581c87);
}

@media (max-width: 575.98px) {
  .pricing {
    padding: 60px 0;
  }
}

.pricing .pricing-content {
  display: grid;
  place-items: center;
}

.pricing .pricing-content .pricing-heading {
  padding: 8px 16px;
  border-radius: 100px;
  display: inline-flex;
  background-color: #474b59;
  margin-bottom: 24px;
}

.pricing .pricing-content .pricing-heading svg {
  width: 20px;
  height: 20px;
  color: #fde047;
}

.pricing .pricing-content .pricing-heading span {
  color: #fde047;
  font-size: 18px;
  font-weight: 700;
}

.pricing .pricing-main .pricing-grid {
  display: grid;
  grid-template-areas: "pricing-card pricing-items pricing-items" "pricing-card pricing-items pricing-items";
  align-items: stretch;
  gap: 24px;
}

@media (max-width: 575.98px) {
  .pricing .pricing-main .pricing-grid {
    grid-template-areas: "pricing-card" "pricing-items";
  }
}

.pricing .pricing-main .pricing-grid .pricing-card {
  grid-area: pricing-card;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom right, #eab308, #ea580c);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.pricing .pricing-main .pricing-grid .pricing-card:hover {
  transform: scale(1.02);
}

.pricing .pricing-main .pricing-grid .pricing-card .pricing-top {
  background-image: linear-gradient(to right, #ef4444, #ec4899);
  padding: 12px 24px;
  text-align: center;
}

.pricing .pricing-main .pricing-grid .pricing-card .pricing-top span {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

.pricing .pricing-main .pricing-grid .pricing-card .pricing-top p {
  font-size: 14px;
  color: #ffe4e6;
  margin-top: 4px;
  margin-bottom: 0;
}

.pricing .pricing-main .pricing-grid .pricing-card .pricing-content {
  padding: 16px 16px;
}

.pricing .pricing-main .pricing-grid .pricing-card .pricing-content .price-discount {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.pricing .pricing-main .pricing-grid .pricing-card .pricing-content .price-discount .discount-1 {
  font-size: 18px;
  color: #fbebcd;
  text-decoration-line: line-through;
}

.pricing .pricing-main .pricing-grid .pricing-card .pricing-content .price-discount .discount-2 {
  background-color: #ef4444;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing .pricing-main .pricing-grid .pricing-card .pricing-content .price-large {
  font-size: 58px;
  color: #fff;
  font-weight: 700;
  /* margin-top: 16px; */
  line-height: 1;
  margin-bottom: 8px;
}

.pricing .pricing-main .pricing-grid .pricing-card .pricing-content .save-label {
  font-size: 16px;
  color: #fff;
  text-align: center;
  /* font-weight: 700; */
}

.pricing .pricing-main .pricing-grid .pricing-card .pricing-content .pricing-action {
  width: 100%;
  margin-bottom: 24px;
  margin-top: 0;
}

.pricing .pricing-main .pricing-grid .pricing-card .pricing-content .pricing-action .register {
  display: flex;
  align-items: center;
  border-radius: 16px;
  gap: 4px;
  justify-content: center;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.pricing .pricing-main .pricing-grid .pricing-card .pricing-content .pricing-action .register svg {
  width: 22px;
  height: 22px;
  color: #ea580c;
}

.pricing .pricing-main .pricing-grid .pricing-card .pricing-content .pricing-action .register:hover {
  transform: scale(1.02);
}

.pricing .pricing-main .pricing-grid .pricing-card .pricing-content .pricing-action .register span {
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 16px;
  color: #ea580c;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}

.pricing .pricing-main .pricing-grid .pricing-card .pricing-content .pricing-end {
  text-align: center;
  background: #ee9b3b;
  height: 54px;
  border-radius: 16px;
  width: 100%;
}

.pricing .pricing-main .pricing-grid .pricing-card .pricing-content .pricing-end p {
  font-size: 16px;
  color: #fff;
  line-height: 54px;
  margin-bottom: 0;
  font-weight: 700;
}

.pricing .pricing-main .pricing-grid .pricing-card .pricing-content .pricing-end p span {
  font-size: 16px;
  color: #ef4444;
  margin-left: 8px;
}

.pricing .pricing-main .pricing-grid .pricing-items {
  grid-area: pricing-items;
  width: 100%;
  height: 100%;
}

.pricing .pricing-main .pricing-grid .pricing-items .vuta-col-md-4:nth-child(n + 4) .pricing-item {
  margin-top: 20px;
}

@media (max-width: 575.98px) {
  .pricing .pricing-main .pricing-grid .pricing-items .vuta-col-md-4:nth-child(n + 4) .pricing-item {
    margin-top: 0;
  }
}

.pricing .pricing-main .pricing-grid .pricing-items .pricing-item {
  border: 1px solid #4d538f;
  padding: 36px;
  display: grid;
  height: 100%;
  place-items: center;
  border-radius: 16px;
}

@media (max-width: 575.98px) {
  .pricing .pricing-main .pricing-grid .pricing-items .pricing-item {
    margin-bottom: 16px;
  }
}

.pricing .pricing-main .pricing-grid .pricing-items .pricing-item .pricing-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to bottom right, #60a5fa, #a855f7);
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.pricing .pricing-main .pricing-grid .pricing-items .pricing-item .pricing-icon svg {
  color: #fff;
  width: 32px;
  height: 32px;
}

.pricing .pricing-main .pricing-grid .pricing-items .pricing-item .pricing-icon .icon {
  color: #fff;
  width: 32px;
  height: 32px;
}

.pricing .pricing-main .pricing-grid .pricing-items .pricing-item h3 {
  font-size: 16px;
  color: #fff;
  margin-top: 24px;
  text-align: center;
}

.pricing .pricing-main .pricing-grid .pricing-items .pricing-item p {
  font-size: 16px;
  color: #bdc7da;
  text-align: justify;
}

.pricing .pricing-main .pricing-grid .pricing-commit {
  border-radius: 16px;
  grid-area: pricing-commit;
  background-image: linear-gradient(to right, #255d68, #354792);
  width: 100%;
  height: 100%;
  border: 1px solid #337d7f;
  padding: 32px;
}

.pricing .pricing-main .pricing-grid .pricing-commit .guarantee-inner .guarantee-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pricing .pricing-main .pricing-grid .pricing-commit .guarantee-inner .guarantee-header .guarantee-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #4ade80;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.pricing .pricing-main .pricing-grid .pricing-commit .guarantee-inner .guarantee-header h2 {
  color: #4ade80;
  font-size: 24px;
  font-weight: 700;
}

.pricing .pricing-main .pricing-grid .pricing-commit .guarantee-inner .guarantee-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pricing .pricing-main .pricing-grid .pricing-commit .guarantee-inner .guarantee-list li {
  display: flex;
  gap: 12px;
}

.pricing .pricing-main .pricing-grid .pricing-commit .guarantee-inner .guarantee-list li span {
  color: #cad4e1;
}

.pricing .pricing-main .guarantee-wrapper {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  padding: 8px 32px;
  border-radius: 100px;
  box-shadow: var(--light-shadow);
  gap: 16px;
}

.pricing .pricing-main .guarantee-wrapper .images {
  display: flex;
}

.pricing .pricing-main .guarantee-wrapper .images img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  margin-left: -10px;
}

.pricing .pricing-main .guarantee-wrapper .guarantee-text {
  font-size: 16px;
  color: #334155;
}

.pricing-title {
  font-size: 48px !important;
}

@media (max-width: 575.98px) {
  .pricing-title {
    font-size: 36px !important;
  }
}

.pricing-desc {
  color: #cbd5e1 !important;
}

.pricing-main-2 {
  margin-top: 48px;
}

.pricing-top-2 {
  background: linear-gradient(to right, #fe215e, #ff9402) !important;
}

.pricing-card-2 {
  background: linear-gradient(to right, #7612ff, #05b2ff) !important;
}

.pricing-end-2 {
  background: linear-gradient(to right, #7612ff, #05b2ff) !important;
  border: 2px solid #fff !important;
}

.primium {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.primium svg {
  width: 24px;
  height: 24px;
}

.primium span {
  font-size: 12px;
  color: #fff;
}

.pricing-icon--premium {
  background: linear-gradient(to right, #7612ff, #05b2ff) !important;
}

.pricing-grid-2 {
  align-items: center !important;
}

.curriculum {
  padding: 80px 0;
}

.curriculum .curriculum-wrapper .free-item {
  border: 1px solid #4ade80;
  padding: 24px;
  border-radius: 16px;
}

.curriculum .curriculum-wrapper .free-item .card-free {
  display: flex;
  gap: 16px;
  background-color: #fff;
  justify-content: space-between;
}

.curriculum .curriculum-wrapper .free-item .card-free .card-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #dcfce7;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
}

.curriculum .curriculum-wrapper .free-item .card-free .card-icon .free-icon {
  color: #16a34a;
  width: 32px;
  height: 32px;
}

.curriculum .curriculum-wrapper .free-item .card-free .content {
  flex: 1;
}

.curriculum .curriculum-wrapper .free-item .card-free .content h3 {
  font-size: 18px;
  color: #000;
}

.curriculum .curriculum-wrapper .free-item .card-desc {
  margin-top: 16px;
  font-size: 16px;
  color: #475569;
}

.curriculum .curriculum-wrapper .free-item .viewfree-btn {
  display: flex;
  align-items: center;
  gap: 4px;
}

.curriculum .curriculum-wrapper .free-item .viewfree-btn svg {
  stroke: #16a34a;
  width: 16px;
  height: 16px;
}

.curriculum .curriculum-wrapper .free-item .viewfree-btn span {
  font-size: 14px;
  color: #16a34a;
}

.curriculum .curriculum-wrapper .curriculum-payment h2 {
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.curriculum .curriculum-wrapper .curriculum-payment .payment-card {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  margin-bottom: 16px;
  background-color: #fff;
}

.curriculum .curriculum-wrapper .curriculum-payment .payment-card .user-info {
  display: flex;
  margin-bottom: 16px;
  gap: 8px;
  justify-content: space-between;
}

.curriculum .curriculum-wrapper .curriculum-payment .payment-card .user-info .payment-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #dbeafe;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.curriculum .curriculum-wrapper .curriculum-payment .payment-card .user-info .payment-icon .icon {
  color: #2563eb;
  width: 30px;
  height: 30px;
}

.curriculum .curriculum-wrapper .curriculum-payment .payment-card .user-info .introduce-info h3 {
  font-size: 18px;
}

.curriculum .curriculum-wrapper .curriculum-payment .payment-card .user-info .author {
  display: flex;
  align-items: center;
}

.curriculum .curriculum-wrapper .curriculum-payment .payment-card .user-info .author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 12px;
}

.curriculum .curriculum-wrapper .curriculum-payment .payment-card .user-info .author .introduce-info h4 {
  font-size: 16px;
  color: #0f172a;
}

.curriculum .curriculum-wrapper .curriculum-payment .payment-card .user-info .author .introduce-info p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 0;
}

.curriculum .curriculum-wrapper .curriculum-payment .payment-card .stars {
  margin-bottom: 16px;
}

.curriculum .curriculum-wrapper .curriculum-payment .payment-card .quote {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.curriculum .curriculum-wrapper .curriculum-payment .payment-card .metric-badge {
  padding-top: 16px;
  width: 100%;
}

.curriculum .curriculum-wrapper .curriculum-payment .payment-card .metric-badge span {
  background-color: #dbeafe;
  color: #2563eb;
  padding: 12px 16px;
  display: block;
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
}

.curriculum .curriculum-wrapper .curriculum-payment .curriculum-btn {
  text-align: center;
  margin-top: 16px;
}

.curriculum .curriculum-wrapper .curriculum-payment .curriculum-btn .btn-1 {
  padding: 8px 16px;
  background-image: linear-gradient(to right, #2563eb, #9333ea);
  border-radius: 100px;
  color: #fff;
}

.curriculum .curriculum-wrapper .curriculum-payment .curriculum-btn .curriculum-timelearn {
  background: linear-gradient(to right, #2563eb, #334155);
  padding: 8px 16px;
  max-width: 672px;
  margin: 24px auto;
  border-radius: 16px;
}

.curriculum .curriculum-wrapper .curriculum-payment .curriculum-btn .curriculum-timelearn h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}

.curriculum .curriculum-wrapper .curriculum-payment .curriculum-btn .curriculum-timelearn p {
  font-size: 16px;
  color: #475569;
  margin-bottom: 0;
  color: #fff;
}

.offer {
  padding: 80px 0;
}

@media (max-width: 575.98px) {
  .offer {
    padding: 60px 0;
  }
}

.offer .offer-left {
  padding: 32px;
  box-shadow: var(--light-shadow);
  border-radius: 16px;
  height: 100%;
}

@media (max-width: 575.98px) {
  .offer .offer-left {
    padding: 16px;
  }
}

.offer .offer-left .offer-alert {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
}

.offer .offer-left .offer-alert .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  font-size: 20px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #ef4444;
}

.offer .offer-left .offer-alert h2 {
  margin-bottom: 0;
  line-height: 1;
  text-transform: uppercase;
  font-size: 24px;
}

.offer .offer-left .offer-problems p {
  font-size: 18px;
  color: #ef4444;
}

.offer .offer-left .offer-problems ul {
  margin-top: 24px;
}

.offer .offer-left .offer-problems ul li {
  margin-bottom: 16px;
  font-size: 16px;
  position: relative;
  margin-left: 16px;
  color: #374151;
  font-size: 16px;
}

.offer .offer-left .offer-problems ul li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
}

.offer .offer-left .offer-opportunity {
  margin-top: 24px;
  background: #fff7ed;
  padding: 16px;
  border-left: 4px solid #f97316;
}

.offer .offer-left .offer-opportunity p {
  font-size: 18px;
  color: #c2410c;
  font-size: 16px;
  margin-bottom: 0;
}

.offer .offer-left .offer-stats {
  margin-top: 24px;
}

.offer .offer-left .offer-stats h3 {
  font-size: 18px;
  color: #000;
}

.offer .offer-left .offer-stats .stat-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.offer .offer-left .offer-stats .stat-list .stat-item {
  background: #fef2f2;
  padding: 16px;
  border-radius: 16px;
  text-align: center;
}

.offer .offer-left .offer-stats .stat-list .stat-item .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #dc2626;
}

.offer .offer-left .offer-stats .stat-list .stat-item p {
  font-size: 14px;
  color: #b91c1c;
  margin-bottom: 0;
}

.offer .offer-left .offer-warning {
  margin-top: 24px;
  padding: 24px;
  background-color: #fef2f2;
  border-left: 4px solid #dc2626;
}

.offer .offer-left .offer-warning p {
  color: #b91c1c;
  font-size: 16px;
  margin-bottom: 0;
}

.offer .offer-left .offer-continue {
  margin-top: 24px;
}

.offer .offer-left .offer-continue p {
  font-size: 18px;
  color: #000;
  font-weight: 700;
}

.offer .offer-left .offer-continue ul li {
  font-size: 16px;
  color: #374151;
}

.offer .offer-left .offer-continue .quote-box {
  margin-top: 24px;
  padding: 16px;
  background: #f3f4f6;
  font-size: 18px;
  font-style: italic;
  text-align: center;
}

.offer .offer-left .time-box {
  margin-top: 24px;
  background: #fefce8;
  padding: 16px;
  border-radius: 16px;
}

.offer .offer-left .time-box p {
  color: #854d0e;
  font-size: 16px;
  text-transform: uppercase;
}

.offer .offer-left .time-box small {
  font-size: 14px;
  color: #a16207;
}

.offer .offer-right {
  padding: 32px;
  border-radius: 16px;
  background: linear-gradient(to bottom right, #2563eb, #9333ea);
}

@media (max-width: 575.98px) {
  .offer .offer-right {
    margin-top: 24px;
    padding: 16px;
  }
}

.offer .offer-right .form-card .top-badge {
  background: #627aee;
  display: inline-flex;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 100px;
  font-weight: 700;
  color: #fff;
}

.offer .offer-right .form-card h2 {
  color: #fff;
  margin-top: 16px;
  font-size: 28px;
  text-align: center;
}

@media (max-width: 575.98px) {
  .offer .offer-right .form-card h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }
}

.offer .offer-right .form-card .price-box {
  margin-top: 16px;
  text-align: center;
}

.offer .offer-right .form-card .price-box .expert {
  font-size: 20px;
  color: #dbeafe;
  margin-bottom: 0;
}

.offer .offer-right .form-card .price-box .prices {
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer .offer-right .form-card .price-box .prices .old-price {
  font-size: 24px;
  font-weight: 700;
  color: #fca5a5;
}

.offer .offer-right .form-card .price-box .prices .new-price {
  font-size: 36px;
  font-weight: 700;
  margin-left: 8px;
  color: #fde047;
}

.offer .offer-right .form-card .price-box .save {
  font-size: 16px;
  color: #dbeafe;
}

.offer .offer-right .form-card .register-form {
  padding: 24px;
  margin-top: 16px;
  background: #fff;
  border-radius: 16px;
}

@media (max-width: 575.98px) {
  .offer .offer-right .form-card .register-form {
    padding: 16px;
  }
}

.offer .offer-right .form-card .register-form .card-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #dbeafe;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
}

.offer .offer-right .form-card .register-form .card-icon .offer-icon {
  color: #2563eb;
  width: 32px;
  height: 32px;
}

.offer .offer-right .form-card .register-form h2 {
  margin-top: 16px;
  font-size: 24px;
  color: #000;
}

.offer .offer-right .form-card .register-form p {
  font-size: 16px;
  color: #475569;
}

.offer .offer-right .form-card .register-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.offer .offer-right .form-card .register-form .form-group label {
  font-size: 14px;
  color: #374151;
  font-weight: 700;
}

.offer .offer-right .form-card .register-form .form-group input,
.offer .offer-right .form-card .register-form .form-group select {
  padding: 8px 12px;
  border-radius: 16px;
  border: 1px solid #d4d4d4;
}

.offer .offer-right .form-card .register-form .form-group input:focus,
.offer .offer-right .form-card .register-form .form-group select:focus {
  outline: 0;
  border-color: #15803d;
  box-shadow: 0 0 0 3px #4ade80;
}

.offer .offer-right .form-card .register-form .submit-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to bottom right, #2563eb, #9333ea);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-transform: uppercase;
}

.offer .offer-right .form-card .register-form .submit-btn:hover {
  transform: scale(1.02);
}

.offer .offer-right .form-card .register-form .form-note .notes {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.offer .offer-right .form-card .register-form .form-note .notes .note {
  display: flex;
  gap: 4px;
  align-items: center;
}

.offer .offer-right .form-card .register-form .form-note .notes .note svg {
  width: 12px;
  height: 12px;
  color: #6b7280;
}

.offer .offer-right .form-card .register-form .form-note .notes .note span {
  font-size: 12px;
  color: #6b7280;
}

.offer .offer-right .form-card .register-form .form-note p {
  font-size: 12px;
  color: #6b7280;
  margin-top: 12px;
  text-align: center;
}

.offer .offer-right .form-card .form-infos {
  margin-top: 24px;
  text-align: center;
}

.offer .offer-right .form-card .form-infos span {
  color: #dbeafe;
  font-size: 14px;
}

.offer .offer-right .form-card .form-infos .rating {
  margin-left: 8px;
}

.offer .offer-right .form-card .form-infos p {
  font-size: 12px;
  margin-top: 16px;
  color: #dbeafe;
  margin-bottom: 0;
}

.offer .usp-row {
  margin-top: 24px;
}

.offer .usp-row .item {
  padding: 16px;
  background: #fff;
  box-shadow: var(--light-shadow);
  border-radius: 16px;
  text-align: center;
}

.offer .usp-row .item span {
  font-size: 24px;
}

.offer .usp-row .item h4 {
  font-size: 14px;
  color: #334155;
}

.offer .usp-row .item p {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 0;
}

.faq-contact-box {
  margin-top: 40px;
  background: #eff6ff;
  padding: 24px;
  border-radius: 0.75rem;
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 575.98px) {
  .faq-contact-box {
    padding: 16px;
    max-width: 100%;
  }
}

.faq-contact-title {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.faq-contact-desc {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.faq-contact-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.faq-contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.faq-contact-btn:hover {
  opacity: 0.9;
}

.faq-contact-btn--phone {
  background: #2563eb;
}

.faq-contact-btn--zalo {
  background: #16a34a;
}

#faq {
  padding: 80px 0;
  background-color: #f6f9fc;
}

@media screen and (max-width: 996px) {
  #faq {
    padding: 40px 0 20px;
  }
}

#faq .box-title {
  text-align: center;
}

#faq .box-title h3 {
  font-size: 20px;
  margin-bottom: 10px;
  opacity: 0.8;
  color: #45455e;
}

#faq .box-title h2 {
  margin-bottom: 20px;
}

#faq .box-title p {
  max-width: 700px;
  color: #45455e;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media screen and (max-width: 996px) {
  #faq .box-title p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

#faq .faq {
  max-width: 970px;
  margin: 0 auto;
}

#faq .faq ul li {
  border-radius: 33px;
  position: relative;
  color: #333;
  font-size: 20px;
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
  z-index: 0;
  box-shadow: 0 0 40px rgba(0, 50, 82, 0.09);
}

@media screen and (max-width: 996px) {
  #faq .faq ul li {
    border-radius: 10px;
  }
}

#faq .faq ul li a {
  padding: 16px 105px 16px 45px;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #333;
  transition: all ease 0.4s;
  position: relative;
}

@media screen and (max-width: 996px) {
  #faq .faq ul li a {
    padding: 20px 30px 20px 20px;
    font-size: 16px;
  }

  #faq .faq ul li a::before {
    right: 14px !important;
    height: 14px !important;
  }

  #faq .faq ul li a::after {
    right: 8px !important;
    width: 14px !important;
  }
}

#faq .faq ul li a::before {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #333;
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  transition: all ease 0.4s;
}

#faq .faq ul li a::after {
  display: none;
}

#faq .faq ul li.active a {
  background: #3b82f6;
}

#faq .faq ul li.active a::before {
  content: "\f077";
  transform: translateY(-50%) rotate(0);
}

#faq .faq ul .hidden-content {
  padding: 25px 45px;
}

#faq .faq ul .hidden-content p {
  margin-bottom: 0;
  text-align: justify;
  font-size: 16px;
}

.document-preview {
  padding: 80px 0;
  background: #f6f9fc;
}

.document-preview .document-preview-image {
  width: 100%;
  height: 760px;
  border-radius: 16px;
  box-shadow: var(--light-shadow);
}

@media (max-width: 575.98px) {
  .document-preview .document-preview-image {
    margin-top: 16px;
  }
}

.document-preview .document-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 575.98px) {
  .document-preview .document-preview-image {
    height: auto;
  }
}

@media (max-width: 575.98px) {
  .document-preview {
    padding: 60px 0;
  }
}

.modal__popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 90vh;
  background-color: #f3f3f3;
  padding: 36px;
  box-shadow: 0 4rem 6rem rgba(0, 0, 0, 0.3);
  z-index: 9999999;
  transition: all 0.5s;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .modal__popup {
    width: 70vw;
    padding: 48px;
    height: 80vh;
  }
}

@media (max-width: 575.98px) {
  .modal__popup {
    width: 86vw;
    padding: 24px;
    height: 80vh;
  }
}

.modal__popup .modal__popup-inner {
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media (max-width: 991.98px) {
  .modal__popup .modal__popup-inner {
    height: 80vh;
  }
}

.modal__popup .modal__popup-inner .modal__popup-content {
  text-align: center;
}

.modal__popup .modal__popup-inner .modal__popup-content h3 {
  font-size: 22px;
  margin: 16px 0 0 0;
}

.modal__popup .modal__popup-inner .modal__popup-content h2 {
  font-size: 24px;
  color: var(--main-color);
  margin-bottom: 8px;
  font-weight: 700;
}

.overlay__popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9999998;
  transition: all 0.5s;
}

.btn--close-modal {
  position: absolute;
  top: -14px;
  right: 8px;
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: 0 0;
  transition: all 0.3s;
}

@media (max-width: 991.98px) {
  .btn--close-modal {
    top: -11px;
    right: 12px;
  }
}

@media (max-width: 575.98px) {
  .btn--close-modal {
    font-size: 24px;
    top: -11px;
    right: 4px;
  }
}

.btn--close-modal:hover {
  color: var(--main-color);
}

.hidden__popup {
  visibility: hidden;
  opacity: 0;
}

.modal__popup.hidden__popup,
.overlay__popup.hidden__popup {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

body.popup-open {
  overflow: hidden !important;
}

body.popup-open.popup-open {
  position: fixed;
  width: 100%;
}

.line-clamp {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.line-clamp-2 {
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  -webkit-line-clamp: 5;
}

.line-clamp-1 {
  -webkit-line-clamp: 1;
}

.navigation__list {
  background-image: linear-gradient(to right bottom,
      rgba(126, 213, 111, 0.8),
      rgba(40, 180, 133, 0.8));
  width: 100%;
  height: 100vh;
  padding: 30px 30px;
}

.navigation__list .navigation__link:link,
.navigation__list .navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #55c57a;
  background-image: linear-gradient(120deg,
      transparent 0,
      transparent 50%,
      #fff 50%);
  background-size: 220%;
  transition: all 0.4s;
  border-radius: var(--radius);
  border: 5px solid #55c57a;
}

.navigation__list .navigation__link:link:hover,
.navigation__list .navigation__link:visited:hover {
  background-position: 100%;
  color: #55c57a;
  border-radius: var(--radius);
  transform: translateX(1rem);
}

.btn__animation,
.btn__animation:link,
.btn__animation:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
}

.btn__animation:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn__animation:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn__animation:active,
.btn__animation:focus {
  outline: 0;
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn__animation--white {
  background-color: #fff;
  color: #777;
}

.btn__animation--white::after {
  background-color: #fff;
}

.btn__animation::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

@keyframes moveinBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

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

.btn__animation--animated {
  animation: moveinBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

.btn__text {
  font-size: 1.6rem;
  color: #55c57a;
  padding: 4px 0;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #55c57a;
  padding: 3px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn__text:hover {
  background-color: #55c57a;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn__text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

.tesst {
  background-color: #1098ad;
}

@media (max-width: 575.98px) {
  .tesst {
    background-color: red;
  }
}

#button-contact-vr {
  position: fixed;
  bottom: 106px;
  z-index: 99999;
  right: 0;
}

#button-contact-vr .button-contact {
  position: relative;
  margin-top: -15px;
}

#button-contact-vr .button-contact .phone-vr {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: 90px;
  height: 90px;
  cursor: pointer;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility 0.5s;
  left: 0;
  bottom: 0;
  display: block;
}

.phone-vr-circle-fill {
  width: 65px;
  height: 65px;
  top: 12px;
  left: 12px;
  position: absolute;
  box-shadow: 0 0 0 0 #c31d1d;
  background-color: rgba(230, 8, 8, 0.7);
  border-radius: 50%;
  border: 2px solid transparent;
  -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
  animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
  transition: all 0.5s;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animuiion: zoom2 1.3s infinite;
  animation: zoom2 1.3s infinite;
}

.phone-vr-img-circle {
  background-color: #e60808;
  width: 40px;
  height: 40px;
  line-height: 40px;
  top: 25px;
  left: 25px;
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  animation: phone-vr-circle-fill 1s infinite ease-in-out;
}

.phone-vr-img-circle img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.phone-vr-img-circle a {
  display: block;
  line-height: 43px;
}

.phone-bar a {
  position: fixed;
  bottom: 25px;
  left: 30px;
  z-index: -1;
  color: #fff;
  font-size: 16px;
  padding: 8px 15px 7px 50px;
  border-radius: 100px;
  white-space: nowrap;
  background: #f44336;
  letter-spacing: 1.5px;
  font-weight: 700;
}

@-webkit-keyframes phone-vr-circle-fill {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }

  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }

  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }

  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }

  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }

  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }

  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}

@-webkit-keyframes zoom2 {
  0% {
    transform: scale(0.9);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px transparent;
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 transparent;
  }
}

@keyframes zoom2 {
  0% {
    transform: scale(0.9);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px transparent;
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 transparent;
  }
}

.phone-bar a:hover {
  opacity: 0.8;
  color: #fff;
}

#mess img {
  border-radius: 50%;
}

#zalo-vr .phone-vr-circle-fill {
  box-shadow: 0 0 0 0 #2196f3;
  background-color: rgba(33, 150, 243, 0.7);
}

#zalo-vr .phone-vr-img-circle {
  background-color: #2196f3;
}

#messenger-vr .phone-vr-circle-fill {
  box-shadow: 0 0 0 0 #0866ff;
  background-color: rgba(8, 102, 255, 0.7);
}

#messenger-vr .phone-vr-img-circle {
  background-color: #0866ff;
}

#email-vr .phone-vr-circle-fill {
  box-shadow: 0 0 0 0 #34a853;
  background-color: rgba(234, 67, 53, 0.7);
}

#email-vr .phone-vr-img-circle {
  background-color: #fbbc04;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 50px;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  background: #1c1c1c;
  opacity: 0.5;
  color: #fff;
  display: none;
  transition: all ease 0.4s;
  z-index: 99999;
}

.back-to-top.active {
  display: flex;
}

.back-to-top:hover {
  opacity: 1;
}

.popup-search {
  position: fixed;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.9);
  top: 0;
  transition: transform 0.7s ease;
  display: none;
}

.popup-search .popup-content {
  position: absolute;
  z-index: 9999;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
}

.popup-search .close-btn {
  position: absolute;
  color: #fff;
  right: 30px;
  font-weight: 700;
  padding: 0 8px;
  border-radius: 50%;
  border: 2px #fff solid;
  top: 15px;
  font-size: 15px;
  cursor: pointer;
}

.popup-search .form-search {
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: min(600px, 100% - 10px);
}

.popup-search .form-search form {
  position: relative;
}

.popup-search .form-search input {
  background: #fff;
  border: none;
  outline: 0;
  height: 60px;
  line-height: 30px;
  font-size: 16px;
  color: #272727;
  padding: 15px 30px;
  width: 100%;
}

.popup-search .form-search button {
  position: absolute;
  background: #48cae4;
  border: none;
  height: 60px;
  width: 60px;
  color: #fff;
  top: 0;
  right: 0;
  transition: all ease 0.4s;
}

.mobile__btn {
  display: none;
}

.mobile__btn svg {
  width: 24px;
  height: 24px;
}

.mobile__btn .iconOpen {
  color: #000;
}

.mobile__btn .iconClose {
  color: red;
}

@media (max-width: 991.98px) {
  .mobile__btn {
    display: block;
  }
}

#mobile-btn span {
  background: #000;
  height: 3px;
  width: 25px;
  display: block;
}

#menu-mobile {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  top: 100%;
  transition: 0.5s;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

#menu-mobile.active {
  top: 0;
  visibility: visible;
  opacity: 1;
}

#menu-mobile .mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

#menu-mobile .wraper-menu-mobile {
  width: 100%;
  height: 95%;
  z-index: 99999;
  top: 100%;
  left: 0;
  border-radius: 20px 20px 0 0;
  padding: 45px 15px 30px;
  position: relative;
  background-color: #fff;
  transition: 0.5s;
  margin: 0;
  overflow-y: scroll;
}

#menu-mobile.active .wraper-menu-mobile {
  top: 0;
}

#menu-mobile .close-mobile-menu {
  display: block;
  position: absolute;
  top: 5px;
  right: 25px;
  padding: 10px;
  font-size: 20px;
}

#menu-mobile .list-mobile-menu {
  padding-left: 10px;
}

#menu-mobile .list-mobile-menu>li>.mobile-link>a {
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}

#menu-mobile .list-mobile-menu ul {
  padding-left: 20px;
  margin-top: 12px;
}

#menu-mobile .list-mobile-menu ul li {
  margin-bottom: 10px;
}

#menu-mobile .list-mobile-menu ul li a {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 15px;
  color: #ffc300;
}

#menu-mobile .list-mobile-menu>li+li {
  border-top: 1px solid #ececec;
  margin-top: 10px;
  padding-top: 10px;
}

.mobile__header {
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
}

.menu__overlay {
  position: fixed;
  right: -100%;
  top: 60px;
  width: 100%;
  z-index: 2;
  display: block;
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

#mobile__header.active__menu-mobile .menu__overlay {
  right: 0;
  opacity: 1;
  visibility: visible;
}

#mobile__header.closing__menu-mobile .menu__overlay {
  right: -100%;
  opacity: 0;
  visibility: hidden;
}

.menu__drawer {
  position: fixed;
  inset: 0 28% 0 0;
  background-color: #fff;
  z-index: 20;
  transform: translateX(-100%);
  transition: 0.5s ease;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
}

.menu__top {
  margin-top: 94px;
}

#mobile__header.active__menu-mobile .menu__overlay {
  opacity: 1;
  visibility: visible;
}

#mobile__header.active__menu-mobile .menu__drawer {
  transform: translateX(0);
}

.logo__mobile-img {
  width: 120px;
  height: auto;
}

.mobile__nav {
  margin-top: 16px;
}

.mobile__nav li {
  padding: 0 15px;
  border-bottom: 1px solid #ddd;
}

.mobile__nav li a {
  padding: 16px 0;
  color: #000;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 575.98px) {
  .home__banner {
    margin-top: 78px;
  }
}

.home__banner .banner-slider .banner-slider-item {
  position: relative;
}

.home__banner .banner-slider .banner-slider-item .box-img {
  max-width: 100%;
  height: 600px;
  display: block;
}

@media (max-width: 575.98px) {
  .home__banner .banner-slider .banner-slider-item .box-img {
    height: 100%;
  }
}

.home__banner .banner-slider .banner-slider-item .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home__banner .banner-slider .banner-slider-item .banner-posi {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px 56px 24px 24px;
  z-index: 2;
}

@media (max-width: 767.98px) {
  .home__banner .banner-slider .banner-slider-item .banner-posi {
    padding: 16px;
  }
}

@media (max-width: 767.98px) {
  .home__banner .banner-slider .banner-slider-item .banner-posi {
    width: 100%;
  }
}

.home__banner .banner-slider .banner-slider-item .banner-posi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #1f3538;
  z-index: -1;
  transition: 0.5s ease-in-out 0.3s;
}

@media (max-width: 767.98px) {
  .home__banner .banner-slider .banner-slider-item .banner-posi::before {
    background: rgba(31, 53, 56, 0.85);
  }
}

.home__banner .banner-slider .banner-slider-item .banner-posi .banner-content {
  margin-left: calc((100vw - 1260px) / 2);
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .home__banner .banner-slider .banner-slider-item .banner-posi .banner-content {
    margin-left: 0;
  }
}

.home__banner .banner-slider .banner-slider-item .banner-posi .banner-content h1 {
  position: relative;
  color: #fff;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 600;
  transition: 1s ease-in-out 0.8s;
  margin-bottom: 16px;
}

@media (max-width: 991.98px) {
  .home__banner .banner-slider .banner-slider-item .banner-posi .banner-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 767.98px) {
  .home__banner .banner-slider .banner-slider-item .banner-posi .banner-content h1 {
    font-size: 24px;
  }
}

.home__banner .banner-slider .banner-slider-item .banner-posi .banner-content .banner-breadcrumb .breadcrumb-list {
  display: flex;
  gap: 16px;
}

.home__banner .banner-slider .banner-slider-item .banner-posi .banner-content .banner-breadcrumb .breadcrumb-list .item-breadcrumb {
  position: relative;
}

.home__banner .banner-slider .banner-slider-item .banner-posi .banner-content .banner-breadcrumb .breadcrumb-list .item-breadcrumb:not(:first-child)::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--second-color);
  display: block;
  top: 54%;
  transform: translateY(-50%);
  left: -10px;
}

.home__banner .banner-slider .banner-slider-item .banner-posi .banner-content .banner-breadcrumb .breadcrumb-list .item-breadcrumb a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: fit-content;
  text-align: center;
  cursor: pointer;
  padding: 8px 20px;
  font-weight: 700;
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -ms-transition-delay: 0s;
  -o-transition-delay: 0s;
  overflow: hidden;
  position: relative;
  background: #db2017;
  border-radius: var(--radius);
}

.home__banner .banner-slider .banner-slider-item .banner-posi .banner-content .banner-breadcrumb .breadcrumb-list .item-breadcrumb a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  background: red;
  transition: all 0.3s ease;
  z-index: 1;
}

@media (max-width: 575.98px) {
    .hero .hero-wrapper .hero-headline {
        text-align: center;
        font-size: 26px;
    }
}

@media (max-width: 575.98px) {
    .offer .offer-right .form-card h2 {
        font-size: 20px;
        margin-bottom: 24px;
    }
}



@media (max-width: 575.98px) { 
	.offer .offer-left .offer-alert h2 {
		font-size: 18px;
	}

}

@media (max-width: 575.98px) { 
	.offer .offer-right .form-card .register-form h2  {
		font-size: 20px;
	}

}

@media (max-width: 575.98px) {
    .offer .offer-right .form-card h2 {
        font-size: 17px;
        margin-bottom: 24px;
    }
}