/*=======================
        General 
=======================*/
html,
body {
  font-weight: 400;
  font-size: 18px;
  font-family: Be Vietnam Pro;
}

p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Be Vietnam Pro;
  color: #1f2a2e;
  font-weight: 900;
}
h6 {
  color: #013993;
}

h3,
h4,
h5,
h6 {
  line-height: 1.3;
}

h1 {
  font-size: 54px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

a:hover {
  text-decoration: none;
}

a {
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  text-decoration: none;
}

:focus {
  outline: none;
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  margin: 0;
}

/*=======================
       Page Layout
=======================*/

.wrap_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-brand {
  width: 220px;
}

.site-brand a,
.site-brand img {
  display: block;
}

.right-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.mid-header {
  padding: 27px 0;
  background: linear-gradient(180deg, #ffffff 0%, #b7dde4 100%);
}

.menu-header {
  display: flex;
  gap: 8px;
  list-style: none;
}

.menu-header .menu-item.has-child > a > .arrow:last-child {
  display: none;
}
.menu-header li a {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  display: block;
  padding: 4px 8px;
  color: #1b1b1b;
}

.menu-header li a:hover {
  text-decoration: underline;
}
.menu-item-has-children {
  position: relative;
}
.menu-header .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(180deg, #ffffff 0%, #b7dde4 100%);
  width: 240px;;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease;
}
.menu-header .sub-menu li {
  list-style: none;
  border-bottom: 1px solid #ffffff;
}
.menu-header .sub-menu a {
  transition: all 0.3s;
}

.menu-header .sub-menu a:hover {
  transform: translateX(10px);
}
.menu-header .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}
.menu-header .menu-item.has-child .arrow {
  cursor: pointer;
  padding: 0 8px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.menu-header .menu-item-has-children:hover .arrow,
.menu-header .menu-item-has-children.active .arrow {
  transform: rotate(180deg);
}
.btn-seach-header a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #9bc5ff66;
  display: block;
  background-image: url("../images/seach.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.btn-login a {
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  padding: 8px 18px;
  border-radius: 20px;
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  position: relative;
}

.btn-login a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;

  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
}

.btn-login a:hover {
  box-shadow: 0 4px 15px rgba(0, 114, 253, 0.4);
  /* màu gần trung tâm gradient */
}

.btn-login a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: #fff;
  transition: all 0.3s ease-in-out 0s;
  z-index: -1;
  opacity: 0;
}

.btn-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.site-footer {
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
}

.wrap-footer {
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.logo-footer {
  width: 291px;
}

.logo-footer a,
.logo-footer img {
  display: block;
}

.right-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-grow: 1;
}

.title-widget {
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #fff;
  margin-bottom: 20px;
}

.menu-footer {
  display: flex;
  list-style: none;
  gap: 80px;
}

.menu-footer li {
  display: block;
}

.menu-footer li a {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #f2f2f2;
  margin-bottom: 8px;
  display: block;
}
.menu-footer > li > a {
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  font-style: SemiBold;
  letter-spacing: 0%;
  color: #fff;
  margin-bottom: 20px;
  pointer-events: none;
  text-transform: uppercase;
}
.menu-footer li a:hover {
  text-decoration: underline;
}

.title-cnganh a:hover,
.title-cnghe a:hover,
.post-info .post-title a:hover {
  text-decoration: underline;
}

.sub-menu li:last-child a {
  margin-bottom: 0;
}
.menu-footer .arrow,
.menu-footer .arrow i {
  display: none !important;
}

.menu-footer li > a::before,
.menu-footer li > a::after {
  content: none !important;
}

.list_social {
  padding: 0 10px;
  display: flex;
  list-style: none;
}

.list_social li a {
  padding: 0 10px;
  display: block;
  overflow: hidden;
}

.list_social li a img {
  display: block;
  transition: all 0.3s ease-in-out 0s;
}

.list_social li a:hover img {
  transform: scale(1.1);
}

.social-footer .title-widget {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-style: SemiBold;
}
.footer-info {
  padding-bottom: 20px;
}
.address-info {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #f2f2f2;
  margin: 0;
}
.tax-info {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #f2f2f2;
  margin: 0;
}
.copyright {
  font-family: Be Vietnam Pro;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
  border-top: 1px solid #0f81f8;
  padding: 19.5px 0;
}
.hero-section .slider-taxonomi .wrap-slider-taxonomi img{
  width: 24px;
  height: 24px;
}
.hero-section {
  padding: 68px 0 40px;
  position: relative;
  background: linear-gradient(
    180deg,
    #b7dde4 0%,
    rgba(3, 97, 171, 0.6) 22.04%,
    rgba(2, 156, 185, 0.8) 50%,
    #ffffff 100%
  );
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section::after {
  position: absolute;
  top: 147px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 976px;
  height: 596px;
  z-index: 0;
  background-image: url("../images/bgpc.png");
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-section::before {
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 273px;
  height: 34px;
  content: "";
  background-image: url("../images/Vector 31.svg");
  background-position: center bottom;
  background-repeat: no-repeat;
}

.ttl-hero1 {
  display: inline-block;
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #fff;
  padding: 29px 80px;
  background: #013993;
  border: 2px solid #ffffff;
  border-radius: 40px 40px 40px 0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 520px;
}

.ttl-hero2 {
  padding: 24px 54px;
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  border-radius: 40px 40px 40px 0;
  margin-left: 61px;
  backdrop-filter: blur(12px);

  background-color: #ffffffcc;
}

.ttl-hero2 span {
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ttl-hero {
  text-align: center;
}

.content-hero {
}

.lwa-bones .lwa.lwa-login .lwa-links a {
  margin-top: 0 !important;
}

.icon-hero1 {
  position: absolute;
  top: 32px;
  right: 0;
  z-index: 0;
}

.icon-hero2 {
  left: 0;
  top: 22px;
  position: absolute;
  z-index: 0;
}

.icon-hero3 {
  position: absolute;
  bottom: 230px;
  right: 0;
  z-index: 0;
}

@keyframes fadeUp {
  to {
    opacity: 1;
  }
}

.site-main {
  padding-top: 0;
}

.ttl-hero h1 {
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
  margin-bottom: 40px;
}

.content-hero {
  margin: 0 auto 40px;
  max-width: 990px;
}
.after-section-text-hero p {
  margin: 20px auto;
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}
.content-hero p {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}

.content-hero p:last-child {
  margin-bottom: 0;
}

.social-hero {
  margin-bottom: 40px;
}

.social-hero ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-hero ul li {
  padding: 32px 35px 0;
  display: block;
  list-style: none;
}

.social-hero ul li a,
.social-hero ul li a img {
  display: block;
  transition: all 0.3s ease-in-out 0s;
}

.social-hero ul li a:hover img {
  filter: brightness(0) invert(1);
}

.wrap-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 60px 0;
}

.col-features {
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.col-features:nth-child(2) {
  border-style: solid;
  border-width: 0 2px;
  border-color: #013993;
}

.col-features .number-features {
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: 0%;
  vertical-align: middle;
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
  margin-bottom: 16px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.col-features h2 {
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #013993;
  margin-bottom: 12px;
}

.col-features p {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #013993;
  margin-bottom: 0;
  text-align: center;
}

.gallery {
  padding: 80px 0;
  position: relative;
  background: #bde0e7;
}

.ttl-gallery h2 {
  text-align: center;
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: 0%;
  text-align: center;
  padding: 20px;
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gallery-tagline > * {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: #313033;
  margin: 20px 0;
}
.ttl-about {
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0%;
  padding: 16px;
  text-align: center;
  display: inline-block;
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 40px;
}

.text-center {
  text-align: center;
}

.wrap-about {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.content-about {
  width: calc(50% - 20px - 10px);
}

.img-about {
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.img-about img {
  display: block;
  border-radius: 12px;
}

.content-about h2 {
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: 0%;
  text-align: justify;
  color: #013993;
  margin-bottom: 40px;
}

.content-about p {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: justify;
  margin-bottom: 40px;
  color: #313033;
}

.content-about p:last-child {
  margin-bottom: 0;
}

.ttl-h2 {
  padding: 16px 28px;
  background-color: #9bc5ff66;
  display: inline-flex;
  gap: 12px;
  border-radius: 30px 30px 30px 0;
  align-items: center;
  justify-content: center;
}

.ttl-h2 h2 {
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: normal;
  font-weight: 700;
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0%;
}

.inner-ttl-h2 {
  text-align: left;
}

.ttl-h2 p {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: justify;
  color: #313033;
  margin-bottom: 0;
}

.ttl-article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.ttl-article a {
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  text-decoration: underline;
  color: #013993;
  display: block;
}

.ttl-article a:hover {
  text-decoration: none;
}

.article-cnganh {
  margin: 80px 0;
}

.ttl-h2 img {
  display: block;
}

.wrap-article-cnganh {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  /* display: flex;
    flex-wrap: wrap; */
}

.wrap-article-cnganh-slider {
  display: block;
}

article.chuyen_nganh,
.siderbar-post {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.img-hero-accout {
  margin-bottom: 100px;
}

.thumb-cnganh {
  width: 198px;
}

.info-cnganh {
  width: calc(100% - 198px - 12px);
}

.chuyen_nganh {
}

.thumb-cnganh a {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 12px;
}

.thumb-cnganh img {
  display: block;
  transition: all 0.3s;
  border-radius: 20px;
}

.thumb-cnganh img:hover {
  transform: scale(1.1);
}

.cat-cnganh a {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #605d62;
  margin-bottom: 6px;
  text-transform: uppercase;
  display: block;
}

.title-cnganh a {
  font-family: SVN-Nexa Bold;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1b;
  display: block;
  margin-bottom: 16px;
}

.name-cnganh {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #313033;
  margin-bottom: 16px;
}

.excerpt-cnganh {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #605d62;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-nav {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.page-numbers {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #737373;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.3s;
}

.page-numbers i {
  font-size: 34px;
}

.page-numbers.current,
.page-numbers:hover {
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
  color: #fff;
}

.page-navigation {
  width: 100%;
  margin-top: 40px;
}

.article-cnghe {
  margin: 0 0 80px;
  padding-top: 40px;
}

.after-section-text-cnghe p {
  margin: 20px auto;
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}
.article-cnghe .info-post-cnghe {
  width: 100%;
}

.wrap-article-cnghe {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.article-post {
  padding: 80px 0;
}

/* .wrap-article-post .type-post {
    max-width: 882px;
    margin: 0 auto 20px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;

} */

.thumb-post {
  width: 153px;
}

.info-post {
  width: calc(100% - 153px - 60px);
}

.wrap-article-post .type-post:last-child {
  margin-bottom: 0;
}

.thumb-post img {
  display: block;
  margin: 0 auto 8px;
  border-radius: 20px;
}

.thumb-post .name {
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #010134;
  margin-bottom: 4px;
}

.post-position {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #605d62;
}

.cate-post a {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #605d62;
  margin-bottom: 4px;
  display: block;
}

.info-post h3 a {
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1b;
  margin-bottom: 8px;
  display: block;
}

.excerpt {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #605d62;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wrap-btn-post {
  padding-top: 8px;
  border-top: 1px solid #535353;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.view-post {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #6e6e6e;
}

.btn-post {
  font-family: Be Vietnam Pro;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #030303;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-post:hover {
  transform: translateX(10px);
}

.wrap-btn-post img {
  display: block;
}

.ttl-contact {
  max-width: 835px;
  margin: 0 auto 24px;
}

.ttl-contact h2 {
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: 0%;
  color: #fff;
  margin-bottom: 12px;
  text-align: center;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.ttl-contact p {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  margin-bottom: 0;
}

.contact .container {
}

.wrap-contact {
  background: #013993;
  border-radius: 32px;
  position: relative;
  padding: 40px 20px 20px;
}

.wrap-popup .fancybox-content {
  padding: 0 !important;
  border-radius: 21px !important;
}

.wrap-innercontact {
  max-width: 902px;
  width: 100%;
  margin: 0 auto;
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.form-row p {
  width: 100%;
  margin-bottom: 24px;
}

.form-row p span {
  display: block;
}

.two-columns {
  grid-template-columns: repeat(2, 1fr);
}

.form-row input,
.form-row textarea {
  width: 100%;
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #fff;
  border-radius: 16px;
  padding: 14px 32px;
  height: 52px;
  background: #ffffff66;
  border: none;
  outline: none;
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  font-style: normal;
}

.form-row textarea {
  height: 124px;
  resize: block;
}

.form-row .form-group {
  width: calc(50% - 12px);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #efeff4;
}

.submit-button input {
  padding: 13px 40px;
  height: auto;
  width: auto;
  display: inline-flex;
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  border: 2px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  background: none;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-button p {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.success-message {
  margin: 0 !important;
  padding: 10px 20px 20px !important;
  color: #fff !important;
  border: none !important;
  text-align: center;
}

.contact {
  padding: 80px 0;
}

.icon-contact1 {
  width: 71px;
  height: 63px;
  position: absolute;
  bottom: 28px;
  left: 70px;
  background: url("../images/Subtract.svg") center center no-repeat;
  background-size: contain;
}

.icon-contact2 {
  width: 54px;
  height: 54px;
  position: absolute;
  top: 41px;
  right: 97px;
  background: url("../images/Ellipse2.svg") center center no-repeat;
  background-size: contain;
}

.icon-contact3 {
  width: 54px;
  height: 54px;
  position: absolute;
  bottom: 60px;
  right: 70px;
  background: url("../images/x.svg") center center no-repeat;
  background-size: contain;
}

.submit-button input:hover {
  background: #fff;
  color: #000;
}

.ttl-h2gadian {
  display: inline-flex;
  padding: 16px;
  gap: 4px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
  border-radius: 12px;
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #fff;
}

.wrap-ttl-page {
  display: inline-flex;
  gap: 20px;
  align-content: center;
}

.exc-page {
  padding: 12px 20px;
  background: #ffffffcc;
  border: 1px solid #605d62;
  backdrop-filter: blur(12px);
  border-radius: 0 30px 30px 30px;
}

.exc-page p {
  font-family: Be Vietnam Pro;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #605d62;
  margin-bottom: 0;
}

.m-40 {
  margin: 40px auto;
}

.wrap-ttl-page.m-40 {
  margin: 20px auto 40px;
}

.info-contact {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 84px;
}

.inner-info-contact {
  width: 462px;
}

.thumb-contact {
  width: calc(100% - 462px - 84px);
  background: #9bc5ff;
  border-radius: 20px;
  padding: 60px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.thumb-contact h2 {
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #013993;
}

.thumb-contact ul img {
  filter: brightness(0) saturate(100%) invert(28%) sepia(96%) saturate(746%)
    hue-rotate(188deg) brightness(91%) contrast(88%);
  transition: all 0.3s;
}

.thumb-contact ul img:hover {
  filter: brightness(0) invert(1);
}

.ttc-info-contact h2 {
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #013993;
  margin-bottom: 20px;
}

.ttc-info-contact p {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #605d62;
  margin-bottom: 0;
}

.ttc-info-contact {
  margin-bottom: 40px;
}

.box-contact {
  display: flex;
  gap: 8px;
}

.icon-box-contac {
  width: 20px;
}

.icon-box-contac img {
  display: block;
}

.cont-box-contact {
  width: calc(100% - 20px - 8px);
}

.cont-box-contact h3 {
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  color: #013993;
  margin-bottom: 8px;
}

.cont-box-contact span {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #1b1b1b;
}

.list-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.blog .article-post {
  padding: 80px 0;
}

.ttl-blog span {
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.ttl-blog {
  background: #ffffff;
  border-radius: 12px;
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  display: inline-block;
  padding: 16px;
  margin-bottom: 40px;
}

.mb-4 {
  margin-bottom: 40px;
}
.wrap-cate .cate-title {
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.wrap-cate ul {
  padding: 20px 0;
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}

.wrap-cate ul li a {
  display: block;
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  padding: 8px 12px;
  color: #1b1b1b;
  background: #9bc5ff66;
  border: 1px solid #9bc5ff66;
  border-radius: 12px;
  white-space: nowrap;
}

.wrap-cate ul li a.active,
.wrap-cate ul li a:hover {
  color: #013993;
  border: 1px solid #013993;
}

.cont-post-page {
  display: flex;
  /* justify-content: space-between; */
}

.wrap-post-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  /* padding-top: 32px; */
}

.wrap-post-page-slider {
  display: block;
}

.wrap-post-page article .inner-post {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 12px;
}
.wrap-filter .post-thumb {
  width: 100%;
  max-width: 235px;
}
.post-thumb {
  margin-bottom: 0;
  width: 100%;
  max-width: 360px;
}
.wrap-filter .post-info {
  width: unset;
}
.wrap-filter {
  flex: 1;
  min-width: 0;
}

.wrap-cate {
  flex-shrink: 0;
  width: 247px;
}
.post-info {
  width: calc(100% - 360px - 16px);
  /* margin-top: 16px; */
}

.post-thumb a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0;
}

.post-thumb a img {
  display: block;
  transition: all 0.3s;
  border-radius: 12px;
}

.post-thumb a img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.cat-post-info a {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #fff;
  padding: 4px 8px;
  display: inline-block;
  background: #013993;
  border-radius: 8px;
  margin-bottom: 8px;
}
.wrap-filter .post-info {
}
.wrap-filter .post-info .post-title a {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 72px;
}
.post-info .post-title a {
  display: block;
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1b;
  margin-bottom: 8px;
}

.post-desc {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #605d62;
  margin-bottom: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wrap-filter .post-desc {
  margin-bottom: 8px;
}
.wrap-tt-post {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  padding: 8px 0 0;
  border-top: 1px solid #535353;
}

.btnmore-info {
  font-family: Be Vietnam Pro;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #030303;
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-info {
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #313033;
  display: flex;
  align-items: center;
  gap: 4px;
}

.date-post {
  font-family: Be Vietnam Pro;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #605d62;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.date-post img,
.wrap-tt-post img {
  width: auto !important;
}

.wrap-post-page article {
  margin-bottom: 0;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  margin-top: 50px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.ht-arr-slider .owl-prev,
.ht-arr-slider .owl-next {
  display: flex;
  background: #9bc5ff66 !important;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 22px);
  width: 60px;
  height: 48px;
  transform: translateY(-50%);
}

.slider-taxonomi .ht-arr-slider .owl-prev,
.slider-taxonomi .ht-arr-slider .owl-next {
  top: 20px;
}

.ht-arr-slider .owl-prev {
  left: -80px;
}

.ht-arr-slider .owl-next {
  right: -80px;
}

.ht-arr-slider .owl-prev:hover,
.ht-arr-slider .owl-next:hover {
  background: #013993 !important;
}

.ht-arr-slider .owl-prev img,
.ht-arr-slider .owl-next img {
  transition: all 0.3s;
}

.ht-arr-slider .owl-prev:hover img,
.ht-arr-slider .owl-next:hover img {
  filter: brightness(0) invert(1);
}

.content-top-post .view-post {
  justify-content: start;
  margin-bottom: 20px;
}

.content-top-post h1 {
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: 0%;
  color: #013993;
  margin-bottom: 20px;
}

.info-personal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.social-share {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}

.social-share li a {
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  border-radius: 50%;
  align-items: center;
  color: #4d4d4d;
}

.social-share li a:hover {
  background: #013993;
}

.social-share li a:hover i {
  color: #fff;
}

.social-share li a:hover img {
  filter: brightness(0) invert(1);
}

.r-personal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.info-personal {
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
}

.avatar-post img {
  border-radius: 50%;
}

.inner-personal .name {
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;

  vertical-align: middle;
  color: #010134;
  margin-bottom: 5px;
}

.inner-personal .post-position {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
  vertical-align: middle;
  margin-bottom: 5px;
  color: #605d62;
}

.meta-info {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #605d62;
  margin-bottom: 0;
}

.entry-content {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content p,
.entry-content ul li {
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0%;
  color: #1b1b1b;
}
.entry-content h2 {
  font-size: 26px;
}
.entry-content h3 {
  font-size: 21px;
}
.entry-content h4 {
  font-size: 20px;
}
.entry-content h5 {
  font-size: 18px;
}
.entry-content h6 {
  font-size: 16px;
}
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: #013993;
}
.single .entry-content p {
  margin-bottom: 40px;
}

.entry-content p,
.entry-content ul li {
  font-family: arial;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
}

.entry-content {
  padding: 20px 0;
  /* max-width: 750px; */
  margin: 0 auto;
}

.entry-content p:last-child {
  margin-bottom: 0;
}

#ez-toc-container {
  padding: 20px;
}

div#ez-toc-container .ez-toc-title {
  font-family: SVN-Nexa Bold;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #000;
  margin-bottom: 0;
}

.ez-toc-title-container {
  margin-bottom: 16px;
}

#ez-toc-container a {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #000;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.single .entry-content ul li:before,
.comment-content ul li:before {
  display: none;
}

.ez-toc-counter nav ul li a::before {
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
}

.ez-toc-title-toggle {
  display: none;
}

#ez-toc-container .toc-xem-them a {
  display: inline-block;
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #013993;
  position: relative;

  margin-bottom: 0 !important;
}

#ez-toc-container .toc-xem-them a::before {
  content: "";
  position: absolute;
  top: 0;
  right: -24px;
  background-image: url("../images/Frame.svg");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scaleY(1);
  width: 20px;
  height: 20px;
  transition: all 0.3s;
}

#ez-toc-container .toc-xem-them a.active::before {
  transform: scaleY(-1);
}

body.single .wrap-post-page {
  margin-top: 0;
}

body.single .contact,
body.page-template-login .contact,
body.page-template-register .contact,
body.single .gallery,
body.page-template-login .gallery,
body.page-template-register .gallery {
  display: none;
}

body.single .cont-post-page {
  padding-bottom: 80px;
}

.hero-login {
  padding: 45px 0 95px;
}

/* Login - register */
.l-hero-accout {
  max-width: 440px;
}

.hero-accout .container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
}

.hero-accout .ttl-hero1 {
  font-family: SVN-Nexa Bold;
  font-weight: 400;
  font-size: 28px;
  line-height: 42px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  padding: 22px 60px;
  max-width: 385px;
}

.hero-accout .ttl-hero2 {
  font-family: SVN-Nexa Bold;
  font-weight: 400;
  font-size: 32px;
  line-height: 72px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  padding: 12px 60px;
}

.form-accout {
  background: #ffffff;
  border-radius: 20px;
  max-width: 648px;
  width: 100%;
  padding: 40px;
}

.form-accout h2 {
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #000;
  margin-bottom: 40px;
}

.form-accout label,
.lwa-bones .pixelbones label,
.lwa-bones .pixelbones legend {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #313033;
  display: block;
  margin-bottom: 4px;
}

.form-accout input,
.form-accout .lwa-bones .pixelbones input {
  border: 1px solid #939094 !important;
  border-radius: 12px !important;
  height: 52px !important;
  padding: 12px;
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #313033;
  font-style: normal;
  width: 100%;
}

.form-accout .lwa-bones .pixelbones input {
  padding: 12px !important;
}

.form-accout .lwa-bones .pixelbones .lwa-rememberme {
  padding: 0 !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 5px !important;
  order: 1;
}

.form-accout .lwa-bones .pixelbones input[type="checkbox"]:after {
  left: 6px !important;
  top: 2px !important;
  transform: rotate(42deg) !important;
}

.lwa-bones .pixelbones label > .label-body {
  order: 2;
}

.lwa-bones .pixelbones .lwa-links label {
  display: flex !important;
}

.form-accout p {
  margin-bottom: 16px;
  width: 100%;
}

.toggle-password {
  width: 24px;
  height: 24px;
  position: absolute;
  z-index: 1;
  right: 12px;
  top: 42px;
  cursor: pointer;
  background-position: center;
  background-image: url("../images/EyeClosed.svg");
}

.lwa-bones .lwa.lwa-login .grid-container.submit {
  grid-template-columns: repeat(1, 1fr) !important;
  gap: 24px;
}

.lwa-links {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lwa-submit-button {
  order: 2;
}

.login-password {
  position: relative;
}

#form-login {
  display: flex;
  flex-wrap: wrap;
}

.login-sum .login-remember input {
  position: relative;
  cursor: pointer;
}

.login-remember {
  position: relative;
}

.login-remember label {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 4px;
  margin-bottom: 0;
}

.login-remember label input[type="checkbox"]::after {
  content: "";
  border: none;
  width: 16px;
  height: 12px;
  margin-right: 0px;
  position: absolute;
  display: none;
  background: url("../images/assets/success-2.svg");
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login-remember label input[type="checkbox"]:checked:after {
  display: block;
}

.login-sum .login-remember input[type="checkbox"]::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: none;
}

.login-sum .login-remember input[type="checkbox"]:checked::after {
  display: block;
}

.login-remember input {
  position: absolute;
  width: 18px;
  height: 18px !important;
  padding: 0;
  z-index: 2;
  background: none;
  border-radius: 0;
  /* background-image: url('../images/Checkbox.svg');
    background-position: center;
    background-repeat: no-repeat; */
  /* border: none; */
  border-radius: 5px !important;
  margin: 0 !important;
  border: 3px solid #dfe1e6;
}

.login-sum .login-remember input[type="checkbox"]:checked,
.form-accout .lwa-bones .pixelbones input[type="checkbox"]:checked {
  background: #111111;
  border: 3px solid #111111;
}

.lost-password a,
.lwa-bones .lwa.lwa-login .lwa-links a {
  font-family: Be Vietnam Pro;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-decoration: underline;
  color: #1b1b1b !important;
  display: inline-block;
}

.login-username {
  order: 1;
}

.login-password {
  order: 2;
}

.login-remember {
  order: 3;
  width: 50% !important;
}

.lost-password {
  width: 50% !important;
  order: 4;
  text-align: right;
  margin-bottom: 24px !important;
}

.login-submit {
  order: 5;
}

.login-submit {
  text-align: center;
}

.login-submit input,
.form-accout .lwa-bones .pixelbones .button-primary {
  display: inline-block;
  font-family: Be Vietnam Pro;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 24px !important;
  letter-spacing: 0%;
  vertical-align: middle;
  padding: 14px 56px !important;
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  ) !important;
  width: auto;
  border-radius: 40px !important;
  border: none !important;
  outline: none !important;
  cursor: pointer;
  margin-bottom: 0 !important;
  color: #fff;
}

.login-submit input:hover,
.form-accout .lwa-bones .pixelbones .button-primary:hover {
  box-shadow: 0 8px 20px rgba(0, 114, 253, 0.4);
}

.lwa-submit-button {
  text-align: center;
}

.form-accout .login-submit p {
  margin-bottom: 4px;
}

.login-sum h4 {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
  color: #605d62;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 0;
}

.login-sum h4 a {
  color: #091e42;
  font-weight: 600;
  text-decoration: underline;
}

.login-sum h4 a:hover {
  text-decoration: none;
}

.wrap-form-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.register-password small {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
  color: #605d62;
  margin-top: 4px;
}

.login-remember.register-checkbox {
  width: 100% !important;
  margin-bottom: 24px;
}

.register-checkbox label {
  /* display: block; */
  align-items: start;
}

.login-remember.register-checkbox span {
  /* padding-left: 25px; */
  width: calc(100% - 18px - 4px);
}

.login-remember.register-checkbox a {
  text-decoration: underline;
}

.register-checkbox label {
  font-size: 14px;
  line-height: 20px;
}

.register-phone .iti--allow-dropdown {
  width: 100%;
}

.iti__arrow {
  border-left: 5px solid transparent !important;
  border-right: 5px solid transparent !important;
  border-top: 6px solid #000 !important;
}

.iti--separate-dial-code .iti__selected-flag {
  background: none !important;
}

.iti__flag.iti__ye {
  order: 1;
}

.iti--separate-dial-code .iti__selected-dial-code {
  order: 3;
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #111111;
  margin-left: 14px !important;
}

.iti__arrow {
  order: 2;
  margin-left: 12px !important;
}

.iti__arrow--up {
  border-bottom: 0 !important;
}

.iti__selected-flag {
  padding-left: 24px !important;
}

.form-accout .alert {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  margin-bottom: 20px;
  padding: 5px;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.wrap-exc-page {
  display: flex;
  align-items: center;
}

.wrap-cnghanh-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 28px;
}

.page-template-chuyen-nganh .wrap-ttl-page,
.page-template-chuyen-nghe .wrap-ttl-page {
  margin-bottom: 20px;
}

.wrap-cnghe-page {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 28px;
}

.title-cnghe a {
  display: block;
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1b;
  margin-bottom: 8px;
}

.podcast iframe {
  display: block;
}

.info-post-cnghe .name-cnghe {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 8px;
  color: #313033;
}

.excerpt-cnghe {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #605d62;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loading::after {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  background: url(/wp-content/plugins/login-with-ajax/templates/loading.svg) 50%
    45% no-repeat !important;
  left: 0 !important;
  top: 0 !important;
  background-size: 150px 150px !important;
  pointer-events: none;
  content: "";
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.form-accout {
  position: relative;
}

.wrap-cnghe-page article.chuyen_nghe {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.podcast {
  width: calc(100% - 324px - 20px);
}

.info-post-cnghe {
  width: 324px;
}

.slider-taxonomi {
  opacity: 0;
  animation: fadeUp 4s ease forwards;
  animation-delay: 0.5s;
}

.slider-taxonomi a {
  display: inline-flex;
  justify-content: center;
  gap: 11px;
  align-items: center;
  padding: 8px 12px;
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1b;
  border: 1px solid #013993;
  border-radius: 12px;
}

.slider-taxonomi a:hover {
  background: #013993;
  color: #fff;
}

.slider-taxonomi a:hover img {
  filter: brightness(0) invert(1);
}

.slider-taxonomi a img {
  display: block;
  width: auto !important;
  transition: all 0.3s ease-in-out 0s;
}

.slider-taxonomi ul {
  list-style: none;
}

.slider-taxonomi h2 {
  text-align: center;
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 28px;
  line-height: normal;
  letter-spacing: 0%;
  text-align: center;
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 32px;
}

.slider-taxonomi .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.slider-taxonomi .owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b3b3b3;
  display: block;
}

.slider-taxonomi .owl-dot.active span {
  background: #013993;
}

.wrap-slider-taxonomi {
  padding: 20px 102px 20px;
  position: relative;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(250, 250, 250, 0.63) 100%
  );
  backdrop-filter: blur(4px);
  box-shadow: 0px 0px 8px 0px #1762da40;
}

.wrap-slider-taxonomi::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
}

.features-section {
  background: linear-gradient(180deg, #ffffff 0%, #bde0e7 100%);
  padding: 40px 0;
}
.ttl-features h2 {
  text-align: center;
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 40px;
  line-height: n42px;
  letter-spacing: 0%;
  text-align: center;
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features-tagline > * {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: #313033;
  margin: 0;
}
.ttl-article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.ttl-article a {
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  text-decoration: underline;
  color: #013993;
  display: block;
}

.ttl-article a:hover {
  text-decoration: none;
}

.slider-about-top img {
  display: block;
}

.wrap-slider-about {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-about-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
  gap: 17px;
  margin-bottom: 30px;
}

.slider-about-track2 {
  gap: 17px;
  display: flex;
  width: max-content;
  animation: scrollRight 40s linear infinite;
}

.gallery .container {
  /* max-width: 1440px; */
  width: 100%;
  max-width: 100%;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.slider-about-track:hover {
  animation-play-state: paused;
}

.slider-about-track2:hover {
  animation-play-state: paused;
}

.wrap-slider-about .item img {
  border-radius: 10px;
}

.wrap-slider-about {
  position: relative;
}

.wrap-slider-about::after,
.wrap-slider-about::before {
  position: absolute;
  height: 200px;
  content: "";
  left: 0;
  bottom: 0;
  top: auto;
  width: 100%;
  background-image: url("../images/bg-slider2.png");
  background-position: bottom;
  background-repeat: no-repeat;
  z-index: 1;
}

.wrap-slider-about::before {
  top: 0;
  background-position: top;
  bottom: auto;
  background-image: url("../images/bg-slider1.png");
}

.verify-email {
  max-width: 640px;
  width: 100%;
  padding: 20px 41px 24px;
  border-radius: 21px;
  background: #fff;
  display: none;
}

.verify-email h2 {
  text-align: center;
  margin-bottom: 20px;
}

.verify-email h2 span {
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 40px;
  border-radius: 12px;
  line-height: 42px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  padding: 12px 35px;
  display: inline-block;
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
}

.email-vetify {
  width: 100%;
  padding: 14px 32px;
  color: #1b1b1b;
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  background: #efeff4;
  border-radius: 12px;
  max-width: 439px;
  margin: 0 auto 20px;
}

.cont-verify-email {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #1b1b1b;
}

.wrap-btn-verify-email {
  text-align: center;
}

#btn-verify-email {
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
  padding: 8px 18px;
  display: inline-block;
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
  border-radius: 20px;
}

#btn-verify-email:hover {
  box-shadow: 0 8px 20px rgba(0, 114, 253, 0.4);
}

.single .inner-entry-content ul {
  /*border-bottom: 1px solid #605D62;*/
  margin-bottom: 40px;
}

.single .inner-entry-content ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.single .inner-entry-content ul li::after {
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
  height: 12px;
  width: 12px;
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  border-radius: 50%;
  transform: translateY(-50%);
}

.wrap-single-content {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  padding-top: 70px;
}

.l-single-content {
  width: calc(100% - 244px - 100px);
}

.r-single-content {
  width: 244px;
}

.wrap-single-content .post-info {
  width: 100%;
}

.container-single {
  max-width: 1410px;
  width: 100%;
}

.title-sidebar-single {
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  padding: 16px 5px 16px 20px;
  margin-bottom: 20px;
  background: #9bc5ff66;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.d-block {
  display: block;
}

.title-sidebar-single span {
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
}

.wrap-cnganh-single {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.wrap-cnganh-single .thumb-cnganh {
  width: 97px;
}

.wrap-cnganh-single .info-cnganh {
  width: calc(100% - 97px - 5px);
}

.title-cnganh a {
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1b;
  margin-bottom: 16px;
}

.wrap-cnganh-single article.chuyen_nganh {
  gap: 5px;
}

.wrap-cnganh-single .title-cnganh a {
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 8px;
}

.wrap-cnganh-single .name-cnganh {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #313033;
  margin-bottom: 0;
}

.wrap-cnganh-singl .thumb-cnganh a {
  margin-bottom: 0;
}

.wrap-cnghe-single iframe {
  height: 161px;
  margin-bottom: 8px;
}

.wrap-cnghe-single .info-post-cnghe {
  width: auto;
}

.wrap-cnghe-single .info-post-cnghe .name-cnghe {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 5px;
}

.wrap-cnghe-single {
  gap: 14px;
}

.wrap-cnghe-single .excerpt-cnghe {
  font-size: 14px;
  line-height: 16px;
}

.wrap-cnghe-single {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 60px;
}

.wrap-cnghe-single .title-cnghe a {
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1b;
  margin-bottom: 0;
}

article.chuyen_nghe iframe {
  margin-bottom: 12px;
  display: block;
}

.wrap-cnghe-page article.chuyen_nghe iframe {
  margin-bottom: 0;
}

.ttl2-h2 img {
  width: 36px;
}

.ttl2-h2 {
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 28px;
  line-height: normal;
  letter-spacing: 0%;
}

.ttl2-h2 span {
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.row_tag {
  width: 100%;
  margin: 0 auto 0;
  padding-bottom: 40px;
}

.row_tag ul {
  list-style: none;
  display: flex;
  gap: 28px;
  border-bottom: 0.5px solid #013993;
  padding: 20px;
  margin: 0 !important;
}

.row_tag ul li {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1b;
  padding: 8px 12px;
  background: #efeff4;
  border-radius: 12px;
}

.wrap-nganhnghe {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.sidebar-nganhnghe {
  width: 468px;
}

.ht-content-nganhnghe {
  width: calc(100% - 468px - 40px);
}

.scrool-taxanomi {
  overflow-x: scroll;
}

.scrool-taxanomi ul {
  display: flex;
  width: max-content;
  gap: 16px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  list-style: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scrool-taxanomi ul li a {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #1b1b1b;
  border: 1px solid #939094;
  padding: 8px 12px;
  border-radius: 20px;
  display: block;
}

.scrool-taxanomi ul li .active,
.scrool-taxanomi ul li a:hover {
  background: #1b1b1b;
  color: #fff;
}

/* Scrollbar chỉ cao 2px */
.scrool-taxanomi::-webkit-scrollbar {
  height: 4px;
}

/* Track với background gradient */
.scrool-taxanomi::-webkit-scrollbar-track {
  border-radius: 2px;

  background-color: #aaa;
}

/* Thumb màu trắng */
.scrool-taxanomi::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
  border-radius: 2px;
}

.siderbar-post {
  margin-bottom: 24px;
}

.thumb-post-sidebar {
  width: 170px;
}

.thumb-post-sidebar a,
.thumb-post-sidebar a img {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}

.thumb-post-sidebar a img:hover {
  transform: scale(1.1);
}

.info-post-sidebar {
  width: calc(100% - 170px - 12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-post-sidebar .name-cnganh {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #605d62;
  margin-bottom: 0;
}

.info-post-sidebar h3 a {
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1b;
  margin-bottom: 18px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wrap-post-sidebar {
  margin-top: 24px;
}

.meta-post-sidebar {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 4px;
}

.meta-post-sidebar span {
  font-weight: 600;
}

.youtobe-nganhnghe iframe {
  height: 389px;
  display: block;
  margin-bottom: 16px;
}

.youtobe-nganhnghe .name-cnganh {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #313033;
  margin-bottom: 8px;
}

.youtobe-nganhnghe h1 {
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1b;
  margin-bottom: 20px;
}

.wrap-like {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.share-nganhnghe a {
  display: inline-flex;
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #000;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: #f2f2f2;
  border-radius: 20px;
}

.pld-like-dislike-wrap {
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  display: inline-flex;
  background: #f2f2f2;
  border-radius: 20px;
  margin-bottom: 0;
}

.wrap-like img {
  display: block;
}

.dislike {
  padding-left: 20px;
  border-left: 1px solid #605d62;
}

.content-post-nganhnghe .meta-post-sidebar {
  font-size: 16px;
  margin-bottom: 10px;
}

.content-post-nganhnghe {
  background: #f2f2f2;
  border-radius: 16px;
  padding: 14px 20px;
}

.inner-content-nganhnghe {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease-in-out 0s;
}

.inner-content-nganhnghe.active {
  display: block;
}

.show-more {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #939094;
  padding-bottom: 20px;
  display: block;
  padding-top: 10px;
  cursor: pointer;
}

.pld-like-dislike-wrap .pld-common-wrap {
  margin-right: 20px;
}

.pld-like-dislike-wrap .pld-dislike-wrap {
  margin-right: 0;
  padding-left: 20px;
  border-left: 1px solid #605d62;
}

.wrap-social-share {
  position: fixed;
  background: rgba(0, 0, 0, 0.9);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
  padding: 0 15px;
}
.wrap-social-share.open {
  opacity: 1;
  visibility: visible;
}
.popup-social-share {
  max-width: 450px;
  box-shadow: 0 0 24px 12px
    var(--paper-dialog-shadow-color, rgba(0, 0, 0, 0.15));
  display: block;
  margin: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.popup-social-share h2 {
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 32px;
  line-height: normal;
  letter-spacing: 0%;
  text-align: center;
  color: #000;
}

.popup-social-share .social-share {
  justify-content: space-between;
}

.wrap-highlights {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: start;
}

.item-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  /* justify-content: center; */
}

.ttl-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1b;
  white-space: nowrap;
}

.ttl-highlights img {
  width: 32px;
}

.cat-highlights {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cat-highlights a {
  display: block;
  padding: 8px;
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1b;
  border: 1px solid #605d62;
  border-radius: 8px;
}

.cat-highlights a:hover {
  background: #9bc5ff66;
  border: 1px solid #9bc5ff66;
}

.dots-article .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.dots-article .owl-dot {
  width: 12px;
  height: 12px;
  background: #b3b3b3 !important;
  display: block;
  border-radius: 50%;
  transition: all 0.3s ease-in-out 0s;
}

.dots-article .owl-dot:hover,
.dots-article .owl-dot.active {
  background: #013993 !important;
}

.highlights {
  padding-top: 40px;
}

.slider-taxonomi .ht-arr-slider .owl-prev,
.slider-taxonomi .ht-arr-slider .owl-next {
  height: 41px;
}

.wrap-slider-gallery .owl-stage-outer {
  box-sizing: content-box;
}

.wrap-slider-gallery img {
  /* width: auto !important; */
  display: block;
  border-radius: 10px;
}

.wrap-slider-gallery .owl-item {
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
  transform: scaleY(0.7);
}

.wrap-slider-gallery .owl-item .item {
  position: relative;
}

.wrap-slider-gallery .owl-item .item::after {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.75);
  z-index: 0;
  transition: all 0.3s;
}

.wrap-slider-gallery .owl-item.center .item::after {
  opacity: 0;
  visibility: hidden;
}

.gallery .container {
  padding: 0;
}

.wrap-slider-gallery .owl-item.center {
  transform: scaleY(1);
  opacity: 1;
  z-index: 2;
}

.highlights-page {
  padding-top: 0;
}

#comments {
  margin-bottom: 0;
}

.highlights-single {
  padding: 0 0 40px;
}

.wrap-filter {
  margin-bottom: 40px;
}

.breadcrumbs li:after {
  content: "";
  background-image: url("../images/right-arrow 3.svg");
  width: 12px;
  height: 12px;
}

.wrap_breadcrumbs .breadcrumbs {
  margin-bottom: 0;
  padding-top: 40px;
}

.wrap_breadcrumbs .breadcrumbs a {
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #605d62;
}

.wrap_breadcrumbs .breadcrumbs li {
  color: #1b1b1b;
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.wrap_breadcrumbs_login .breadcrumbs {
  padding-bottom: 43px;
  padding-top: 0;
}

.hero-register {
  padding: 30px 0 50px;
}

.wrap_breadcrumbs-search .breadcrumbs {
  padding-top: 80px;
}

.wrap-ttl-search {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.ttl-search {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0%;
  text-align: center;
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cont-search {
  font-family: SVN-Nexa;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0%;
  color: #1b1b1b;
}

.click-mobile {
  display: none;
}

#wrapper {
  overflow: hidden;
}

.menu-sp {
  display: none;
}

.wrap-article-cnganh-slider .item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.wrap-article-cnghe-slider .item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.content-top-post {
  padding: 20px 0;
}

.wrap-single-content {
  padding-top: 0;
}

.lwa-password {
  position: relative;
}

.wrap-scrool-taxanomi {
  position: relative;
}

.arr-taxanomi {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
}

.search-form input {
  background: #9bc5ff66;
  border-radius: 40px;
  padding: 10px 10px 10px 40px;
  font-family: Be Vietnam Pro;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0%;
  width: 100%;
  color: #000;
  height: 44px;
  border: none;
  font-style: normal;
  background-image: url("../images/MagnifyingGlass-min.svg");
  background-repeat: no-repeat;
  background-position: center left 12px;
  margin-bottom: 40px;
}

.wrap-search-pc {
  max-width: 200px;
  position: absolute;
  right: 0;
  top: 50px;
  z-index: 3;
  display: none;
}

/* #wrapper.front_page {
    padding-top: 0;
} */

/* .front_page .hero-section {
    padding-top: 183px;
} */

#wrapper.front_page:before {
  /* display: none; */
}

/* 
#wrapper.front_page .mid-header {
    background: none;
} */

#wrapper.front_page .header-sticky .mid-header {
  background: linear-gradient(180deg, #ffffff 0%, #b7dde4 100%);
}

.page-template-register .hero-section::after,
.page-template-login .hero-section::after {
  bottom: 0;
  top: auto;
}
.slider-taxonomi .owl-stage {
  display: flex;
  flex-wrap: nowrap;
}
.slider-taxonomi .owl-carousel .owl-item {
  flex: none;
}
.slider-taxonomi .item.dot-active a {
  color: #fff;
  background: #013993;
}

.slider-taxonomi .item a::first-letter {
  text-transform: uppercase;
}
blockquote {
  position: relative;
  background: #e8f4f8;
  padding: 40px 16px 40px 66px;
  margin-left: 16px;
}

blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #0072fd;
  z-index: 1000;
}

.page-title.entry-title {
  margin-top: 40px;
  margin-bottom: 8px;
}

/* Hero Section */
.career-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.career-hero-title {
  font-size: 32px;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.career-hero-content .content-hero {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
}
.career-hero-desc {
  font-size: 16px;
  color: #424242;
  margin-bottom: 30px;
  line-height: 1.6;
}

.career-social-icons ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.career-social-icons li a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.career-social-icons li a:hover {
  transform: translateY(-5px);
}

.career-social-icons img {
  width: 40px;
  height: 40px;
}

.btn-start-test {
  background: linear-gradient(
    89.95deg,
    #0448f2 0.04%,
    #0454f1 27.9%,
    #0467f1 51.44%,
    #0474f1 73.54%,
    #048ef0 99.96%
  );
  color: #fff;
  border: none;
  padding: 20px 55px;
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
}

.btn-start-test:hover {
  background: #ffff;
  color: #1976d2;
  border: 1px solid #1976d2;
}

.career-introduction {
  padding: 80px 0;
  background: #fff;
}

.career-intro-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.career-intro-content {
  flex: 1;
}

.intro-badge {
  width: 50px;
  height: 50px;
  background: #1e3a8a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.intro-badge span {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.career-intro-content h2 {
  color: #013993;
  margin-bottom: 40px;
  font-family: "SVN-Nexa", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.intro-desc {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #000000;
  padding: 16px 2px;
}

.career-intro-image {
  flex: 1;
}

.career-intro-image img {
  width: 100%;
  height: auto;
}

.career-essentials {
  background: #ffff;
}

.essentials-wrapper h2 {
  font-family: "SVN-Nexa", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #013993;
  margin-bottom: 40px;
  text-align: start;
}

.essentials-desc {
  max-width: 703px;
  margin: 0 auto;
}

.essentials-desc ol {
  padding-left: 20px;
}

.essentials-desc li {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #000000;
  margin-bottom: 20px;
}
.career-start-section.contact {
  padding-bottom: 0;
}
.career-start-section .wrap-contact.career-start-box {
  padding-top: 69px;
  padding-bottom: 68px;
}
.career-start-box .ttl-contact {
  margin-bottom: 40px;
}
.career-content {
  max-width: 632px;
  margin: 0 auto;
}
.career-content .form-row {
  justify-content: center;
}
.btn-start-test-career {
  padding: 11px 30px;
  height: auto;
  width: auto;
  display: inline-flex;
  font-family: Be Vietnam Pro;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  border: 2px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  background: none;
  cursor: pointer;
  transition: all 0.3s;
}
.career-start-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 80px;
  max-width: 1038px;
}

.note-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #3b82f6;
}

.note-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.career-start-note .entry-paragraph {
  flex: 1;
}
.career-start-note .entry-paragraph {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.career-modal,
.career-test-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.career-modal.active,
.career-test-modal.active {
  display: flex;
}

.career-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.career-modal-content {
  position: relative;
  background: #fff;
  padding: 51px 20px;
  border-radius: 20px;
  max-width: 630px;
  width: 100%;
  z-index: 10000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.career-modal .career-modal-title {
  padding: 10px 22px;
  border-radius: 19px;
  margin: 0 49px;
  background: linear-gradient(
    287.3deg,
    #061033 -5.43%,
    #002772 11.29%,
    #0072fd 53.09%,
    #0080f9 60.41%,
    #00a5f1 76.08%,
    #00e2e4 96.98%,
    #00e6e4 98.03%
  );
}
.career-modal .modal-title {
  max-width: 448px;
  width: 100%;
  margin: 0 auto;
  font-family: "SVN-Nexa", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
}
/* Age Selection */
.age-selection {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.age-option {
  flex: 1;
  padding: 29px 65px;
  background: #ffffff;
  border: 1px solid #9bc5ff;
  border-radius: 30px;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "SVN-Nexa", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0;
  vertical-align: middle;
}
.age-option:hover {
  background: #d4e6ff;
}

.age-option.active {
  background: #d4e6ff;
}

.age-option:focus {
  background: #d4e6ff;
  outline: none;
}
.age-option:hover {
  background: #bbdefb;
}

.btn-confirm-age {
  background: linear-gradient(
    89.95deg,
    #0448f2 0.04%,
    #0454f1 27.9%,
    #0467f1 51.44%,
    #0474f1 73.54%,
    #048ef0 99.96%
  );
  color: #fff;
  border: none;
  padding: 16px 48px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}

/* Test Modal */
.career-test-content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 20px;
  z-index: 10000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   PROGRESS BAR
   ============================================ */
/* Thay .test-progress bằng .global-test-progress */
.global-test-progress {
  background: white;
  padding: 30px 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.progress-bar {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.progress-track {
  display: none;
}

.progress-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 6px; */
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}
.progress-item:first-child {
  align-items: flex-start;
}

.progress-item:last-child {
  align-items: flex-end;
}
.progress-number {
  font-family: "SVN-Nexa", sans-serif;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #9bc5ff;
  color: #ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.progress-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: var(--line-start, 50%);
  width: var(--line-width, 0px);
  top: 20px;
  height: 1px;
  background: #1b1b1b;
  z-index: 0;
}

.progress-item.active .progress-number,
.progress-item.completed .progress-number {
  background: #013993;
  color: white;
  border-color: #013993;
}

.progress-text {
  font-size: 13px;
  color: #999999;
  text-align: center;
  max-width: 80px;
  line-height: 1.3;
  transition: color 0.3s ease;
  font-weight: 400;
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.progress-item.active .progress-text {
  color: #000000;
  font-weight: 600;
}

.progress-item.completed .progress-text {
  color: #000000;
  font-weight: 500;
}

@media (max-width: 768px) {
  .global-test-progress {
    padding: 20px 0 15px;
  }

  .progress-bar {
    padding: 0 15px;
  }

  .progress-number {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .progress-text {
    font-size: 11px;
    max-width: 60px;
    top: 36px;
  }

  .progress-item:not(:last-child)::after {
    top: 16px;
  }
}

@media (max-width: 480px) {
  .global-test-progress {
    padding: 15px 0 10px;
  }

  .progress-bar {
    padding: 0 10px;
  }

  .progress-number {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }

  .progress-text {
    font-size: 10px;
    max-width: 50px;
    top: 28px;
  }

  .progress-item:not(:last-child)::after {
    top: 12.5px;
  }
}

@media (max-width: 360px) {
  .progress-number {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .progress-text {
    font-size: 9px;
    max-width: 45px;
    top: 25px;
  }

  .progress-item:not(:last-child)::after {
    top: 11px;
  }
}
/* ============================================
   ẨN CÁC SECTION KHI VÀO STEP
   ============================================ */

/* Mặc định: hiển thị tất cả sections */
body.test-active .hero-section,
body.test-active .career-introduction,
body.test-active .career-essentials,
body.test-active .career-start-section {
  display: none !important;
}
body.test-step-1-active footer {
  display: block;
}

body.test-step-2-active footer,
body.test-step-3-active footer,
body.test-step-4-active footer,
body.test-step-5-active footer,
body.test-step-6-active footer,
body.test-step-7-active footer {
  display: none ;
}
.test-step {
  display: none !important;
}

.test-step.active {
  display: block !important;
}

/* ============================================
   STEP 1 - CONTENT
   ============================================ */
.test-step-1 .test-content {
  max-width: 1220px;
  margin: 0 auto;
  padding: 80px 20px;
}

.test-step-1 .test-title {
  font-family: "SVN-Nexa", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #013993;
  margin-bottom: 40px;
}

.test-step-1 .test-description {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #000000;
  margin-bottom: 40px;
}

.test-step-1 .test-description p {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #000000;
  margin-bottom: 20px;
}

.test-step-1 .test-description p:last-child {
  margin-bottom: 0;
}

.test-step-1 .test-description em,
.test-step-1 .test-description strong {
  font-style: normal;
  font-weight: 600;
  color: #013993;
}
.test-step-1 .test-description > ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
  margin-left: 12px;
}

.test-step-1 .test-description > ul > li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #000000;
}

.test-step-1 .test-description > ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background: #000000;
  border-radius: 50%;
}
.test-step-1 .test-description span {
  font-weight: 500;
  color: #013993;
}
.test-step-1 .test-description ul ul {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
  margin-bottom: 0;
}

.test-step-1 .test-description ul ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #000000;
}

.test-step-1 .test-description ul ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-weight: 500;
  font-size: 18px;
}

/* OL - Gạch đầu dòng "–" (giữ nguyên) */
.test-step-1 .test-description ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
  counter-reset: item;
}

.test-step-1 .test-description ol li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #000000;
}

.test-step-1 .test-description ol li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-weight: 700;
}
.test-step-1 .test-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.test-content .btn-next {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  padding: 14px 40px;
  background: linear-gradient(
    89.95deg,
    #0448f2 0.04%,
    #0454f1 27.9%,
    #0467f1 51.44%,
    #0474f1 73.54%,
    #048ef0 99.96%
  );

  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
  align-self: center;
}
.test-step-1 .btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .test-step-1 .test-content {
    margin-left: 0;
    max-width: 100%;
    padding: 30px 15px;
  }

  .test-step-1 .test-title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 30px;
  }

  .test-step-1 .test-description {
    font-size: 16px;
    line-height: 20px;
  }

  .test-step-1 .test-description p,
  .test-step-1 .test-description ul li,
  .test-step-1 .test-description ol li {
    font-size: 16px;
    line-height: 20px;
  }
}

/* ============================================
   QUIZ SECTION - GỌN LẠI
   ============================================ */

/* Quiz Container */
.test-quiz {
  width: 100%;
  max-width: 834px;
  margin: 0 auto;
  padding: 28px 24px;
}
.test-title-1 {
  display: inline-block;
  margin: 0;
}
.test-quiz h1,
.test-quiz h2 {
  font-family: "SVN-Nexa";
  font-weight: 600;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #013993;
}
.test-quiz br {
  display: none;
}
.quiz-container {
  margin: 40px 0;
}

.quiz-item {
  width: 100%;
  margin: 0 auto 20px;
  background: white;
  border-radius: 20px;
  padding: 18px 0;
  box-shadow: 0px 0px 7px 0px #00000040;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.quiz-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.test-step:not(.test-step-1) .test-title {
  font-family: "SVN-Nexa", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  color: #013993;
  max-width: 780px;
  margin: 0 auto 20px;
}

.test-step:not(.test-step-1) .test-description {
  font-family: "SVN-Nexa", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #000000;
  max-width: 626px;
  margin: 0 auto 30px;
  text-align: center;
}
/* Quiz Question */
.quiz-question {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  text-align: center;
  margin-bottom: 20px;
  justify-content: center;
}

.question-number {
  display: inline;
  color: #3e5279;
  font-family: "SVN-Nexa", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  flex-shrink: 0;
}

.question-text {
  max-width: 635px;
  font-family: "SVN-Nexa", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #3e5279;
}

/* Quiz Options - Chung */
.quiz-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.option-label {
  cursor: pointer;
  position: relative;
}

.option-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  z-index: 10;
}

/* ============================================
   16-22 TUỔI (5 VÒNG TRÒN)
   ============================================ */
.test-age-16-22 .quiz-options {
  padding: 0 100px;
}

.test-age-16-22 .option-label {
  display: block;
  flex-shrink: 0;
}

.test-age-16-22 .option-label input[type="radio"] {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  z-index: 10;
}
.test-age-16-22 .option-text-label {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  color: #3e5279;
  white-space: nowrap;
}

/* ẨN HẾT các option-text cũ */
.test-age-16-22 .option-text {
  display: none !important;
}

.test-age-16-22 .option-label::before {
  content: "";
  display: block;
  border: 2px solid #013993;
  border-radius: 50%;
  background: white;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.test-age-16-22 .option-label:nth-child(2)::before {
  width: 76px;
  height: 76px;
}
.test-age-16-22 .option-label:nth-child(3)::before {
  width: 62px;
  height: 62px;
}
.test-age-16-22 .option-label:nth-child(4)::before {
  width: 52px;
  height: 52px;
}
.test-age-16-22 .option-label:nth-child(5)::before {
  width: 62px;
  height: 62px;
}
.test-age-16-22 .option-label:nth-child(6)::before {
  width: 76px;
  height: 76px;
}
/* Hover */
.test-age-16-22 .option-label:hover::before {
  transform: scale(1.05);
}

/* CHECKED - VIỀN XANH + VIỀN TRẮNG + NỀN XANH */
.test-age-16-22 .option-label:has(input:checked)::before {
  background: #013993; /* Nền xanh */
  border: 2px solid #013993; /* Viền xanh ngoài */
  box-shadow: inset 0 0 0 2px white; /* Viền trắng bên trong */
}

/* ============================================
   23+ TUỔI (3 VÒNG TRÒN 52px)
   ============================================ */
.test-age-23-plus .quiz-options {
  padding: 0 107px;
  gap: 40px;
}

.test-age-23-plus .option-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.test-age-23-plus .option-label input[type="radio"] {
  width: 45px;
  height: 45px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.test-age-23-plus .option-label::before {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  border: 2px solid #013993; /* Viền xanh */
  border-radius: 50%;
  background: white;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Text bên dưới */
.test-age-23-plus .option-text {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #3e5279;
  white-space: nowrap;
  order: 2;
}

/* Hover */
.test-age-23-plus .option-label:hover::before {
  transform: scale(1.05);
}

.test-age-23-plus .option-label:has(input:checked)::before {
  background: #013993;
  border: 2px solid #013993;
  box-shadow: inset 0 0 0 2px white;
}

/* ============================================
   QUIZ FOOTER
   ============================================ */
.quiz-footer {
  margin-top: 40px;
  text-align: center;
}

.quiz-note {
  display: none;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  margin-bottom: 24px;
  font-style: italic;
  align-items: center;
  justify-content: center;
}
.quiz-note.quiz-note-error {
  display: flex;
  gap: 8px;
}

.quiz-note strong {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  font-weight: 700;
  color: #013993;
}

@media (max-width: 768px) {
  .quiz-container {
    padding: 0 24px;
  }
  .quiz-item {
    padding: 15px 20px;
  }

  .test-age-16-22 .quiz-options {
    padding: 0 70px;
    gap: 12px;
  }

  .test-age-16-22 .option-label:nth-child(2)::before {
    width: 60px;
    height: 60px;
  }
  .test-age-16-22 .option-label:nth-child(3)::before {
    width: 50px;
    height: 50px;
  }
  .test-age-16-22 .option-label:nth-child(4)::before {
    width: 42px;
    height: 42px;
  }
  .test-age-16-22 .option-label:nth-child(5)::before {
    width: 50px;
    height: 50px;
  }
  .test-age-16-22 .option-label:nth-child(6)::before {
    width: 60px;
    height: 60px;
  }

  .test-age-23-plus .quiz-options {
    padding: 0 50px;
    gap: 30px;
  }
  .test-age-23-plus .option-text {
    font-size: 11px;
  }
}

/* ============================================
   SỬA RESPONSIVE (Breakpoint 640px)
   ============================================ */

@media (max-width: 640px) {
  .test-age-16-22 .quiz-options {
    display: grid; /* ĐỔI SANG GRID */
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto;
    gap: 6px;
    justify-items: center;
  }

  .test-age-16-22 .option-label {
    grid-row: 1;
  }
  .test-age-16-22 .option-label:nth-child(2) {
    grid-column: 1;
  }
  .test-age-16-22 .option-label:nth-child(3) {
    grid-column: 2;
  }
  .test-age-16-22 .option-label:nth-child(4) {
    grid-column: 3;
  }
  .test-age-16-22 .option-label:nth-child(5) {
    grid-column: 4;
  }
  .test-age-16-22 .option-label:nth-child(6) {
    grid-column: 5;
  }

  /* 2. Text (Hàng 2) - Style chung */
  .test-age-16-22 .option-text-label {
    display: block;
    grid-row: 2;

    max-width: 87px;

    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.4;
  }

  .test-age-16-22 .option-text-label:nth-child(1) {
    transform: translateX(-20px);
    grid-column: 1 / span 2;
    text-align: center;
    justify-self: start;
  }

  .test-age-16-22 .option-text-label:nth-child(7) {
    grid-column: 4 / span 2; /* Kéo dài 2 cột, căn phải */
    text-align: right;
    justify-self: end;
  }

  .test-age-16-22 .option-label:nth-child(2)::before {
    width: 50px;
    height: 50px;
  }
  .test-age-16-22 .option-label:nth-child(3)::before {
    width: 42px;
    height: 42px;
  }
  .test-age-16-22 .option-label:nth-child(4)::before {
    width: 36px;
    height: 36px;
  }
  .test-age-16-22 .option-label:nth-child(5)::before {
    width: 42px;
    height: 42px;
  }
  .test-age-16-22 .option-label:nth-child(6)::before {
    width: 50px;
    height: 50px;
  }

  .test-age-23-plus .quiz-options {
    padding: 0 30px;
    gap: 25px;
  }
}
/* ============================================
   GLOBAL PROGRESS BAR - THANH DÙNG CHUNG
   ============================================ */
.global-test-progress {
  position: sticky;
  top: 0;
  z-index: 1;
  background: white;
  padding: 20px 0;
  display: none;
}

body.test-active .global-test-progress {
  display: block !important;
}

.test-step .test-progress {
  display: none !important;
}

@media (max-width: 768px) {
  .global-test-progress {
    padding: 15px 0;
  }
}
/* ============================================
   HƯỚNG DẪN TỰ ĐÁNH GIÁ
   ============================================ */
.guide-box {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 80px;
}

.guide-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: 0%;
  text-align: center;
  color: #013993;
  margin-bottom: 32px;
}

.guide-steps {
  max-width: 1200px;
  margin: 0 auto;
}

.guide-steps > * {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #000000;
}

.guide-steps:last-child {
  margin-bottom: 0;
}

.guide-steps strong {
  color: #013993;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .guide-box {
    padding: 14px;
  }

  .guide-title {
    font-size: 28px;
    line-height: 32px;
  }

  .guide-step {
    font-size: 18px;
    line-height: 26px;
  }
}
/* ============================================
   KẾT QUẢ TRẮC NGHIỆM (6 CARDS - 3 CỘT/HÀNG)
   ============================================ */
.result-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.result-card {
  position: relative;
  background: #ffffff;
  padding: 20px;
  transition: all 0.3s ease;

  /* Box shadow */
  box-shadow: 0px 0px 1px 0px rgba(23, 26, 31, 0.051),
    0px 0px 2px 0px rgba(23, 26, 31, 0.078);

  border-radius: 12px;
}

.result-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0072d5;
  border-radius: 12px 0 0 12px;
}

.result-card:hover {
  box-shadow: 0px 4px 8px 0px rgba(23, 26, 31, 0.08),
    0px 8px 16px 0px rgba(23, 26, 31, 0.12);
}
.result-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 27px 140px 24px 24px;
  box-shadow: 0px 0px 1px 0px #171a1f0d;
  border: 1px solid #171a1f0d;
  border-radius: 8px;
  margin-bottom: 20px;
}

.result-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0072d5;
}

.result-card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.result-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: #0072d5;
}

.result-card-title {
  font-family: "Be Vietnam Pro";
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  color: #171a1f;
  margin: 0;
  flex: 1;
  white-space: nowrap;
}

.result-card-score {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.result-card-score-label {
  color: #0072d5;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  padding-left: 30px;
}

.score-number {
  font-weight: 700;
  color: #0072d5;
  font-size: 18px;
  line-height: 22px;
}

.result-card-score .score-max {
  background: #fafafb;
  color: #000000;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  padding: 1px 10px;
  border-radius: 11px;
  margin-right: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .result-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .result-grid-3 {
    grid-template-columns: 1fr;
    max-width: 96%;
  }
  .section-title h2 {
    text-align: left;
  }
  .result-card-header {
    padding: 15px 0 15px 24px;
    margin-bottom: 16px;
  }
  .result-card-score-label {
    padding-left: 0;
  }
  .result-card-icon {
    width: 20px;
    height: 20px;
  }

  .result-card-title {
    font-size: 14px;
    line-height: 18px;
  }
}
.result-section-ranking h2.section-title {
  margin-bottom: 40px;
}
/* ============================================
   XẾP HẠNG KẾT QUẢ TRẮC NGHIỆM 
   ============================================ */
/* ============================================
   XẾP HẠNG KẾT QUẢ TRẮC NGHIỆM - CẤU TRÚC TABLE
   (Đã responsive và căn lề giữa)
   ============================================ */

/* 1. CSS CHO TABLE (DESKTOP & RESPONSIVE) */
.ranking-table-new {
  width: 100%;
  border-collapse: collapse;
}
.ranking-table {
  border: 1px solid #dee1e6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 0px 1px 0px rgba(23, 26, 31, 0.051),
    0px 0px 2px 0px rgba(23, 26, 31, 0.078);
}
/* Header (<thead>) */
.ranking-table-new thead {
  background: #f3f4f6;
  text-align: center;
}

.ranking-table-new th {
  padding: 16px 24px;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #6b7280;
  font-family: "Be Vietnam Pro", sans-serif;
  border-bottom: 1px solid #dee1e6;
}

/* YÊU CẦU 1: Đặt tỉ lệ % cho responsive */
.ranking-table-new th:nth-child(1) {
  width: 15%;
} /* Cột Nhóm */
.ranking-table-new th:nth-child(2) {
  width: 10%;
} /* Cột Điểm số */
.ranking-table-new th:nth-child(3) {
  width: 60%;
}

.ranking-table-new tbody tr:nth-child(even) {
  background: #f9fafb;
}
.ranking-table-new tbody tr:hover {
  background: #f3f8ff;
}
.ranking-table-new td:last-child {
  padding: 17px 0 17px 34px;
}
.ranking-table-new td {
  border-top: 1px solid #dee1e6;
  vertical-align: top;
  text-align: left;
}

.ranking-table-new th:not(:last-child),
.ranking-table-new td:not(:last-child) {
  border-right: 1px solid #dee1e6;
}

.ranking-table-new td:nth-child(1) {
  vertical-align: middle;
  text-align: center;
}

.ranking-table-new td:nth-child(2) {
  vertical-align: middle;
  text-align: center;
}

.ranking-group {
  display: flex;
  flex-direction: column;
  align-items: center; /* Căn giữa nội dung bên trong */
  gap: 12px;
}
.ranking-group svg{
  width: 22px;
  height: 22px;
}
.ranking-group-main {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ranking-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}
.ranking-title {
  font-size: 16px;
  font-weight: 600;
  color: #171a1f;
  margin-bottom: 4px;
}
.ranking-subtitle {
  font-size: 14px;
  color: #6b7280;
  font-weight: 400;
}
.ranking-group svg{
  width: 11px;
  height: 11px;
}
.ranking-details-link {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1b1b1b;
  text-decoration: none;
}
.ranking-details-link:hover {
  text-decoration: underline;
  color: #0072d5;
}

/* CỘT 2: ĐIỂM SỐ */
.ranking-score {
  display: flex;
  align-items: baseline;
  justify-content: center; /* Căn giữa */
  gap: 4px;
}
.ranking-score .score-number,
.ranking-score .score-max {
  font-family: "SVN-Nexa";
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #0072d5;
}

/* CỘT 3: MÔ TẢ */
.ranking-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
}
.ranking-desc ul {
  list-style-type: disc;
  margin: 0;
  padding-left: 20px;
}
.ranking-desc li {
  margin-bottom: 8px;
  padding-left: 4px;
  color: #171a1f;
}
.ranking-desc li:last-child {
  margin-bottom: 0;
}

/* ============================================
   3. CSS RESPONSIVE (BỎ ĐI)
   ============================================ */

/* (Xóa tất cả @media query cũ ở đây) */

.result-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.post-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

.post-card-image img {
  border-radius: 12px;
  width: 100%;
  max-width: 360px;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.05);
}

.post-card-badge {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
  padding: 4px 8px;
  display: inline-block;
  background: #013993;
  border-radius: 8px;
  align-self: flex-start;
  margin: 16px 0 8px 0;
}
.post-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card-title a {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1b1b1b;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.post-card-title a:hover {
  color: #013993;
  text-decoration: underline;
}

.post-card-meta {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #605d62;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-date {
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-card-excerpt {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #605d62;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  padding-bottom: 4px;
  border-bottom: 1px solid #535353;
}

.post-card-link {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #030303;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-end;
}

@media (max-width: 1024px) {
  .result-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 cột */
@media (max-width: 640px) {
  .result-grid-4 {
    grid-template-columns: 1fr;
  }

  .post-card-image {
    height: 180px;
  }

  .post-card-content {
    padding: 16px 12px 0px;
  }
  .post-card-excerpt .post-card-title a {
    font-size: 15px;
    line-height: 22px;
  }

  .post-card-meta {
    font-size: 13px;
  }

  .post-card-excerpt {
    font-size: 13px;
    line-height: 19px;
  }
  .ranking-table-new td {
    padding: 10px;
  }
}
.result-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.result-section h2 {
  font-family: "SVN-Nexa", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #013993;
}
.result-section-ranking {
  padding: 80px 0;
}
@media (max-width: 640px) {
  .result-section h2 {
    text-align: left;
  }
}
.ranking-table-new td:nth-child(1) .ranking-details-link svg {
  vertical-align: middle;
}
.ranking-desc ul {
  list-style-type: disc;
  padding-left: 16px;
  margin: 10px 0;
}

.ranking-desc ul > li {
  list-style-type: disc;
  margin-bottom: 8px;
}

.ranking-desc ul ul {
  margin-top: 8px;
  padding-left: 2px;
}

.ranking-desc ul ul li {
  list-style-type: '+ ';
  margin-bottom: 5px;
}
.career-hero-content {
  max-width: 100%;
}


.ttl-hero.career-hero-content h1 {  
  width: 100%;
  display: block;
  text-align: center;
  font-size: 52px;       
}