.banner-home {
  height: 40rem;
  padding: 0;
}
.banner-home .img {
  height: 100%;
  width: 100%;
}
.banner-home .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Abount */

.about-us {
  background-image: url("/wp-content/uploads/2025/06/section-bg-shape-1.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  padding: 100px var(--section) 80px;
}
.about-us .video-fit {
  padding-top: 0 !important;
  aspect-ratio: 16/10;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}

.about-us-content-body {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}

.about-us-content-body::before {
  content: "";
  position: absolute;
  right: 58%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  border: 1px solid #eaf0ec;
  width: 1px;
  height: 100%;
}

.about-us-content-info {
  width: calc(50% - 80px);
}

.about-us-content-list {
  margin-bottom: 40px;
}

.about-us-content-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.about-us-content-list ul li {
  position: relative;
  font-weight: 600;
  color: var(--black);
  padding-left: 30px;
  margin-bottom: 15px;
}

.about-us-content-list ul li:last-child {
  margin-bottom: 0;
}

.about-us-content-list ul li::before {
  content: "";
  background: url(/wp-content/themes/vt-theme/images/icon-check.svg);
  width: var(--18);
  height: var(--18);
  position: absolute;
  left: 0;
  background-size: cover;
  top: 2px;
}

.about-us-contact-list {
  width: calc(50% - 20px);
}

.about-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--40);
}

.about-contact-item:last-child {
  margin-bottom: 0;
}

.about-contact-item .icon-box {
  width: var(--40);
  height: var(--40);
  background-color: #192324;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: var(--15);
  transition: all 0.3s ease-in-out;
}
.about-contact-item .icon-box svg {
  width: 1rem;

  height: 1rem;
}

.about-contact-item .icon-box figure {
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

.about-contact-item .icon-box img {
  max-width: 40px;
  border-radius: 50%;
}

.about-contact-item .icon-box i {
  font-size: 18px;
  color: var(--white-color);
}

.about-contact-content {
  width: calc(100% - 55px);
}
.about-contact-content a {
  font-size: var(--18);
  color: var(--black);
  font-weight: 700;
}
.about-contact-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: var(--5);
}

.about-contact-content p {
  font-weight: 500;
  color: var(--black);
  text-transform: capitalize;
  margin-bottom: 0;
  font-size: var(--14);
}
.about-us .section-title {
  margin-bottom: var(--20);
}

.about-us .section-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 6rem;
}
@media (max-width: 767.98px) {
  .video-controls .control-btn {
    width: 2.25rem;
    height: 2.25rem;
    padding: 0.25rem;
  }
}
/* why-choose */
.why-choose {
  background-color: rgb(33 168 74 / 0.08);
  padding-top: 6.25rem;
  padding-bottom: 0;
}
.why-choose .section-title {
  margin-bottom: var(--30);
}
.why-choose .desc {
  margin-bottom: var(--30);
  font-weight: 500;
}
.why-choose .section-content {
  display: grid;
  grid-template-columns: auto 56%;
  grid-gap: var(--30);
}
.why-choose__2 {
  padding-bottom: 6.25rem;
}
.why-choose__2 .section-content {
  grid-template-columns: 56% auto;
}
.why-choose-images .video-fit {
  padding-top: 0 !important;
  aspect-ratio: 4/3;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}

.why-choose-item {
  display: flex;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.why-choose-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.why-choose-item .icon-box {
  position: relative;
  width: var(--60);
  height: var(--60);
  background-color: var(--divider-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: var(--20);
  transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box {
  background-color: transparent;
}

.why-choose-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--theme-color);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box::before {
  transform: scale(1);
}

.why-choose-item .icon-box img {
  max-width: 24px;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.why-choose-item-content {
  width: calc(100% - 80px);
}

.why-choose-item-content h3 {
  font-size: var(--20);
  text-transform: capitalize;
  margin-bottom: 10px;
}

.why-choose-item-content p {
  color: var(--primary-color);
  margin-bottom: 0;
}
/* End why-choose */
/* our-services */
.our-services {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.our-services__title {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin-bottom: var(--80);
}
.our-services__title .section-title {
  margin-bottom: 0;
}
.our-services__title .desc {
  margin: 0;
  font-weight: 600;
  max-width: 36.25rem;
  margin-left: auto;
}
.our-services__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--30);
}
.our-services .service-item:before {
  content: "";
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 105%
  );
  height: 30%;
  width: 100%;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}
.our-services .service-item {
  position: relative;
}
.our-services .service-item .video-fit {
  padding-top: 0 !important;
  aspect-ratio: 3/4;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}

.service-content {
  position: absolute;
  bottom: var(--20);
  left: var(--20);
  right: var(--20);
  z-index: 1;
}

.service-content h3 {
  font-size: var(--24);
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: var(--10);
}
.video-fit.active {
  z-index: 3;
}
/* End our-services */
/* intro-video */
.intro-video {
  padding: 0;
}
.intro-video .image-cover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(25, 35, 36, 0) 0%,
    rgba(25, 35, 36, 0.6) 80.94%
  );
  height: 100%;
  width: 100%;
  z-index: 1;
}
.intro-video .intro-video__btn-icon {
  width: var(--90);
  height: var(--90);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ea0707;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  border: 2px solid white !important;
  -webkit-animation: ripple 0.7s linear infinite;
  animation: ripple_video 0.7s linear infinite;
  opacity: 1;
  visibility: visible;
  z-index: 22;
}
.intro-video .intro-video__btn-icon svg {
  width: var(--30);
  margin-left: var(--5);
}
.intro-video > a {
  position: relative;

  width: 100%;

  height: 100%;
}
.intro-video .attachment-full {
  width: 100%;
}
/* End intro-video */

@keyframes ripple_video {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2),
      0 0 0 0.5em rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2),
      0 0 0 0.5em rgba(255, 255, 255, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0.5em rgba(255, 255, 255, 0.2),
      0 0 0 1em rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0.5em rgba(255, 255, 255, 0.2),
      0 0 0 1em rgba(255, 255, 255, 0);
  }
}
/* news-home */
.news-home {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.news-home .news__list {
  padding-bottom: 3rem;
}
.news-home .box-blog .image-cover {
  padding-top: 65%;
}
.news-home .box-blog .box-image {
  cursor: none;
}
.news-home .box-blog .image-cover a {
  display: block;
  cursor: none;
}
.news-home .box-blog .box-text {
  padding-top: var(--20);
  padding-bottom: 0;
}
.news-home .box-blog .post-title a {
  font-size: var(--20);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
  margin-top: 0;
  color: var(--black);
}
.news-home .box-blog .post-title a:hover {
  color: var(--theme-color);
}
.news-home .box-blog .post-title {
  margin-bottom: var(--15);
}

.post-item-btn a {
  position: relative;
  color: var(--primary-color);
  font-weight: 500;
  text-transform: capitalize;
  padding-right: 25px;
}

.post-item-btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0px, -50%);
  width: 17px;
  height: 16px;
  background: url("/wp-content/themes/vt-theme/images/arrow-dark.svg") no-repeat;
  background-position: right center;
  background-size: cover;
  transition: all 0.4s ease-in-out;
}

.post-item-btn a:hover::after {
  transform: translate(2px, -50%);
}
/* End news-home */
@media screen and (min-width: 768px) {
  .hide-pc {
    display: none !important;
  }
}
@media screen and (max-width: 767.98px) {
  .hide-mobile {
    display: none !important;
  }
  .banner-home {
    height: 13rem;
  }
  .about-us {
    padding: var(--60) 1rem 3rem;
  }
  .about-us .section-content {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2rem;
    column-gap: 0;
  }
  .about-us-images {
    background-position: left 10px bottom 10px;
    background-size: 20% auto;
    padding: var(--10) var(--45) var(--100) 0;
    margin-right: 0;
  }
  .about-img-2 {
    max-width: 15rem;
    border: 3px solid #fff;
  }
  .experience-counter {
    width: 6.375rem;
    height: 6.375rem;
  }
  .experience-counter h3 {
    font-size: var(--24);
  }
  .experience-counter p {
    font-size: var(--12);
  }
  .feedback-counter {
    transform: rotate(-180deg) translate(0, 0);
  }
  .feedback-counter h3 {
    font-size: var(--12);
    width: calc(100% - 2.5rem);
  }
  .feedback-counter p {
    font-size: var(--12);
    height: var(--38);
    width: var(--38);
    margin: 0 0 var(--6) 0;
  }
  .about-us-content-body {
    flex-direction: column;
    gap: 0;
  }
  .about-us-content-body::before {
    display: none;
  }
  .about-us-content-info {
    width: 100%;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eaf0ec;
  }
  .about-us-content-list {
    margin-bottom: var(--30);
  }
  .about-us-contact-list {
    width: 100%;
  }
  .about-contact-item {
    margin-bottom: 1.2rem;
  }
  .why-choose {
    padding-top: var(--50);
  }
  .why-choose .section-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .why-choose__2 {
    padding-bottom: var(--50);
  }
  .why-choose__2 .section-content .col-right {
    order: 1;
  }
  .why-choose .section-title {
    margin-bottom: var(--20);
  }
  .why-choose-item-content h3 {
    font-size: var(--18);
  }
  .why-choose-list {
    margin-bottom: 2.5rem;
  }
  .why-choose-images {
    margin: 0;
  }
  .our-services__list {
    grid-template-columns: 1fr;
  }
  .our-services__title {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: var(--30);
  }
  .our-services .service-image .image-cover {
    padding-top: 120%;
  }
  .service-content h3 {
    font-size: var(--18);
  }
  .service-content {
    left: var(--20);
    right: var(--20);
    bottom: var(--25);
  }
  .service-btn a {
    width: var(--50);
    height: var(--50);
    padding: var(--12);
  }

  .news-home,
  .our-services {
    padding-top: var(--50);
    padding-bottom: var(--50);
  }
}

.question-home {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background: #f8f8f8;
}

.question-home .grid-cols-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  column-gap: 0;
}

.question-home .grid-cols-2 .col-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--30);
}
.faq-list {
  display: flex;
  flex-direction: column;
  row-gap: var(--20);
}
.faq-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  transition: padding 300ms;
}
.faq-item .faq-item-visible {
  height: fit-content;
  cursor: pointer;
  align-items: baseline;
}
.faq-item .faq-item-visible svg {
  height: var(--16);
  width: var(--16);
}
.faq-item .faq-item-visible .question {
  font-size: var(--18);
  font-weight: 700;
  color: var(--black);
}
.faq-item .faq-content {
  height: 0;
  transition: all 0.5s;
  padding: 0 var(--16);
}
.faq-item.faq-item-active .faq-content {
  margin: var(--16) 0;
}
.faq-item .faq-item-visible {
  border-top: 0;
  padding: var(--16);
  display: flex;
  column-gap: var(--16);
  justify-content: space-between;
  background: #fff;
}
.faq-item .toggle {
  margin: 0;
  flex-shrink: 0;
  min-height: 1.5rem;
  opacity: 1;
  pointer-events: none;
}
.faq-item .toggle i {
  width: 100%;
  height: 100%;
  opacity: 1;
  top: 0;
}

.faq-item-active .toggle i {
  rotate: 180deg;
}
.faq-item-active .faq-item-visible span {
  color: var(--theme-color);
}

@media screen and (max-width: 767.98px) {
  .question-home {
    padding: 3rem var(--section);
  }
  .question-home .grid-cols-2 .col-right {
    margin-top: 0;
  }
  .question-home .img-fqa {
    left: 0;
    width: 14.375rem;
    height: 7.25rem;
    object-fit: contain;
  }
  .question-home .grid-cols-2 {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    row-gap: 0.5rem;
  }
  .question-home .grid-cols-2 .col-right {
    grid-template-columns: minmax(0, 1fr);
    row-gap: var(--20);
  }

  .faq-item .faq-item-visible .question {
    font-size: 0.9375rem;
  }
  .faq-item.faq-item-active .faq-content p {
    font-size: 0.875rem;
  }

  .intro-video .intro-video__btn-icon {
    width: var(--60);
    height: var(--60);
  }
  .intro-video .intro-video__btn-icon svg {
    width: var(--20);
  }
  .news-home .box-blog .post-title a {
    font-size: var(--18);
  }
}
