@charset "UTF-8";
html,
body {
  font-size: 14px;
  background-color: var(--white);
  position: unset;
}

.bg-lines span {
  top: 0;
  z-index: -1;
  width: 1px;
  height: 100%;
  position: absolute;
  animation: leftRightOne 18s infinite;
  background: hsla(0, 0%, 100%, 0.05);
}
.bg-lines span:first-child {
  left: 10%;
}
.bg-lines span:nth-child(2) {
  left: 20%;
}
.bg-lines span:nth-child(3) {
  left: 30%;
}
.bg-lines span:nth-child(4) {
  left: 40%;
}
.bg-lines span:nth-child(5) {
  left: 50%;
}
.bg-lines span:nth-child(6) {
  left: 60%;
}
.bg-lines span:nth-child(7) {
  left: 70%;
}
.bg-lines span:nth-child(8) {
  left: 80%;
}
.bg-lines span:nth-child(9) {
  left: 90%;
}

@keyframes leftRightOne {
  0%, to {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100px);
  }
}
@keyframes leftRightTwo {
  0%, to {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100px);
  }
}
/* LOGO */
.wvt__logo {
  max-width: 200px;
}
.wvt__logo h1 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}
.wvt__logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* MENU */
.wvt__main-nav ul {
  margin-bottom: 0;
}
.wvt__main-nav li {
  position: relative;
}
.wvt__main-nav ul > li {
  float: left;
}
.wvt__main-nav ul > li > a {
  display: block;
  line-height: 40px;
  padding: 0 6px;
  font-weight: 600;
  transition: color 0.3s, background-color 0.3s;
}
.wvt__main-nav ul > li > a:hover {
  color: var(--primary);
}

/* BANNER */
.wvt__banner {
  background-size: contain;
  background-position: center;
  color: #fff;
  position: relative;
  background-color: #282525;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.wvt__banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  z-index: 1;
  transition: opacity 0.3s ease;
}
.wvt__banner:hover::before {
  opacity: 0.7;
}
.wvt__banner .container {
  height: 550px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wvt__banner__content {
  max-width: 800px;
  padding: 0 20px;
}
.wvt__banner__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.wvt__banner__description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.wvt__banner__cta {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.wvt__banner__cta:hover {
  filter: brightness(0.9);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .wvt__banner .container {
    height: 400px;
  }
  .wvt__banner__title {
    font-size: 2.5rem;
  }
  .wvt__banner__description {
    font-size: 1rem;
  }
}
.wvt__title-box {
  text-align: center;
  margin-bottom: 30px;
}
.wvt__title-box h2 {
  font-size: 2em;
  font-weight: bold;
  color: var(--primary);
  text-transform: uppercase;
}
.wvt__title-box p {
  font-size: 1.2em;
  color: var(--gray-dark);
  margin-top: 10px;
}

.wvt__priceBox {
  box-shadow: 0 0 10px -10px #000;
  border-radius: 12px;
  padding: 20px 30px;
  position: relative;
}
.wvt__priceBox .icon {
  font-size: 30px;
  position: absolute;
  top: 20px;
  left: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  background-color: var(--primary);
  color: #fff;
}
.wvt__priceBox .price,
.wvt__priceBox .title {
  font-size: 20px;
  text-align: center;
}
.wvt__priceBox.pro {
  border: 1px solid var(--yellow);
}
.wvt__priceBox ul li {
  position: relative;
  padding-left: 30px;
  line-height: 30px;
}
.wvt__priceBox ul li::after {
  content: "\f26b";
  position: absolute;
  top: 50%;
  left: 0;
  font-family: "bootstrap-icons";
  font-size: 18px;
  transform: translateY(-50%);
  color: var(--yellow);
}
.wvt__priceBox.premium {
  background-color: var(--green);
  color: #ffffff;
}
.wvt__priceBox.premium ul li::after {
  color: var(--yellow);
}
.wvt__priceBox.premium .icon {
  color: #fff;
  background-color: var(--yellow);
}
.wvt__priceBox.premium .btn:hover {
  background-color: #fff;
  color: var(--yellow);
}

.wvt__serviceBox {
  border-radius: 12px;
  padding: 20px;
  display: flex;
  box-shadow: 0 0 20px -18px #000;
  transition: 0.3s;
  min-height: 190px;
}
.wvt__serviceBox .icon {
  margin-right: 14px;
  font-size: 30px;
  color: var(--primary);
}
.wvt__serviceBox .title {
  color: #333;
  font-size: 19px;
}

.wvt__workflow {
  -webkit-backface-visibility: hidden;
  position: relative;
}
.wvt__workflow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
}
.wvt__workflow .container {
  position: relative;
  z-index: 10;
}
.wvt__workflow .wvt__title-box h2 {
  margin-bottom: 10px;
  color: var(--orange) !important;
}
.wvt__workflow .wvt__title-box p {
  opacity: 0.8;
}
.wvt__workflow .wvt__process {
  display: flex;
  justify-content: space-between;
  text-align: center;
  color: #fff;
}
.wvt__workflow .wvt__process .wvt__prcs-item {
  flex: 1;
}
.wvt__workflow .wvt__process .wvt__prcs-item .wvt__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 30px;
}
.wvt__workflow .wvt__process .wvt__prcs-item .wvt__text {
  border-top: 1px dotted #fff;
  position: relative;
  padding: 0 15px;
  margin-top: 25px;
}
.wvt__workflow .wvt__process .wvt__prcs-item .wvt__text::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #fff;
  position: absolute;
  top: -10px;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}
.wvt__workflow .wvt__process .wvt__prcs-item .wvt__text::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #fff;
  position: absolute;
  top: -6px;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
}
.wvt__workflow .wvt__process .wvt__prcs-item .wvt__text .wvt__title {
  font-size: 18px;
  margin: 26px 0 15px;
}

.wvt__demo-box {
  border: 1px solid var(--primary);
  border-radius: 4px;
  margin-bottom: 30px;
}
.wvt__demo-box .inner {
  position: relative;
  margin: 10px;
  overflow: hidden;
}
.wvt__demo-box .img {
  height: 410px;
  box-sizing: border-box;
  position: relative;
}
.wvt__demo-box .img img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: 4s linear;
  -webkit-transition: 4s linear;
  height: auto;
  max-height: initial;
}
.wvt__demo-box .text {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  padding: 10px 15px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  transform: translateY(56px);
  transition: 0.3s ease-in-out;
  font-size: 16px;
}
.wvt__demo-box .text .price {
  text-decoration: line-through;
}
.wvt__demo-box .text .discount {
  color: var(--yellow);
}
.wvt__demo-box .text .title-wrap {
  border-left: 3px solid var(--yellow);
  padding-left: 10px;
  margin: unset;
  text-align: left;
  flex: 0 0 60%;
}
.wvt__demo-box .text .title {
  font-size: 14px;
  text-transform: uppercase;
}
.wvt__demo-box .text .action-wrap {
  text-align: right;
}
.wvt__demo-box .text .action-wrap a {
  display: block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.25rem 0.5rem;
  /* Kích thước nhỏ hơn */
  font-size: 0.875rem;
  /* Kích thước font nhỏ hơn */
  line-height: 1.5;
  border-radius: 0.2rem;
  /* Bo góc nhỏ hơn */
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background-color: var(--orange);
  color: var(--white);
}
.wvt__demo-box .text .action-wrap a:hover {
  background-color: var(--orange);
  color: var(--primary);
}
.wvt__demo-box .text .action-wrap a + a {
  margin-top: 10px;
}
.wvt__demo-box:hover .text {
  transform: translateY(0);
  bottom: 0;
}

#contents .post {
  overflow: hidden;
  display: flex;
  align-items: center;
}
#contents .post .text {
  overflow: hidden;
}
#contents .post .text,
#contents .post .thumbnail {
  flex: 1;
}
#contents .post .thumbnail {
  max-width: 300px;
}
#contents .thumbnail img {
  width: 100%;
  display: block;
  height: auto;
}
#contents .detail .thumbnail {
  margin-bottom: 15px;
}

.wp-block-latest-posts__list {
  display: flex;
  flex-direction: column;
}
.wp-block-latest-posts__list li + li {
  margin-top: 10px;
}

.wp-block-latest-posts__featured-image {
  float: left;
  width: 70px;
  margin-right: 15px;
}
.wp-block-latest-posts__featured-image a {
  display: inline-block;
}
.wp-block-latest-posts__featured-image img {
  height: auto;
  max-width: 100%;
  width: auto;
}
.wp-block-latest-posts__featured-image.alignleft {
  float: left;
  margin-right: 1em;
}
.wp-block-latest-posts__featured-image.alignright {
  float: right;
  margin-left: 1em;
}
.wp-block-latest-posts__featured-image.aligncenter {
  margin-bottom: 1em;
  text-align: center;
}

.enhanced-page-title {
  background-color: #f5f5f5;
}

.enhanced-main {
  background-color: #fff;
}

.enhanced-detail {
  border: 1px solid #ddd;
  padding: 20px;
}

.enhanced-thumbnail {
  border-radius: 5px;
}

.enhanced-title {
  font-size: 20px;
  color: #333;
}

.enhanced-author-box {
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f9f9f9;
  margin-top: 30px;
  margin-bottom: 30px;
}

.enhanced-avatar img {
  max-width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-right: 15px;
}

.author-title span {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.author-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.author-links a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-links a:hover {
  color: #0056b3;
}

.enhanced-page-title {
  background-color: #f8f8f8;
}

.enhanced-main {
  background-color: #fff;
}

.enhanced-post {
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 30px;
}

.enhanced-title {
  font-size: 24px;
  color: #333;
}

.enhanced-entry-meta {
  font-size: 14px;
  color: #777;
}

.enhanced-thumbnail img {
  border-radius: 5px;
}

.enhanced-pagination a {
  color: #007bff;
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid #ddd;
  margin-right: 5px;
}

.enhanced-pagination a:hover {
  background-color: #007bff;
  color: #fff;
}

.enhanced-prev-icon,
.enhanced-next-icon {
  font-size: 18px;
}

.wvt__question-box {
  border: 1px solid #ccc;
}
.wvt__question-box .wvt__question-list-items {
  padding: 20px;
}
.wvt__question-box .wvt__question-list-items .title {
  font-size: 17px;
  margin-bottom: 0;
  cursor: pointer;
  position: relative;
  transition: 358ms ease-in-out;
}
.wvt__question-box .wvt__question-list-items .title .bi {
  position: absolute;
  right: 0;
}
.wvt__question-box .wvt__question-list-items.active > .title {
  color: var(--primary);
}
.wvt__question-box .wvt__question-list-items > .text {
  transition: 358ms ease-in-out;
  display: none;
  padding: 15px 0 0;
}
.wvt__question-box .wvt__question-list-items.active > .text {
  display: block;
  visibility: visible;
  opacity: 1;
}
.wvt__question-box .wvt__question-list-items + .wvt__question-list-items {
  border-top: 1px solid #ccc;
}

.wvt__testimonials {
  background-color: #231605;
  color: #ddd;
  overflow: hidden;
}

.wv__testimo-box {
  margin-left: 20px;
  margin-right: 20px;
}
.wv__testimo-box .text {
  background-color: #fff;
  padding: 20px;
  position: relative;
  color: #282525;
  border-radius: 6px;
}
.wv__testimo-box .text i {
  color: #fec110;
  font-size: 20px;
}
.wv__testimo-box .user-box {
  position: relative;
  top: -27.5px;
}
.wv__testimo-box .user-box .img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 3px solid #fff;
  left: 20px;
  margin-bottom: 15px;
  background-color: #fff;
}
.wv__testimo-box .user-box .img img {
  width: 100%;
  height: 100%;
}
.wv__testimo-box .user-box .name {
  color: var(--orange);
  text-transform: capitalize;
  font-size: 18px;
}

.wvt__page-title {
  background-color: var(--primary);
  color: var(--light);
  padding: 12px 0;
}
.wvt__page-title a {
  color: var(--light);
}

.rank-math-breadcrumb > p {
  margin: 0;
}

.footer-widget .widget-title {
  font-size: 18px;
  border-left: 3px solid var(--primary);
  padding-left: 15px;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.wvt__btn-menu {
  position: relative;
  width: 27px;
  height: 17px;
  cursor: pointer;
  display: none;
}
.wvt__btn-menu span {
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #000;
}
.wvt__btn-menu span:nth-child(1) {
  top: 0;
  transition: transform 0.3s;
}
.wvt__btn-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
.wvt__btn-menu span:nth-child(3) {
  bottom: 0;
  transition: transform 0.3s;
}
.wvt__btn-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.wvt__btn-menu.active span:nth-child(2) {
  opacity: 0;
}
.wvt__btn-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

#back-top {
  background-color: var(--primary);
}

.wvt__main-nav-mobile {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  padding: 15px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.wvt__main-nav-mobile.active {
  transform: translateY(0);
}
.wvt__main-nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wvt__main-nav-mobile ul li {
  margin: 10px 0;
}
.wvt__main-nav-mobile ul li a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 10px;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.wvt__main-nav-mobile ul li a:hover {
  background-color: #f0f0f0;
}
.wvt__main-nav-mobile .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.post-thumbnail {
  margin-bottom: 15px;
}
.post-thumbnail img {
  height: auto;
}

.post_service {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 5px;
  background-color: #fff;
}
.post_service .entry-header .entry-title {
  font-size: 2em;
  color: #333;
  margin-bottom: 10px;
}
.post_service .entry-header .post-thumbnail {
  margin-bottom: 20px;
}
.post_service .entry-header .post-thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
.post_service .entry-header .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9em;
  color: #777;
}
.post_service .entry-header .post-meta span {
  display: flex;
  align-items: center;
}
.post_service .entry-header .post-meta span i {
  margin-right: 5px;
}
.post_service .entry-content {
  line-height: 1.6;
  color: #555;
}
.post_service .entry-content p {
  margin-bottom: 1.5em;
}

.single-dich-vu .entry-header .entry-title {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}
.single-dich-vu .entry-header .post-thumbnail {
  margin-bottom: 20px;
}
.single-dich-vu .entry-header .post-thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  display: block;
  margin: 0 auto;
}
.single-dich-vu .entry-header .post-meta {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9em;
  color: #777;
  margin-bottom: 20px;
}
.single-dich-vu .entry-header .post-meta span {
  display: flex;
  align-items: center;
}
.single-dich-vu .entry-header .post-meta span i {
  margin-right: 5px;
  color: #007bff;
}
.single-dich-vu .entry-content {
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}
.single-dich-vu .entry-content p {
  margin-bottom: 1.5em;
}
.single-dich-vu .icon {
  text-align: center;
  margin-bottom: 20px;
}
.single-dich-vu .icon i {
  font-size: 3em;
  color: #007bff;
}
.single-dich-vu article.post_service {
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
}
.single-dich-vu article.post_service .text .title {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.single-dich-vu article.post_service .text .title a {
  color: #333;
  text-decoration: none;
}
.single-dich-vu article.post_service .text .title a:hover {
  color: #007bff;
  text-decoration: underline;
}
.single-dich-vu article.post_service .text .desc {
  color: #555;
}
.single-dich-vu article.post_service .thumbnail {
  margin-top: 20px;
}
.single-dich-vu article.post_service .thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

/********
RESPONSIVE
******/
@media screen and (max-width: 991px) {
  .wvt__btn-menu {
    display: block;
    margin-right: 15px;
    margin-left: auto;
  }
  .wvt__priceBox {
    margin-bottom: 30px;
  }
  .wvt__workflow .wvt__process {
    display: block;
    text-align: left;
  }
  .wvt__workflow .wvt__process .wvt__prcs-item {
    display: flex;
    text-align: left;
    align-items: center;
  }
  .wvt__workflow .wvt__process .wvt__prcs-item .wvt__icon {
    margin: 0 15px 0 20px;
    width: 40px;
    height: 40px;
    font-size: 40px;
    background-color: transparent;
  }
  .wvt__workflow .wvt__process .wvt__prcs-item .wvt__text {
    border: 0;
    border-left: 1px dotted #fff;
    padding: 20px;
    margin-top: 0;
  }
  .wvt__workflow .wvt__process .wvt__prcs-item .wvt__text::after, .wvt__workflow .wvt__process .wvt__prcs-item .wvt__text::before {
    left: 0;
  }
  .wvt__main-nav {
    display: none;
  }
  .wvt__sidebar {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .wvt__main > .container > .py-50 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #contents .post {
    padding: 0;
    border: 0;
    flex-direction: column;
  }
  #contents .post .text {
    order: 2;
  }
  #contents .post .thumbnail {
    order: 1;
    margin-bottom: 15px;
    max-width: 100%;
  }
  #contents .enhanced-detail {
    padding: 0;
    border: 0;
  }
}/*# sourceMappingURL=main.css.map */