@charset "UTF-8";
.vm-specialty-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
  padding: 80px 0;
  height: 600px;
}
.vm-specialty-hero__background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .vm-specialty-hero__background {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .vm-specialty-hero__background {
    width: 100%;
    opacity: 0.08;
  }
}
.vm-specialty-hero .vm-container {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.vm-specialty-hero .specialty-title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.vm-specialty-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .vm-specialty-hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .vm-specialty-hero__content {
    gap: 30px;
    padding: 0 20px;
  }
}
.vm-specialty-hero__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 3;
}
.vm-specialty-hero__title {
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
  line-height: 36px;
  margin: 0;
  letter-spacing: 0px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .vm-specialty-hero__title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .vm-specialty-hero__title {
    font-size: 28px;
  }
}
.vm-specialty-hero__excerpt {
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: justify;
}
@media (max-width: 768px) {
  .vm-specialty-hero__excerpt {
    font-size: 16px;
  }
}
.vm-specialty-hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .vm-specialty-hero__actions {
    flex-wrap: wrap;
  }
}
.vm-specialty-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.vm-specialty-hero__btn--primary {
  background: #ff6b35;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}
.vm-specialty-hero__btn--primary:hover {
  background: #ff5520;
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}
.vm-specialty-hero__btn--primary:active {
  transform: translateY(0);
}
.vm-specialty-hero__btn--primary .vm-specialty-hero__btn-icon {
  transition: transform 0.3s ease;
}
.vm-specialty-hero__btn--primary:hover .vm-specialty-hero__btn-icon {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .vm-specialty-hero__btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}
.vm-specialty-hero__btn-text {
  display: inline-block;
}
.vm-specialty-hero__btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.vm-specialty-hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.8s ease-out;
}
.vm-specialty-hero__image-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.vm-specialty-hero__image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.vm-section-enrollment {
  padding: 60px 0;
  background: #ffffff;
}

.enrollment_wrapper .vm-section__heading {
  margin-bottom: 80px;
}

.enroll-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  justify-content: center;
}
.enroll-list .enroll-item {
  text-align: center;
  width: calc((100% - 120px) / 4);
}
.enroll-list .enroll-item__inner {
  position: relative;
  width: 290px;
  height: 290px;
  margin: auto;
}
.enroll-list .enroll-item__inner .diamond {
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  border-radius: 20px;
}
.enroll-list .enroll-item__inner .diamond img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.enroll-list .enroll-item__inner .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s ease;
}
.enroll-list .enroll-item__inner .arrow .arrow-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  transition: all 0.35s ease;
}
.enroll-list .enroll-item__inner .arrow .arrow-box svg {
  transform: rotate(-45deg);
  transition: all 0.35s ease;
}
.enroll-list .enroll-item__text {
  margin-top: 25px;
}
.enroll-list .enroll-item__text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #001f3d;
  margin: 20px 0;
}
.enroll-list .enroll-item__text p {
  font-size: 16px;
  color: #141414;
  line-height: 1.4;
  margin-bottom: 0;
}
.enroll-list .enroll-item:hover .enroll-item__title {
  color: #eb0738;
}
.enroll-list .enroll-item:hover .arrow {
  transform: translate(-50%, 140%); /* trượt xuống */
  transition: transform 0.4s ease;
}
.enroll-list .enroll-item:hover .arrow-box {
  background: linear-gradient(0deg, rgba(235, 7, 56, 0.6) 60%, rgba(235, 7, 56, 0.8) 100%);
}
.enroll-list .enroll-item:hover .arrow-box svg path {
  stroke: #fff;
}

.vm-section-enrolling {
  position: relative;
  overflow: hidden;
}
.vm-section-enrolling .cause_bgr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.vm-section-enrolling .cause_bgr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.vm-section-enrolling .cause_wrapper {
  position: relative;
  z-index: 1;
  border-radius: 12px;
}
.vm-section-enrolling .vm-carousel-enrolling {
  position: relative;
  overflow: visible;
}
.vm-section-enrolling .vm-carousel-enrolling .vm-job-card {
  border-radius: 28px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: all 0.24s ease;
  position: relative;
  width: 100%;
  margin-top: 4px;
}
.vm-section-enrolling .vm-carousel-enrolling .vm-job-card > a {
  width: 100%;
  display: block;
  position: relative;
}
.vm-section-enrolling .vm-carousel-enrolling .vm-job-card:hover {
  transform: translateY(-4px);
  transition: all 0.24s ease;
}
.vm-section-enrolling .vm-carousel-enrolling .vm-job-card__media {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
}
.vm-section-enrolling .vm-carousel-enrolling .vm-card__logo {
  position: absolute;
  border-radius: 50%;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 12px;
  box-sizing: border-box;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0 4px 16px rgba(7, 52, 89, 0.12);
  z-index: 2;
}
.vm-section-enrolling .vm-carousel-enrolling .vm-job-card__body {
  margin-top: 48px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 78px;
}
.vm-section-enrolling .vm-carousel-enrolling .vm-job-card__body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  text-align: center;
  text-transform: capitalize;
}
.vm-section-enrolling .vm-carousel-enrolling .vm-job-card__body h3 a {
  color: #001f3d;
  text-decoration: none;
}
.vm-section-enrolling .vm-carousel-enrolling .vm-job-card__body h3 a span {
  font-weight: 600;
}
.vm-section-enrolling .vm-carousel-enrolling .vm-job-card__body .summary {
  font-size: 16px;
  color: #141414;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.8em;
  white-space: normal;
}
.vm-section-enrolling .vm-carousel-enrolling .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 2px 12px rgba(7, 52, 89, 0.12);
  transition: all 0.24s ease;
  z-index: 10;
  background: #fff;
}
.vm-section-enrolling .vm-carousel-enrolling .owl-nav button:hover:not(:disabled) {
  box-shadow: 0 8px 24px rgba(7, 52, 89, 0.2);
}
.vm-section-enrolling .vm-carousel-enrolling .owl-nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.vm-section-enrolling .vm-carousel-enrolling .owl-nav button.owl-prev {
  left: -98px;
}
.vm-section-enrolling .vm-carousel-enrolling .owl-nav button.owl-next {
  right: -98px;
}
.vm-section-enrolling .vm-carousel-enrolling .owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.vm-section-enrolling .vm-carousel-enrolling .owl-dots .owl-dot {
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: none;
  position: relative;
  cursor: pointer;
  padding: 0;
  transition: all 0.24s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vm-section-enrolling .vm-carousel-enrolling .owl-dots .owl-dot::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c4c4c4;
  transition: background 0.24s;
}
.vm-section-enrolling .vm-carousel-enrolling .owl-dots .owl-dot.active {
  border: 1px solid #eb0738;
  background: #f2f5f9;
}
.vm-section-enrolling .vm-carousel-enrolling .owl-dots .owl-dot.active::before {
  background: #eb0738;
}
.vm-section-enrolling .vm-carousel-enrolling .owl-dots .owl-dot:hover::before {
  background: #bdbdbd;
}

.vm-section-news {
  position: relative;
  overflow: hidden;
}
.vm-section-news .cause_bgr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.vm-section-news .cause_bgr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.vm-section-news .cause_wrapper {
  position: relative;
  z-index: 1;
  border-radius: 12px;
}
.vm-section-news .vm-carousel-news {
  position: relative;
  overflow: visible;
}
.vm-section-news .vm-carousel-news .vm-job-card {
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: all 0.24s ease;
  position: relative;
  width: 100%;
  margin-top: 4px;
  gap: 24px;
}
.vm-section-news .vm-carousel-news .vm-job-card > a {
  width: 100%;
  display: block;
  position: relative;
  flex-grow: 1;
}
.vm-section-news .vm-carousel-news .vm-job-card:hover {
  transform: translateY(-4px);
  transition: all 0.24s ease;
}
.vm-section-news .vm-carousel-news .vm-job-card:hover a {
  color: #eb0738;
}
.vm-section-news .vm-carousel-news .vm-job-card__media {
  width: 100%;
  height: 225px;
  background-size: cover;
  background-position: center;
  border-radius: 100px 24px 24px 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vm-section-news .vm-carousel-news .vm-card__logo {
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  background: #fff;
  padding: 8px;
  box-sizing: border-box;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.vm-section-news .vm-carousel-news .vm-card__logo img {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vm-section-news .vm-carousel-news .vm-card__logo .img-hover {
  opacity: 0;
}
.vm-section-news .vm-carousel-news .vm-job-card:hover .vm-card__logo {
  top: 20%;
  left: 50%;
  transform: translate(-50%, 50%);
  background: #eb0738;
  opacity: 0.8;
}
.vm-section-news .vm-carousel-news .vm-job-card:hover .vm-card__logo .img-normal {
  opacity: 0;
}
.vm-section-news .vm-carousel-news .vm-job-card:hover .vm-card__logo .img-hover {
  opacity: 1;
}
.vm-section-news .vm-carousel-news .vm-job-card__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: auto;
  padding: 0;
  gap: 24px;
}
.vm-section-news .vm-carousel-news .vm-job-card__body h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #073459;
  line-height: 1.4;
  text-align: center;
}
.vm-section-news .vm-carousel-news .vm-job-card__body h3 a {
  color: #073459;
  text-decoration: none;
  transition: color 0.3s ease;
}
.vm-section-news .vm-carousel-news .vm-job-card__body .summary {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #141414;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: capitalize;
}
.vm-section-news .vm-carousel-news .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 2px 12px rgba(7, 52, 89, 0.12);
  transition: all 0.24s ease;
  z-index: 10;
  background: #fff;
}
.vm-section-news .vm-carousel-news .owl-nav button:hover:not(:disabled) {
  box-shadow: 0 8px 24px rgba(7, 52, 89, 0.2);
}
.vm-section-news .vm-carousel-news .owl-nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.vm-section-news .vm-carousel-news .owl-nav button.owl-prev {
  left: -98px;
}
.vm-section-news .vm-carousel-news .owl-nav button.owl-next {
  right: -98px;
}
.vm-section-news .vm-carousel-news .owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.vm-section-news .vm-carousel-news .owl-dots .owl-dot {
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: none;
  position: relative;
  cursor: pointer;
  padding: 0;
  transition: all 0.24s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vm-section-news .vm-carousel-news .owl-dots .owl-dot::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c4c4c4;
  transition: background 0.24s;
}
.vm-section-news .vm-carousel-news .owl-dots .owl-dot.active {
  border: 1px solid #eb0738;
  background: #f2f5f9;
}
.vm-section-news .vm-carousel-news .owl-dots .owl-dot.active::before {
  background: #eb0738;
}
.vm-section-news .vm-carousel-news .owl-dots .owl-dot:hover::before {
  background: #bdbdbd;
}

.vm-section-why-study {
  padding: 60px 0;
  background: #f3f6ff;
}

.vm-grid-why-study {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-template-areas: "item1 item1 item2 item5" "item3 item4 item4 item5";
  gap: 26px;
}
.vm-grid-why-study .vm-card:nth-child(1) {
  grid-area: item1;
}
.vm-grid-why-study .vm-card:nth-child(2) {
  grid-area: item2;
}
.vm-grid-why-study .vm-card:nth-child(3) {
  grid-area: item3;
}
.vm-grid-why-study .vm-card:nth-child(4) {
  grid-area: item4;
}
.vm-grid-why-study .vm-card:nth-child(5) {
  grid-area: item5;
}
.vm-grid-why-study .vm-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(7, 52, 89, 0.12);
  position: relative;
  transition: all 0.24s ease;
  display: block;
}
.vm-grid-why-study .vm-card a {
  display: block;
  width: 100%;
  height: 100%;
}
.vm-grid-why-study .vm-card:hover {
  transform: translateY(-4px);
  transition: all 0.24s ease;
}
.vm-grid-why-study .vm-card__media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.vm-grid-why-study .vm-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vm-grid-why-study .vm-card__content .vm-card__logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5px;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(7, 52, 89, 0.15);
  flex-shrink: 0;
}
.vm-grid-why-study .vm-card__content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

.vm-section-faq.vm-section {
  padding: 60px 0;
}

.vm-section__heading {
  margin-bottom: 42px;
}
.vm-section__heading h2 {
  margin: 0px;
  font-size: 32px;
  color: #073459;
  line-height: 1.4;
  letter-spacing: 0;
  padding-bottom: 24px;
  text-transform: capitalize;
  position: relative;
}
.vm-section__heading h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: #eb0738;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.vm-section__heading .summary {
  margin: 24px 0;
  font-size: 18px;
  line-height: 1.4;
  color: #141414;
}

.vm-section-cause {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.vm-section-cause .cause_bgr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.vm-section-cause .cause_bgr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.vm-section-cause .cause_wrapper {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  border-radius: 12px;
}

.vm-grid-cause-carousel {
  position: relative;
  overflow: visible;
}
.vm-grid-cause-carousel .vm-cause-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.24s ease;
}
.vm-grid-cause-carousel .vm-cause-card > a {
  width: 100%;
  display: block;
  position: relative;
  flex-grow: 1;
}
.vm-grid-cause-carousel .vm-cause-card:nth-child(4n+1) {
  border-radius: 80px 80px 0 80px;
}
.vm-grid-cause-carousel .vm-cause-card:nth-child(4n+2) {
  border-radius: 80px 80px 80px 0;
}
.vm-grid-cause-carousel .vm-cause-card:nth-child(4n+3) {
  border-radius: 0 80px 80px 80px;
}
.vm-grid-cause-carousel .vm-cause-card:nth-child(4n+4) {
  border-radius: 80px 0 80px 80px;
}
.vm-grid-cause-carousel .vm-cause-card__media {
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vm-grid-cause-carousel .vm-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, rgba(235, 7, 56, 0.5) 0%, #eb0738 100%);
  z-index: 1;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.vm-grid-cause-carousel .vm-cause-card__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  height: 100%;
  justify-content: end;
  background: linear-gradient(180deg, rgba(7, 52, 89, 0) 22%, rgba(7, 52, 89, 0.86) 100%);
  transition: all 0.4s ease;
}
.vm-grid-cause-carousel .vm-cause-card__body .vm-card__logo {
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.vm-grid-cause-carousel .vm-cause-card__body h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}
.vm-grid-cause-carousel .logo-arrow {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}
.vm-grid-cause-carousel .vm-cause-card:hover .vm-cause-card__body {
  justify-content: center;
  background: none;
  height: 100%;
  transition: all 0.4s ease;
}
.vm-grid-cause-carousel .vm-cause-card:hover .vm-card__overlay {
  height: 100%;
}
.vm-grid-cause-carousel .vm-cause-card:hover .logo-arrow {
  height: 48px;
  opacity: 1;
  overflow: visible;
}
.vm-grid-cause-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 2px 12px rgba(7, 52, 89, 0.12);
  transition: all 0.24s ease;
  z-index: 10;
  background: #fff;
}
.vm-grid-cause-carousel .owl-nav button:hover:not(:disabled) {
  box-shadow: 0 8px 24px rgba(7, 52, 89, 0.2);
}
.vm-grid-cause-carousel .owl-nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.vm-grid-cause-carousel .owl-nav button.owl-prev {
  left: -98px;
}
.vm-grid-cause-carousel .owl-nav button.owl-next {
  right: -98px;
}
.vm-grid-cause-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.vm-grid-cause-carousel .owl-dots .owl-dot {
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: none;
  position: relative;
  cursor: pointer;
  padding: 0;
  transition: all 0.24s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vm-grid-cause-carousel .owl-dots .owl-dot::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c4c4c4;
  transition: background 0.24s;
}
.vm-grid-cause-carousel .owl-dots .owl-dot.active {
  border: 1px solid #eb0738;
  background: #f2f5f9;
}
.vm-grid-cause-carousel .owl-dots .owl-dot.active::before {
  background: #eb0738;
}
.vm-grid-cause-carousel .owl-dots .owl-dot:hover::before {
  background: #bdbdbd;
}

.vm-section-review {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: #f3f6ff;
}
.vm-section-review .cause_bgr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.vm-section-review .cause_bgr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vm-section-review .cause_wrapper {
  position: relative;
  z-index: 1;
}

.vm-carousel-review {
  position: relative;
  overflow: visible;
}
.vm-carousel-review .vm-review-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  padding: 3px;
}
.vm-carousel-review .top-wrapper {
  border-radius: 24px;
  background: #fff;
  position: relative;
}
.vm-carousel-review .top-wrapper::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #fff;
  filter: drop-shadow(0 8px 16px rgba(7, 52, 89, 0.08));
  position: relative;
  top: 16px;
  left: 20px;
  z-index: -1;
}
.vm-carousel-review .review-video-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vm-carousel-review .review-content-wrapper {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 114px;
  white-space: normal;
  padding: 24px 50px;
  position: relative;
}
.vm-carousel-review .review-content-wrapper::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 22px;
  height: 20px;
  background-image: url("../images/quote_l.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.vm-carousel-review .review-content-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 22px;
  height: 20px;
  background-image: url("../images/quote_r.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.vm-carousel-review .review-content-wrapper p {
  margin: 0;
  font-size: 15px;
  color: #141414;
  font-style: italic;
}
.vm-carousel-review .review-video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
}
.vm-carousel-review .review-video-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.vm-carousel-review .review-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
}
.vm-carousel-review .review-video-play img {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}
.vm-carousel-review .review-video-play:hover img {
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.3));
  transform: scale(1.05);
}
.vm-carousel-review .review-video-iframe-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
}
.vm-carousel-review .vm-review-card__body {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
}
.vm-carousel-review .vm-review-card__logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vm-carousel-review .vm-review-card__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vm-carousel-review .review-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vm-carousel-review .review-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #073459;
  line-height: 1.4;
}
.vm-carousel-review .vm-review-card__summary {
  font-size: 15px;
  line-height: 1.4;
  color: #666;
  margin: 0;
  flex-grow: 1;
}
.vm-carousel-review .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 2px 12px rgba(7, 52, 89, 0.12);
  transition: all 0.24s ease;
  z-index: 10;
  background: #fff;
}
.vm-carousel-review .owl-nav button:hover:not(:disabled) {
  box-shadow: 0 8px 24px rgba(7, 52, 89, 0.2);
}
.vm-carousel-review .owl-nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.vm-carousel-review .owl-nav button.owl-prev {
  left: -98px;
}
.vm-carousel-review .owl-nav button.owl-next {
  right: -98px;
}
.vm-carousel-review .owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.vm-carousel-review .owl-dots .owl-dot {
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: none;
  position: relative;
  cursor: pointer;
  padding: 0;
  transition: all 0.24s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vm-carousel-review .owl-dots .owl-dot::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c4c4c4;
  transition: background 0.24s;
}
.vm-carousel-review .owl-dots .owl-dot.active {
  border: 1px solid #eb0738;
  background: #f2f5f9;
}
.vm-carousel-review .owl-dots .owl-dot.active::before {
  background: #eb0738;
}
.vm-carousel-review .owl-dots .owl-dot:hover::before {
  background: #bdbdbd;
}

.vm-section-faq {
  background: #f3f6ff;
  padding: 60px 0;
}
.vm-section-faq .section-subtitle {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.vm-section-faq .section-subtitle h3 {
  display: block;
  padding: 12px 36px 12px 12px;
  background: #fff;
  text-transform: capitalize;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #eb0738;
  border-left: 2px solid #eb0738;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 0 100%);
}
.vm-section-faq .sub-text {
  margin: 0;
  color: #001f3d;
  font-size: 30px;
  text-transform: capitalize;
  font-weight: 700;
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  align-items: flex-start;
}

.faq-wrapper__left {
  display: flex;
  flex-direction: column;
}

.faq-wrapper__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-wrapper__right .sub {
  font-size: 20px;
  text-transform: capitalize;
  color: #001f3d;
  font-weight: 600;
  margin: 0;
}
.faq-wrapper__right .view-all {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 36px;
  background: #eb0738;
  width: 100%;
  padding: 14px;
  justify-content: center;
}
.faq-wrapper__right .view-all:hover {
  background: rgb(185.4752066116, 5.5247933884, 44.1983471074);
}
.faq-wrapper__right .view-all span {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.faq-list {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  overflow-y: auto;
  height: 450px;
  padding-right: 10px;
}
.faq-list::-webkit-scrollbar {
  height: 100%;
  width: 5px;
  margin-top: 5px;
}
.faq-list::-webkit-scrollbar-track {
  background: #ededed;
  border-radius: 4px;
}
.faq-list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #eb0738;
}
.faq-list::-webkit-scrollbar-thumb:hover {
  background: #eb0738;
}

.faq-item {
  transition: all 0.3s ease;
  border-bottom: solid 1px #fff;
  border-radius: 8px;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item__button {
  width: 100%;
  padding: 24px;
  background: #f3f6ff;
  border-radius: 8px 8px 0 0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  font-weight: 700;
  color: #001f3d;
  text-align: left;
  transition: all 0.3s ease;
}
.faq-item__button[aria-expanded=true] {
  background: #fff;
  border-top: solid 2px #001f3d;
}
.faq-item__button[aria-expanded=true] .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__button[aria-expanded=true] .faq-item__icon svg {
  color: #eb0738;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #073459;
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq-item__icon svg {
  width: 100%;
  height: 100%;
  transition: color 0.3s ease;
}
.faq-item__title {
  flex: 1;
  margin: 0;
  line-height: 1.4;
}
.faq-item__content {
  max-height: 0;
  overflow: hidden;
  background: #f9f9f9;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.faq-item__content.is-open {
  opacity: 1;
}
.faq-item__content-inner {
  padding: 0 24px 20px 24px;
  font-size: 16px;
  line-height: 2.4;
  color: #001f3d;
  background: #fff;
  border-radius: 0 0 8px 8px;
}
.faq-item__content-inner p {
  margin: 0 0 12px 0;
}
.faq-item__content-inner p:last-child {
  margin-bottom: 0;
}
.faq-item__content-inner ul,
.faq-item__content-inner ol {
  padding-left: 20px;
  margin: 12px 0;
}
.faq-item__content-inner ul li,
.faq-item__content-inner ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.faq-item__content-inner ul li:last-child,
.faq-item__content-inner ol li:last-child {
  margin-bottom: 0;
}
.faq-item__content-inner strong {
  color: #001f3d;
  font-weight: 600;
}

.faq-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(20, 20, 43, 0.12);
}
.faq-image img {
  width: 100%;
  height: auto;
}

.faq-text {
  font-size: 16px;
  line-height: 1.4;
  color: #141414;
  border-radius: 12px;
}
.faq-text p {
  margin: 0 0 12px 0;
}
.faq-text p:last-child {
  margin-bottom: 0;
}
.faq-text strong {
  color: #eb0738;
  font-weight: 600;
}
.faq-text em {
  color: #073459;
}/*# sourceMappingURL=specialty.css.map */