@charset "UTF-8";
/*rgb(246, 46, 92)*/
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap&subset=vietnamese");
/*@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500&display=swap&subset=vietnamese');*/
/*@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap&subset=vietnamese');*/
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap&subset=vietnamese');*/
:root {
  --bg-desktop: #222222;
  /* Nền ngoài desktop */
  --bg-mobile: #111111;
  /* Nền đen trong mobile */
  --gold: rgb(255, 220, 79);
  /* Màu vàng thương hiệu */
  --gold-gradient: linear-gradient(180deg, #ffd700, #ffa000);
  --blue-header: #e3f2fd;
  /* Nền header form */
  --blue-btn: #1565c0;
  /* Màu nút xanh */
  --text-white: #ffffff;
  --text-gray: #bbbbbb;
  --green: #4caf50; }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0; }

body {
  font-family: 'Roboto', sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh; }

body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  font-weight: 400;
  min-width: 420px;
  line-height: 1.6;
  /*	background-color: $colorblack;*/
  /*@include breakpoint800 {
  	background-color: $colorblack;
  }*/
  /*	overflow-x: hidden;*/ }

@media (max-width: 419px) {
  body {
    -webkit-transform: scale(calc(100vw / 420));
    transform: scale(calc(100vw / 420));
    -webkit-transform-origin: top left;
    transform-origin: top left;
    width: 420px;
    overflow-x: hidden; } }
.hero-banner {
  padding: 15px 10px 10px; }

img {
  border: 1px solid white;
  border-radius: 11px; }

.line {
  width: 267px;
  height: 1px;
  border-top: 1px solid white;
  display: block;
  margin: 0 auto;
  margin-top: -10px;
  margin-bottom: 20px; }

/* --- MOBILE CONTAINER --- */
.mobile-wrapper {
  background-color: var(--bg-mobile);
  color: var(--text-white);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  position: relative;
  padding-bottom: 0;
  background-image: url(../image/bgr.png);
  background-size: 650%;
  background-origin: content-box;
  background-position: 50% 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  width: 420px; }
  @media screen and (max-width: 767px) {
    .mobile-wrapper {
      width: 100%; } }

/* --- TIỆN ÍCH --- */
img {
  max-width: 100%;
  display: block;
  margin: 0 auto; }

.text-center {
  text-align: center; }

.uppercase {
  text-transform: uppercase; }

.bold {
  font-weight: 700; }

.text-gold {
  color: var(--gold); }

.section {
  padding: 20px 10px; }

/* 1. HEADER */
.header {
  background: #000;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #333; }

.header-info h1 {
  font-size: 14px;
  color: #fff;
  line-height: 1.3; }

.header-info span {
  font-weight: bold;
  font-size: 0.8rem; }

.btn-cta-top {
  background: var(--gold-gradient);
  color: #000;
  font-size: 14px;
  font-weight: 900;
  padding: 15px 14px;
  border-radius: 23px;
  text-decoration: none;
  -webkit-box-shadow: 0 2px 5px rgba(255, 215, 0, 0.4);
          box-shadow: 0 2px 5px rgba(255, 215, 0, 0.4); }
  .btn-cta-top span {
    -webkit-animation-name: pulse;
            animation-name: pulse;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    display: inline-block; }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
/* 2. BANNER & GIFTS */
.hero-banner img {
  width: 100%; }

.gift-title, .dknhanuudai {
  font-family: Roboto, sans-serif;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.6;
  color: white;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px; }

.dknhanuudai {
  margin-top: 20px;
  font-style: italic;
  -webkit-animation-name: pulse;
          animation-name: pulse;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  display: inline-block; }

.note {
  text-align: left; }
  .note p {
    margin-bottom: 15px;
    font-size: 14px; }

.colormain {
  color: var(--gold); }

.benefit-list {
  list-style: none;
  font-size: 0.9rem;
  padding: 0 5px; }

.benefit-list li {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: white;
  text-align: left; }
  .benefit-list li div {
    display: block; }

.benefit-list li i {
  color: var(--green);
  margin-right: 8px;
  margin-top: 1px;
  font-size: 21px; }

.benefit-list li span {
  color: var(--gold);
  font-weight: bold; }

/* 3. PRICE & COUNTDOWN */
.price-box {
  border: 2px solid #fff;
  padding: 20px;
  /*	border-radius: 8px;*/
  background: rgba(255, 255, 255, 0.05);
  text-align: center; }
  .price-box h3 {
    font-size: 28px;
    font-weight: bold;
    font-style: italic;
    line-height: 1.6;
    color: white;
    text-align: center;
    margin-bottom: 20px; }
  .price-box p {
    font-size: 19px;
    font-style: italic;
    line-height: 1.6;
    color: white;
    text-align: center; }
    .price-box p span {
      font-size: 27px;
      font-weight: bold;
      font-style: italic;
      line-height: 1.6;
      -webkit-text-decoration-line: line-through;
              text-decoration-line: line-through;
      text-align: center; }

.price-old {
  text-decoration: line-through; }

.price-new {
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 900;
  margin-left: 5px; }

.countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 15px; }

.time-box {
  background: #fff;
  color: #000;
  font-weight: 900;
  font-size: 1.2rem;
  padding: 6px 10px;
  border-radius: 5px;
  min-width: 40px; }

/* 4. FORM STYLE (Dùng chung cho cả 2 form) */
.form-container {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  color: #333;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }

.form-head {
  background: var(--blue-header);
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #bbdefb; }

.form-head h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  color: #004aad;
  text-transform: uppercase;
  text-align: center; }

.form-head p {
  font-size: 18px;
  line-height: 1.6;
  color: #004aad; }

.form-content {
  padding: 15px;
  background: #eaeaea; }

.inp-field {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  background: #fafafa; }

.radio-opt {
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.radio-opt input {
  margin-top: 3px;
  margin-right: 8px; }

.phanhoi h3 {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
  color: white;
  text-transform: uppercase;
  text-align: center; }
.phanhoi p {
  font-size: 13px;
  line-height: 1.6;
  color: white;
  text-align: center; }

.slider {
  width: 340px;
  display: block;
  margin: 0 auto;
  position: relative; }

.grpslider {
  width: 100%;
  margin-top: 10px;
  border: 1px solid white;
  border-radius: 11px;
  overflow: hidden; }
  .grpslider .slide-bg {
    height: 650px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }

.grpsliderw .slide-bg {
  height: 282px; }

.btn-arr {
  line-height: 3px;
  position: absolute;
  top: 45%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-filter: drop-shadow(0 0 1px black);
          filter: drop-shadow(0 0 1px black);
  cursor: pointer; }
  .btn-arr img {
    border: 0;
    width: 33px;
    height: 33px; }

.btn-left {
  left: 5px;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg); }

.btn-right {
  right: 5px; }

.btn-submit {
  width: 80%;
  padding: 12px;
  background: var(--blue-btn);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: block;
  margin: 0 auto; }

.btn-submit:active {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none; }

.btn {
  border-width: 2px;
  border-radius: 23px;
  border-style: solid;
  border-color: white;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2ebfee), to(#5773d7));
  background-image: linear-gradient(#2ebfee, #5773d7);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  color: white;
  text-align: center;
  padding: 10px 20px;
  width: 80%;
  display: block;
  margin: 0 auto 15px; }

iframe {
  width: 100% !important;
  margin-bottom: 20px;
  height: 236px !important; }

h3.customh3 {
  font-size: 19px;
  font-style: italic;
  line-height: 1.6;
  color: white;
  text-align: center; }

.section .btn-cta-top {
  margin-top: 30px;
  padding: 15px 25px;
  font-size: 16px;
  display: inline-block; }

.course-box {
  background: white;
  padding: 10px;
  border-radius: 0;
  color: #000; }

.course-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px; }

.course-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #555; }

.course-rating .rating-number {
  font-size: 17px;
  font-weight: bold;
  color: #f7b400; }

.course-rating .stars {
  color: #f7b400;
  letter-spacing: 1px; }

.course-rating .divider {
  color: #bbb; }

.line {
  width: 100%;
  height: 2px;
  background: #ddd;
  margin: 12px 0 15px; }

.course-desc {
  font-size: 15px;
  line-height: 1.8;
  color: black;
  text-align: justify;
  margin-bottom: 20px; }

.course-btn {
  border-radius: 23px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffe259), to(#ffa751));
  background-image: linear-gradient(#ffe259, #ffa751);
  margin-bottom: 20px;
  padding: 15px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  color: black;
  text-align: center; }

.course-btn:hover {
  opacity: 0.85; }

/* 5. FEEDBACK & PARTNER */
.section-title {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px; }

.feedback-img {
  border-radius: 10px;
  border: 1px solid #444; }

.partner-img {
  border-radius: 8px;
  margin-top: 10px; }

/* 6. CURRICULUM ACCORDION */
.acc-btn {
  background-color: #eee;
  color: #333;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  line-height: 1.6;
  color: black;
  text-align: left; }

.acc-btn.active, .acc-btn:hover {
  background-color: var(--gold);
  color: #000; }

.acc-panel {
  padding: 0 15px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
  color: #333;
  font-size: 0.9rem; }

.acc-panel ul {
  list-style: none;
  padding: 15px 0; }

.acc-panel li {
  margin-bottom: 8px;
  border-bottom: 1px dashed #eee;
  padding-bottom: 5px; }

.acc-panel li:before {
  content: "•";
  color: red;
  margin-right: 5px;
  font-weight: bold; }

/* 7. QR CODE PAYMENT */
.qr-section {
  background: #000;
  text-align: center;
  border: 1px dashed #555;
  padding: 20px 10px;
  margin: 20px 0; }

.qr-img {
  width: 300px;
  height: 300px;
  background: #fff;
  margin: 15px auto 30px; }

.acc-item {
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden; }

.acc-header {
  background: #f1f1f1;
  /* Màu xám nhạt giống ảnh */
  color: #000;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  border-left: 5px solid #000;
  /* Điểm nhấn bên trái nếu muốn */
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  text-align: left; }

.acc-header:hover {
  background: #e0e0e0; }

.acc-content {
  background: #f9f9f9;
  color: #333;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out; }

.acc-list {
  list-style: none;
  padding: 0; }

.acc-list li {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.acc-list li i.fa-play {
  color: #888;
  margin-right: 10px;
  font-size: 0.8rem; }

.acc-list li i.fa-lock {
  color: #aaa; }

/* 8. FOOTER */
.footer {
  /*	color: #888;*/
  /*	border-top: 1px solid #333;*/
  background-image: url(../image/bgr.png);
  background-size: cover;
  background-origin: content-box;
  background-position: 50% 0%;
  background-repeat: no-repeat;
  background-attachment: scroll; }

.company-box {
  padding: 30px 10px 15px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  overflow: hidden; }

.company-box p {
  margin: 0 0 6px; }

.company-box a {
  color: #9fc5ff;
  /* màu link xanh nhạt giống hình */
  text-decoration: none; }

.company-box a:hover {
  text-decoration: underline; }

/*# sourceMappingURL=style.css.map */