/* Root */
:root {
  --blue: #f2fbfe;
  --text: #000;
  --text-dark: #2e2e2e;
  --box-text-color: #38484e;
  --grey-08: #394150;
  --brand-color-blue: #005993;
  --bg-color-blue: #daf0fd;
  --bg-color-blue-05: rgba(218, 240, 253, 0.5);
  --brand-color-red: #d71249;
  --light-blue: #7ed3f7;
  --title: #273a41;
  --gap: 1.875rem;
  --radius-10: 0.625rem;
  --radius-8: 0.5rem;
  --animate-delay: 0.5s;
  --header-height: 79px;
  --rem: 16px;
}
/* Font Face */
@font-face {
  font-family: "SVN-Gilroy";
  src: url("./../font/SVN-Gilroy/SVN-Gilroy-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SVN-Gilroy";
  src: url("./../font/SVN-Gilroy/SVN-Gilroy-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "SVN-Gilroy";
  src: url("./../font/SVN-Gilroy/SVN-Gilroy-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "SVN-Gilroy";
  src: url("./../font/SVN-Gilroy/SVN-Gilroy-XBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}

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

html {
  font-size: var(--rem);
}
body {
  font-family: "SVN-Gilroy";
  color: var(--text);
  font-weight: 500;
  width: 100vw;
  overflow-x: hidden;
  font-size: 100%;
}

.bg-blue {
  background-color: var(--blue);
}

/* Text */
h2,
.h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--brand-color-blue);
  text-align: center;
  line-height: 1.25;
}

h4,
.h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-color-blue);
  line-height: 1.2;
  letter-spacing: -0.08px;
}

h5 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.08px;
}

.title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
ol {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

.container-1170 {
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
}

.container-1332 {
  max-width: 1332px;
  margin: 0 auto;
  width: 100%;
}

/* Class CSS */
.pt-70 {
  padding-top: 4.375rem;
}
.pt-78 {
  padding-top: 4.375rem;
}
.pt-55 {
  padding-top: 3.4375rem;
}
.pt-66 {
  padding-top: 4.125rem;
}
.pb-104 {
  padding-bottom: 6.5rem;
}
.pb-78 {
  padding-bottom: 4.875rem;
}
.pb-88 {
  padding-bottom: 5.5rem;
}
.pb-95 {
  padding-bottom: 5.9375rem;
}
.pt-80 {
  padding-top: 5rem;
}
.pb-80 {
  padding-bottom: 5rem;
}
.py-80 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-120 {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.mb-45 {
  margin-bottom: 2.8125rem;
}
.mb-55 {
  margin-bottom: 3.4375rem;
}
.mb-31 {
  margin-bottom: 1.9375rem;
}

/* Carousel Style*/
.swiper-button-custom {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgb(211, 213, 218, 0.7);
  border-radius: 50%;
  top: 50%;
  margin-top: 0;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.swiper-button-custom::after {
  z-index: 20;
}
.swiper-button-custom::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.6875rem;
  height: 2.6875rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  --webkit-transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.7);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
  width: 8px;
  height: 14px;
  background-image: url(./../img/icon-svg/swiper-arrow.svg);
  display: inline-block;
}
.swiper-button-prev {
  left: 0;
  transform: translateX(-60%) translateY(-50%);
  --webkit-transform: translateX(-60%) translateY(-50%);
}
.swiper-button-prev:after {
  transform: rotate(180deg);
}
.swiper-button-next {
  right: 0;
  transform: translateX(60%) translateY(-50%) !important;
  --webkit-transform: translateX(60%) translateY(-50%) !important;
}
.swiper .swiper-pagination-bullet {
  border: 2px solid #7ed3f7;
  transition: transform 0.2s, left 0.2s;
  background: var(--brand-color-blue) !important;
  width: 12px !important;
  height: 12px !important;
}
.swiper .swiper-slide {
  height: 100%;
}

/* Accordion */
.accordion-button::after {
  background-image: url(./../img/arrow-icon.png) !important;
}
h4.accordion-header button {
  line-height: 1.5;
}

/* Tab nav */
.nav.nav-pills {
  background-color: var(--bg-color-blue);
  border-radius: var(--radius-8);
  padding: 0.5rem;
  display: grid;
  gap: 0.875rem;
}
.nav.nav-pills .nav-link:not(.active) {
  color: var(--grey-08);
}
.nav.nav-pills .nav-link {
  min-height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  letter-spacing: -0.15px;
  width: 100%;
  height: 100%;
  padding: 0.5rem 0;
  text-align: center;
  position: relative;
}
.section-list-cards
  .list-tab-card
  .nav
  .nav-item:not(:last-child)
  .nav-link::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #fff;
  right: -0.4375rem;
  top: 0;
}
.nav.nav-pills .nav-link:not(.active):hover {
  background-color: #bae4fc;
}
.nav.nav-pills .nav-link.active {
  background-color: var(--brand-color-blue);
}

.tab-content {
  padding: 0.8125rem 1rem 0.75rem;
  box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.15);
  border-radius: 1.25rem;
  position: relative;
}

/* Modal */
.modal .modal-header {
  background: linear-gradient(90deg, #7ed3f7 0%, #ffffff 100%);
}
.modal .modal-title {
  font-weight: 600;
}
.modal .modal-body strong {
  font-weight: 600;
}
.modal .modal-body {
  font-weight: 400;
}
.modal .modal-body * {
  line-height: 2;
}

/* Form Input */
form .form-control,
form .form-select {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  font-size: 1rem;
}
form button {
  min-height: 3.4375rem;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: 600;
}
/* Box Item */
.box-item {
  display: flex;
  flex-direction: column;
  padding: 22px 0;
  background-color: #fff;
  box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-10);
  gap: 1.25rem;
  justify-content: space-between;
}

.box-item .box-text-title {
  text-align: left;
  color: var(--brand-color-blue);
  line-height: 1.2;
  font-size: 1.5rem;
  letter-spacing: -0.12px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  min-height: 2.5rem;
}
.box-item .box-text {
  flex-grow: 1;
}
.box-item .box-text ul {
  padding: 0;
  list-style: none;
}
.box-item .box-text ul li {
  color: var(--box-text-color);
  position: relative;
  padding-left: 0.75rem;
}

.box-item .box-text .content p {
  color: var(--box-text-color);
  position: relative;
  line-height: 1.3;
}
.box-item .box-text ul li::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--box-text-color);
  top: calc(1.2rem / 2);
  left: 0;
}

.box-item .box-icon {
  position: relative;
  width: 5.75rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

.box-item .box-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(./../img/img-the/box-item-icon-bg.png);
  background-size: cover;
  transition: all 0.5s;
}
.box-item:hover .box-icon::after {
  transform: rotate(180deg);
  --webkit-transform: rotate(180deg);
}
.box-item .box-icon img {
  width: 100%;
  height: 100%;
}

/* Card Item */
.card-item-custome {
  border-radius: 0.5rem;
  box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}
.card-item-custome .card-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-top-right-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.card-item-custome .card-img img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  object-fit: cover;
}

.card-item-custome:hover .card-img img {
  transform: scale(1.2);
}

.card-item-custome .card-content {
  padding: 0.75rem;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  justify-content: space-between;
  background-color: #fff;
  flex-grow: 1;
}

.card-item-custome .card-content h5 a {
  color: var(--grey-08);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card-item-custome .card-content .timeline {
  display: inline-block;
  color: #fff;
  background-color: var(--brand-color-blue);
  font-size: 0.75rem;
  padding: 0.375rem 0.625rem;
  border-radius: 1.875rem;
  margin-bottom: 0.75rem;
}
.card-item-custome .card-content .short-desc {
  font-size: 0.875rem;
  color: var(--grey-08);
}

.card-item-custome .card-content .card-content-bottom {
  flex-grow: 1;
}

.card-item-custome .card-content .card-content-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.card-item-custome .card-content .card-content-bottom .card-content-bottom-top {
  flex-grow: 1;
}
.card-item-custome
  .card-content
  .card-content-bottom
  .card-content-bottom-top
  .short-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
/* Download APP + QR */

.download {
  display: flex;
  gap: 0.8125rem;
}
.download .qr {
  padding: 0;
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
}
.download {
  margin-bottom: 2.25rem;
}
.mobile-store {
  gap: 1rem;
  display: flex;
  flex-direction: column;
}

.qr {
  overflow: hidden;
  padding: 4px 5px;
  background-color: #fff;
  border-radius: var(--radius-8);
  border: 1px solid #000;
  width: max-content;
  margin-bottom: 1rem;
}

.scan-animation {
  width: 100%;
  height: 20px;
  position: absolute;
  animation-name: zigzag;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  left: 0;
}

@keyframes zigzag {
  0% {
    background: linear-gradient(
      0deg,
      #d5b493,
      #fce1beb5 24.43%,
      hsla(0, 0%, 100%, 0)
    );
    top: 0;
  }
  50% {
    background: linear-gradient(
      0deg,
      #d5b493,
      #fce1beb5 24.43%,
      hsla(0, 0%, 100%, 0)
    );
    top: 95%;
  }

  51% {
    background: linear-gradient(
      180deg,
      #d5b493,
      #fce1beb5 24.43%,
      hsla(0, 0%, 100%, 0)
    );
    top: 95%;
  }
  100% {
    background: linear-gradient(
      180deg,
      #d5b493,
      #fce1beb5 24.43%,
      hsla(0, 0%, 100%, 0)
    );
    top: 0;
  }
}

/* Button */
.btn-blue {
  padding: 0 0.75rem;
  min-height: 2.75rem;
  color: #fff !important;
  background-color: var(--brand-color-blue);
  border-radius: var(--radius-8);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-color-blue);
  transition: all 0.3s ease;
  min-width: 130px;
}

.btn-blue:hover {
  color: var(--brand-color-blue) !important;
  background-color: #fff;
}

.btn-white {
  padding: 0 0.75rem;
  min-height: 2.75rem;
  color: var(--brand-color-blue) !important;
  background-color: #fff;
  border-radius: var(--radius-8);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-color-blue);
  transition: all 0.3s ease;
  min-width: 130px;
}
.btn-white:hover {
  background-color: #bae4fc;
}
.button-download {
  padding: 0.625rem 1.0625rem;
  border-radius: var(--radius-8);
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  background-color: #fff;
  color: var(--brand-color-blue);
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.button-download svg path {
  transition: all 0.3s;
}

.button-download.bg-blue {
  background-color: var(--brand-color-blue);
  color: #fff;
  box-shadow: 3px 4px 8px 0px rgba(0, 0, 0, 0.25);
}
.button-download.bg-blue svg path {
  fill: #fff;
}

.button-download:hover {
  background-color: var(--blue);
  color: var(--brand-color-red);
}
.button-download:hover svg path {
  fill: var(--brand-color-red);
}

.button-download.bg-blue:hover {
  background-color: var(--blue);
  border: 1px solid var(--brand-color-blue);
  color: var(--brand-color-blue);
}
.button-download.bg-blue:hover svg path {
  fill: var(--brand-color-blue);
}
.button-try-now-wrapper {
  line-height: 1 !important;
}
.button-try-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.625rem 0;
  min-width: 14.375rem;
  font-size: 1.125rem;
  position: relative;
  font-weight: 600;
  color: #fff;
  box-shadow: 3px 4px 8px rgba(0, 0, 0, 0.25);
  border: 1.5px solid var(--brand-color-blue);
  color: var(--brand-color-blue);
  border-radius: 0.875rem;
  background-color: #fff;
  text-align: center;
  transition: all 0.3s ease;
  line-height: 1 !important;
  min-height: 3.375rem;
}

.button-try-now:hover {
  background-color: var(--brand-color-blue);
  color: #fff;
  border-color: #fff;
}

.btns-action {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}

.btn-xem-them {
  color: var(--brand-color-blue);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}
.btn-xem-them:hover {
  text-decoration: underline;
}

/* Header */
#header {
  height: var(--header-height);
  width: 100vw;
  overflow: hidden;
  position: fixed;
  top: 1.5625rem;
  left: 0;
  z-index: 999;
  transition: height 0.3s ease;
  overflow: visible;
  background: linear-gradient(90deg, #7ed3f7 0%, #ffffff 100%);
  box-shadow: 0px 4px 19px rgba(0, 0, 0, 0.25);
}
#header .container-1332 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 30px;
}
#header nav {
  flex-grow: 1;
  max-width: 878px;
}
#header nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
#header nav ul li a {
  color: #000;
}
#header nav ul li a:hover {
  color: var(--brand-color-blue);
}
/* Banner */
.section-banner {
  height: 100vh;
}
.section-banner .content-wrapper {
  width: 44%;
  height: 77%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: end;
}
/* Section USP */
.section-usp .container-1170 {
  padding: 4.375rem 4.375rem 2.8125rem;
  background-image: url(./../img/img-the/bg-usp.jpg);
  background-size: 100% 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.section-usp .container-1170 .list-usp {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.875rem 1.25rem;
}

.section-usp .container-1170 .item-usp {
  width: calc((100% - 1.25rem * 2) / 3);
  height: 280px;
  border-radius: var(--radius-10);
  overflow: hidden;
  padding: 1.5rem 2.1875rem 0.9375rem 2.125rem;
}
/* Section List Card */
.section-list-cards .list-tab-card .nav {
  grid-template-columns: repeat(5, 1fr);
}

.section-list-cards .list-tab-card .tab-content .tab-pane {
  border-radius: 1rem;
  background: linear-gradient(-180deg, #e2f5fd 0%, #ffffff 70%);
  /* padding: 2rem 3rem; */
}
.section-list-cards .list-tab-card .swiper-slide {
  padding: 2rem 3rem;
}
.section-list-cards .list-tab-card .list-card-item hr {
  margin: 2.215rem 0;
}
.section-list-cards .list-tab-card .card-item {
  padding: 0 2.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 243px;
  gap: 6.5rem;
}
.section-list-cards .list-tab-card .card-item .card-img {
  flex-shrink: 0;
  width: max-content;
}
.section-list-cards .list-tab-card .card-item .card-img img {
  width: 384px;
  object-fit: contain;
}
.section-list-cards .list-tab-card .card-item .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}
.section-list-cards .list-tab-card .card-item .card-content h4 {
  margin-bottom: 0.5rem;
}
.section-list-cards .list-tab-card .card-item .card-content .sub-title {
  margin-bottom: 1rem;
  background-color: var(--brand-color-blue);
  border-radius: 1.875rem;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  padding-right: 0.875rem;
  width: max-content;
}
.section-list-cards .list-tab-card .card-item .card-content .sub-title::before {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  background-image: url(./../img/img-the/star-icon.png);
  background-size: contain;
}
.section-list-cards .list-tab-card .card-item .card-content .content-bottom {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.section-list-cards .list-tab-card .card-item .card-content .btn-blue,
.section-list-cards .list-tab-card .card-item .card-content .btn-white {
  text-transform: uppercase;
}

.section-list-cards .swiper-button-lock {
  display: block;
}

/* Document and Produces */
.section-document-and-produres {
  background-image: url(./../img/img-the/bg-document.jpg);
  background-size: cover;
}

.section-document-and-produres h2 {
  margin-bottom: 2.75rem;
}

.section-document-and-produres .list-document-and-produres {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
}

.section-document-and-produres
  .list-document-and-produres
  .item-document-and-produres {
  padding: 2.75rem 4rem 3.4375rem 2.875rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-radius: 1rem;
}
.section-document-and-produres
  .list-document-and-produres
  .item-document-and-produres
  .box-text-title {
  text-align: center;
}

.section-document-and-produres
  .list-document-and-produres
  .item-document-and-produres
  a {
  color: var(--brand-color-blue);
  text-decoration: underline;
}

.section-document-and-produres
  .list-document-and-produres
  .item-document-and-produres
  .box-icon {
  width: 6.875rem;
  height: auto;
  object-fit: contain;
}
.section-document-and-produres
  .list-document-and-produres
  .item-document-and-produres
  .box-icon::after {
  display: none;
}

/* Promotions */
.section-promotions h2 {
  margin-bottom: 0rem;
}
.section-promotions .list-promotions {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}
.section-promotions .list-promotions h5 {
  min-height: 5rem;
}
.section-promotions .list-promotions .swiper-pagination {
  top: unset;
  bottom: 0px;
}
.section-promotions .card-item-custome {
  margin: 1.5rem 0.9375rem 2.5rem;
  height: 33.2625rem;
}

/* Explore Offers */
.section-explore-offers h2 {
  margin-bottom: 1.875rem;
}
.section-explore-offers .list-explore-offers .nav {
  grid-template-columns: repeat(5, 1fr);
}
.section-explore-offers .list-explore-offers .tab-pane {
  background-color: var(--brand-color-blue);
  border-radius: 1rem;
  padding: 2.25rem;
}
.section-explore-offers .list-explore-offers .list-items {
  display: flex;
  gap: 2rem 3rem;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
}
.section-explore-offers .list-explore-offers .list-items .item {
  height: 3.3rem;
}
.section-explore-offers .list-explore-offers .list-items .item img {
  height: 100%;
  object-fit: contain;
}

/* Card Dance */
.section-card-dance .list-card-dance-videos .item-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  margin-bottom: 3rem;
  border-radius: var(--radius-8);
}
.section-card-dance .swiper-button-custom {
  margin-top: -1.5rem;
}
/* Form */
.section-form-dang-ky {
  background-color: var(--bg-color-blue-05);
}
/* Footer */
#footer {
  background-color: var(--brand-color-blue);
  color: #fff;
  font-weight: 400;
}
#footer .footer-top {
  padding: 2.4375rem 0;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}
#footer .widget-1 .logo {
  margin-bottom: 1.8125rem;
}
#footer .widget-1 .logo hr {
  margin-top: 0.625rem;
}
#footer hr {
  width: 6.125rem;
  height: 1px;
  background-color: #fff;
  opacity: 1;
}
#footer .widget-1 .icon-text {
  display: flex;
  gap: 7px;
  align-items: center;
}
#footer .widget-1 .icon-text svg {
  width: 1rem;
}
#footer .widget-1 .icon-text a {
  color: #fff;
}
#footer .widget-1 .icon-text span {
  line-height: 1.6;
  font-weight: 400;
  font-size: 1rem;
}
#footer .widget-2 ul {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  justify-content: space-between;
}
#footer .widget-2 hr {
  margin-bottom: 0.8125rem;
}
#footer .widget-2 ul img {
  width: 2.5625rem;
  border-radius: 50%;
}
#footer .footer-top > div {
  flex-shrink: 0;
}
#footer .widget-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#footer .footer-bottom {
  background: linear-gradient(to right, #20a8e0 50%, #da2128 50%);
}
#footer .footer-bottom .container-1170 {
  height: 3.75rem;
  background-image: url(./../img/footer_copyright_background.png);
  background-size: cover;
  display: flex;
  align-items: center;
  background-position: center;
}
#footer .widget-3 .hotline {
  display: flex;
  align-items: end;
  color: #fff;
  font-weight: 600;
  gap: 0.269375rem;
  padding: 0.20875rem 1.1875rem 0.20875rem 0.8125rem;
  border: 1px solid #fff;
  border-radius: 0.66rem;
  line-height: 1.6;
  min-width: 10rem;
}
#footer .widget-3 .hotline span {
  font-size: 1.0418rem;
  word-wrap: break-word; /* Trình duyệt cũ */
  overflow-wrap: break-word;
  width: max-content;
}
#footer .widget-3 .hotline img {
  width: 1.125rem;
  margin-bottom: 0.1825rem;
}
#footer .widget-3 .list-hotline {
  display: flex;
  gap: 0.375rem;
}

.tab-cards-info .nav.nav-pills .nav-link {
  padding: 0.5rem 1rem;
}
.tab-cards-info .tab-content {
  border-radius: 0.5rem;
}

#CTKM7 table tbody tr td:first-child {
  max-width: 200px;
}

@media screen and (min-width: 1024px) {
  #header {
    max-width: 1332px;
    margin: 0 auto;
    transform: translateX(-50%);
    left: 50%;
    /* background: linear-gradient(90deg, #7ed3f7 0%, #ffffff 100%); */
    border-radius: var(--radius-8);
    /* box-shadow: 0px 4px 19px rgba(0, 0, 0, 0.25); */
  }
  #header.fixed {
    top: 0;
    max-width: 100vw;
    border-radius: 0;
    height: 60px !important;
  }
  #header.fixed nav ul li:not(:last-child) a {
    font-weight: 600;
  }
}

@media screen and (min-width: 1200px) {
  .section-banner {
    min-height: 700px;
  }
}
@media screen and (max-width: 1200px) {
  .mb-71 {
    margin-bottom: 3rem;
  }
  .container-1170 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .box-item .box-text-title {
    font-size: 2.5vw;
  }
  .section-usp .digigold-advantages .box-item {
    padding: 1.5rem;
  }

  .section-banner .hightlight {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 3.6);
  }
  .swiper-button-next {
    right: 35px;
  }
  .swiper-button-prev {
    left: 35px;
  }
  .section-banner {
    height: 100vh;
  }
  .section-banner .img-banner {
    position: static !important;
  }
  .section-banner .content-wrapper {
    width: 100%;
    height: 100%;
  }
  .section-banner a {
    position: absolute;
    bottom: 30px;
  }
  .section-list-cards .list-tab-card .card-item {
    flex-direction: column-reverse;
    height: max-content;
    gap: 2.5rem;
  }
  .section-list-cards .list-tab-card .card-item .card-content .content-top {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section-list-cards .list-tab-card .card-item .card-content .content-bottom {
    justify-content: center;
    margin-top: 0.8rem;
  }
  .modal-dialog {
    max-width: 90% !important;
  }
}

@media screen and (max-width: 1023.98px) {
  :root {
    --gap: 1rem;
  }
  .section-banner {
    max-height: calc(100vh - var(--header-height));
  }

  .section-usp .container-1170 .list-usp {
    gap: 1rem;
  }
  .section-usp .container-1170 .item-usp {
    width: calc((100% - 1rem * 2) / 2);
  }
  .section-usp .digigold-advantages .box-item {
    padding: 1rem;
  }
  .section-list-cards .list-tab-card .nav,
  .section-explore-offers .list-explore-offers .nav {
    grid-template-columns: repeat(4, 1fr);
  }
  .nav.nav-pills .nav-link {
    min-height: 3.4rem;
  }
  .section-document-and-produres .list-document-and-produres {
    grid-template-columns: repeat(1, 1fr);
  }
  #footer .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
  #footer .widget-2 ul {
    justify-content: unset;
  }
  #footer .widget-3 .hotline {
    width: max-content;
  }
  #footer .widget-3 {
    align-items: self-start;
  }
  .section-promotions .card-item-custome {
    height: 615px;
  }
  .section-explore-offers .list-explore-offers .list-items {
    justify-content: unset;
  }
  .section-form-dang-ky-wrapper form,
  .section-form-dang-ky-wrapper .form-img {
    width: 100%;
  }
  .section-form-dang-ky-wrapper > .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 2rem;
  }
  .section-form-dang-ky-wrapper .img-mockup {
    justify-content: center !important;
  }
  #header .btn-open-menu {
    z-index: 100;
    width: 45px;
    height: 35px;
    background: #fff;
    border: 1px solid var(--brand-color-blue);
    border-radius: 4px;
    background-image: url(./../img/icon-svg/open-menu.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
  #header .btn-open-menu.close {
    background-image: url(./../img/icon-svg/close.svg);
  }
  #header nav {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #00000061;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: end;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  #header nav.show {
    opacity: 1;
    pointer-events: unset;
  }

  #header nav ul {
    justify-content: start;
    flex-direction: column;
    padding: 55px 1rem;
    gap: 30px;
    width: 55%;
    height: 100%;
    background: #fffffff7;
    align-items: baseline;
  }
  #header {
    top: 0;
  }
  #header .container-1332 {
    border-radius: 0;
  }
  main {
    margin-top: var(--header-height);
  }
}

@media screen and (max-width: 767.98px) {
  :root {
    --rem: 14px;
    --header-height: 72px;
  }
  .pt-107 {
    padding-top: 5rem;
  }
  .pb-122 {
    padding-bottom: 5rem;
  }
  .mb-50 {
    margin-bottom: 2rem;
  }
  h2,
  .h2 {
    font-size: 2rem;
  }
  .button-download {
    line-height: 1;
    flex-shrink: 0;
  }
  .button-try-now {
    padding: 1rem 1.5rem;
    line-height: 1;
  }
  #header {
    width: 100%;
    /* overflow: hidden; */
  }
  #header .button-download svg {
    display: none;
  }
  #header .logo {
    height: 80%;
    width: max-content;
  }
  #header .logo img {
    object-fit: contain;
    width: 150px;
  }
  .section-banner .content-wrapper {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 25%;
  }
  .section-banner img {
    width: 80vw;
  }

  .section-banner .img-banner {
    filter: unset;
  }

  .section-usp .box-item .content {
    text-align: left;
  }
  .box-item {
    padding: 10px 0;
  }
  .box-item .box-text-title {
    font-size: 3.6vw;
  }
  .section-usp .digigold-advantages {
    grid-template-columns: repeat(1, 1fr);
  }

  .accordion-item {
    padding: 1rem;
  }

  #footer .footer-bottom {
    font-size: 2.7vw;
  }
  .section-banner .hightlight {
    font-size: 3.4vw;
  }

  .section-usp .container-1170 .item-usp {
    width: 100%;
    height: max-content;
    flex-direction: row;
    padding: 1.5rem;
  }
  .section-list-cards
    .list-tab-card
    .nav
    .nav-item:not(:last-child)
    .nav-link::after {
    display: none;
  }
  .box-item {
    align-items: center;
  }
  .box-item .box-text-title {
    text-align: left;
    min-height: unset;
    font-size: 5vw !important;
  }
  .box-item .box-text-title br {
    display: none;
  }

  .img-mockup img {
    width: 80%;
  }
  .section-form-dang-ky-wrapper form > .row {
    --bs-gutter-x: 1rem;
  }
  .section-list-cards .list-tab-card .nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-explore-offers .list-explore-offers .nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-list-cards .list-tab-card .swiper-slide {
    padding: 1.5rem 1rem;
  }
  .section-list-cards .list-tab-card .card-item .card-img img {
    width: 100%;
  }
  .section-list-cards .list-tab-card .card-item .card-img {
    width: 100%;
  }
  .section-list-cards .list-tab-card .card-item .card-content h4,
  .section-list-cards .list-tab-card .card-item .short-desc {
    text-align: center;
  }
  .section-list-cards .list-tab-card .card-item .card-content h4 {
    max-width: 235px;
  }
  .modal-dialog {
    max-width: 100% !important;
  }
  .section-promotions .card-item-custome {
    height: unset;
  }
  .card-item-custome .card-content .timeline {
    font-size: 0.9rem;
  }
  .card-item-custome .card-content .short-desc {
    font-size: 1rem;
  }
  .section-document-and-produres
    .list-document-and-produres
    .item-document-and-produres {
    padding: 2rem;
  }
  .section-explore-offers .list-explore-offers .tab-pane {
    padding: 2rem 1rem;
  }
  .section-explore-offers .list-explore-offers .list-items .item {
    height: 2.4rem;
  }
  #header .container-1332 {
    padding: 1rem;
    border-radius: 0;
  }
}

@media screen and (max-width: 576px) {
  .section-banner .hightlight {
    font-size: 4vw;
  }
}

.tiktok-embed {
  max-width: 100% !important;
  margin: 0 !important;
}
